@import url(fontawesome-all.min.css);
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300italic,600italic,300,600");

/*
	Dimension by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/


/* Overlay de Exhibiciones */
.overlay-exhibiciones {
	display: flex;
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100vw;
  	height: 100vh;
  	justify-content: center;
  	align-items: center;
	flex-direction: column;
  	z-index: 10000;
  	opacity: 0;
  	pointer-events: none;
	overflow-y: auto;
  	transition: opacity 0.3s ease-in-out;
	background: rgba(0, 0, 0, 0.7);
}

/* Contenedor que envuelve imagen + caption */
.overlay-exhibiciones .media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; /* separación fija entre imagen y caption */
}

/* Evitar que el contenedor aporte fondo/padding blanco */
.overlay-exhibiciones .overlay__inner {
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 20px; /* ajusta para dejar espacio a caption y miniaturas */
}

/* Imagen centrada dentro del media-container */
.overlay-exhibiciones .media-container img {
  	display: block;
  	max-width: 100%;
  	height: auto;
	max-height: 80vh;
  	margin: 0 auto;
  	border: 15px solid #FFF; /* marco blanco si lo quieres */
  	box-sizing: border-box;
}

/* Imagen ampliada */
.overlay-exhibiciones .media-container img,
.overlay-exhibiciones .media-container video,
.overlay-exhibiciones .media-container iframe {
    max-width: 100%;
    max-height: 85vh; /* deja espacio para caption + miniaturas */
    display: block;
}

.overlay-exhibiciones__content {
    flex: 1;  /* área de la imagen/video */
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: calc(100% - 120px); /* deja espacio para miniaturas */
}

.overlay-exhibiciones.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-exhibiciones.closing {
	animation: fadeOut 0.6s ease-in-out;
}

.overlay-exhibiciones__inner {
  	flex-direction: column;
	align-items: center;
  	position: relative;
	top: 0;
	left: 0;
	margin: 0 0 80px 0;
  	padding: 20px;
  	max-width: 100%;
	display: flex;
	background: #FFFFFF;	
	transform: scale(0.8);
	overflow: visible !important;
  	transition: transform 0.3s ease-in-out;
}

/* Ajuste imágenes al viewport */
.overlay-exhibiciones img {
    max-width: 100%;
    max-height: 90vh;   /* se adapta al alto de la ventana */
    height: auto;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain; /* evita deformaciones */
}

.overlay-exhibiciones video,
.overlay-exhibiciones iframe {	
    width: 40rem;
    height: 50vh;
    display: block;
    margin: 0 auto;
  	object-fit: contain;
	/* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); */
}

.overlay-exhibiciones.open .overlay-exhibiciones__inner {
  transform: scale(1); /* Escala normal */
  opacity: 1; /* Completamente visible */
}

.overlay-exhibiciones.closing .overlay-exhibiciones__inner {
  transform: scale(0.8); /* Reducir antes de cerrar */
  opacity: 0; /* Desvanecerse */
}


/* Pie de foto */
.overlay-exhibiciones .caption {
	font-size: 1.2rem !important;
	display: inline-block;
    color: #FFFFFF;
    text-align: center;
	max-width: 100%;
	/* max-width: 90%; */
	padding: 8px;
    line-height: 1.4;
    word-wrap: break-word;
    white-space: normal;
    position: relative;
	bottom: 10px;
	z-index: 1;
    box-sizing: border-box;
    background-color: rgba(0, 0, 0, 1);
}

/* Oculta el caption fijo que está en el HTML */
#captionExhibiciones {
  display: none !important;
}

/* Botón "prev" */
.overlay-exhibiciones__inner .prev {
	width: 40px;
  	height: 40px;
  	position: absolute;
  	top: 50%;
  	left: calc(0% - 60px);
	transform: translateY(-50%);
  	background: url('../images/icons/prev_btn.svg') no-repeat center;
	background-size: contain;
  	border: none;
  	cursor: pointer;
  	z-index: 999 !important; /* Asegúrate de que sea visible sobre la imagen */
}

/* Botón "next" */
.overlay-exhibiciones__inner .next {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: calc(0% - 60px);
  transform: translateY(-50%);
  background: url('../images/icons/next_btn.svg') no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
  z-index: 999 !important; /* Asegúrate de que sea visible sobre la imagen */
}


/* Efecto hover para los botones */
.prev, .next {
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
}

.prev:hover, .next:hover {
    filter: invert(1); /* Invierte los colores */
}

.prev svg, .next svg {
    fill: currentColor; /* Toma el color del botón */
}


/* 1) Contenedor de miniaturas: centrado y sin recortes */
.overlay-exhibiciones .overlay__thumbnails {
	display: flex;          /* flex para centrar fácilmente */
	justify-content: center;/* centro horizontal */
	align-items: center;    /* centro vertical */
	gap: 10px;              /* separación fija entre miniaturas */
	flex-wrap: wrap;        /* que bajen de línea si hacen falta */
	margin: 0 auto 0 auto;    /* centrado por margen y separación superior */
	padding: 8px;           /* espacio interior estable */
	max-width: 90%;         /* no ocupe más que la pantalla */
	box-sizing: border-box;
	position: relative;  /* evita problemas de posicion absolute que recortan */
	left: auto;
	transform: none;        /* elimina translate que pueda desplazar/recortar */
	overflow: visible;      /* evita que se recorten las miniaturas */
	z-index: 20;
}

/* Miniaturas para ambos tipos de contenido */
.overlay-exhibiciones .overlay__thumbnails img,
.overlay-exhibiciones .overlay__thumbnails .video-thumbnail {
	width: 80px;
    height: 80px;
    flex: 0 0 auto; /* evita que se estiren */
    margin: 0;
    padding: 0;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.overlay-exhibiciones .overlay__thumbnails img.active {
  border-color: #DDD101;
}

/* Efecto hover para ambos */
.overlay-exhibiciones .overlay__thumbnails img:hover,
.overlay-exhibiciones .overlay__thumbnails .video-thumbnail:hover {
    border-color: #DDD101;
    transform: scale(1.05);
}

/* Mantengo .close_gallery tal cual (usa la misma clase que tienes en HTML) */
.close_gallery {
    width: 40px;
    height: 40px;
    position: fixed;
    top: 20px;
    right: 20px;
    border: none;
    cursor: pointer;
    background: url('../images/icons/close_btn.svg') no-repeat center;
    background-size: contain; /* Ajusta la imagen dentro del botón */
    text-indent: -9999px; /* Oculta el texto visualmente */
    z-index: 10; /* Asegura que se muestre sobre la imagen */
	/* transform: translate(25%, -25%); Mueve el botón hacia afuera */
}

.close_gallery:hover {
	filter: invert(1);
}


/**************************/
/* MEDIA QUERY */
/**************************/

/* Tablets y pantallas medianas */
@media (max-width: 768px) {
	
.overlay-exhibiciones {
      flex-direction: column;
      justify-content: flex-start;
  }

.overlay-exhibiciones .media-container {
      margin-top: 15px; /* un poco menos que en móviles muy pequeños */
      padding-bottom: 5px;
      box-sizing: border-box;
      overflow-y: auto;
  }

.overlay-exhibiciones .caption {
      margin-top: 10px;
  }

.overlay-exhibiciones .overlay__thumbnails {
      position: relative;
      max-width: 90%;
      margin: 0 auto;
      justify-content: center;
      transform: none;
  }

#imageCounterExhibiciones {
	font-size: 1rem;
	font-weight: bold;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	padding: 8px;
	z-index: 1001;
	background-color: rgba(0,0,0,1);
  }

}




