/*==================================================
=            Services Slider
==================================================*/

.services-slider{
    position:relative;
    width:100%;
}

.services-slider .owl-stage{
    display:flex;
}

.services-slider .owl-item{
    display:flex;
}

.service-item{
    width:100%;
    position: relative;
   
}

.service-item:hover{
    
}

/*==================================================
=            Image
==================================================*/

.service-image{
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:auto;
    display:block;
    
}
.service-image:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    background-color: rgba(0, 0, 0, 0.65);
}
.service-item:hover .service-image:before {
    background-color: rgba(0, 67, 135, 0.85);
}


/*==================================================
=            Content
==================================================*/

.service-content{
   position: absolute;
    bottom: 10px;
    max-width: 350px;
    left: 0px;
    right: 0px;
    margin: 0px auto 0px;
    transition: all 0.5s ease;
    
}

.service-subtitle{
    display: inline-block;
    font-size: 20px;
    font-weight: 500;
    color: #ff0515;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 30px;
}

.service-title{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 25px 0px 25px;
    line-height: 34px;
    font-family: 'Inter';
}

.service-description{
    margin: 0;
    font-size: 16px;
    line-height: 27px;
    color: #fff;
    font-weight: 400;
    font-family: 'Roboto';
    opacity: 0;
    transition: all 0.5s ease;
}

.service-item:hover .service-content {
    bottom: 110px;
}
.service-item:hover .service-description {
    opacity: 1;
}


/*==================================================
=            Button
==================================================*/

.service-button{
    position: absolute;
    bottom: 40px;
    left: 0px;
    right: 0px;
    max-width: 350px;
    margin: 0px auto 0px;
}

.service-btn{
    text-decoration: none;
    border-radius: 0px;
    transition: all 0.5s ease;
    font-weight: 700;
    color: #fff;
    font-size: 0;
    border: 2px solid rgba(255, 255, 255, 0.6);
    width: 45px;
    height: 45px;
    display: flex !important;
    align-items: center !important;
    justify-content: center;
    gap: 0px !important;
}

.service-item:hover .service-btn {
    background-color: #fff;
    color: #000;
}

.service-btn i {
    font-size: 20px;
}

.service-btn:hover{
    color: #fff;
}

/*==================================================
=            Owl Nav
==================================================*/

.services-slider .owl-nav{
    margin-top:35px;
    display:flex;
    justify-content:center;
    gap:15px;
}

.services-slider .owl-nav button{
    width:45px;
    height:45px;
    border-radius:50% !important;
    transition:.3s;
}

.services-slider .owl-nav button span{
    display:none;
}

.services-slider .owl-prev::before{
    content:"←";
    font-size:22px;
    font-weight:bold;
}

.services-slider .owl-next::before{
    content:"→";
    font-size:22px;
    font-weight:bold;
}

/*==================================================
=            Owl Dots
==================================================*/

.services-slider .owl-dots{
    margin-top:25px;
    text-align:center;
}

.services-slider .owl-dot span{
    width:12px;
    height:12px;
}

.services-slider .owl-dot.active span{
    transform:scale(1.2);
}

/*==================================================
=            Responsive
==================================================*/

@media(max-width:991px){

    .service-content{
        padding:20px;
    }

    .service-title{
        font-size:22px;
    }

}

@media(max-width:767px){

    .service-content{
        padding:18px;
    }

    .service-button{
        padding:0 18px 18px;
    }

    .service-title{
        font-size:20px;
    }

    .service-description{
        font-size:15px;
        line-height:26px;
    }

}


/*.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
}*/

.service-btn.icon-left{
    flex-direction:row;
}

.service-btn.icon-right{
    flex-direction:row-reverse;
}