@import url('https://fonts.googleapis.com/css?family=Ubuntu:200,300,400,500,600,700,800,900&display=swap');
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}
body {
    overflow-x: hidden;
}
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #3475ca;
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}
.banner .content {
    position: relative;
    max-width: 750px;
    text-align: center;
}
.banner .content h2 {
    color: #fff;
    font-size: 60px;
}
.banner .content p {
    color: #fff;
    font-size: 18px;
}
.banner header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 40px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10000;
}
.banner header .logo {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}
.banner header .toggle {
    position: relative;
    width: 36px;
    height: 28px;
    background: url(/img/menu.png);
    background-size: cover;
    cursor: pointer;
}
.about {
    position: relative;
    padding: 0;
    background: #162c3b;
    width: 100%;
    display: flex;
}
.about .contentBox {
    background: #162c3b;
    padding: 100px;
    width: 50%;
}
.heading {
    color: #fff;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.text {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}
.about .imageBox {
    background: url(/img/moringa.jpg);
    width: 50%;
    background-size: cover;
    background-position: center;
}
.services {
    background: #12222d;
    padding: 100px;
    text-align: center;
}
.services .container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}
.services .container .serviceBox {
    position: relative;
    background: #fff;
    width: 250px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.services .container .serviceBox img {
    max-width: 100px;
}
.services .container .serviceBox h2 {
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
}
.tech {
    background: #3f8ffc;
    width: 100%;
    padding: 100px;
    padding-top: 300px;
    margin-top: -300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tech .contentBox {
    max-width: 800px;
}
.tech .imageBox {
    max-width: 250px;
}
.tech .imageBox img {
    max-width: 100%;
}
.client {
    background: #162c3d;
    padding: 100px;
    text-align: center;
}
.client .imageBox {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 40px;
}
.client .imageBox img {
    max-width: 150px;
    margin: 20px;
    opacity: 0.25;
    cursor: pointer;
}
.client .imageBox img:hover {
    opacity: 1;
}
.testimonial {
    position: relative;
    padding: 100px;
    background: #12222d;
    text-align: center;
}
.testimonial  .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.testimonial .container .contentBox {
    background: #fff;
    padding: 60px 50px;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}
.testimonial .container .contentBox p {
    font-style: italic;
}
.testimonial .container .contentBox h3 {
    width: 100%;
    text-align: end;
    font-weight: 500;
    color: #3f8ffc;
}
.contact {
    padding: 100px;
    background: #162c3b;
    text-align: center;
}
.imageBox2 {
    background: url(/img/moringa.jpg);
    background-size: cover;
    background-position: center;
    width: 50%;
}
.redbg {
    /** ##### TODO inserire un'immagine monotinta **/
    /**background: url(/img/moringa.jpg) !important;**/
    background-size: cover;
    background-position: center;
    width: 50%;
}
.form .inputBox {
    margin-bottom: 40px;
}
.form .inputBox input, .form .inputBox textarea {
    width: 100%;
    background: transparent;
    box-shadow: none;
    border: none;
    outline: none;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    border-bottom: 2px solid #fff;
}
.form .inputBox input::placeholder, .form .inputBox textarea::placeholder {
    color: #fff;
}
.form .inputBox textarea {
    min-height: 150px;
}
.form .inputBox input[type="submit"] {
    width: 100%;
    background: #fff;
    color: #111;
    cursor: pointer;
    font-weight: 400;
}
.footer {
    background: #162c3b;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer ul li {
    list-style: none;
}
.footer ul li a {
    text-decoration: none;
    display: inline-block;
    margin: 0 10px;
}
.footer ul li a img {
    filter: invert(1);
    max-height: 20px;
}
@media (max-width:991px) {
    .banner {
        padding: 40px;
    }
    .banner header {
        padding: 20px 40px;
    }
    .banner .content h2 {
        font-size: 36px;
    }
    .banner .content p {
        font-size: 16px;
    }
    .about {
        flex-direction: column;
    }
    .about .contentBox,
    .about .imageBox {
        width: 100%;
        padding: 40px;
        min-height: 400px;
        text-align: center;
    }
    .services {
        padding: 40px;
    }
    .services .container {
        justify-content: center;
        margin-top: 20px;
    }
    .services .container .serviceBox {
        margin: 20px;
        width: 250px;
        height: 300px;
    }
    .tech {
        padding: 40px;
        padding-top: 300px;
        justify-content: center;
        flex-direction: column;
    }
    .tech .imageBox {
        margin-top: 40px;
        max-width: 230px;
    }
    .client {
        padding: 40px;
    }
    .client .imageBox {
        justify-content: center;
    }
    .testimonial {
        padding: 40px;
    }
    .testimonial .contentBox {
        padding: 60px 40px;
        max-width: 550px;
        margin-bottom: 40px;
    }
    .testimonial .contentBox:last-child {
        margin-bottom: 0px;
    }
    .contact {
        padding: 40px;
    }
    .footer {
        padding: 20px 40px;
        flex-direction: column-reverse;
        text-align: center;
    }
    .footer ul {
        margin-bottom: 20px;
    }
}