/* Celulares */
@media (max-width: 480px) {
	
.overlay-exhibiciones {
    flex-direction: column;
    justify-content: flex-start;
  }

.overlay-exhibiciones .media-container {
	margin-top: 25px;
    padding-bottom: 5px; /* pequeño espacio antes del caption */
    box-sizing: border-box;
    overflow-y: auto; /* si el contenido es muy alto, hace scroll */
  }

.overlay-exhibiciones .caption {
    margin-top: 10px; /* separa el caption de la imagen */
  }

.overlay-exhibiciones .overlay__thumbnails {
	position: relative;  /* en móvil, mejor que fluya debajo del caption */
    max-width: 90%;
    margin: 0 auto;
    justify-content: center;
    transform: none; /* quita el translate que usabas en desktop */
  }
	
#imageCounterExhibiciones {
	font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    padding: 8px;
    z-index: 1001;
	background-color: rgba(0,0,0,1);
  }

	
}



html, body, div, span, applet, object,
iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
pre, a, abbr, acronym, address, big, cite,
code, del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b,
u, i, center, dl, dt, dd, ol, ul, li, fieldset,
form, label, legend, table, caption, tbody,
tfoot, thead, tr, th, td, article, aside,
canvas, details, embed, figure, figcaption,
footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input, select, textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}


/* .hidden {
  display: none;
} */

.seccion-galeria {
  position: relative;
  z-index: 1; /* o el valor más bajo que mantenga este contenedor por encima del fondo */
}


