/*Additional Styles For Categoru Services*/
.services-category-hero{
    height: 300px;
    background-image: url("/wp-content/uploads/2022/10/service.webp");
    background-repeat: no-repeat;
    background-size: cover;

    background-position-x: center;
    background-position-y: 25%;

    left: 0px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.services-category-hero .hero__title{
    padding-top: 30%;
}

.services-category__list{
    padding-top: 50px;
    padding-bottom: 50px;
}

.services-category__list .row{
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.services-category__list .item{
    display: flex;
    column-gap: 4%;
    align-items: center;
}

.services-category__list .item:nth-child(odd){
    flex-direction: row;
}
.services-category__list .item:nth-child(even){
    flex-direction: row-reverse;
}

.services-category__list .item__img{
    width: 48%;
}

.services-category__list .item__img img{
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 15px;
}

.services-category__list .item article{
    width: 48%;
}

.services-category__list .item__title{
    font-weight: 600;
    font-size: 36px;
    line-height: 1.2;
    color: #124a2f;
    margin-bottom: 20px;
}
.services-category__list a{
    color: #124a2f;
}
.services-category__list .item p{
    font-weight: 400;
}

@media screen and (max-width: 900px){
    .services-category-hero .hero__title{
        padding-top: 35%;
    }
    .services-category__list .item:nth-child(odd),
    .services-category__list .item:nth-child(even){
        flex-direction: column;
        gap: 40px;
    }

    .services-category__list .item__img{
        width: 100%;
    }
    
    .services-category__list .item article{
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 600px){
    .services-category-hero{
        height: 200px;
    }
    .services-category-hero .hero__title{
        padding-top: 25%;
    }
}

@media screen and (max-width: 450px){
    .services-category__list .item__title {
        font-weight: 500;
        font-size: 30px;
    }
}
