body{
 	font-family: "Lato", sans-serif;  
}
.wrapper {
	width: 100%;
	height: auto;	
	background-image: url("../images/banner_contacto1.png");
	background-size: cover;  
	background-position: center;
	background-repeat: no-repeat;	
}
main{ 
	width: 100%; 
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;	
}
.contacto_form{
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
}
.contacto_text{
	width: 50%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	color: var(--color-secundario);
	padding: 10px;
}
.logo_container_contacto{
	width: 250px;
	height: 250px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.logo_container_contacto img{
	width: 100%;
}
.contacto_text h2{
	width: 100%;
	text-align: center;
	font-size: 30px;
}
.contacto_text p{
	width: 100%;
	font-size: 20px;
	text-align: justify;
}
.contacto_text p:nth-child(3){
	text-align: center;
}
.contacto_formulario{
	width: 50%;
	height: 100vh;
	padding: 30px;
}
.form{
	width: 100%;
	padding: 10px;
	background-color: var(--color-secundario);
	display: flex;	
	flex-direction: column;
	border-radius: 10px;
}
.row_container{
	width: 100%;
	display: flex;
	gap: 10px;
}
.column_container{
	width: 100%;
}
.input_container{
	width: 100%;
	display: flex;
	flex-direction: column;
}
.input{
	height: 30px;
	width: 100%;
	border: none;
	border-radius: 5px;
	text-transform: uppercase;
	padding-left: 5px;
}
input[name="aspmai"] {
  text-transform: initial;
}
.input_container label{
	color: var(--color-textoblanco);
	font-size: 20px;	
}
.textarea{
	outline: none;	
	width: 100%;
	height: 200px;
	resize: none;
	border-radius: 5px;
	padding: 5px;
	border: none;
	text-transform: uppercase;
}
.button{
	margin-top: 15px;
	width: 100px;
	padding: 5px 10px;
	border: none;
	border-radius: 5px;	
}
.submit{
	background-color: var(--color-principal);
	color: var(--color-textoblanco);
}
.info_text{
	margin: 0;
	color: #FFFFFF;
}
/*/////////////////////////////////////////////// MODAL ////////////////////////////////////////////*/
.modal_contact{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .4);
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
}
.modal_window{
	width: 40%;
	height: 40%;
	background-color: #FFFFFF;
}
.modal_head{
	width: 100%;
	height: 40px;
	background-color: var(--color-principal);
	position: relative;
}
.modal_close_icon{
	position: absolute;
	top: calc(50% - 15px);
	right: 10px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	border-radius: 5px;
	background-color: beige;
	border: solid 1px #000000;
	padding: 10px;
}
.modal_close_icon img{
	width: 100%;
	height: auto;
}
.modal_content{
	width: 100%;
	padding: 15px;
	height: calc(100% - 50px);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex-direction: column;
}
#respuesta{
	font-size: 17px;
}
/*//////////////////////////////////////////// RESPONSIVE ////////////////////////////////////////////*/
@media screen and (max-width: 1050px){
	.row_container{
		flex-direction: column;
	}
	.contacto_form{		
		height: 120vh;
	}
}
@media screen and (max-width: 767px){
	.contacto_form{
		flex-direction: column;
		height: 190vh;
	}
	.contacto_formulario{
		width: 100%;
		padding: 10px;
	}
	.contacto_text{
		height: auto;
		width: 100%;
	}
	.contacto_text{
		color: var(--color-textonegro);
	}
	.wrapper {			
		background-image: url("../images/banner_contacto_res.png");		
	}
	.modal_window{
		width: 95%;
	}
}