/* -------------------Kleuren----------------- */
/* Blauwe kleur: 	#4bcaff */
/* Grijs: 		#4a545c (in navbar deels doorzichtig)  */

* {
    margin: 0;
    padding: 0;
}

body {
    color: #FFF;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.wrapper {
    width: 60%;
    margin: 0 auto;
}

/* -------------------HEADER----------------- */

header {
    background-color: #4a545cbe;
    padding: 40px 0;
    position: fixed;
    left: 0;
    right: 0;
}

header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}

/* header .wrapper h1{
    text-transform: uppercase;
} */

header .wrapper h1 span {
    color: #4bcaff;
}

header .wrapper nav {
    /* width: 45%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .wrapper nav a {
    color: white;
    text-decoration: none;
    padding: 5px 15px;
    font-weight: bold;
    border: 3px solid #ffffff00;
}

header nav .active {
    color: #4bcaff;
}

header nav a:hover {
    border: 3px solid #4bcaff;
    color: #4bcaff;
}

header .icon {
    display: none;
}

/* -------------------MAIN----------------- */
.header-banner {
    background-image: url(../img/Hero.png);
    background-position: center;
    background-size: cover;
}

.banner h2 {
    font-size: 3rem;
    margin: 10px;
    background-color: #4a545cbe;
    font-weight: 100;
    text-align: center;
}

.banner-text {
    padding: 240px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.service-background {
    background-color: #4bcaff;
    padding: 70px;
}

.services,
.testimonials,
.contact-wrapper,
.wrapper-footer {
    margin: 0 auto;
    width: 60%;
}

.services h2,
.testimonials h2,
.contact h2 {
    text-transform: uppercase;
    font-weight: 100;
    font-size: 2rem;
}

.service-wrapper {
    display: flex;
    justify-content: space-between;
}

.service-box {
    padding: 15px 15px 15px 0;
}

.line {
    border-top: 3px solid #FFF;
    width: 65px;
    margin-bottom: 10px;
}

.service-box img {
    padding: 10px 10px 10px 0;
}

.service-box h3,
.testimonials h3 {
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonials {
    color: #4a545c;
    padding: 70px
}

.testimonials .line {
    border-top: 3px solid #4a545c;
}

.testimonials-top {
    display: flex;
    justify-content: space-between;
}

.testimonials .quote {
    font-size: 2rem;
    font-family: "Secular One", sans-serif;
}

.testimonials .quote-text {
    font-weight: 100;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials .author {
    color: #4bcaff;
    font-weight: 800;
}

.contact {
    background-image: url(../img/Contact_photo.png);
    background-position: center;
    background-size: cover;
    padding: 70px;
    margin-bottom: 120px;
}

.form-item {
    display: flex;
    flex-direction: column;
}

.form-item label {
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.form-item input,
.form-item textarea {
    padding: 15px;
    background-color: #ffffff00;
    border: 3px solid #FFF;
    margin-bottom: 20px;
    color: #FFF;
}

.form-top {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.form-left {
    width: 50%;
    padding: 0 30px 0 0;
}

.form-left input {
    width: 80%;
    height: 30px;
}

.text-right {
    width: 50%;
    padding: 0 0 0 30px;
    margin-top: 20px;
}

.text-right p {
    margin-bottom: 20px;
}

.form-item textarea {
    height: 170px;
}

.submit input {
    background-color: #4bcaff;
    color: #FFF;
    border: none;
    padding: 20px 120px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 20px;
}

/* -------------------FOOTER----------------- */
footer {
    background-color: #353F47;
    padding: 60px 0;
    color: #4a545c;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
}

footer a {
    text-decoration: none;
    padding: 5px 15px;
    font-weight: bold;
    color: #4a545c;
    text-transform: uppercase;
}

.wrapper-footer {
    display: flex;
    justify-content: space-between;
}

.border-right {
    border-right: 2px solid #4a545c;
}

/* ----------MEDIA QUERIES----------- */
@media only screen and (max-width: 1600px) {
    .banner-text h2 {
        font-size: 2rem;
    }

    .services,
    .testimonials,
    .contact-wrapper,
    .wrapper-footer {
        width: 80%;
    }
}

@media only screen and (max-width: 1200px) {
    header .wrapper nav a {
        padding: 5px 10px
    }
}

@media only screen and (max-width: 1000px) {
    header .wrapper nav a {
        display: none;
    }

    header .icon {
        display: block;
    }

    header .icon svg {
        width: 40px;
        height: 40px;
    }

    .mini-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    header .wrapper {
        margin: 0 auto;
    }

    .service-wrapper {
        flex-direction: column;
    }

    .form-top{
        flex-direction: column;
    }

    .form-left, .text-right{
        width: 100%;
        padding: 0;
    }

    .text-right {
        margin-bottom: 20px;
    }

    .form-item input{
        width: 95%;
    }

    .service-background, .contact{
        padding: 24px;
    }
}