@font-face{
    font-family: "Montserrat";
    src: url('fonts/Montserrat-light.ttf');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0px;
    padding: 0px;
}

body {
   /* background: rgb(209, 209, 233);*/
}

.wrap{
    width: 100%;
    margin: 0px auto;
}

.header{
    width: 100%;
    height: 155px;
    background-color: white;
    
}

#logo {
    width: 330px;
    height: 100px;
    margin: 0;
    padding: 10px 50px 0px 50px;
    background: white;
    cursor:pointer;
    overflow: hidden;
}

#logo img {
    width: 370px;
    height: 100px;
}

#menu {
	background-color: rgb(222, 60, 60);
    font-family: montserrat;
    font-size: 16px;
    width: 100%;
	height: 50px;
	margin: 0 auto;
	
	
}

#menu ul {
	margin: 0;
	padding: 0px 0px 0px 0px;
	list-style: none;
	line-height: normal;
}

#menu li {
	float: right;
}

#menu a {
	height: 35px;
	display: block;
	float: left;
	margin: 0px 20px 0px 10px;
	padding: 15px 25px 0px 10px;
	text-decoration: none;
	text-align: center;
	font-family: montserrat;
	font-size: 19px;
	font-weight: normal;
	color: white;
	border: none;
}

#menu a:hover, #menu .current_page_item a {
	text-decoration: none;
}

#menu .current_page_item a {
	font-weight: bold;
}

#menu .first a {
	padding-left: 0px;
}

#menu > ul > li{
	transition: all 500ms;
}

#menu > ul > li:hover{
    background-color: #70b231;
    box-shadow: 0px 0px 4px green inset;
}


h1 {
    font-size: 50px;
    color: black;
    font-family: Montserrat;
    text-align: center;
}

h3 {
    font-size: 16px;
    color: black;
    font-family: Montserrat; 
    padding-top: 15px;
    padding-bottom: 20px;
}

.contact_form {
    /*border: 1px solid red;*/
    margin-top: 5px;
    margin-bottom: 0px;
    padding: 10px 40px 30px 40px;
    background: #f7efef;
}
form{
    width: 33%;
  margin: 0 auto;
}
.formulario > form > p{
    font-size: 20px;
    color: green;
    margin: 20px;
}


label, input, textarea{
    display: block;
    font-family: Montserrat;
}

textarea{
    height:100px;
    width:400px;
    border: 2px solid grey;
    border-radius: 5px;
    margin: 5px 0px 20px;
    padding: 10px 0px 10px 10px;
    color: gray;
}

input{
    display: block;
    height: 10px;
    margin: 5px 0px;
    width:400px;
    border: 2px solid grey;
    border-radius: 5px;
    color: grey;
    padding: 10px 0px 10px 10px;
}

button[type="submit"]{
    height: 45px;
    width: 85px;
    margin-left: auto;
    margin-right: auto;
    background: rgb(19, 123, 19);
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 10px;   
}

.aviso {
    font-family: Montserrat;
    padding-top: 8px;
    font-size: 12px;
}

#footer {
    width: 100%;
    height: 350px;
    background: #70b231;
    font-family: Montserrat;
    font-size: 17px;
    color: white;
    overflow: hidden;
}

#footer .wrap > div{
    float: left;
    width: 380px;
    height: 300px;
    margin: 10px;
    padding-left: 166px;
    text-align: none;
    color: white;
}

#footer .wrap > div h5{
    font-size: 30px;
    padding-bottom: 25px;
}

#footer iframe{
    width: 350px;
    height: 205px;
    margin-top: 10px;
    border-radius: 5px;
    border: 5px solid white;
    box-shadow: 0px 0px 5px gray;

