main {
    position: relative;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

.back-btn {
    position: absolute;
    margin: 1%;
    padding: 0.5% 1%;
    background-color: #aaa;
    color: white;
    border-radius: 99px;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 1;
}

.back-btn:hover {
    background-color: #2D25A7;
}

.solution {
    padding: 1.8% 0;
    position: relative;
}

.solution-container {
    width: 100%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: clip;
}

.sol-desc {
    width: 100%;
    max-width: 100ch;
    margin-inline: auto;
    color: #13294a;
    text-align: center;
}

.sol-desc p {
    font-size: 18px;
}

.features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 2%;
    text-align: center;
    color: #13294a;
}

.feature-card {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: start;
    align-items: center;
    gap: 20px;
    padding: 30px;
    position: relative;
    max-width: 500px;
    z-index: 1;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 80%;
    background: #f1f1f1;
    border-radius: clamp(32px, 4vw, 40px);
    z-index: -1;
}
.feature-card:hover > img {
    scale: 1.1;
    box-shadow: 0 0 10px 10px #83b1ff33;
}

.feature-card img {
    width: fit-content;
    border-radius: 999px;
    box-shadow: 0 0 10px 10px #83b1ff2a;
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.divider-h {
    position: absolute;
    top: 145px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 2px;
    width: 80%;
    background-color: #e3e3e3;
}

.sol-video-container {
    padding-top: 60px;
    margin-top: 8px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    position: relative;
    color: #13294a;
}

.sol-video-container h3 {
    width: 90%;
    margin-inline: auto;
}

.sol-video-container:hover .fa-arrow-down {
    transform: rotate(0deg);
}

.sol-video-container:hover .sol-video {
    transform: translateY(-2%);
    outline: 12px solid #0000000c;

}

.sol-video {
    width: clamp(400px, 65vw, 1800px);
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 52px;
    border: 12px solid #00000016;
    margin-inline: auto;
    position: relative;
    outline: 12px solid #00000000;
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.sol-video-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 100%;
    background: #f1f1f1;
    border-radius: clamp(32px, 4vw, 60px);
    z-index: -2;
}

.sol-video-card::after {
    content: "";
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 100vw;
    max-width: 2000px;
    height: 30%;
    background: #2272FF;
    z-index: -1;
}

.sol-video-container .fa-arrow-down {
    color: #2272FF;
    transform: rotate(-45deg);
    transition: 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