/* Campo de texto de biografia */
.biografia .lang-es p,
.biografia .lang-en p {
    text-align: justify;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.biografia h3 {
	font-size: 1.25em;
	color: #ffffff;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 0.313rem 0;
	letter-spacing: 0.2rem;
}

.biografia h2 {
	font-size: 1.75rem;
	color: #ffffff;
	font-weight: bold;
	line-height: 1.5;
	margin: 0 0 0.313rem 0;
	letter-spacing: 0.2rem;
}

.biografia h4 {
	font-size: 1em;
	color: #ffffff;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
	letter-spacing: 0.2rem;
}

.biografia h6 {
	font-size: 0.75em;
	color: #ffffff;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
	letter-spacing: 0.2rem;
}



/* Boton para cambiar de idioma */
a.language-switch {
	color: #000000;
    text-align: center;
    width: auto; /* Adaptable al contenido */
    max-width: 5rem; /* Evita que sea muy ancho */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Fija el enlace en la parte superior */
    top: 0; /* Asegura que esté en la parte superior */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Ajuste para centrar desde la izquierda */
    border-radius: 0px 0px 4px 4px;
    background-color: #FFFFFF;
    padding: 0.5rem 1rem; /* Mejora el área clicable */
    z-index: 1000; /* Asegúrate de que esté siempre visible */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Estilo opcional */
}

.language-switch:hover {
	opacity: .7;
}




/* Botón para cambiar de idioma */
button.language-switch {
	color: #000000 !important;
    text-align: center;
    width: auto; /* Adaptable al contenido */
    max-width: 5rem; /* Evita que sea muy ancho */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed; /* Fija el enlace en la parte superior */
    top: 0; /* Asegura que esté en la parte superior */
    left: 50%; /* Centra horizontalmente */
    transform: translateX(-50%); /* Ajuste para centrar desde la izquierda */
    border-radius: 0px 0px 4px 4px;
    background-color: #FFFFFF;
    padding: 0.5rem 1rem; /* Mejora el área clicable */
    z-index: 1000; /* Asegúrate de que esté siempre visible */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Estilo opcional */
}

button.language-switch:hover {
	background-color: #FFFFFF;
	opacity: 0.7;
}
/* FIN Boton para cambiar de idioma */



/* Contenedor del menú */
.menu_exhibiciones {
  display: flex;
  justify-content: space-between; /* Espacio uniforme entre botones */
  align-items: center; /* Centrado vertical */
  gap: 10px; /* Espaciado opcional entre botones */
  width: 100%; /* Asegura que ocupe todo el ancho del contenedor */
  box-sizing: border-box; /* Incluye padding y bordes en el tamaño total */
}

/* Estilos específicos para los botones dentro de .menu_exhibiciones */
.menu_exhibiciones .exhibiciones_btn {
	flex: 1; /* Cada botón ocupa una proporción igual del ancho disponible */
  	font-size: 0.8rem;
  	font-weight: bold;
  	text-align: center;
  	text-decoration: none;
  	letter-spacing: normal;
  	background-color: white;
  	color: black !important;
  	border: 2px solid #000;
  	margin: 10px 5px; /* Espaciado entre los botones */
  	transition: background-color 0.3s, color 0.3s;
  	cursor: pointer;
  	width: 150px; /* Ancho mínimo */
  	box-sizing: border-box; /* Incluye border y padding */
  	border-radius: 0; /* Quita las esquinas redondeadas */
}

/* Hover para los botones dentro de .menu_exhibiciones */
.menu_exhibiciones .exhibiciones_btn:hover {
  background-color: #000;
  color: white !important;
}


/* Titulos Exhibiciones */
.espacio_exhibiciones {
	justify-content: center; /* Centrar horizontalmente */
  	align-items: center; /* Centrar verticalmente */
	width: 100%;
  	padding: 10px 0 5px 0;
}

/* Titulos Prensa */
.titulos_prensa {
    justify-content: center; /* Centrar horizontalmente */
    align-items: center; /* Centrar verticalmente */
	display: inline-block;
    width: 100%;
	margin-top: 1.25rem;
    padding: 10px;
}

.titulos_prensa h3 {
	color: #FFEA00;
	font-size: 1.4rem;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 ;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	border-bottom: solid 1px #FFEA00;
}



/* Marco contenido exhibiciones */
.contenido_exhibiciones {
	justify-content: center; /* Centrar horizontalmente */
	align-items: center; /* Centrar verticalmente */
	width: 100%;
	margin: 0 auto;
	padding: 10px 0 10px 0;
	background-color: #000;
	transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* Quita margen inferior cuando sí hay un botón después */
.contenido_exhibiciones:has(+ .ver_mas_exhibiciones),
.contenido_exhibiciones:has(+ .botones_exhibiciones) {
  margin-bottom: 0;
}

/* Asegura margen inferior cuando el siguiente bloque es fecha_exhibiciones */
.contenido_exhibiciones:has(+ .fecha_exhibiciones) {
  margin-bottom: 20px; /* ajusta el valor */
}

/* El último elemento interno con margen */
.contenido_exhibiciones > *:last-child {
  margin-bottom: 20px !important;
}

/* Hover + Active + Focus (para que funcione en desktop y móvil) */
.contenido_exhibiciones:hover,
.contenido_exhibiciones:active,
.contenido_exhibiciones:focus {
	background-color: #FFF;
	cursor: pointer;
	border-radius: 10px;
	transform: scale(1.05);
}

/* Textos en hover/active/focus */
.contenido_exhibiciones:hover h4,
.contenido_exhibiciones:hover p,
.contenido_exhibiciones:active h4,
.contenido_exhibiciones:active p,
.contenido_exhibiciones:focus h4,
.contenido_exhibiciones:focus p {
	color: #000;
}

.fecha_exhibiciones {
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 2px;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6rem;
	height: 40px;
	margin: 0 auto;
	padding: 10px;
	border-radius: 20px 20px 0 0;
	background-color: #000;
}

/* Contenedor para alinear botones en fila */
.botones_exhibiciones {
  display: flex;
  justify-content: center; /* siempre centrados */
  align-items: center;
  gap: 10px; /* espacio entre botones */
  flex-wrap: wrap; /* en responsive pueden bajar */
  margin: 0 !important; /* controlas la separación arriba y abajo */
	
}

button.ver_mas_exhibiciones {
	font-size: 0.9rem;
	font-weight: normal;
	color: #FFF;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7rem;
	height: 40px;
	margin: 0 auto 25px auto;
	padding: 10px;
	cursor: pointer;
	border: none;
	outline: none;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 1);
	border-radius: 0 0 20px 20px;
	background-color: #000 !important;
	transition: background-color 0.3s ease, color 0.3s ease;
}

button.ver_mas_exhibiciones:hover,
button.ver_mas_exhibiciones:active,
button.ver_mas_exhibiciones:focus {
	color: #000 !important;
	background-color: #FFF !important;
}

.contenido_exhibiciones p {
	font-size: 1em;
	color: #FFF;
	text-align: justify;
	width: 100%;
	height: auto;
	padding: 0 0 0 20px;
	transition: color 0.3s ease;
}

.contenido_exhibiciones h4 {
	font-size: 1.2em;
	color: #FFF;
	font-weight: bold;
	line-height: 1.5;
	margin: 0;
	padding: 10px;
	letter-spacing: 0.1rem;
	transition: color 0.3s ease;
}






/**************************/
/* MEDIA QUERY */
/**************************/

@media (max-width: 768px) {
	
.menu_exhibiciones {
	flex-direction: column; /* Los botones se apilan en pantallas pequeñas */
}

.menu_exhibiciones .exhibiciones_btn {
	width: 100%; /* Los botones ocupan todo el ancho del contenedor */
    margin-bottom: 10px; /* Espaciado entre botones */
}
	
.fecha_exhibiciones, button.ver_mas_exhibiciones {
	width: 6.5rem;
	height: 38px;
	font-size: 0.85rem;
	}
	
.contenido_exhibiciones h4 {
	font-size: 1.1em;
	letter-spacing: 0.05rem;
	}
	
.contenido_exhibiciones p {
	font-size: 0.95em;
	padding: 15px;
	}
	
}

@media (max-width: 480px) {
.menu_exhibiciones {
	width: 100%;
	height: auto;
	flex-direction: column; /* Botones en una columna */
	padding: 0; /* Asegura que no haya desplazamientos laterales */
}

.menu_exhibiciones .exhibiciones_btn {
	width: 100%; /* Asegura que ocupen el 100% del ancho del contenedor */
	max-width: none; /* Quita el límite de ancho */
	margin: 5px 0; /* Espaciado vertical uniforme */
}
	
.fecha_exhibiciones, button.ver_mas_exhibiciones {
	width: 6rem;
	height: 35px;
	font-size: 0.8rem;
	padding: 8px;
	}
	
.contenido_exhibiciones {
	padding: 8px 0 5px 0;
	}
	
.contenido_exhibiciones h4 {
	font-size: 1em;
	}
	
.contenido_exhibiciones p {
	font-size: 0.9em;
	padding: 12px;
	}
	
}
/* Fin Menu Exhibiciones */	



/* Icono Instagram home */	
.icon_instagram_home {
	width: 40px;
	height: 40px;
  	margin: 0 auto;
  	padding: 0;
	position: fixed;
	bottom: 0;
}

.icon_instagram_home img {
  	width: 40px;
	height: 40px;
  	transition: transform 0.3s;
}

.icon_instagram_home a,
.icon_instagram_home a:link,
.icon_instagram_home a:visited,
.icon_instagram_home a:hover,
.icon_instagram_home a:active {
    text-decoration: none !important;
    border: none; /* por si acaso el subrayado viene de un border-bottom */
    outline: none; /* quita contorno */
}

.icon_instagram_home img:hover {
  transform: scale(1.2);
}
/* FIN Icono Instagram home */	



/* Icono Instagram */	
.icons {
	display: flex;
	width: 50px;
	height: 50px;
  	list-style: none;
	margin: 10px 0 10px 0;
  	padding: 0;
  	gap: 10px;
}


.icons li {
	display: inline-block;
}

.icons img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.icons a {
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}

.icons img:hover {
  transform: scale(1.2);
}
/* FIN Icono Instagram */	








@media screen and (max-width: 480px) {

html, body {	
	min-width: 320px;
}

	}

html {
	box-sizing: border-box;
	}

*, *:before, *:after {
	box-sizing: inherit;
	}

body {
	background: #1b1f22;
	}

body.is-preload *, body.is-preload *:before, body.is-preload *:after {
	-moz-animation: none !important;
	-webkit-animation: none !important;
	-ms-animation: none !important;
	animation: none !important;
	-moz-transition: none !important;
	-webkit-transition: none !important;
	-ms-transition: none !important;
	transition: none !important;
}

/* Type */

html {
	font-size: 16pt;
}

@media screen and (max-width: 1680px) {

html {
	font-size: 12pt;
}

	}

@media screen and (max-width: 736px) {

html {
	font-size: 11pt;
}

	}

@media screen and (max-width: 360px) {

html {
	font-size: 10pt;
}

	}

body, input, select, textarea {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1rem;
    color: #ffffff;
    font-weight: normal;
    line-height: 1.65em;
}

a {
	-moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	border-bottom: dotted 1px rgba(255, 255, 255, 0.5);
	text-decoration: none;
	color: inherit;
}

a:hover {
	border-bottom-color: transparent;
}

strong, b {
	color: #ffffff;
	font-weight: 600;
}

em, i {
	font-style: italic;
}

p {
	margin: 0 0 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
	color: #ffffff;
	font-weight: 600;
	line-height: 1.5;
	margin: 0 0 1rem 0;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
}

		h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
			color: inherit;
			text-decoration: none;
		}

		h1.major, h2.major, h3.major, h4.major, h5.major, h6.major {
			border-bottom: solid 1px #ffffff;
			width: -moz-max-content;
			width: -webkit-max-content;
			width: -ms-max-content;
			width: max-content;
			padding-bottom: 0.5rem;
			margin: 0 0 2rem 0;
		}

	h1 {
		font-size: 2.25rem;
		line-height: 1.3;
		letter-spacing: 0.5rem;
		margin: 0;
	}

	h2 {
		font-size: 1.3rem;
		line-height: 3rem;
		letter-spacing: 0.3rem;
	}

	h3 {
		font-size: 1rem;
	}

	h4 {
		font-size: 0.8rem;
	}

	h5 {
		font-size: 0.7rem;
	}

	h6 {
		font-size: 0.6rem;
	}

