body {
    font-family: 'Lato', sans-serif;
    color: #333;
    /* light color */

    /*background: hsla(39, 92%, 90%, 1);

    background: linear-gradient(270deg, hsla(39, 92%, 90%, 1) 0%, hsla(125, 17%, 55%, 1) 100%);

    background: -moz-linear-gradient(270deg, hsla(39, 92%, 90%, 1) 0%, hsla(125, 17%, 55%, 1) 100%);

    background: -webkit-linear-gradient(270deg, hsla(39, 92%, 90%, 1) 0%, hsla(125, 17%, 55%, 1) 100%);

    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#FDEDD0", endColorstr="#789F7B", GradientType=1);*/

    background-image: linear-gradient(to right top, #fdedd0, #e6debc, #cfcfaa, #b6c099, #9cb28b, #88a782, #749d7a, #609273, #4e886e, #3b7f69, #257565, #006b61);

    max-height: 100dvh;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.page-container {
    max-height: 100dvh;
    overflow: auto;
}

.wrapper-page {
    max-width: 70%;
    padding: 30px 0;
    margin: 0 auto;
}

@media screen and (max-width: 998px) {
    .wrapper-page {
        max-width: 95%;
    }
}

header {
    background: white;
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    color: #006B61;
    /* orange */
    box-shadow: 10px 10px 14px 1px rgba(00, 00, 00, 0.2);
}

header img {
    width: 100px;
}

.content {
    margin-top: 30px;
    padding: 24px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
}

.owner-image {
    float: left;
    margin-right: 20px;
    background: white;
    padding: 8px 10px;
    border-radius: 8px;
}

.owner-image img {
    width: 300px;
    border-radius: 8px;
}



.services,
.contact {
    clear: both;
    margin-top: 20px;
}

.contact-info {
    font-weight: normal;
}

.iso9001-image-1 {
    width: 100px;
    margin-right: 6px;
}

.img-round-corners{
    border-radius: 8px;
}

a {
    color: #5f727f;
    font-weight: normal;
}

p {
    text-align: justify;
    line-height: 26px;
}

li {
    line-height: 26px;
}

.flex-1{
    flex: 1;
}

.display-flex{
    display: flex;
}