body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}



/* --------------------------------- */
/* --------------------------------- */

header {
    height: 10%;
    width: 100%;
    display: block;
}

/* --------------------------------- */

.header-border {
    height: 20%;
    width: 100%;
    background-color: #41C2D3;
}

/* --------------------------------- */
.nav {
    width: 100%;
    height: 80%;
    display: flex;
}

.nav-logo {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-logo img {
    width: 85%;
    height: auto;
    /* display: block; */
}

.nav-menu {
    width: 80%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding-right: 50px;
}

.nav-menu-item {
    margin: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14pt;
}

.nav a {
    text-decoration: none;
    color: inherit;
}

/* --------------------------------- */
/* --------------------------------- */


.banner {
    width: 100%;
    height: 40%;
    position: relative;
}

.banner-bg {
    width: 100%;
    height: auto;
}

.banner-title {
    width: 40%;
    position: absolute;
    top: 20%;
    left: 5%;

}



.banner-title img {
    width: 100%;
    height: auto;
}

.banner-title ul {
    /* padding: 10px; */
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 35pt;
    font-weight: 900;
    color: #41C2D3;
    margin: 0;
    text-shadow: 7px 7px 5px rgba(164, 161, 161, 0.3);
}

/* --------------------------------- */
/* --------------------------------- */
.wwd {
    width: 100%;
}

.wwd-title {
    display: flex;
    justify-content: center;
    align-items: center;

}

.wwd-title img {
    width: 15%;
    height: auto;
    margin-top: 40px;
}

.wwd-text {
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    color: rgb(124, 124, 124);
    font-size: 16pt;

}

.wwd-text ul {
    list-style-type: none;
    text-align: center;
}

.wwd-items {
    display: flex;
    width: 100%;
    justify-content: center;
}

.wwd-item {
    width: 30%;
    text-align: center;
    margin: 20px;
}

.wwd-item img {
    width: 50%;
    height: auto;

}

.wwd-item p {
    padding-left: 30px;
    padding-right: 30px;
    text-align: justify;
    color: rgb(124, 124, 124);
    font-size: 14pt;
}

/* --------------------------------- */
/* --------------------------------- */
.vision {
    width: 100%;
    margin-bottom: 60px;
}

.vision-banner {
    width: 100%;
    height: 30%;
}

.vision-banner img {
    width: 100%;
    height: auto;
}

.vision-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 70px;

}

.vision-title img {
    width: 15%;
    height: auto;
    margin-top: 40px;
}

.vision-items {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.vision-item {
    width: 25%;
    text-align: center;
    margin-bottom: 20px;
}

.vision-item-title {
    font-size: 16pt;
    font-weight: 600;
    color: #41C2D3;
    margin: 0;
}

.vision-item-text {
    margin-left: 20%;
    margin-right: 20%;
    color: rgb(124, 124, 124);

}

.vision-item img {
    width: 40%;
    height: auto;
}

/* --------------------------------- */
/* --------------------------------- */


footer {
    height: 25%;
    width: 100%;
    background-color: #191926;
    font-family: 'Roboto Condensed', sans-serif;
}

.footer-address {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 3%;
}

.footer-address img {
    width: 20%;
    height: auto;
}

.footer-address p {
    color: white;
    font-size: 13pt;
    text-align: right;
}

footer a {
    text-decoration: none;
    color: inherit;
}


/* contact */

.contact {
    width: 100%;
    height: 65%;
    background-image: url('images/contact-bg.webp');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact form {
    width: 50%;
}

.form-container {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background-color: white;
    border: 1, solid, black;
    border-color: black;
    border-radius: 20px;
    padding: 20px;

}

.form-container label {
    display: block;
}

.form-group {
    margin-bottom: 10px;
    padding: 10px;
    width: 50%;
    /* display: inline-block; */
}

.form-group {
    margin-bottom: 10px;
    width: 50%;
    /* display: inline-block; */
}

.form-message {
    width: 100%;

}

textarea {
    width: 100%;
    height: 100px;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1;
    border-width: 2px;
    resize: none;
}

textarea:focus {
    outline: none;
}


input {
    width: 100%;
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 1;
    font-size: 12pt;
}

input:focus {
    outline: none;
}

button {
    width: 100px;
    height: 50px;
    background-color: black;
    border-radius: 25px;
    border-color: black;
    color: white;
    font-size: 14pt;
    border: 0;
}

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

    /* header */
    .nav-logo {
        width: 37%;
    }

    .nav-menu {
        width: 63%;
        padding-right: 10px;
    }

    .nav-menu-item {
        margin: 5px;
        font-size: 10pt;
    }

    .nav-logo img {
        width: 100%;
    }


    /* main banner */

    .banner-title ul {
        font-size: 14pt;
        padding: 0px;
    }

    /* main what we do */
    .wwd-item {
        width: 40%;
        text-align: center;
        margin: 10px;
    }

    .wwd-text {
        font-size: 10pt;

    }

    .wwd-title img {
        width: 20%;
        height: auto;
        margin-top: 30px;
    }

    .wwd-item p {
        font-size: 10pt;
        padding-left: 1px;
        padding-right: 1px;
    }

    /* main vision */

    .vision-title {
        margin-bottom: 40px;
    }

    .vision-title img {
        width: 20%;
        margin-top: 30px;
    }

    .vision-item {
        margin-bottom: 10px;
    }

    .vision-item-title {
        font-size: 12pt;
    }

    .vision-item-text {
        margin-left: 8%;
        margin-right: 8%;
        font-size: 8pt;
    }

    /* footer */

    .footer-address p {
        font-size: 9pt;
    }

    .footer-address img {
        width: 30%;
        height: auto;
    }

    /* contact */
    .form-container {
        flex-direction: column;

    }

    .form-group {
        margin-bottom: 10px;
        width: 100%;
    }

    .contact form {
        width: 80%;
    }

    button {
        height: 35px;
        border-radius: 17px;
        font-size: 11pt;
    }


}

/* Global */

* {
    box-sizing: border-box;
}