section.bannersection::after {
    background-image: url(../img/game/banner-bg.webp);
}

/* section-fourteen-start */
.section-fourteen {
    background: #040404;
    /* padding: 60px 0; */
    position: relative;
}

.section-fourteen-row {
    /* position: sticky;
    top: 100px;
    min-height: 800px;
    background: #040404; */

    padding-top: 40px;
    border-radius: 19.782px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 30px;
}

.section-fourteen-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.section-fourteen-card {
    position: relative;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: #090909;
    cursor: pointer;
    overflow: hidden;
    will-change: transform;
    transition:
        border-color .45s ease,
        background-color .45s ease,
        box-shadow .45s cubic-bezier(.22, .61, .36, 1),
        transform .55s cubic-bezier(.22, .61, .36, 1),
        opacity .55s ease;
}

.section-fourteen-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 25px;
    width: calc(100% - 50px);
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .85),
            transparent);
    opacity: 0;
    transition: .4s;
}

.section-fourteen-card.active,
.section-fourteen-card:hover {
    border-color: rgba(255, 255, 255, .12);
    background: #0d0d0d;
    box-shadow:
        0 15px 45px rgba(0, 0, 0, .45),
        inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.section-fourteen-card.active::before,
.section-fourteen-card:hover::before {
    opacity: 1;
}

.section-fourteen.js .section-fourteen-card:not(.is-inview),
.section-fourteen.js .section-fourteen-image:not(.is-inview) {
    opacity: 0;
    transform: translateY(28px);
}

.section-fourteen.js .section-fourteen-card.is-inview,
.section-fourteen.js .section-fourteen-image.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.section-fourteen.js .section-fourteen-card:hover {
    transform: translateY(-6px);
}

.section-fourteen-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-fourteen-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.8;
}

.section-fourteen-image {
    position: relative;
    border-radius: 20px;
    height: 90%;
    min-height: 380px;
    width: 100%;
    overflow: hidden;
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, .61, .36, 1);
}

.section-fourteen-image img {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

@media (max-width: 1200px) {
    .section-fourteen-row {
        position: relative;
    }
}

@media (max-width: 991.98px) {
    .section-fourteen-image {
        min-height: 340px;
    }
}

@media (max-width: 767.98px) {
    .section-fourteen-image {
        min-height: 320px;
    }
    .section-fourteen-title {
    font-size: 20px;
}
}

@media (max-width: 575.98px) {
    .section-fourteen-image {
        min-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .section-fourteen.js .section-fourteen-card:not(.is-inview),
    .section-fourteen.js .section-fourteen-image:not(.is-inview) {
        opacity: 1;
        transform: none;
    }
}

/* section-fourteen-end*/

/* section-sixteen-start */

.section-sixteen {
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}


.section-sixteen .container {
    position: relative;
    z-index: 2;
}

.section-sixteen-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    transition: .45s ease;
}

.section-sixteen-card-large {
    min-height: 340px;
}

.section-sixteen-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
}


.section-sixteen-content h3 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
    position: relative;
    max-width: fit-content;
}

.section-sixteen-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.00) 0%, #717171 46.63%, rgba(0, 0, 0, 0.00) 100%);
    background-size: 200% 100%;
    background-position: 0% 50%;
    pointer-events: none;
    opacity: 0;
        transition: opacity .5s ease;
}

.section-sixteen-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}


.section-sixteen-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.section-sixteen-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    transition: .45s ease;
}


.section-sixteen-card:hover {
    /* transform: translateY(-12px); */
    border-color: rgba(56, 182, 255, .35);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .45),
        0 10px 35px rgba(0, 129, 241, .18);

}

.section-sixteen-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, .05),
            rgba(255, 255, 255, .28),
            rgba(255, 255, 255, .05));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    /* opacity: 0; */
    transition: .45s ease;
    pointer-events: none;
}

/* .section-sixteen-card:hover::before {
    opacity: 1;
} */


/* .section-sixteen-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: calc(100% - 60px);
    height: 2px;
    border-radius: 50px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .95),
            transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: .45s ease;
} */

.section-sixteen-card:hover::after {
    transform: scaleX(1);
}


.section-sixteen-card .section-sixteen-content {
    position: relative;
    z-index: 2;
}

.section-sixteen-card .section-sixteen-image {
    position: relative;
    z-index: 2;
}

/* .section-sixteen-card .section-sixteen-image::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -70%;
    width: 40%;
    height: 300%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);
    transform: rotate(25deg);
    transition: 1s;
    z-index: 3;
} */

.section-sixteen-card:hover .section-sixteen-image::before {
    left: 150%;
}


.section-sixteen-card:hover {
    border-color: rgba(58, 59, 59, 0.35);
    color: #38B6FF;
}

.section-sixteen-card:hover .section-sixteen-content h3::after {
    opacity: 1;
}

.section-sixteen-card:hover h3 {
    color: #fff;
}

.section-sixteen-card:hover p {
    color: #E4E8EF;
}

/* @keyframes sectionSixteenFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
} */

.section-sixteen-card:hover .section-sixteen-image {
    animation: sectionSixteenFloat 3s ease-in-out infinite;
}

@media (min-width:1400px) {
    .section-sixteen-content p {
        font-size: 17px;
    }

    .section-sixteen-image img {
        min-height: 280px;
    }
}

@media (max-width:1199.98px) {
    .section-sixteen-image img {
        min-height: 300px;
    }

}

@media (max-width:991.98px) {
    .section-sixteen-card-large {
        min-height: auto;
    }

    .section-sixteen-content {
        margin-bottom: 30px;
    }

    .section-sixteen-image {
        margin-top: 20px;
    }

    .section-sixteen-image img {
        min-height: 260px;
        width: 100%;
    }

}

@media (max-width:767.98px) {
    .section-sixteen {
        padding: 40px 0;
    }

    .section-sixteen-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .section-sixteen-image img {
        min-height: 220px;
        border-radius: 16px;
    }

}

@media (max-width:575.98px) {
    .section-sixteen-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-sixteen-image img {
        min-height: 200px;
        object-fit: cover;
    }

}

@media (max-width:420px) {
    .section-sixteen-content p {
        font-size: 13px;
    }

    .section-sixteen-image img {
        min-height: 180px;
    }

}

/* section-sixteen-end */