@media screen and (max-width: 736px) {

		h1 {
			font-size: 1.75rem;
			line-height: 1.4;
		}

		h2 {
			font-size: 1.25em;
			line-height: 1.5;
		}

	}

	sub {
		font-size: 0.8rem;
		position: relative;
		top: 0.5rem;
	}

	sup {
		font-size: 0.8rem;
		position: relative;
		top: -0.5rem;
	}

	blockquote {
		border-left: solid 4px #ffffff;
		font-style: italic;
		margin: 0 0 2rem 0;
		padding: 0.5rem 0 0.5rem 2rem;
	}

	code {
		background: rgba(255, 255, 255, 0.075);
		border-radius: 4px;
		font-family: "Courier New", monospace;
		font-size: 0.9rem;
		margin: 0 0.25rem;
		padding: 0.25rem 0.65rem;
	}

	pre {
		-webkit-overflow-scrolling: touch;
		font-family: "Courier New", monospace;
		font-size: 0.9rem;
		margin: 0 0 2rem 0;
	}

		pre code {
			display: block;
			line-height: 1.75;
			padding: 1rem 1.5rem;
			overflow-x: auto;
		}

	hr {
		border: 0;
		border-bottom: solid 1px #ffffff;
		margin: 2.75rem 0;
	}

	.align-left {
		text-align: left;
	}

	.align-center {
		text-align: center;
	}

	.align-right {
		text-align: right;
	}

/* Form */

	form {
		margin: 0 0 2rem 0;
	}

		form > :last-child {
			margin-bottom: 0;
		}

		form > .fields {
			display: -moz-flex;
			display: -webkit-flex;
			display: -ms-flex;
			display: flex;
			-moz-flex-wrap: wrap;
			-webkit-flex-wrap: wrap;
			-ms-flex-wrap: wrap;
			flex-wrap: wrap;
			width: calc(100% + 3rem);
			margin: -1.5rem 0 2rem -1.5rem;
		}

			form > .fields > .field {
				-moz-flex-grow: 0;
				-webkit-flex-grow: 0;
				-ms-flex-grow: 0;
				flex-grow: 0;
				-moz-flex-shrink: 0;
				-webkit-flex-shrink: 0;
				-ms-flex-shrink: 0;
				flex-shrink: 0;
				padding: 1.5rem 0 0 1.5rem;
				width: calc(100% - 1.5rem);
			}

				form > .fields > .field.half {
					width: calc(50% - 0.75rem);
				}

				form > .fields > .field.third {
					width: calc(100%/3 - 0.5rem);
				}

				form > .fields > .field.quarter {
					width: calc(25% - 0.375rem);
				}

