.video_container {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* #769290 #b8a7cb  */
.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(118, 145, 144, .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%;
}



@media screen and (min-width: 850px) {
    .linear-title {
        margin-top: 100px;
        color: #381551
    }

    .insight-btn {
        display: none !important;
    }

}

@media screen and (max-width: 850px) {
    .insight-btn {
        display: inline-block !important;

    }
}

.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;
}


.what-box a {
    display: block;
    width: 100%;
    height: 100%;
}

.what-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;
}

.what-box:hover .capabilities-card_arrow__L_plP {
    opacity: 1;
    width: 46;
}

.what-box:hover h3 {
    text-decoration: underline;
}