/*======================================
    SERVICES
======================================*/

.services{

    background: #F8FAFC;

}

.section-header{

    margin-bottom: 45px;

}

.services .swiper{

    overflow: hidden;

    padding-bottom: 10px;

}

.service-card{

    background: var(--white);

    border-radius: 10px;

    overflow: hidden;

    transition: var(--transition);

    box-shadow: 0 8px 30px rgba(0,0,0,.05);

}

.service-card:hover{

    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0,0,0,.12);

}

.service-card a{

    display: block;

    color: inherit;

    text-decoration: none;

}

.service-image{

    overflow: hidden;

    height: 170px;

}

.service-image img{

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.service-card:hover .service-image img{

    transform: scale(1.08);

}

.service-body{

    position: relative;

    padding: 55px 22px 25px;

}

.service-icon{

    position: absolute;

    top: -28px;

    left: 22px;

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--secondary);

    color: var(--primary);

    border: 4px solid var(--white);

    transition: var(--transition);

}

.service-icon i{

    font-size: 22px;

}

.service-card:hover .service-icon{

    transform: rotate(10deg);

}

.service-body h3{

    margin-bottom: 12px;

    color: var(--title);

    font-size: 20px;

    font-weight: 700;

    line-height: 1.3;

}

.service-body p{

    margin: 0;

    color: var(--text);

    font-size: 15px;

    line-height: 1.8;

}

/*======================================
    SWIPER
======================================*/

.services .swiper-button-prev,
.services .swiper-button-next{

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: var(--white);

    color: var(--secondary);

    box-shadow: 0 8px 20px rgba(0,0,0,.12);

}

.services .swiper-button-prev::after,
.services .swiper-button-next::after{

    font-size: 16px;

    font-weight: 700;

}

.services .swiper-button-prev:hover,
.services .swiper-button-next:hover{

    background: var(--primary);

    color: var(--secondary);

}