@media screen and (max-width: 480px) {

			form > .fields {
				width: calc(100% + 3rem);
				margin: -1.5rem 0 2rem -1.5rem;
			}

				form > .fields > .field {
					padding: 1.5rem 0 0 1.5rem;
					width: calc(100% - 1.5rem);
				}

					form > .fields > .field.half {
						width: calc(100% - 1.5rem);
					}

					form > .fields > .field.third {
						width: calc(100% - 1.5rem);
					}

					form > .fields > .field.quarter {
						width: calc(100% - 1.5rem);
					}

		}

	label {
		color: #ffffff;
		display: block;
		font-size: 0.8rem;
		font-weight: 300;
		letter-spacing: 0.2rem;
		line-height: 1.5;
		margin: 0 0 1rem 0;
		text-transform: uppercase;
	}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	input[type="tel"],
	select,
	textarea {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
		-ms-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
		transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
		background-color: transparent;
		border-radius: 4px;
		border: solid 1px #ffffff;
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1rem;
		text-decoration: none;
		width: 100%;
	}

		input[type="text"]:invalid,
		input[type="password"]:invalid,
		input[type="email"]:invalid,
		input[type="tel"]:invalid,
		select:invalid,
		textarea:invalid {
			box-shadow: none;
		}

		input[type="text"]:focus,
		input[type="password"]:focus,
		input[type="email"]:focus,
		input[type="tel"]:focus,
		select:focus,
		textarea:focus {
			background: rgba(255, 255, 255, 0.075);
			border-color: #ffffff;
			box-shadow: 0 0 0 1px #ffffff;
		}

	select {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23ffffff' /%3E%3C/svg%3E");
		background-size: 1.25rem;
		background-repeat: no-repeat;
		background-position: calc(100% - 1rem) center;
		height: 2.75rem;
		padding-right: 2.75rem;
		text-overflow: ellipsis;
	}

		select option {
			color: #ffffff;
			background: #1b1f22;
		}

		select:focus::-ms-value {
			background-color: transparent;
		}

		select::-ms-expand {
			display: none;
		}

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 2.75rem;
	}

	textarea {
		padding: 0.75rem 1rem;
	}

	input[type="checkbox"],
	input[type="radio"] {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		display: block;
		float: left;
		margin-right: -2rem;
		opacity: 0;
		width: 1rem;
		z-index: -1;
	}

		input[type="checkbox"] + label,
		input[type="radio"] + label {
			text-decoration: none;
			-moz-user-select: none;
			-webkit-user-select: none;
			-ms-user-select: none;
			user-select: none;
			color: #ffffff;
			cursor: pointer;
			display: inline-block;
			font-size: 0.8rem;
			font-weight: 300;
			margin: 0 0 0.5rem 0;
			padding-left: 2.65rem;
			padding-right: 0.75rem;
			position: relative;
		}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				line-height: 1;
				text-transform: none !important;
				font-family: 'Font Awesome 5 Free';
				font-weight: 900;
			}

			input[type="checkbox"] + label:before,
			input[type="radio"] + label:before {
				-moz-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
				-webkit-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
				-ms-transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
				transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
				border-radius: 4px;
				border: solid 1px #ffffff;
				content: '';
				display: inline-block;
				height: 1.65rem;
				left: 0;
				line-height: 1.65rem;
				position: absolute;
				text-align: center;
				top: -0.15rem;
				width: 1.65rem;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: #ffffff !important;
			border-color: #ffffff !important;
			color: #1b1f22;
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			background: rgba(255, 255, 255, 0.075);
			border-color: #ffffff;
			box-shadow: 0 0 0 1px #ffffff;
		}

	input[type="checkbox"] + label:before {
		border-radius: 4px;
	}

	input[type="radio"] + label:before {
		border-radius: 100%;
	}

	::-webkit-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

	.formerize-placeholder {
		color: rgba(255, 255, 255, 0.5) !important;
		opacity: 1.0;
	}

/* Box */

.box {
	border-radius: 4px;
	border: solid 1px #ffffff;
	margin-bottom: 2rem;
	padding: 1.5em;
}

.box > :last-child,
.box > :last-child > :last-child,
.box > :last-child > :last-child > :last-child {
	margin-bottom: 0;
}

.box.alt {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Icon */
.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
	}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon > .label {
	display: none;
}

.icon:before {
	line-height: inherit;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

/* Image */

.image {
	border-radius: 4px;
	border: 0;
	display: inline-block;
	position: relative;
}

.image:before {
	pointer-events: none;
	background-image: url("../images/banners/overlay.png");
	background-color: rgba(19, 21, 25, 0.5);
	border-radius: 4px;
	content: '';
	display: block;
	height: 100%;
	left: 0;
	opacity: 0.5;
	position: absolute;
	top: 0;
	width: 100%;
}

.image img {
	border-radius: 4px;
	display: block;
}

.image.left, .image.right {
	max-width: 40%;
}

.image.left img, .image.right img {
	width: 100%;
}

.image.left {
	float: left;
	padding: 0 1.5em 1em 0;
	top: 0.25em;
}

.image.right {
	float: right;
	padding: 0 0 1em 1.5em;
	top: 0.25em;
}

.image.fit {
	display: block;
	margin: 0 0 2rem 0;
	width: 100%;
}

.image.fit img {
	width: 100%;
	}

.image.main {
	display: block;
	margin: 2.5rem 0;
	width: 100%;
}

.image.main img {
	width: 100%;
}

@media screen and (max-width: 736px) {

.image.main {
	margin: 2rem 0;
}

		}

@media screen and (max-width: 480px) {

.image.main {
	margin: 1.5rem 0;
}

		}

/* List */

	ol {
		list-style: decimal;
		margin: 0 0 2rem 0;
		padding-left: 1.25em;
	}

		ol li {
			padding-left: 0.25em;
		}

	ul {
		list-style: disc;
		margin: 0 0 2rem 0;
		padding-left: 1em;
	}

		ul li {
			padding-left: 0.5em;
		}

		ul.alt {
			list-style: none;
			padding-left: 0;
		}

			ul.alt li {
				border-top: solid 1px #ffffff;
				padding: 0.5em 0;
			}

				ul.alt li:first-child {
					border-top: 0;
					padding-top: 0;
				}

	dl {
		margin: 0 0 2rem 0;
	}

		dl dt {
			display: block;
			font-weight: 600;
			margin: 0 0 1rem 0;
		}

		dl dd {
			margin-left: 2rem;
		}

/* Actions */

	ul.actions {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		cursor: default;
		list-style: none;
		margin-left: -1rem;
		padding-left: 0;
	}

		ul.actions li {
			padding: 0 0 0 1rem;
			vertical-align: middle;
		}

		ul.actions.special {
			-moz-justify-content: center;
			-webkit-justify-content: center;
			-ms-justify-content: center;
			justify-content: center;
			width: 100%;
			margin-left: 0;
		}

			ul.actions.special li:first-child {
				padding-left: 0;
			}

		ul.actions.stacked {
			-moz-flex-direction: column;
			-webkit-flex-direction: column;
			-ms-flex-direction: column;
			flex-direction: column;
			margin-left: 0;
		}

			ul.actions.stacked li {
				padding: 1.3rem 0 0 0;
			}

				ul.actions.stacked li:first-child {
					padding-top: 0;
				}

		ul.actions.fit {
			width: calc(100% + 1rem);
		}

			ul.actions.fit li {
				-moz-flex-grow: 1;
				-webkit-flex-grow: 1;
				-ms-flex-grow: 1;
				flex-grow: 1;
				-moz-flex-shrink: 1;
				-webkit-flex-shrink: 1;
				-ms-flex-shrink: 1;
				flex-shrink: 1;
				width: 100%;
			}

				ul.actions.fit li > * {
					width: 100%;
				}

			ul.actions.fit.stacked {
				width: 100%;
			}

		@media screen and (max-width: 480px) {

			ul.actions:not(.fixed) {
				-moz-flex-direction: column;
				-webkit-flex-direction: column;
				-ms-flex-direction: column;
				flex-direction: column;
				margin-left: 0;
				width: 100% !important;
			}

				ul.actions:not(.fixed) li {
					-moz-flex-grow: 1;
					-webkit-flex-grow: 1;
					-ms-flex-grow: 1;
					flex-grow: 1;
					-moz-flex-shrink: 1;
					-webkit-flex-shrink: 1;
					-ms-flex-shrink: 1;
					flex-shrink: 1;
					padding: 1rem 0 0 0;
					text-align: center;
					width: 100%;
				}

					ul.actions:not(.fixed) li > * {
						width: 100%;
					}

					ul.actions:not(.fixed) li:first-child {
						padding-top: 0;
					}

					ul.actions:not(.fixed) li input[type="submit"],
					ul.actions:not(.fixed) li input[type="reset"],
					ul.actions:not(.fixed) li input[type="button"],
					ul.actions:not(.fixed) li button,
					ul.actions:not(.fixed) li .button {
						width: 100%;
					}

						ul.actions:not(.fixed) li input[type="submit"].icon:before,
						ul.actions:not(.fixed) li input[type="reset"].icon:before,
						ul.actions:not(.fixed) li input[type="button"].icon:before,
						ul.actions:not(.fixed) li button.icon:before,
						ul.actions:not(.fixed) li .button.icon:before {
							margin-left: -0.5em;
						}

		}

/* Icons */

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 0.75em 0 0;
}

