/* فونت از پوشه fonts/ در ریشه سایت */
@font-face {
    font-family: 'IRANSansXFaNum';
    src: url('/fonts/IRANSansXFaNum-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: 'IRANSansXFaNum', 'Tahoma', sans-serif;
}

.rotate-180 {
    transform: rotate(180deg);
    transition: transform 0.3s ease-in-out;
}

/* اسلایدر صفحه اول - تمام عرض و ارتفاع استاندارد */
#hero-slider,
.hero-slider-section {
    width: 100%;
    max-width: 100%;
    min-height: 450px;
    height: 55vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-slider-section .hero-swiper,
.hero-slider-section .swiper.hero-swiper {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .swiper-slide .row {
    width: 100%;
    margin: 0;
}

.hero-swiper .swiper-slide .col-lg-12 {
    min-height: 100%;
    position: relative;
}

.hero-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 768px) {
    #hero-slider,
    .hero-slider-section {
        min-height: 320px;
        height: 40vh;
    }
}