/* CSS layout */

@font-face {
    font-family: Raleway_Regular;
    src: url(fonts/Raleway-Regular.ttf);
  }
  @font-face {
    font-family: Raleway_Bold;
    src: url(fonts/Raleway-Bold.ttf);
  }
  @font-face {
    font-family: Raleway_SemiBold;
    src: url(fonts/Raleway-SemiBold.ttf);
  }
#cabecalho {
    background-color: #35c5f2;
    height: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#logo {
    background-color: white;
    height: 240px;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#title {
    background-color: #35c5f2;
    height: 190px;
    width: 1200px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
#white_banner {
    background-color: white;
    height: 70px;
    width: 1200px;
    margin: 0 auto;
}
body {
    margin: 0;
}
h1 {
    font-family: Raleway_Regular;
    font-size: 32px;
    color: white;
}
#corpo {
    background-color: #eeeff0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
#corpo_background {
    background-color: white;
    width: 1200px;
    text-align: center;
    margin: 0 auto;
}
#introducao {
    background-color: white;
    width: 1060px;
    text-align: left;
    margin: 0 auto;
    line-height: 25px;
}
p {
    font-family: Raleway_Regular;
    font-size: 16px;
    color: #666666;
    display: inline;
}
#formulario {
    background-color: white;
    width: 1060px;
    text-align: left;
    margin: 0 auto;
}
h2 {
    font-family: Raleway_Bold;
    font-size: 16px;
    color: #666666;
    margin-bottom: 15px;
}
hr {
    width: 1060px;
    height: 3px;
    color: #74b94e;
    background-color: #74b94e;
    border: none;
    margin-bottom: 30px;
}
h3 {
    font-family: Raleway_SemiBold;
    font-size: 16px;
    color: #666666;
    display: inline;
    margin-bottom: 10px;
}
input {
    background-color: #eeeff0;
    border: none;
    font-family: Raleway_Regular;
    color: #666666;
}
h4{
    font-family: Raleway_SemiBold;
    font-size: 16px;
    display: inline;
    color: #d04242;
}
h5{
    font-family: Raleway_Regular;
    font-size: 12px;
    display: inline;
    color: #acabab;
}
h6{
    font-family: Raleway_Bold;
    font-size: 16px;
    color: #74b94e;
    margin-bottom: 30px;
}
h7{
    font-family: Raleway_Bold;
    font-size: 16px;
    color: #666666;
    display: inline;
}
h8{
    font-family: Raleway_Regular;
    font-size: 16px;
    color: #666666;
    display: inline;
}
a:link{
    color: #74b94e;
    text-decoration: none;
}
a:visited{
    color: #74b94e;
    text-decoration: none;
}
a:hover{
    color: #666666;
    text-decoration: none;
}
a[href^=tel]{
    font-family: Raleway_Bold;
    font-size: 16px;
    color: #666666;
    text-decoration:none;
}
input[type=checkbox] + label{
    display: block;
    margin-bottom: 15px;
}
input[type=checkbox]{
    display: none;
}
input[type=checkbox] + label:before{
    content: "✔";
    display: inline-block;
    width: 24px;
    height: 24px;
    padding-bottom: 0.3em;
    margin-right: 0.3em;
    vertical-align: middle;
    color: transparent;
    background-color: #eeeff0;
}
input[type=checkbox]:checked + label:before{
    background-color:#666666;
    color: #fff;
}
select{
    background-color: #eeeff0;
    border: none;
    font-family: Raleway_Regular;
    color: #666666;
}