#services-header{
    text-align: center;
    position: relative;
}
.services-header-div{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    padding-block: 5.5rem;
    font-family: var(--main-font-family);
    background-image: linear-gradient(to right, rgb(74, 44, 126, .6) 20%, rgba(228, 177, 46, .6));
}
.services-header-div h1{
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
}
.services-header-div p{
    font-size: 1.25rem;
    color: #fff;
}
#service-header-mobile{
    display: none;
}

.services{
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    padding: 3rem 12rem;
    font-family: var(--main-font-family);
}
.services-reverse{
    flex-direction: row-reverse;
}
.services > div{
    width: 48%;
}
.services img{
    max-width: 100%;
    border-radius: 1rem;
}
.services > div > i{
    font-size: 2.2rem;
    font-weight: 500;
    padding: .35rem .95rem;
    color: var(--main-color);
    border-radius: .5rem;
    background-color: var(--main-color-background);
}
.services h2{
    color: var(--main-color);
    margin-block: 2rem;
    font-weight: 700;
}
.services p{
    font-size: 1.15rem;
    color: #5b5b5b;
}

.services ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.services i{
    color: var(--secondary-color);
    display: inline-block;
    margin-right: 1rem;
}
.services li{
    margin-top: 1rem;
}

.services-divider{
    width: 7%;
    height: 5px;
    background-color: var(--secondary-color);
    margin: 3rem auto;
}

#other-services{
    padding: 4rem 12rem;
    background-color: var(--secondary-color-background);
    font-family: var(--main-font-family);
}
#other-services > h1{
    color: var(--main-color);
    font-weight: 600;
    text-align: center;
}
#other-services > p{
    font-size: 1.1rem;
    color: #5b5b5b;
    text-align: center;
    padding-block: 1rem 2rem;
}
.other-services-div{
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.other-services-list{
    width: 31%;
    border-radius: 1rem;
    border-left: 4px solid var(--main-color);
    box-shadow: 2px 2px 4px rgba(100, 100, 100, .4);
    padding: 1.2rem;
}
.other-services-list i{
    background-color: var(--main-color-background);
    color: var(--main-color);
    border-radius: .5rem;
    font-size: 1.5rem;
    font-weight: 500;
    padding: .65rem;
}
.other-services-list h5{
    color: var(--main-color);
    margin-block: 1rem;
    font-weight: 600;
}
.other-services-list p{
    color: #5b5b5b;
}



#consultation{
    text-align: center;
    padding: 4rem 12rem;
}
#consultation > h1{
    color: var(--main-color);
    font-weight: 600;
}
#consultation > p{
    font-size: 1.2rem;
    color: #5b5b5b;
}
.consultation-div{
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: start;
    margin-top: 4.5rem;
}
.consultation-list{
    width: 19%;
}
.consultation-list h1 strong{
    color: #fff;
    background-color: var(--main-color);
    padding: 1.3rem 2.5rem;
    border-radius: 50%;
    display: inline-block;
    font-size: 3.5rem;
}
.consultation-list h5{
    color: var(--main-color);
    font-weight: 600;
    margin-top: 1rem;
}
.consultation-list p{
    color: #5b5b5b;
    font-size: 1.03rem;
}

@media screen and (max-width: 598px) {
    #services-header img{
        max-width: 100%;
    }
    #service-header-mobile{
        display: block;
    }
    #service-header-desktop{
        display: none;
    }
    .services-header-div h1{
        font-size: 2.5rem;
        font-weight: 600;
    }
    .services-header-div p{
        font-size: 1.15rem;
    }
    .services{
        display: block;
        padding: 3rem 1rem;
    }
    .services > div{
        width: 100%;
    }
    .services-right{
        margin-top: 1.5rem;
    }
    .services-divider{
        width: 15%;
        height: 4px;
        margin: .5rem auto;
    }
    #other-services{
        padding: 4rem 1rem;
    }
    .other-services-div{
        display: block;
    }
    .other-services-list{
        width: 100%;
        margin-top: 1.2rem;
    }

    #consultation{
        padding: 4rem 1rem;
    }
    .consultation-div{
        display: block;
    }
    .consultation-list{
        width: 100%;
        margin-top: 1rem;
        display: flex;
        gap: 1.5rem;
    }
    .consultation-list h1 strong{
        font-size: 2.5rem;
        padding: 1.5rem 2.5rem;
    }
}