ul.icons li:last-child {
	padding-right: 0;
}

ul.icons li a {
	border-radius: 100%;
	box-shadow: inset 0 0 0 1px #ffffff;
	display: inline-block;
	height: 2.25rem;
	line-height: 2.25rem;
	text-align: center;
	width: 2.25rem;
}

ul.icons li a:hover {
	background-color: rgba(255, 255, 255, 0.075);
}

ul.icons li a:active {
	background-color: rgba(255, 255, 255, 0.175);
}

/* Table */
.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table {
	margin: 0 0 2rem 0;
	width: 100%;
}

table tbody tr {
	border: solid 1px #ffffff;
	border-left: 0;
	border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
	background-color: rgba(255, 255, 255, 0.075);
}

table td {
	padding: 0.75em 0.75em;
}

table th {
	color: #ffffff;
	font-size: 0.9em;
	font-weight: 600;
	padding: 0 0.75em 0.75em 0.75em;
	text-align: left;
}

table thead {
	border-bottom: solid 2px #ffffff;
	}

table tfoot {
border-top: solid 2px #ffffff;
}

table.alt {
	border-collapse: separate;
}

table.alt tbody tr td {
	border: solid 1px #ffffff;
	border-left-width: 0;
	border-top-width: 0;
	}

table.alt tbody tr td:first-child {
	border-left-width: 1px;
	}

table.alt tbody tr:first-child td {
	border-top-width: 1px;
}

table.alt thead {
	border-bottom: 0;
}

table.alt tfoot {
	border-top: 0;
}

/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button,
	.button {
		-moz-appearance: none;
		-webkit-appearance: none;
		-ms-appearance: none;
		appearance: none;
		-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
		background-color: transparent;
		border-radius: 4px;
		border: 0;
		box-shadow: inset 0 0 0 1px #ffffff;
		color: #ffffff !important;
		cursor: pointer;
		display: inline-block;
		font-size: 0.8rem;
		font-weight: 300;
		height: 2.75rem;
		letter-spacing: 0.2rem;
		line-height: 2.75rem;
		outline: 0;
		padding: 0 1.25rem 0 1.35rem;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
	}

		input[type="submit"]:hover,
		input[type="reset"]:hover,
		input[type="button"]:hover,
		button:hover,
		.button:hover {
			background-color: rgba(255, 255, 255, 0.075);
		}

		input[type="submit"]:active,
		input[type="reset"]:active,
		input[type="button"]:active,
		button:active,
		.button:active {
			background-color: rgba(255, 255, 255, 0.175);
		}

		input[type="submit"].icon:before,
		input[type="reset"].icon:before,
		input[type="button"].icon:before,
		button.icon:before,
		.button.icon:before {
			margin-right: 0.5em;
		}

		input[type="submit"].fit,
		input[type="reset"].fit,
		input[type="button"].fit,
		button.fit,
		.button.fit {
			width: 100%;
		}

		input[type="submit"].small,
		input[type="reset"].small,
		input[type="button"].small,
		button.small,
		.button.small {
			font-size: 0.6rem;
			height: 2.0625rem;
			line-height: 2.0625rem;
		}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		button.primary,
		.button.primary {
			background-color: #ffffff;
			color: #1b1f22 !important;
			font-weight: 600;
		}

		input[type="submit"].disabled, input[type="submit"]:disabled,
		input[type="reset"].disabled,
		input[type="reset"]:disabled,
		input[type="button"].disabled,
		input[type="button"]:disabled,
		button.disabled,
		button:disabled,
		.button.disabled,
		.button:disabled {
			pointer-events: none;
			cursor: default;
			opacity: 0.25;
		}

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	button {
		line-height: calc(2.75rem - 2px);
	}

/* BG */
#bg {
	-moz-transform: scale(1.0);
	-webkit-transform: scale(1.0);
	-ms-transform: scale(1.0);
	transform: scale(1.0);
	-webkit-backface-visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
}

#bg:before, #bg:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#bg:before {
	-moz-transition: background-color 2.5s ease-in-out;
	-webkit-transition: background-color 2.5s ease-in-out;
	-ms-transition: background-color 2.5s ease-in-out;
	transition: background-color 2.5s ease-in-out;
	-moz-transition-delay: 0.75s;
	-webkit-transition-delay: 0.75s;
	-ms-transition-delay: 0.75s;
	transition-delay: 0.75s;
			background-image: linear-gradient(to top, rgba(19, 21, 25, 0.5), rgba(19, 21, 25, 0.5)), url("../images/overlay.png");
			background-size: auto,
 256px 256px;
			background-position: center,
 center;
			background-repeat: no-repeat,
 repeat;
			z-index: 2;
		}

#bg:after {
	-moz-transform: scale(1.125);
	-webkit-transform: scale(1.125);
	-ms-transform: scale(1.125);
	transform: scale(1.125);
	-moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out;
	-webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out;
	-ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out;
	transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out;
	background-image: url("../images/banners/bg.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: 1;
		}

body.is-article-visible #bg:after {
	-moz-transform: scale(1.0825);
	-webkit-transform: scale(1.0825);
	-ms-transform: scale(1.0825);
	transform: scale(1.0825);
	-moz-filter: blur(0.2rem);
	-webkit-filter: blur(0.2rem);
	-ms-filter: blur(0.2rem);
	filter: blur(0.2rem);
}

