div.banner div.overlay{
    position: absolute;
    top: 0;
    width: 100%;
    opacity: .5;
}

div.text p{
    width: 83%;
    font-size: 60px;
    text-align: left;
    color: white;
    font-weight: 600;
    line-height: 60px;
}

div.text div.box-bar{
    width: 83%;
    margin-top: 15px;
}

div.text div.box-bar div.bar{
    width: 16%;
    height: 6px;
    background-color: white;
    justify-self: flex-start;
    margin-left: unset;
}

section.services{
    padding: 40px 10%;
    background-color: white;
}

section.services div.section-text{
    padding: 40px 0;
}

section.services div.section-text h1{
    font-size: 40px;
    font-weight: 600;
    color: var(--color-text);
    line-height: 40px;
}

section.services div.section-text div.box-bar{
    width: 100%;
    margin: 15px 0;
}

section.services div.section-text div.box-bar div.bar{
    width: 26%;
    background-color: var(--color-box);
    height: 6px;
}

section.services div.section-text p{
    padding-bottom: 30px;
    text-align: justify;
}

section.services div.section-text ul{
    padding-bottom: 30px;
    list-style: none;
}

section.services div.section-text ul li{
    padding: 3px 0;
}

section.services div.section-text ul li:before{
    content: "•";
    padding-right: 5px;
}

section.services div.section-text h4{
    font-weight: 600;
}

section.services div.section-text h4.green{
    color: var(--color-text);
    font-size: 20px;
    padding: 15px 0;
}

section.services div.section-image{
    text-align: center;
    width: 100%;
    padding: 10px 0;
}

section.services div.section-image img{
    width: 80%;
    border: 7px solid var(--color-box);
    object-fit: contain;
}

section.services div.button{
    width: 100%;
    text-align: center;
}

section.services div.button a{
    color: white;
    padding: 10px 20px;
    background-color: var(--color-box);
    border-radius: 5px;
    text-decoration: none;
}

@media screen and (max-width: 425px){
    section.services div.section-text h1{
        font-size: 30px;
    }

    section.services div.button a{
        font-size: 14px;
    }
}