* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 10px;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
}

html,
body {
    width: 100vw;
    max-width: 100%;
    height: 100%;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10% 31px;
    width: 100%;
    background-color: #DCDCDC;
}

#main {
    margin: 0 auto;
    width: 1024px;
}

#footer {
    height: 90px;
    background-color: #DCDCDC;
    display: flex;
    justify-content: center;
    align-items: center;
}

#footer img {
    width: 130px;
}

#logo2 {
    max-width: 160px;
}

.logo {
    max-width: 150px;
}

#form-background {
    position: relative;
    height: 560px;
    width: 100%;
    background-image: url(../images/bg-form.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#form-container {
    width: 39.06%;
    min-width: 400px;
    height: calc(100% + 28px);
    position: absolute;
    right: 30px;
    top: -14px;
    box-shadow: 2px 2px 5px 0px rgb(117 117 117);
}

#form-container h2 {
    font-weight: normal;
    width: 100%;
    height: 16.15%;
    background-color: #D2D2D2;
    padding: 25px 15px;
    font-size: 1.8em;
}

#form {
    width: 100%;
    height: calc(100% - 16.15%);
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 35px 15px;
}

#form * {
    font-size: 1.4em;
}

#form label {
    color: #525252;
}

#form input {
    padding: 15px 10px;
    margin-bottom: 40px;
    outline: none;
    border: 1px solid #ccc;
}

#form button {
    height: 50px;
    background-color: #033C50;
    border: none;
    color: white;
    font-size: 2.4em;
    margin-bottom: 22px;
}

#form span {
    color: #525252;
}

#chamada {
    width: 100%;
    height: 184px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #29526D;
}

#chamada img {
    width: 64px;
    margin-bottom: 10px;
    position: relative;
    top: -30px;
}

#chamada h2 {
    font-size: 22px;
    color: white;
    margin-bottom: 20px;
}

#chamada p {
    font-size: 1.8em;
    color: white;
}

#mosaico {
    width: 100%;
}

.mosaico-item {
    width: 100%;
    display: flex;
}

.mosaico-image {
    width: 60%;
    background-position: center;
    background-size: cover;
}

.mosaico-item p {
    font-size: 1.6em;
    color: white;
    line-height: 22px;
    vertical-align: center;
    padding: 90px 40px;
    width: 40%;
    background-color: #4683AB;
    line-height: 22px;
}

.mosaico-item:nth-last-of-type(odd) {
    flex-direction: row-reverse;
}

.mosaico-item:nth-last-of-type(even) {
    flex-direction: row;
}


@media screen and (max-width:1024px) {
    #main {
        width: 100%;
    }

    #form-container {
        position: static;
        margin: 0 auto;
    }

    #form-background {
        height: auto;
        padding: 80px 0;
    }
}

@media screen and (max-width:770px) {
    .mosaico-item {
        flex-direction: column !important;
        width: 100%;
    }

    .mosaico-image {
        height: 500px;
    }

    .mosaico-item p,
    .mosaico-image {
        width: 100%;
    }
}

@media screen and (max-width:400px) {
    #form-container {
        min-width: 0;
        width: 90%;
    }

    #header {
        flex-direction: column;
    }

    #logo1 {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:220px) {
    * {
        word-wrap: break-word;
        max-width: 100% !important;
    }
}

@media screen and (max-width:100px) {
    * {
        padding: 0 !important;
    }
}