@import url('https://fonts.googleapis.com/css?family=Montserrat');

/* Responsivo */
@media only screen and (max-width: 500px) {

    #footer p {
        font-size: 10px!important;
         background-color: #001B0F;
    }

}

@media only screen and (max-width: 800px) {
    #logo {
        width: 55%!important;
    }

    input[type="text"] {
        width: 80%!important;
        margin: 6px;
    }

    input[type="submit"] {
        width: 35%!important;
        margin: 15px;
        font-size: 14px!important;
    }
    
    textarea[type="text"] {
        width: 80%!important;
        margin: 6px;
    }   

}

@media only screen and (max-width: 1000px) {
    
    body{
        background: none!important;
    }

    #footer {
        width: 100%!important;
         background-color: #001B0F;
    }
}

html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0px; 
}


/*Tela normal */
body{

    /* Location of the image */
    background-image: url("../../images/fundo_brbrokers.png");
    
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    
    /* Background image doesn't tile */
    background-repeat: no-repeat;
    
    /* Background image is fixed in the viewport so that it doesn't move when 
        the content's height is greater than the image's height */
    background-attachment: fixed;
    
    /* This is what makes the background image rescale based
        on the container's size */
    background-size: cover;
    
    /* Set a background color that will be displayed
        while the background image is loading */
    background-color: white
      
}

h2, h3, p{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

/*Rodapé */

#footer {
    /*background-color: #001B0F;*/
    position: fixed;
    left: 0;
    bottom: 0;
    width: 40%;
    text-align: center;
    color: white;
    padding-bottom: 16px;
    padding-right: 6%;
    padding-top: 0px;
    
}

#footer p {
    font-size: 14px;
    display: inline;
}

#footer ul {
    list-style-type: none;
    display: inline;
    text-align: center;
}

#footer li {
    display: inline;
}

.icon {
    width: 3%;
}

/* Formulário */

#contato {
    padding-top: 10%;
    border-radius: 30%;
    background-color:white;   
    text-align: center;
}

#logo {
    width: 45%;
}

.social {
    padding-right: 8%;
}

input[type="text"] {
    border-radius: 5px;
    border: 1px solid #00B380;
    width: 60%;
    display: inline-block;
    margin: 6px;
}

input[type="submit"] {
    background-color: #00B380;
    border: none;
    border-radius: 5px;
    color: white;
    width: 25%;
    margin: 6px;
    font-size: 10px;
}

textarea[type="text"] {
    border-radius: 5px;
    border: 1px solid #00B380;
    width: 60%;
    display: inline-block;
    margin: 6px;
}

.enviar {
    display: inline-block;
    width: 60%;
    text-align: right;
}

#sendmessage {
    color: green;
    border:1px solid green;
    display:none;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#errormessage {
    color: darkred;
    display:none;
    border:1px solid darkred;
    text-align:center;
    padding:15px;
    font-weight:600;
    margin-bottom:15px;
}

#sendmessage.show, #errormessage.show, .show {
    display:block;
}