:root {
    --main-color: #003a8e;
    --text-color: #000;
    --color-gray: #b2a29f;
    --text-color-light: #fff;
}
html {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.06em;
}
body .container{
    max-width: 1000px;
}
 header {
    border-top: 10px solid var(--main-color);
    border-bottom: 5px solid var(--color-gray);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}
img {
    width: 100%;
}
p {
    font-size: 1.1em;
}
span {
    font-size: 1em;
}
a {
    transition: .2s;
}
button, a.button {
    background: var(--main-color);
    color: var(--text-color-light);
    letter-spacing: 0.220em;
    font-size: 1.3em;
    width: 100%;
    max-width: 525px;
    min-height: 64px;
    border: 1px solid var(--main-color);
    transition: .2s;
}
button {
    border-radius: 5px !important;
    width: auto !important;
    padding: 5px 10px;
}
a.button {
    display: inline-block;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: normal;
    padding: 15px 0;
    text-decoration: none;
}
a.button:hover {
    color: var(--main-color);
}
button:hover, a.button:hover {
    background: transparent;
}
.align-center {
    text-align: center;
}
.logo {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
}
.logo img {
    max-width: 190px;
}
.top-info {
    padding: 25px 0;
}
.top-info span, .top-info a{
    width: 100%;
    display: block;
}
.top-info .row > div {
    padding: 0;
}
.top-info .icos {
    text-align: center;
}
.top-info i{
    font-size: 2em;
    padding: 5px 0;
    color: var(--main-color);
}
.top-info span{
    font-size: .7em;
}
.top-info a {
    display: table-caption;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#banner-area {
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: top;
}
.banner-infos {
    margin: 200px auto 0 auto;
    color: #fff;
    text-shadow: 2px 5px 2px #000;
}
.banner-infos h1, .banner-infos h3{
    margin: 30px 0;
}
.page-form {
    border-radius: 5px;
    max-width: 600px;
    margin: 70px auto;
    background: rgba(0, 0, 0, .6);
    padding: 30px;
    box-shadow: 0px 5px 30px #000;
    color: #fff;
    text-align: center;
}
.page-form form p{
    margin: 20px 0;
    font-size: 1.6em;
    text-align: center;
}
.page-form form div{
    margin: 20px 0 ;
}
.page-form form div:last-child{
    margin-bottom: 0;
}
.page-form form input, .page-form form textarea {
    border: 1px solid #7f7f7f;
    height: 42px;    
    padding: 10px;
}
.page-form form textarea{
    height: 100px;
}
.page-form form textarea, .page-form form input {
    width: 100%;
    background: #fff;
    outline: none;
    border-radius: 5px;
}
footer {
    background: var(--main-color);
    border-top: 5px solid var(--color-gray);
    color: #fff;
}
footer .copyright {
    background: #002e72;
    padding: 10px 0;
}
footer a {
    color: #fff;
    text-decoration: none;
    padding: 10px 0;
    display: inline-block;
}
footer a.mail {
    width: auto;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1em;
}
footer .top-footer {
    padding: 20px 0;
}
footer a:hover {
    color: #fff;
    text-decoration: underline;
}
.whatsapp-ico {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 11111111;
}
.whatsapp-ico img{
    width: 70px;
}
@media only screen and (max-width: 768px) {
    footer a.mail, .mail{
        font-size: .7em;
    }
    footer a.mail i{
        font-size: 2em;
    }
}
@media only screen and (max-width: 767px) {
    .banner-infos {
        margin: 60px auto;
    }
    .page-form {
        margin: 60px auto;
    }
}