/* 
font-family: 'Abril Fatface', cursive;
font-family: 'Raleway', sans-serif;
*/

.display-maximo {
	display: none;
}

.display-grande {
	display: none;
}

.display-mediano {
	display: none;
}

.display-chico {
	display: none;
}

body, html{
	width:100%;
	height:100%;
	scroll-behavior: smooth;
	background: rgb(255,255,255);
	background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 34%, rgba(20,87,113,1) 100%);
}

input:focus {
    outline:none;
}

/* PRE LOADER */

*,*:after, *:before{
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#contenedor_carga{
	background-color: #181818;
	height: 100%;
	width: 100%;
	position: fixed;
	-webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#carga{
	border: 6px solid #ccc;
	border-top-color: #666;
	border-top-style: #fff;
	height: 40px;
	width: 40px;
	border-radius: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	-webkit-animation: girar 1.5s linear infinite;
	-o-animation: girar 1.5s linear infinite;
	animation: girar 1.5s linear infinite;
}

@keyframes girar {
	from{ transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}





.brillo { 
	transition: opacity 500ms;
  	opacity: 1;
}

.brillo:hover { 
	transition: opacity 500ms;
  	opacity: 0.5;
}







/* MENU */

#btn-menu { 
	height:57px; 
	width:57px; 
	position:fixed; 
	right:0px;
	top:0px;
	text-align:center;
	z-index:15;
}

#logo-menu { 
	position: relative; 
	margin-bottom: 60px;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index: 25;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  width: 100%;
  height: 100%;
  top: 0px;
  right: 0px;
  position: absolute;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  transition: all 500ms;
}

.cerrar { 
	height:57px; 
	width:57px; 
	position:absolute;
	right:0px;
	top:0px;
	text-align:center;
}

ul, li { 
	list-style: none;
	margin: 10px 0;
}

.btn-menu{
	font-family: 'Archivo', sans-serif;
	font-weight: 400;
	font-size: 12pt;
	color: #ffffff;
	text-decoration: none;
	background-color: transparent;
	padding: 5px 10px;
	transition: 0.3s;
	border-radius: 15px;
}

.btn-menu:hover{
	color: #222;
	background-color: #fff;
}

#botonera{
	height: 50%;
	width: 50%;
	top: 25%;
	left: 25%;
	position: absolute;
	text-align: center;
}

/* FIN MENU */