body.is-preload #bg:before {
	background-color: #000000;
}

/* Wrapper */

#wrapper {
		display: -moz-flex;
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-moz-align-items: center;
		-webkit-align-items: center;
		-ms-align-items: center;
		align-items: center;
		-moz-justify-content: space-between;
		-webkit-justify-content: space-between;
		-ms-justify-content: space-between;
		justify-content: space-between;
		position: relative;
		min-height: 100vh;
		width: 100%;
		padding: 4rem 2rem;
		z-index: 3;
	}

		#wrapper:before {
			content: '';
			display: block;
		}

		@media screen and (max-width: 1680px) {

			#wrapper {
				padding: 3rem 2rem;
			}

		}

		@media screen and (max-width: 736px) {

			#wrapper {
				padding: 2rem 1rem;
			}

		}

		@media screen and (max-width: 480px) {

			#wrapper {
				padding: 1rem;
			}

		}





/* Header */

#header {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	-webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	-ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	background-image: -moz-radial-gradient(rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 55%);
	background-image: -webkit-radial-gradient(rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 55%);
	background-image: -ms-radial-gradient(rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 55%);
	background-image: radial-gradient(rgba(0, 0, 0, 0.25) 25%, rgba(0, 0, 0, 0) 55%);
	max-width: 100%;
	text-align: center;
}

#header > * {
	-moz-transition: opacity 0.325s ease-in-out;
	-webkit-transition: opacity 0.325s ease-in-out;
	-ms-transition: opacity 0.325s ease-in-out;
	transition: opacity 0.325s ease-in-out;
	position: relative;
	margin-top: 3.5rem;
}

#header > *:before {
	content: '';
	display: block;
	position: absolute;
	top: calc(-3.5rem - 1px);
	left: calc(50% - 1px);
	width: 1px;
	height: calc(3.5rem + 1px);
	background: transparent;
}

#header > :first-child {
	margin-top: 0;
}

#header > :first-child:before {
	display: none;
}



/* #header .logo {
	width: 5.5rem;
	height: 5.5rem;
	line-height: 5.5rem;
	border: solid 1px #ffffff;
	border-radius: 100%;
		} */

#header .logo .icon:before {
	font-size: 2rem;
}

/* #header .content {
	border-style: solid;
	border-color: #FFFFFF;
	border-top-width: 1px;
	border-bottom-width: 1px;
	max-width: 100%;
} */


.logo {
	position: relative;
	top: 80px;
	/* animación */
  	opacity: 0; /* estado inicial */
  	animation: fadeIn 2s ease-out forwards;
}

.logo-img {
  	width: 400px;
  	height: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;   /* totalmente transparente */
  }
  to {
    opacity: 1;   /* totalmente visible */
  }
}




.logo_2 {
	display: block;
	width: 100%;
  	text-align: center;
	margin: -30px 0 10px 0;
	padding: 0;
	box-sizing: border-box;
	
  /* Animación */
  animation: fadeScale 1s ease-out forwards;
}

.logo_2 img {
	display: block;
	width: 18.75rem; /* 300px aprox */
  	height: auto;
	margin: 0 auto;
}


/* Definimos la animación */
@keyframes fadeScale {
	
  0% {
    opacity: 0;
    transform: scale(0.8); /* más pequeño */
  }
  100% {
    opacity: 1;
    transform: scale(1);   /* tamaño normal */
  }
	
}




/* Aliados Logos - Contactenos */
.marco_logos_contacto {
  list-style: none;        /* Quitar viñetas */
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columnas iguales */
  gap: 20px; /* Espacio entre los elementos */
}

.logo_contacto {
  	color: #fff;
	text-decoration: none;
  	padding: 20px;
  	text-align: center;
  	border-radius: 8px;
	background: #000;
	transition: transform 0.4s ease, background 0.3s ease, color 0.3s ease;
}

.logo_contacto p {
  margin: 12px 0;
  line-height: 1.3;
}

.logo_contacto:hover {
  background: #fff;   /* se invierte */
  color: #000;        /* texto oscuro */
  transform: scale(1.05); /* pequeño zoom */
  cursor: pointer;    /* opcional */
}

.logo_contacto a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.logo_contacto a:hover {
	color: #D20000;
	text-decoration: none;
}

.logo_contacto a,
.logo_contacto a:link,
.logo_contacto a:visited,
.logo_contacto a:hover,
.logo_contacto a:active,
.logo_contacto a:focus {
	text-decoration: none !important;
	border: none !important;
}
/* FIN Aliados Logos - Contactenos */




#header .content .inner {
	-moz-transition: max-height 0.75s ease, padding 0.75s ease, opacity 0.325s ease-in-out;
	-webkit-transition: max-height 0.75s ease, padding 0.75s ease, opacity 0.325s ease-in-out;
	-ms-transition: max-height 0.75s ease, padding 0.75s ease, opacity 0.325s ease-in-out;
	transition: max-height 0.75s ease, padding 0.75s ease, opacity 0.325s ease-in-out;
	-moz-transition-delay: 0.25s;
	-webkit-transition-delay: 0.25s;
	-ms-transition-delay: 0.25s;
	transition-delay: 0.25s;
	padding: 2rem 1rem;
	max-height: 40rem;
	overflow: hidden;
}

#header .content .inner > :last-child {
	font-size: 1.25rem;
	margin: -25px 0 0 0;
}

#header .content p {
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	font-size: 0.8rem;
	line-height: 2;
}

#header nav ul {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	margin-bottom: 0;
	list-style: none;
	padding-left: 0;
	border-radius: 4px;
}

#header nav ul li {
	padding-left: 0;
}

#header nav ul li:first-child {
	border-left: 0;
}

#header nav ul li a {
	font-size: clamp(0.7rem, 1.5vw, 0.9rem); 
    white-space: nowrap;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
	display: block;
	min-width: 7.5rem;
    height: 2.75rem;
    line-height: 1.25rem;
    padding: 0 0.4rem 0 0.4rem;
    border-bottom: 0;
	transition: transform 0.3s ease, font-weight 0.3s ease;
}

#header nav ul li a:hover { 
	color: rgba(255, 252, 0, 1);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 5px
}

#header nav ul li a:active {
	background-color: rgba(255, 255, 255, 0.175);
}

#header nav.use-middle:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
	width: 1px;
	height: 100%;
	background: #ffffff;
}

