/*=========================================
SERVICES
=========================================*/

.services-section{

    padding:140px 0;

    background:#ffffff;

}

.service-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    margin-top:120px;

}
.service-row.reverse{

    direction:rtl;

}

.service-row.reverse>*{

    direction:ltr;

}
.service-image{

    overflow:hidden;

    border-radius:30px;

    box-shadow:var(--shadow-lg);

}

.service-image img{

    width:100%;

    display:block;

    transition:.8s;

}

.service-row:hover img{

    transform:scale(1.08);

}
.service-content h3{

    font-size:48px;

    color:var(--primary);

    margin-bottom:15px;

}

.service-short{

    color:var(--secondary);

    font-weight:600;

    margin-bottom:20px;

}

.service-content p{

    line-height:2;

    color:var(--text);

    margin-bottom:30px;

}
.service-icon{

    width:80px;

    height:80px;

    border-radius:50%;

    background:#fff7e5;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

}

.service-icon i{

    color:var(--secondary);

    font-size:34px;

}
@media(max-width:991px){

.service-row{

grid-template-columns:1fr;

gap:40px;

}

.service-row.reverse{

direction:ltr;

}

.service-content{

text-align:center;

}

.service-icon{

margin:0 auto 25px;

}

}