/* Section banner */
#aboutBanner{
    width: 100%;
    height: 500px;
    background: url('./../images/optimize.jpeg') center 100%;
    background-size: cover;
}
/* section services */
#aboutServices article{
    /* display: grid;
    grid-template-columns: 30% 70%;
    grid-template-rows: 300px;
    align-items: center;
    gap: 1em; */
    display: flex;
    flex-direction: column;
    gap: 1em;
    margin-bottom: 1em;
}
#aboutServices article .imgServices img{
    height: 200px;
    width: 100%;
}
#aboutServices article .contentServices{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
@media screen and (min-width:700px){
    #aboutBanner{
        background-position: center;
        height: 800px;
    }
    #introAbout{
        display: grid;
        grid-template-columns: 1fr 800px 1fr;
    }
    #introAbout article{
        grid-column: 2/3;
        text-align: justify;
    }
    #aboutServices article{
        flex-direction: row;
        height: 200px;
    }
    #aboutServices article .imgServices img{
        height: 200px;
        width: 700px;
    }
    .contentServices a{
        width: 200px;
        flex-grow: 0;
    }

}