body{
    font-family: "Montserrat", sans-serif;
    margin: 0;
}
a{
    text-decoration: none;
}
a:visited{
    color:rgba(1,53,110,1.0);
}
header{
    display: flex;
    position: fixed;
    justify-content:center;
    align-items: center;
    color:rgba(1,53,110,1.0);
    width: 100%;
    height: 100px;
    background-color: rgba(255,255,255,1);
    box-sizing: border-box;
}
li{
    list-style: none;
}
.logo{
    height: 75px;
}
header ul{
    display: flex;
    margin: 0;
    padding: 0;
    height: 100px;
}
header li{
    display: flex;
    text-align: center;
    justify-content: center;
    transition: all .3s ease-in-out;
    font-weight: 600;
}
header li:hover{
    cursor: pointer;
    color: rgba(0,166,211,1.0);
}
header a{
    color: rgba(1,53,110,1.0);
}
.pagina{
    display: block;
    padding: 35px 22px 20px 22px;
}
.atual{
    color:rgba(0,166,211,1.0);
}
.apresentacao{
    padding: calc(5% + 100px) 10% 5% 10%;
    background-color: rgba(1,53,110,1.0);
}
.subtitulo, .titulo{
    color: rgba(255,255,255,1);
    text-align: center;
}
.conteudo{
    padding: 5% 15%;
}
.container{
    display:grid;
    grid-template-columns: repeat(auto-fill, minmax(49%,1fr));
    column-gap: 2%;
}
.c_bloco{
    width: 100%;
    display:flex;
    align-items: center;
}
.motivo{
    margin-top:50px;
}

.icone{
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.c_texto{
    height: 100%;
}

.b_contato{
    width: 70%;
    height: 60px;
    margin: 50px 15% 0 15%;
    padding: 0;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    border:0;
    background-color: rgba(1, 53, 110, 1.0);
    color: rgba(255,255,255,1);
}
.b_contato:hover{
    cursor:pointer;
}

.s_contato:invalid {
    color: rgba(115, 115, 115, 1.0);
}
footer{
    padding: 2% 10%;
    background-color: rgba(1,53,110,1.0);
    display: flex;
}
.container_footer{
    width: 90%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%,1fr));
    margin: 0 5%;
}
footer h2{
    width: 100%;
    color:rgba(255,255,255,1);
    text-align: left;
    margin-top: 0;
}

footer a:visited, footer a{
    color: rgba(255,255,255,1);
}

.facebook,.instagram{
    height: 20px;
    width: 20px;
    margin-right: 20px;
    color: rgba(255,255,255,1);
}
.bloco{
    display:flex;
    align-items: center;
    margin-bottom: 0;
}
.list_footer{
    color:rgba(255,255,255,1);
    padding: 0;
    margin: 0 0 30px 0;
}
.list_footer li{
    line-height: 25px;
}
.list_footer li:first-of-type{
    line-height: normal;
}
.menu-toggle{
    display:none;
}
address{
    font-style: normal;
}





@media screen and (max-width:768px){
    .menu{
        display:none;
    }
    header{
        height: auto;
        min-height: 55px;
        padding: 10px 2%;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
    .logo{
        margin-left: 3%;
    }
    .navbar{
        height: auto;
    }
    .menu-toggle{
        display: flex;
        flex-direction: column;
    }
    .bar{
        background-color: rgba(0,166,211,1.0);
        height: 3px;
        width: 30px;
        margin: 4px;
    }
    .ativo{
        width: 100%;
        display: flex;
        flex-direction: column;
        height: auto;
    }
    .pagina{
        width: 100%;
        padding: 35px 22px
    }
    .abertura{
        flex-wrap: wrap;
        justify-content: center;
    }
    .conteudo{
        text-align: center;
        padding: 5% 5%
    }
    h1{
        font-size: 30px;
        margin-bottom: 50px;
        text-align: center;
    }
    h2{
        font-size: 25px;
    }
    h3{
        margin: 0;
    }
    .titulo{
        font-size: 25px;
    }
    .container{
        display:grid;
        width: 100%;
        grid-template-columns: repeat(1, 100%);
        column-gap: 2%;
    }

    .c_bloco{
        flex-direction: column;
        width: 90%;
        margin: 0 5% ;
        justify-content: center;
    }
    .icone{
        margin: 0;
    }
    .c_texto{
        width: 100%;
        height: 50%;
        margin: 0;
    }

    .label_form{
        min-height: 108px;
    }

    footer{
        flex-wrap: wrap;
        padding-top: 5%;
    }
    .container_footer{
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
    .footer_margin{
        margin-bottom: 30px;
    }
}