#header nav.use-middle ul li.is-middle {
	border-left: 0;
}

body.is-article-visible #header {
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-moz-filter: blur(0.1rem);
	-webkit-filter: blur(0.1rem);
	-ms-filter: blur(0.1rem);
	filter: blur(0.1rem);
	opacity: 0;
}

body.is-preload #header {
	-moz-filter: blur(0.125rem);
	-webkit-filter: blur(0.125rem);
	-ms-filter: blur(0.125rem);
	filter: blur(0.125rem);
}

body.is-preload #header > * {
	opacity: 0;
}

body.is-preload #header .content .inner {
	max-height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
}



/**************************/
/* MEDIA QUERY */
/**************************/

@media screen and (max-width: 980px) {

#header .content p br {
	display: none;
}
	
#header nav ul {
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 35rem !important;
    max-width: 100%;
}
	
#header nav ul li a {
	font-size: 1.2rem;
}
	
.marco_logos_contacto {
    grid-template-columns: 1fr; /* Grid: 1 columna */
  }

	}



@media screen and (max-width: 736px) {

#header > * {
	margin-top: 2rem;
}

#header > *:before {
	top: calc(-2rem - 1px);
	height: calc(2rem + 1px);
}

#header .logo {
	width: 4.75rem;
	height: 4.75rem;
	line-height: 4.75rem;
}

#header .logo .icon:before {
	font-size: 1.75rem;
}

#header .content .inner {
	/* padding: 2.5rem 1rem; */
}

#header .content p {
	line-height: 1.875;
}
	
#header nav ul {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 28rem;
	max-width: 100%;
}
	
#header nav ul li a {
	font-size: 1.2rem;
}
	
.logo {
    position: relative;
    top: 0;
}
	
.logo img {
	width: 18.75rem; /* Ajusta el tamaño según tus necesidades */
	height: auto;
	margin: 1.5rem auto;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}
	
.logo_2 {
	margin: -20px 0 10px 0;
}
	
.marco_logos_contacto {
    grid-template-columns: 1fr; /* Grid: 1 columna */
  }

}



@media screen and (max-width: 480px) {

#header {
	padding: 1.5rem 0;
	overflow-x: hidden;
}

#header .content .inner {
	padding: 2.5rem 0;
}

#header nav ul {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	min-width: 10rem;
	max-width: 100%;
}


#header nav ul li a {
	font-size: 1.25rem;
	/* width: 100%;
	min-width: 23.75rem;
	height: 3rem;
	line-height: 3rem; */
}

#header nav.use-middle:after {
	display: none;
}
	
.logo {
    position: relative;
    top: 0;
}	
	
.logo img {
	width: 18.75rem; /* Ajusta el tamaño según tus necesidades */
	height: auto;
	margin: 1.5rem auto;
	position: absolute;
  	top: 50%;
  	left: 50%;
  	transform: translate(-50%, -50%);
}
	
.logo_2 {
	margin: 0 0 10px 0;
}
	
.logo_2 img {
	width: 15rem;
  	height: auto;
}
	
.marco_logos_contacto {
    grid-template-columns: 1fr; /* Grid: 1 columna */
  }

}


/* Main */
#main {
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	max-width: 100%;
	z-index: 3;
}

#main article {
	-moz-transform: translateY(0.25rem);
	-webkit-transform: translateY(0.25rem);
	-ms-transform: translateY(0.25rem);
	transform: translateY(0.25rem);
	-moz-transition: opacity 0.325s ease-in-out, -moz-transform 0.325s ease-in-out;
	-webkit-transition: opacity 0.325s ease-in-out, -webkit-transform 0.325s ease-in-out;
	-ms-transition: opacity 0.325s ease-in-out, -ms-transform 0.325s ease-in-out;
	transition: opacity 0.325s ease-in-out, transform 0.325s ease-in-out;
	padding: 4.5rem 2.5rem 1.5rem 2.5rem ;
	position: relative;
	width: 40rem;
	max-width: 100%;
	background-color: rgba(27, 31, 34, 0.85);
	border-radius: 4px;
	opacity: 0;
}

#main article.active {
	-moz-transform: translateY(0);
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

#main article .close {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 4rem;
	height: 4rem;
	cursor: pointer;
	text-indent: 4rem;
	overflow: hidden;
	white-space: nowrap;
}

#main article .close:before {
	-moz-transition: background-color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out;
	content: '';
	display: block;
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 100%;
	background-position: center;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20px' height='20px' viewBox='0 0 20 20' zoomAndPan='disable'%3E%3Cstyle%3Eline %7B stroke: %23ffffff%3B stroke-width: 1%3B %7D%3C/style%3E%3Cline x1='2' y1='2' x2='18' y2='18' /%3E%3Cline x1='18' y1='2' x2='2' y2='18' /%3E%3C/svg%3E");
	background-size: 20px 20px;
	background-repeat: no-repeat;
}

#main article .close:hover:before {
	background-color: rgba(255, 255, 255, 0.075);
}

#main article .close:active:before {
	background-color: rgba(255, 255, 255, 0.175);
}




@media screen and (max-width: 736px) {

#main article {
	padding: 3.5rem 2rem 0.5rem 2rem ;
}

#main article .close:before {
	top: 0.875rem;
	left: 0.875rem;
	width: 2.25rem;
	height: 2.25rem;
	background-size: 14px 14px;
	}

}

@media screen and (max-width: 480px) {

#main article {
padding: 3rem 1.5rem 0.5rem 1.5rem ;
	}

}



/* Footer */

#footer {
	-moz-transition: -moz-transform 0.325s ease-in-out, -moz-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	-webkit-transition: -webkit-transform 0.325s ease-in-out, -webkit-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	-ms-transition: -ms-transform 0.325s ease-in-out, -ms-filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	transition: transform 0.325s ease-in-out, filter 0.325s ease-in-out, opacity 0.325s ease-in-out;
	width: 100%;
	max-width: 100%;
	margin-top: 2rem;
	text-align: center;
}

#footer .copyright {
	letter-spacing: 0.2rem;
	font-size: 0.6rem;
	opacity: 1;
	margin-bottom: 0;
	text-transform: uppercase;
}

#footer .copyright:hover a {
	opacity: .7;
}

body.is-article-visible #footer {
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	transform: scale(0.95);
	-moz-filter: blur(0.1rem);
	-webkit-filter: blur(0.1rem);
	-ms-filter: blur(0.1rem);
	filter: blur(0.1rem);
	opacity: 0;
}

body.is-preload #footer {
	opacity: 0;
		}

