.video_container {
    width: 100%;
    height: 100vh;
    position: relative;
}

.video_container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.linear {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(to right bottom, rgba(159, 91, 219, .7), rgba(184, 167, 203, .7));

}

.linear-bg {
    display: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 100%);
}


.linear-title h1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.delay-600 {
    animation-delay: 600ms;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.banner_icon {
    cursor: pointer;
}

.index-header-btn {
    position: absolute;
    bottom: 20px;
    width: 100%;
}

.linear-title h1 {
    line-height: 1.5;
}

.linear-title p {
    line-height: 1.2;
}


.rounded-lg {
    cursor: pointer;
}



.expertise-item2 a {
    display: block;
    width: 100%;
    height: 100%;
}




.expertise-item2:hover .insight-btn {
    display: inline-block !important;
}

.page-btn {
    flex-direction: row-reverse;
}

#prev-btn {
    margin-right: 15px;
}


.gallery-container {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.gallery-container::-webkit-scrollbar {
    display: none;
}

.gallery-card:hover img {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.gallery-card img {
    transition: transform 0.3s ease;
}


.service-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.service-box h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}


.capabilities-card_arrow__L_plP {
    opacity: 0;
    transform: translateX(0);
    transition: all .3s ease-in;
    font-weight: 500;
    color: #fff;
    line-height: 18px;
    font-size: .75rem;
    width: 46;
    height: 14;
    fill: none;
    margin-left: 10px;
    display: inline-block;
}





.new-item .capabilities-card_arrow__L_plP {
    color: #000;
}

.new-item_image {
    width: 100%;
    height: 300px;

}

.new-item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

@media screen and (min-width: 850px) {
    .top-black::after {
        content: "";
        position: absolute;
        left: 0px;
        top: -40px;
        height: 40px;
        width: 100%;
        background-color: rgb(0, 0, 0);
        z-index: -1;
    }

    .linear-title {
        margin-top: 100px;
    }

    .insight-btn {
        display: none !important;
    }

    .service-box {
        width: 32%;
        margin-right: 2%;
    }

    .service-box:hover .capabilities-card_arrow__L_plP {
        opacity: 1;
        width: 46;
    }

    .service-box:hover h3 {
        text-decoration: underline;
    }

    .new-item:hover .capabilities-card_arrow__L_plP {
        opacity: 1;
        width: 46;
    }

    .new-item:hover span {
        text-decoration: underline;
    }

    .new-item:hover img {
        transform: scale(1.1);
    }

}

@media screen and (max-width: 850px) {
    .top-black {
        margin-top: 40px;
    }

    .insight-btn {
        display: inline-block !important;
    }

    .service-box {
        width: 100%;
    }

    .service-box .capabilities-card_arrow__L_plP {
        opacity: 1;
        width: 46;
    }

    .service-box h3 {
        text-decoration: underline;
    }

    .new-item .capabilities-card_arrow__L_plP {
        opacity: 1;
        width: 46;
    }

    .new-item span {
        text-decoration: underline;
    }
}