/* Hero & Header */
.hero_section {
    display: block;
    z-index: 2;
    position: relative
}

.hero_section .swiper-slide {
    position: relative;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 620px
}

.hero_section .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: inset 0 -140px 80px 0 var(--background), inset 0 0 10px 0 var(--background);
    background-size: cover !important;
    z-index: -1;
    width: 100%;
    height: 100%
}

.hero_section .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-rgba);
    z-index: -2
}

.hero_section .swiper-slide .hero_content h2 {
    color: var(--white);
    font-weight: 700;
    font-size: 50px
}

.hero_section .swiper-slide .hero_content p {
    font-size: 17px;
    font-weight: 400
}

.hero_section .swiper-slide .hero_plans .starting_at {
    color: var(--white);
    font-weight: 600
}

.hero_section .swiper-slide .hero_plans .price {
    color: var(--white);
    font-weight: 800
}

.hero_section .swiper-slide .hero_plans .price span {
    font-weight: 500;
    color: var(--light);
    font-size: 20px
}

.hero_section .swiper-slide .hero_plans .btn-main {
    padding: 10px 42px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    background-color: var(--blue);
    border: 1px solid var(--blue);
    color: var(--white);
}

.hero_section .swiper-slide .hero_plans .btn-main:active,
.hero_section .swiper-slide .hero_plans .btn-main:focus,
.hero_section .swiper-slide .hero_plans .btn-main:hover {
    background-color: transparent;
    border: 1px solid var(--blue);
    color: var(--blue)
}

.hero_box {
    width: 100%;
    min-height: 80px;
    border-radius: 10px;
    color: var(--light);
    background-color: var(--light-dark);
}

.hero_box h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0;
    display: block;
    width: 100%
}

.hero_box .pager__icons .icon img {
    width: 40px;
    height: 40px
}

.hero_box p {
    display: none;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
    width: 100%;
    opacity: 0;
    transition: opacity .3s
}

.hero_dots a.active .hero_box p {
    display: block !important;
    opacity: 1 !important
}

.hero_dots a.active .hero_box {
    background: var(--dark)
}

.hero_dots a.active .hero_box .pager__icons .icon img {
    width: 44px;
    height: 44px
}

@media (max-width: 991.98px) {
    .hero_section .swiper-slide {
        height: 580px;
    }
    .hero_section .swiper-slide .hero_content h2 {
        font-size: 44px;
    }
    .hero_box h5 {
        font-size: 13px;
    }
}

@media (max-width: 767.98px) {
    .hero_section .swiper-slide {
        height: 520px;
        text-align: center;
    }
    .hero_section .swiper-slide .row {
        justify-content: center !important;
    }
    .hero_section .swiper-slide .hero_content h2 {
        font-size: 38px;
    }
    .hero_section .swiper-slide .hero_content p {
        font-size: 16px;
        margin-bottom: 1.5rem !important;
    }
    .hero_dots {
        margin-top: 1.5rem;
    }
    .hero_box {
        min-height: auto;
        padding: 0.8rem !important;
    }
    .hero_box_content {
        display: none;
    }
    .hero_dots a.active .hero_box {
        transform: scale(1.1);
    }
    .hero_dots .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
}

@media (max-width: 575.98px) {
    .hero_section .swiper-slide {
        height: 480px;
    }
    .hero_section .swiper-slide .hero_content h2 {
        font-size: 32px;
    }
    .hero_section .swiper-slide .hero_content p {
        font-size: 15px;
    }
    .hero_dots .col-2 {
        flex: 0 0 auto;
        width: 25%;
        padding: 0 5px;
    }
    .hero_box {
        background-color: transparent !important;
        box-shadow: none !important;
    }
    .hero_dots .py-3 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    .hero_dots .px-3 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
    .hero_box .pager__icons .icon img {
        width: 36px;
        height: 36px;
    }
}

.header {
    height: 300px;
    background-position: center center !important;
    background-size: cover !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.header h1 {
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.01rem;
    font-size: 38px;
}

.header p {
    color: var(--light);
    font-size: 15px;
}

.header h1, .header p {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInMoveDown 1s ease forwards;
}

@keyframes fadeInMoveDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        height: 320px;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    .header h1 {
        font-size: 32px;
    }
    
    .header p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .header {
        height: 280px;
        background-position: center center !important;
        background-size: cover !important;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .header p {
        font-size: 13px;
    }
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: -1;
}

