.services-section{
    padding:120px 0;
    background:#f8f8f8;
}

.services-section .container{
    width:min(1200px,90%);
    margin:auto;
}

/* Heading */

.section-heading{
    text-align:center;
    margin-bottom:80px;
    margin-top: 90px;
}

.section-heading h2{
    font-size:3rem;
    font-weight:600;
    text-transform:uppercase;
    color:#e85d3f;
    margin-bottom:10px;
}

.subtitle{
    display:block;
    color:#9a9a9a;
    font-size:15px;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* Service Row */

.service-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:80px;
}

.service-content h3{
    font-size:2.3rem;
    color:#222;
    margin-bottom:20px;
    font-weight:500;
}

.service-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.service-image{
    overflow:hidden;
    border-radius:6px;
}

.service-image img{
    width:100%;
    height:380px;
    object-fit:cover;
    transition:.5s ease;
}

.service-image:hover img{
    transform:scale(1.08);
}

/* Button */

.service-btn{
    display:inline-block;
    padding:12px 28px;
    border:1px solid #e85d3f;
    color:#e85d3f;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.service-btn:hover{
    background:#e85d3f;
    color:#fff;
}

/* Divider */

.service-row:not(:last-child){
    padding-bottom:70px;
    border-bottom:1px solid #e5e5e5;
}

/* Responsive */

@media(max-width:991px){

    .service-row,
    .service-row.reverse{
        grid-template-columns:1fr;
        gap:35px;
    }

    .service-row.reverse .service-image{
        order:1;
    }

    .service-row.reverse .service-content{
        order:2;
    }

    .section-heading h2{
        font-size:2.2rem;
    }

    .service-content h3{
        font-size:1.8rem;
    }
}

@media(max-width:768px){

    .services-section{
        padding:80px 0;
    }

    .service-image img{
        height:280px;
    }
}