/* Homepage hero slider */

.home-hero-slider {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #0d2a4a;
}

.home-hero-slider .owl-carousel,
.home-hero-slider .owl-stage-outer {
    width: 100%;
    overflow: hidden;
}

.home-slide {
    position: relative;
    width: 100%;
    /* نسبت استاندارد بنر ۱۹۲۰×۶۰۰ */
    height: 0;
    padding-bottom: 31.25%; /* 600/1920 */
    max-height: 420px;
    overflow: hidden;
    background: #0d2a4a;
}

/* وقتی max-height محدود می‌کند، ارتفاع واقعی را با JS/fallback ثابت نگه می‌داریم */
@supports (aspect-ratio: 16 / 5) {
    .home-slide {
        height: auto;
        padding-bottom: 0;
        aspect-ratio: 16 / 5;
    }
}

.home-slide-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: #0d2a4a;
}

.home-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    /* کل تصویر دیده شود؛ برای بنر ۱۹۲۰×۶۰۰ تقریباً پر می‌شود */
    object-fit: contain;
    object-position: center center;
}

.home-slide-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        270deg,
        rgba(6, 22, 48, 0.75) 0%,
        rgba(6, 22, 48, 0.4) 50%,
        rgba(6, 22, 48, 0.12) 100%
    );
}

.home-slide-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 36px 7%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    pointer-events: none;
}

.home-slide-caption-inner {
    position: relative;
    z-index: 4;
    max-width: 560px;
    width: auto;
    color: #fff;
    text-align: right;
    pointer-events: auto;
}

.home-slide-title {
    margin: 0 0 12px;
    padding: 0;
    font-size: 32px;
    line-height: 1.45;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.home-slide-desc {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.home-slide-cta {
    display: inline-block;
    padding: 11px 26px;
    background: #f0b429;
    color: #10233f !important;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1.4;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.home-slide-cta:hover,
.home-slide-cta:focus {
    background: #ffc94a;
    color: #10233f !important;
}

.home-slide-link-cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
}

.home-hero-slider .owl-nav {
    margin: 0;
}

.home-hero-slider .owl-nav button.owl-prev,
.home-hero-slider .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    margin-top: -21px;
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
    border-radius: 50%;
    font-size: 26px !important;
    line-height: 38px !important;
    z-index: 6;
}

.home-hero-slider .owl-nav button.owl-prev:hover,
.home-hero-slider .owl-nav button.owl-next:hover {
    background: rgba(240, 180, 41, 0.95) !important;
    color: #10233f !important;
}

.home-hero-slider .owl-nav button.owl-prev {
    right: 14px;
}

.home-hero-slider .owl-nav button.owl-next {
    left: 14px;
}

.home-hero-slider .owl-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    z-index: 6;
    text-align: center;
}

.home-hero-slider .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 4px;
    background: rgba(255, 255, 255, 0.5);
}

.home-hero-slider .owl-dots button.owl-dot.active span,
.home-hero-slider .owl-dots button.owl-dot:hover span {
    background: #f0b429;
}

@media (min-width: 1200px) {
    .home-slide {
        max-height: 480px;
    }

    .home-slide-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .home-slide {
        max-height: 300px;
        /* fallback for older browsers */
        min-height: 220px;
    }

    .home-slide-caption {
        padding: 24px 5%;
    }

    .home-slide-title {
        font-size: 22px;
    }

    .home-slide-desc {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .home-slide {
        max-height: 200px;
        min-height: 180px;
        aspect-ratio: 16 / 7;
    }

    .home-slide-caption {
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        padding: 14px 4% 34px;
    }

    .home-slide-title {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .home-slide-desc {
        font-size: 12px;
        margin-bottom: 10px;
        max-height: 3.2em;
        overflow: hidden;
    }

    .home-slide-cta {
        padding: 8px 14px;
        font-size: 12px;
    }

    .home-hero-slider .owl-nav button.owl-prev,
    .home-hero-slider .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 18px !important;
        line-height: 26px !important;
    }
}
