@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:200,300,400,600|Roboto+Slab:400,700');
body{
    background-color: #ffcc00;
}
/*Header*/
header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background:#ffcc00;
    position:fixed;
    top: 0;
    z-index: 99;
}
.logo_head{
    margin: 20px auto;
    height: auto;
    width: auto;
}
.logo{
    width: auto;
    height: 60px;
}
.opciones_head{
    width: 400px;
    height: auto;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.link{
    text-decoration: none;
    display:block;
    width:100%;
    height:100%;
    max-height:65px;
    list-style:none;
    border: none;
    font-family:'Montserrat', sans-serif;
	font-size:12pt;
	font-weight:400;
	color:#000000;
	text-transform:uppercase;
    text-align:center;
}
.link:hover{
    font-weight:600;
}
hr{
    width: 30%;
    height: 1px;
    color: #000000;
    background-color: #000000;
    margin: auto auto 10px auto;
    border: none;
}
.reset{
	padding:0;
	margin:0;
}
.contenedor{
    margin:200px auto;
    width: auto;
    height: auto;
    max-width: 1200px;
}
.cont_contacto{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: box;
	display: flex;
	-ms-flex-pack:justify;
	list-style:none;
	justify-content:space-between;
	flex-direction:column;
	margin:35px 100px;
	width:auto;
	height:auto;
	padding:0;
}
.contacto_form{
	width:auto;
	height:auto;
	margin-left:65px;
	margin-right:65px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: box;
	display: flex;
	-ms-flex-pack:justify;
	list-style:none;
	justify-content:space-between;
	flex-direction:column;
}

.contacto_title{
	width:auto;
	height:auto;
	margin-top:auto;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:30px;
	text-transform:uppercase;
	text-align:center;
}
.contacto_text{
	font-size:15px;
	text-align:justify;
	color:#000;
	width:auto;
	height:auto;
	margin-left:20px;
	margin-right:auto;
	text-decoration:none;
	list-style:none;
	border:0;
}
.contacto_mensaje{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: box;
	display: flex;
	-ms-flex-pack: justify;
	list-style: none;
	justify-content: space-between;
	flex-direction: column;
	height: auto;
	width: auto;
	margin:20px 20px 30px 20px;
}
.contacto_datos{
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: box;
	display: flex;
	-ms-flex-pack:justify;
	list-style:none;
	justify-content:space-between;
	flex-direction:column;
	height:auto;
	width:auto;
	margin:0;
}
fieldset {
	border: medium none !important;
	margin: 0 0 10px;
	padding: 0;
	width:auto;
}
.textarea{
	width:auto;
	border:1px solid #ffcc00;
	background:#ffcc00;
	margin-left:0;
	margin-right:0;
	margin-bottom:5px;
	padding:0 0 0 5px;
	height:68px;
	max-height:150px;
}
.input{
	width:auto;
	border:1px solid #ffcc00;
	background:#ffcc00;
	margin-left:0;
	margin-right:0;
	margin-bottom:5px;
	padding-left:5px;
	height:25px;
    color: #000;
}
.boton_enviar{
	width:80px;
	height:29px;
	border:solid #000 3px;
	text-decoration:none;
	font-family: 'Montserrat', sans-serif;
	color:#000;
    background-color: #ffcc00;
	font-size:12px;
	font-weight:400;
	text-transform:uppercase;
	margin-right:0;
	margin-left:auto;
	margin-bottom:0;
	padding:5px;
	cursor:pointer;
}
.boton_enviar:hover{
	border:solid #000 3px;
	background-color:#daae00;
}
.input:hover{
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #000;
}
.textarea:hover{
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #000;
}
.linea{
    width: auto;
    height: 1px;
    max-width: 1200px;
    margin: 2px;
    background-color: #000;
}
/*Fuentes*/
h1{
	margin:0;
	height:auto;
	width:auto;
	font-family:'Montserrat', sans-serif;
	font-size:20pt;
	font-weight:600;
	color:#000000;
	text-transform:uppercase;
    text-align:center;
}
p{
    margin: 0;
    height: auto;
    width: auto;
    font-family:'Roboto Slab', serif;
    font-size: 13px;
    font-weight: 200;
    color: #000000;
    text-transform: none;
    text-align: justify;
}