.banner-bg img {
    animation: rotate 20s infinite linear;
    filter: brightness(1.5);
}

#banner {
    background-image: url("../images/dot-bg.svg");
    background-size: cover;
}



.about-intro .context::before {
    content: "";
    height: 100%;
    width: 50%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #0931A1;
    filter: blur(6rem);
    z-index: -1;
    opacity: 0.6;
}

/* .about-intro .context {
    padding: 0 5vw;
} */

.about-intro-img {
    transition: all 2s cubic-bezier(.05, .2, .1, 1) !important;
    border-radius: 20px;
    overflow: hidden;

    &:hover {
        transform: scale(.95) !important;
    }

    &:hover img {
        transform: scale(1.15);
    }
}

.feat-img.about-intro-img {
    width: fit-content;
}

.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;
}

.our-features .section-space::after {
    content: "";
    background: #0931A1;
    filter: blur(100px);
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
}

.feature-box {
    padding: 50px;
    border: 1px solid #ffffff80;
    border-radius: 20px;
}

.feature-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    background: linear-gradient(160deg, #ffffff00 0%, #e1e1e17b 100%);
    filter: blur(50px);
}

.feat-img img {
    height: 100%;
}

section#butter {
    background: #000;
}

.achieve_points ul {
    list-style-type: circle;
    padding-left: 21px;
}

.achieve_points ul li {
    padding-left: 15px;
}

.achieve_points ul li::marker {
    color: #8AE2ED;
}

.achieve_points ul li:not(:last-child) {
    margin-bottom: 8px;
}

.achieve-icon svg {
    /* animation: rotate 5s infinite linear; */
    height: 400px;
}


.achieve_list {
    opacity: 0.3;
    transition: all .3s ease-in-out;
    padding: 50px 0 80px;

}

.achieve_list.is-active {
    opacity: 1;
}

.team-details {
    padding: 20px;
    bottom: -100%;
    width: calc(100% - 40px);
    border-radius: 20px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    left: 20px;
    border: 1px solid #fff;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    background: linear-gradient(160deg, #ffffff00 0%, #00000030 100%);
}

.team-social {
    top: -100%;
    right: 20px;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    text-decoration: underline !important;
    text-underline-offset: 4px;

    &:hover {
        color: #8AE2ED;
    }
}

.team-box>img {
    filter: saturate(0.3);
    transition: all 0.3s ease-in-out;
    max-height: 450px;
    object-fit: cover;
    object-position: top;
    bottom: 0;
    position: relative;
}

.team-box {
    border-radius: 20px;
    background: #8AE2ED;
    transition: all 0.3s ease;
}

.team-box.active {
    background: #0931A1;
}

.team-box.active img {
    filter: none;
}

.team-box.active .team-details {
    bottom: 20px;
    opacity: 1;
}

.team-box.active .team-social {
    top: 20px;
}

.team-list .row {
    row-gap: 40px;
}

.team-list .col-md-4 {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.team-btn {
    background: none;
    border: 0;
    outline: 0 !important;
    border-radius: 50%;
    padding: 0 !important;
    width: 35px;
    height: 35px;
}

.name-desig {
    line-height: 1;
}

.member-box {
    border-radius: 20px;
    background: #0931A1;
    transition: all 0.3s ease;
}

.member-box .team-social {
    top: 20px !important;
}

.member-box .team-details {
    bottom: 20px !important;
    opacity: 1 !important;
}

.modal-dialog.modal-fullscreen {
    width: 100% !important;
}

.member-details {
    background: #8AE2ED;
    border-radius: 20px;
    padding: 50px;
    padding-right: 60px;
}

.modal-backdrop.show {
    opacity: 0.8 !important;
}

.members-about p:last-child {
    margin: 0;
}

.member-close {
    top: 20px;
    right: 20px;
    background: none !important;
    border-radius: 50px;
    width: 35px;
    height: 35px;
    border: 0 !important;
    outline: 0 !important;
}

.width-change {
    will-change: width, transform, height;
}

#svgPath .path {
    stroke-dasharray: 1060;
    stroke-dashoffset: 1060;
    transition: all 1s ease-in-out;
}

#svgPath .path.active {
    stroke-dashoffset: 0;
}

@media (max-width: 787px) {


    .member-details {
        padding: 30px;
    }

    .member-close {
        top: 10px;
        right: 10px;
    }

    .achieve-icon {
        position: absolute;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        opacity: .3;
        top: 50%;
    }
}

@media (max-width: 550px) {
    .banner-heading .font-100 {
        font-size: 40px !important;
    }

    .feature-box {
        padding: 30px 20px;
    }

    .feat-img img {
        width: 100%;
    }
}