.datis-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.datis-box .datis-box-header {
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    color: #F5F5F5;
    width: 74px;
    height: 56px;
    background: var(--datis-secondary-color);
    border-radius: 80px 80px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -7px;
    font-family: 'Yekan Bakh FaNum';
}

.datis-box .datis-box-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px;
    background: #FFFFFF;
    border-radius: 20px;
    min-height: 204px;
}

.datis-box .datis-box-content .box-heading {
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 44px;
    text-align: center;
    color: #04142F;
}

.datis-box .datis-box-content .box-details {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 32px;
    text-align: center;
    color: rgba(11, 61, 145, 0.6);
}

.datis-box-nav {
    display: none;
}

@media (max-width: 767px) {
    .datis-box-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 16px;
    }

    .swiper.datis-box-slider.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-rtl.swiper-ios.swiper-backface-hidden {
        position: relative;
    }

    .swiper.datis-box-slider.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-rtl.swiper-ios.swiper-backface-hidden::after {
        content: '';
        position: absolute;
        width: 119px;
        height: 276px;
        left: 0;
        top: 0px;
        background: linear-gradient(270deg, rgba(245, 245, 245, 0) 0%, #F5F5F5 100%);
        display: block;
        z-index: 10;
    }

    .datis-box-nav.mobile-only {
        width: fit-content;
        position: absolute;
        z-index: 40;
        top: 50%;
        left: 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}