@charset "utf-8";
/* CSS Document */

/*////// GENERAL ///////*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body{
	background:#E5E1DF;
	font-family: "dm-sans", sans-serif;
    font-weight: 700;
    font-style: normal;
	height: 100vh;
	
	
}

h1{
	padding-bottom: 20px;
}

h2{
	color: #272E66;
	font-size: 15pt;
	padding: 20px;
	width: 80%;
	text-align: center;
	margin: auto;
}

a{
	color: #fff;
}

/*////// CABECERA ///////*/


header {
	
	width: 100%;
	min-height:  65px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  /*  background: #EDF9EE; 
	background:#403931; */
	border-bottom: 1px solid #000;
	position: relative;
	z-index: 100;
	background: rgba(0,0,0,.8);
}

.logotipo{
/*	width: 298px;
	height: 56px; */
	margin-left: 30px;
	padding: 5px;
}

nav{
	margin-right: 90px;
	
}

header ul {
	position: relative;
	
}

header ul li {
	list-style: none;
	position: relative;
	float: left;
	color: #fff;
}

header ul li a {
	
	font-size: 12pt;
	padding:  10px 20px ;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	
}

header ul li a:hover {
	
	
	color: #fff;
	transition: 0.2s;
	
	border-bottom: 1px solid #fff;
}

header ul li ul {
	position: absolute;
	border-radius: 15px;
	left: 0;
	width: 200px;
	
	display: none;
	
}

header ul li:hover ul {
	
	display: block;
	height: 335px;
	
	
}

header ul li:hover ul::-webkit-scrollbar {
	width: 10px;
	background: #A3A3A3;
	
}

header ul li:hover ul::-webkit-scrollbar-thumb{
	border: 1px solid #272E66;
	background: #272E66;
	border-radius: 10px;
}

header ul li ul li {
	position: relative;
	width: 100%;
	
	background: rgba(0,0,0,.8);
}

header ul li ul li a {
	
	font-size: 11pt;
	transition: 0.5s;
}

header ul li ul li a:hover {
	
	
}


/*////// FORMULARIO ///////*/

.caja_modal{
	width: 90%;
	height: auto;
	
	margin: 100px auto 10px;
	display: flex;
	justify-content: center;
	padding-bottom: 40px;
}

form{
	width: 600px;
	border: solid 1px #878786;
	border-radius: 10px;
	background: #ffffff;
	
}

