body,html{
  overflow-x:hidden;
}
body {
 font-family: 'Open Sans', sans-serif;
  overflow-x: hidden !important;
}

ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

a{ 
  text-decoration: none;
  color: #2f2f2f;
  
}
a:focus{
  outline: none;
  text-decoration: none;
}
h1,h2{
	font-family: 'Montserrat', sans-serif; 
}
h3,h4,h5,h6{
	font-family: 'Varela', sans-serif;	
}

/*----------------- CONTATO SECCION ------------*/
/*--------------------*/
/* CONTACT US SECTION */
/*--------------------*/
.contact_content {
  display: inline;
  float: left;
  margin-top: 50px;
  width: 100%;
  padding-bottom: 10px;
}

.contact_form{
	float: left;
	display: inline;
	width: 100%;
}
.contact_form input[type="text"],.contact_form input[type="email"]{
	margin-bottom: 20px;
	border-radius: 5px;
}

/*----- Botão enviar -------*/
.submit_btn {
  border: 1px solid #454545;
  color: #fff;
  margin-top: 15px;
  padding: 5px 20px;
  font-size: 50px;
  font-weight: 100;
  text-transform: uppercase;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.submit_btn:hover{
	background-color: #fff;
}
.form-control{
  display: block;
  width: 20;
  height: 60px;
  padding: 6px 10px;
  font-size: 50px;
  line-height: 1.10;
    
/*----- Cor texto do preenchimento dos formularios -------*/
  color: #454545;
/*----- Cor do preenchimento dos formularios  -------*/    
  background-color: #fff;
  background-image: none;
  border: 2px solid #454545;
  border-radius: 0px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  outline: 0;  
  box-shadow:none; 
}
.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999;
}
.form-control::-webkit-input-placeholder {
  color: #999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eee;
  opacity: 1;
}
textarea .form-control {
  height: auto;
}

