.banner-bg img {
    animation: rotate 20s infinite linear;
    filter: brightness(1.5);
}


#banner {
    background-image: url("../images/dot-bg.svg");
    background-size: cover;
}

.banner-bg {
    right: -50%;
    top: -50%;
}

#solutions::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #0931A1;
    filter: blur(5rem);
    z-index: -1;
}

.solution-box {
    border-radius: 20px;
    border: 1px solid #ffffff63;
    padding: 50px;
    background: linear-gradient(140deg, #ffffff00 0%, #ffffff38 100%);
    -webkit-backdrop-filter: blur(6.5px);
    backdrop-filter: blur(6.5px);
}

.solution-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: -1;
    background: linear-gradient(230deg, #ffffff00 0%, #ffffff38 100%);
}

.sol-title h2 {
    line-height: 1.2;
}

.about-intro-img {
    transition: all 2s cubic-bezier(.05, .2, .1, 1) !important;
    box-shadow: inset 0 0 10px 10px #000;
    border-radius: 20px;
    overflow: hidden;

    &:hover {
        transform: scale(.95) !important;
    }

    &:hover img {
        transform: scale(1.15);
    }
}

.about-intro-img img {
    transition: transform 2s cubic-bezier(.05, .2, .1, 1);
    object-fit: cover;
    border-radius: 20px;
    object-fit: cover;
    min-height: 280px;
}

@media (max-width: 1200px) {
    .sol-title .font-70 {
        font-size: 70px !important;
    }

    .sol-title .font-30 {
        font-size: 28px !important;
    }

    #solutions::after {
        height: 150dvh;
    }
}

@media (max-width: 767px) {
    .solution-box {
        padding: 40px 20px;
    }

    .sol-title .font-70 {
        margin-bottom: 30px !important;
    }

    .solution-box::after {
        content: none;
    }

    #solutions::after {
        height: 300dvh;
    }

    .banner-bg {
        right: 50%;
        transform: translateX(50%);
        width: 600px !important;
    }
    .banner-heading p {
        font-size: 14px;
    }
}