.contenedor_btnRegreso{
	width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.contenedor_btnRegreso p{
	margin-left: 20px;
	font-size: 12pt;
	
}

.caja_btn_regreso{
	border: 1px solid #ffffff;
	background-color: #019F22;
	border-radius: 10px;
	width: 130px;
	height: 30px;
	margin: 10px;
	color: white;
	cursor: pointer;
	padding: 5px;
	text-decoration: none;
}

.etiqueta{
	color:  #535151;
	font-size: 14pt;
	font-family: changeling-neo-stencil, sans-serif;
	font-style: normal;
	font-weight: 300;
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
	padding: 5px 12px 9px 12px;

}

.caja_imput{
	border:none;
	height: 30px;
	font-size: 13pt;
	background: none;
	border-bottom: solid 1px #7A7A7A;
	color:  #535151;
	
}

.cont_btn_guardar{
	width: 150px;
	margin: auto;
	padding: 10px;
}

.caja_btn{
	border: 1px solid #ffffff;
	background-color: #0b5ed7;
	border-radius: 10px;
	width: 130px;
	height: 30px;
	color: white;
	cursor: pointer;
	padding: 5px;
	text-decoration: none;
}

.dato_correcto{
	background-color: #1F9A01;
	text-align: center;
	font-size: 11pt;
	padding: 10px;
	color: white;
}
	
.dato_incorrecto{
	background-color: red;
	border-radius: 15px;
	font-size: 12pt;
	padding: 10px;
	color: white;
	margin: 10px auto;
	width: 60%;
	
}

.dato_incorrecto li{
	margin-left: 25px;
}

.estilo_select{
	
	height: 40px;
	font-size: 13pt;
	width: 100%;
	margin-top: 10px;
}

.contMensaje{
	width: 60%;
	margin:14px auto;
    
}

.estilo_mensaje{
	resize: none;
	width: 100%;
	background: none;
	color: rgba(31,31,31,.7);;
	border: solid 2px rgba(31,31,31,.7);;
	margin: auto;
	padding: 5px;
	border-radius: 20px;
	font-size: 12pt;
}


/*/////////////////// CUADRO AGRADECIMIENTO ///////////////////*/


.contenedorG{
	width: 100%;
	height: 500px;
	flex-direction: column;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
/*	background: #000; */
}

.contenedorG h2{
	padding: 10px;
	font-size: 16pt;
	text-align: center;
}

.contenedorG p{
	padding: 10px;
}

.contenedorG a{
	border: 2px solid #484848;
	width: 210px;
	height: 40px;
	text-align: center;
	margin: 7px;
}

.contenedorG a:hover{
	background: #1f1f1f;
	color: #fff;
}


/* DISEÑO PARA TABLET */

@media (min-width:481px) and (max-width: 768px){
	
	/*////// CABECERA ///////*/
	
.logotipo {
    margin-left: 10px;
	
}
	
header{
		padding: 0px 20px;
	background:rgba(0,0,0,.8);
	}
	
header nav{
		position: absolute;
		width: 100%;
		top: 96px;
		left: 0;
		background: rgba(0,0,0,.8);
		display: none;
		z-index: 225;
		
	}
	
header.active nav{
		display: initial;
	}
	
header nav ul li a {
		color: #E6AB4E;
	}
	
header nav ul li  a:hover{
		background: none;
		
	}
	
header nav ul li{
		
		width: 100%;
		border: solid 1px rgba(0, 0, 0, 0.2);
	}
	
header nav ul li:hover{
		
		
	}
	
header nav ul li ul{
		position: relative;
		width: 100%;
		height: 200px;
		left: 0;
		background: none;
		z-index: 225;
	}
	
header nav ul li ul li {
		background: none;
		
	}
	
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li ul li a:hover{
		background: none;
		
	}
	
header nav ul li:hover ul{
		
		height: 100px;
		
	}
	
.menuToggle{
		position: relative;
		width: 40px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		
	}
	
.menuToggle::before {
		content: '';	
		position: absolute;
		width: 100%;
		height: 6px;
		background:#E6AB4E;
		transform: translateY(-12px);
	    box-shadow: 0 12px #E6AB4E;
		transition: 0.5s;
		border-radius: 5px;
	}
	
.menuToggle::after {
		content: '';	
		position: absolute;
		left: 0;
		width: 70%;
		height: 6px;
		background: #E6AB4E;
		transform: translateY(12px);
		transition: 0.5s;
		border-radius: 5px;
	
	}
	
header.active .menuToggle::before {
		transform: rotate(45deg);
		box-shadow: 0 0px #fff;
	}
	
header.active .menuToggle::after {
		transform: rotate(315deg);
		width: 100%;
	}	
	
}


/* DISEÑO PARA MOVIL */

@media (min-width:0px) and (max-width: 480px){
	
/*////// CABECERA ///////*/		

.logotipo {
    margin-left: 0px;
	width: 140px;
	}
	
header{
		padding: 0px 20px;
	background:rgba(0,0,0,.8);
	}
	
header nav{
		position: absolute;
		width: 100%;
		top: 77px;
		left: 0;
		background: rgba(0,0,0,.8);
		display: none;
		z-index: 225;
		
	}
	
header.active nav{
		display: initial;
	}
	
header nav ul li a {
		color: #E6AB4E;
	}
	
header nav ul li  a:hover{
		background: none;
		
	}
	
header nav ul li{
		
		width: 100%;
		border: solid 1px rgba(0, 0, 0, 0.2);
	}
	
header nav ul li:hover{
		
		
	}
	
header nav ul li ul{
		position: relative;
		width: 100%;
		height: 200px;
		left: 0;
		
		z-index: 225;
	}
	
header nav ul li ul li {
		background: none;
		
	}
	
header nav ul li ul li a{
		margin-left: 10px;
		
	}
	
header nav ul li ul li a:hover{
		background: none;
		
	}
	
header nav ul li:hover ul{
		
		height: 100px;
		
	}
	
.menuToggle{
		position: relative;
		width: 40px;
		height: 50px;
		cursor: pointer;
		display: flex;
		justify-content: center;
		align-items: center;
		
	}
	
.menuToggle::before {
		content: '';	
		position: absolute;
		width: 100%;
		height: 6px;
		background:#E6AB4E;
		transform: translateY(-12px);
	    box-shadow: 0 12px #E6AB4E;
		transition: 0.5s;
		border-radius: 5px;
	}
	
.menuToggle::after {
		content: '';	
		position: absolute;
		left: 0;
		width: 70%;
		height: 6px;
		background: #E6AB4E;
		transform: translateY(12px);
		transition: 0.5s;
		border-radius: 5px;
	
	}
	
header.active .menuToggle::before {
		transform: rotate(45deg);
		box-shadow: 0 0px #fff;
	}
	
header.active .menuToggle::after {
		transform: rotate(315deg);
		width: 100%;
	}	
	

/*////// FORMULARIO ///////*/	
	
.dato_incorrecto{
	
	width: 80%;
	
}
	
.contMensaje {
    width: 80%;
    
}	
	
	
}






