/* ==========================================
   HERO SLIDER
========================================== */

.hero-slider{
    position: relative;
}

.heroSwiper{
    width: 100%;
    height: 650px;
}

.heroSwiper .swiper-slide{
    position: relative;
    overflow: hidden;
}

.hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.35),
        rgba(0,0,0,.45)
    );
    z-index: 1;
}

.hero-content{
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}
.hero-content .container{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-caption{
    max-width: 620px;
    color: #fff;
    padding-left: 20px;
}

.hero-caption h1{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-caption p{
    font-size: 19px;
    line-height: 30px;
    margin-bottom: 30px;
}

.hero-btn{
    display: inline-block;
    padding: 14px 30px;
    background: #0B4F8A;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: .3s;
}

.hero-btn:hover{
    background: #083b67;
    color: #fff;
}

/* ==========================================
   SWIPER
========================================== */

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev{
    color: #fff;
}

.heroSwiper .swiper-pagination-bullet{
    background: #fff;
    opacity: .6;
}

.heroSwiper .swiper-pagination-bullet-active{
    opacity: 1;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width:768px){

    .heroSwiper{
        height: 340px;
    }

    .hero-content{
        align-items: center;
    }

    .hero-caption{
        max-width: 100%;
        padding: 0 25px;
    }

    .hero-caption h1{
        font-size: 30px;
        margin-bottom: 10px;
    }

    .hero-caption p{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .hero-btn{
        padding: 10px 20px;
        font-size: 14px;
    }

}