/*====== Basics ======*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

/*====== Banner ======*/

.contact-banner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 600px;
}

.banner {
    display: flex;
    background-position: top;
    background-size: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url('../img/header/banner-4.jpg');

}

.contact-is {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
    width: 100%;
    height: 550px;
    position: absolute;


}

/*====== COntact ======*/

.main-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 50px 0;
}

.contact>h2 {
    font-family: EffraStdHeavy;
    font-size: 38px;
    color: #272F46;
}

.contact-us {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.contact-box {
    display: flex;
    flex-direction: column;
    width: 25%;
}

.contact-box i {
    background: #f3f6f8;
    width: 80px;
    height: 80px;
    text-align: center;
    line-height: 80px;
    font-size: 25px;
    display: table;
    margin: 20px auto;
    border-radius: 4px;
    color: #5091FF;
}

.contact-box>p {
    font-family: Muli;
    font-size: 16px;
    color: #667488;
    text-align: center;
}

.email-us {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 50px;
}

.email-us>input {
    height: 50px;
    border: 1px solid #dde6ef;
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 0;
    background: #fbfdff;
    font-size: 18px;
    color: #445461;
    font-weight: 400;
}

.email-us>textarea {
    border: 1px solid #dde6ef;
    margin-bottom: 10px;
    box-shadow: none;
    border-radius: 0;
    background: #fbfdff;
    font-size: 18px;
    color: #445461;
    font-weight: 400;
}
.form-control:hover,
.form-control:focus {
    border: 1px solid #dde6ef;
    box-shadow: 0 1px 1px rgba(7, 177, 7, .075);
    outline: none;
}

#name,
#email,
#celphone {
    width: 32%;
}

#message {
    width: 100%;
}


.all-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 15px;
}

.expert-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    height: 50px;
    background-color: #5091FF;
    color: white;
    font-family: Muli;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.expert-profile:hover {
    background-color: white;
    color: #5091FF;
    text-decoration: none;

}

.reinvent {
    display: flex;
    width: 100%;
}

.reinvent>img {
    width: 100%;
}


@media(max-width: 600px) {
    .contact-is {
        height: 400px;
    }

    .contact-is>img {
        width: 80%;
    }

}

@media(max-width: 500px) {
    .contact-us{
        justify-content: center;

    }
    .contact-box {
        flex-wrap: wrap;
        width: 80%;
    }

    #name,
    #email,
    #celphone {
        width: 100%;
    }
    
}
