body {
    margin: 0;
    width: 100vw;
    height: 100vh;
    font-family: 'Alegreya SC', serif;
}

header {
    /* height: 100%; */
    width: 100%;
    height: 100%;
    background-image: url("images/banner_2.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-img {
    width: 40%;
    height: auto;
    filter: brightness(200%);
}

.header-nav {
    height: 5%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: right;
    align-items: center;
    color: white;
    padding: 30px;
}

header a {
    text-decoration: none;
    color: white;
}

/* main */
main {
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* welcome */

.welcome {
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10% 15% 10% 15%;
    font-size: 17pt;
    text-align: justify;
    hyphens: auto;
    color: rgb(112, 111, 111);
}

.services {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10% 20% 10% 20%;
    background-color: rgb(238, 242, 236);
    font-size: 15pt;
    color: rgb(112, 111, 111);

}

.services-item {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    /* margin-top: 20px; */
    /* border-top: 1px solid black; */
    font-size: 14pt;

}

.services-item-text {
    width: 70%;
    padding: 0 2% 0 0;
    vertical-align: top;
    text-align: justify;
    hyphens: auto;
    margin: 0;


}

.services-item-img {
    width: 30%;
}


.services-a-img {
    width: 100%;
    border-top-right-radius: 50%;

}

.services-b-img {
    width: 100%;
    /* border-radius: 10px; */
}

.services-c-img {
    width: 100%;
    border-bottom-right-radius: 50%;
}

.commitment {
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    background-image: url("images/commitment_2.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    color: white;

}

.commitment-text {
    background-color: rgba(72, 71, 71, 0.5);
    color: rgb(255, 255, 255);
    font-size: 16pt;
    width: 80%;
    text-align: center;
    padding: 5px;
}

footer {
    height: 30%;
    width: 100%;
    background-color: rgb(159, 171, 153);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 10pt;
    color: rgb(37, 37, 37);
}

.footer-text {
    padding: 40px;
    text-align: justify;
    hyphens: auto;

}

footer img {
    height: 100%;
}


/* Media queries */
@media screen and (max-width: 800px) {

    .header-img {
        width: 100%;
    }

    .welcome {
        width: 85%;
        font-size: 11pt;
    }

    .services {
        font-size: 10pt;
        padding: 10% 2% 10% 2%;
    }

    .services-item {
        font-size: 9pt;

    }

    .services-item-text {
        width: 100%;
    }

    .services-item-img {
        display: None;
        width: 25%;
    }

    .commitment-text {
        font-size: 12pt;
    }

    footer {
        font-size: 7pt;
    }

    footer img {
        height: 80%;
    }

    .footer-text {
        padding: 20px;
        text-align: justify;
        hyphens: auto;

    }


}

* {
    box-sizing: border-box;
}