:root {
	/* header top */
	--bg-header-superior: #292929;
	--texto-header-superior: #ffffff;
	--icono-enlaces-superior: #f7b90f;
	--fuente-general: 'Roboto', sans-serif;
	/* Botones */
	--boton-header-login: #f7b90f;
	--boton-header-login-texto: #292929;
	/* navegacion Superior */
	--navegacion-superior: #ffffff;
	--navegacion-enlaces-normal: #292929;

	/* marcas superior */
	--marcas-superior: #ffffff;
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
}

html {
	scroll-behavior: smooth;
}

/* TEST  */
.accordion .item {
	overflow: hidden;
	margin-bottom: 10px;
	box-shadow: 1px 1px 2px 1px rgba(0, 0, 0, 0.2);
}

.accordion .title {
	position: relative;
	padding: 10px;
	background-color: transparent;
	transition: 0.3s background-color;
	border: 2px solid var(--boton-header-login);
	padding: 1rem;
}

.accordion .title:hover {
	border: 2px solid var(--boton-header-login);
	color: var(--boton-header-login);
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.25);
}

.accordion .title::before {
	position: absolute;
	content: '';
	right: 14px;
	top: 50%;
	width: 15px;
	height: 2px;
	background-color: var(--boton-header-login);
	transform: translateY(-50%);
}

.accordion .title::after {
	position: absolute;
	content: '';
	right: 20px;
	top: 50%;
	width: 2px;
	height: 15px;
	background-color: var(--boton-header-login);
	transform: translateY(-50%);
	transition: 0.3 opacity;
}

.accordion .title.active::after {
	opacity: 0;
}

.accordion .box {
	overflow: hidden;
	max-height: 0;
	transition: 0.3s max-height ease-out;
}

.accordion .text {
	padding: 10px;
	background-color: var(--boton-header-login);
	color: #000;
}
/* TEST --- */
.logo-movil {
	display: none;
}

.btn-hamburguesa {
	display: none;
}

body {
	font-family: var(--fuente-general);
	overflow-x: hidden;
}

a {
	text-decoration: none;
}
ul {
	list-style: none;
}

.contenedor {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

header {
	height: 50px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--bg-header-superior);
	position: relative;
	z-index: 2;
}

header .headerSuperior {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	height: 60px;
}

header .headerLista ul {
	display: flex;
	justify-content: space-between;
}
header .headerLista ul li {
	padding: 1rem;
}
header .headerLista ul li a {
	color: var(--texto-header-superior);
	font-size: 0.9rem;
}
header .headerLista ul li a i {
	margin: 5px;
}

header .usuario a {
	color: var(--boton-header-login-texto);
	background-color: var(--boton-header-login);
	padding: 10px;
	transition: all 0.2s ease;
}
header .usuario a:hover {
	background-color: #ffdf41;
}
header .usuario a i {
	margin-right: 5px;
}

/* Navegacion Superior */

nav.navegacionSuperior {
	background-color: var(--navegacion-superior);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

nav.navegacionSuperior .contenedor .navegacionSupCaja {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
nav.navegacionSuperior .contenedor .navegacionSupCaja .logo {
	padding: 5px;
	margin-left: 5px;
	width: 40%;
}
nav.navegacionSuperior .contenedor .navegacionSupCaja .logo img {
	width: 100%;
	max-width: 60px;
}
nav.navegacionSuperior .contenedor .navegacionSupCaja .navegacion {
	width: 50%;
}
nav.navegacionSuperior .contenedor .navegacionSupCaja .navegacion ul {
	display: flex;
	justify-content: space-between;
}
nav.navegacionSuperior .contenedor .navegacionSupCaja .navegacion ul li a {
	margin: 0 5px;
	color: var(--navegacion-enlaces-normal);
	position: relative;
	transition: color 0.3s ease-in-out;
}

nav.navegacionSuperior
	.contenedor
	.navegacionSupCaja
	.navegacion
	ul
	li
	a:hover {
	color: #f7b90f;
}
nav.navegacionSuperior
	.contenedor
	.navegacionSupCaja
	.navegacion
	ul
	li
	a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	height: 2px;
	background-color: var(--boton-header-login);
	width: 0%;
	transition: all 0.3s ease-in-out;
}
nav.navegacionSuperior
	.contenedor
	.navegacionSupCaja
	.navegacion
	ul
	li
	a:hover::after {
	width: 100%;
}

/* movil */
.nav-movil {
	opacity: 0;
	transition: all 0.3s ease-in-out;
	visibility: 0;
	position: fixed;
	transform: translateX(-100vw);
	z-index: 8;
	top: 0;
	left: 0;
	height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.nav-movil .logo {
	filter: drop-shadow(-1px -4px 8px rgb(255, 255, 255));
	transform: scale(2, 2);
	position: relative;
	top: -50px;
}

.nav-movil ul {
	width: 80%;
}
.nav-movil ul li a {
	font-size: 2rem;
	color: #000000;
	display: block;
	padding: 10px;
	position: relative;
	transition: all 0.2s ease;
}
.nav-movil ul li a:hover {
	background-color: #171717;
	color: rgb(226, 225, 225);
	transform: scale(1.1, 1.1);
	/* border-radius: 10px; */
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
}
.nav-movil ul li {
	padding: 2px 0;
}

.aparecer {
	position: fixed;
	opacity: 1;
	top: 0;
	width: 100%;
	z-index: 8;
	background: var(--boton-header-login);
	transition: all 0.3s ease-out;
	transform: translateX(0vw);
}

.cerrarnav {
	position: fixed;
	font-size: 2rem;
	z-index: 999999;
	color: #181818;
	top: 5%;
	right: 10%;
	transition: all 0.3s ease-in-out;
}
.cerrarnav:hover {
	transform: rotate(360deg);
}

/* fin menu Superior */

/* Slider */
.slider {
	margin-top: -100px;
}
.slider__contenedor {
	position: relative;
	margin-bottom: -4px;
}

.slider__anterior,
.slider__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% + 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #ffffff;
	opacity: 40%;
	font-size: 2rem;
	transition: opacity 0.3s ease-out;
	z-index: 4;
}
.slider__anterior:hover,
.slider__siguiente:hover {
	opacity: 100%;
}
.slider__anterior {
	left: 1rem;
	z-index: 2;
}
.slider__siguiente {
	right: 1rem;
	z-index: 2;
}

.slider__titulo {
	position: relative;
	z-index: 2;
	top: 40%;
	min-height: 101px;
}
.slider__titulo h1 {
	font-size: 3rem;
	color: var(--boton-header-login);
	width: 100%;
	padding-left: 6%;
	text-transform: uppercase;
	min-height: 2rem;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.911);
}
.slider__titulo p {
	font-size: 1.3rem;
	color: #ffffff;
	padding-left: 6%;
}

.slider__indicadores {
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: 0;
}
.slider__contenedor .slider__indicadores .glider-dot {
	height: 5px;
	border-radius: 0px;
	width: 30px;
	background: var(--boton-header-login);
}
.slider__contenedor .slider__indicadores .glider-dot.active {
	background-color: #ffffffea;
}

/* fin Slider */

/* Marcas */
.marcas {
	background-color: var(--bg-header-superior);
	height: 60px;
}
.marcas-flex {
	display: flex;
	justify-content: space-between;
}
.marcas .logos {
	height: 60px;
	background-color: #ffffff;
	width: 40%;
	transform: skewX(-35deg);
}

.marcas .logos img {
	height: 60px;
	padding: 12px 1rem;
	transform: skewX(35deg);
}
.marcas .antiguedad {
	background-color: var(--boton-header-login);
	height: 60px;
	width: 40%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform: skewX(-35deg);
}
.marcas .antiguedad p {
	transform: skewX(35deg);
}

.otrasEmpresas {
	color: #ffffff;
	width: 20%;
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.otrasEmpresas p {
	padding-left: 20px;
	align-self: center;
	text-transform: uppercase;
}
/* fin Marcas */

/* Lideres y Galeria */
.lideresGaleria {
	position: relative;
	padding-top: 3rem;
	box-shadow: inset 0px 10px 30px rgba(0, 0, 0, 0.15);
}
.lideresGaleria::before {
	content: '';
	position: absolute;
	width: 300px;
	height: 300px;
	background-color: #292929;
	transform: rotate(45deg);
	left: -200px;
	top: 40px;
	border: 10px solid #f7b90f;
	z-index: -1;
}

.lideresGaleria .lideres-flex {
	display: flex;
	justify-content: space-between;
}
.lideresGaleria .contenedor .lideres-flex .lideres {
	width: 50%;
	padding: 2rem;
}
.lideresGaleria .contenedor .lideres-flex .lideres h1 {
	font-size: 40px;
	font-weight: 400;
	margin-bottom: 1rem;
}
.lideresGaleria .contenedor .lideres-flex .lideres h1 span {
	color: var(--icono-enlaces-superior);
	font-weight: 300;
	text-decoration: underline;
}
.lideresGaleria .contenedor .lideres-flex .lideres p {
	padding: 0 30px 1rem 0;
	font-weight: 400;
}

.lideresGaleria .lideres-flex .fotos img {
	width: 100%;
	max-width: 140px;
	/* padding: 5px;   */
	margin: 0.3rem;
	border-radius: 5px;
	border: 2px solid transparent;
	transition: all 0.3s ease-in-out;
}
.lideresGaleria .lideres-flex .fotos img:hover {
	cursor: pointer;
	/* padding: 5px; */
	border: 2px solid rgba(208, 208, 208, 0.2);
	transform: scale(1.1, 1.1);
	box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.25);
	border-radius: 5px;
	opacity: 0.9;
}
.lideresGaleria .contenedor .lideres-flex .galeria {
	width: 50%;
	position: relative;
	height: 400px;
	margin-top: 20px;
}

.lideresGaleria .contenedor .lideres-flex .galeria .contenedorGaleria {
	width: 100%;
	height: 400px;
}

.lideresGaleria .contenedor .lideres-flex .galeria img {
	width: 100%;
	border: 10px solid #ffffff;
	height: 100%;
	object-fit: cover;
}

.lideresGaleria .contenedor .lideres-flex .galeria::before {
	content: '';
	position: absolute;
	background-color: var(--boton-header-login);
	width: 25%;
	height: 10px;
	top: -10px;
	left: -5px;
	animation: float 6s ease-in-out infinite;
}

.lideresGaleria .contenedor .lideres-flex .galeria::after {
	content: '';
	position: absolute;
	background-color: var(--boton-header-login);
	width: 10px;
	height: 40%;
	top: -10px;
	left: -15px;
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
/* fin lideres y Galeria */

/* fronteras */
.fronteras {
	padding: 2rem;
	background: linear-gradient(#1d1d1c, var(--boton-header-login));
}
.fronteras .contenedor .fronterasFlex {
	display: flex;
	justify-content: space-between;
	padding: 1rem;
	position: relative;
}
/* .fronteras .contenedor .fronterasFlex::before {
	content: '';
	position: absolute;
	background-color: var(--boton-header-login);
	width: 10%;
	height: 10px;
	top: -10px;
	left: -5px;
	animation: float 10s ease-in-out infinite;
}

.fronteras .contenedor .fronterasFlex::after {
	content: '';
	position: absolute;
	background-color: var(--boton-header-login);
	width: 10px;
	height: 40%;
	top: -10px;
	left: -15px;
	animation: float 10s ease-in-out infinite;
} */

.fronteras .contenedor .fronterasFlex .imagen {
	width: 30%;

	box-shadow: 10px 30px 10px rgba(0, 0, 0, 0.25);
}
.fronteras .contenedor .fronterasFlex .imagen img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border: 4px solid rgb(34, 34, 34);
	border-right: none;
	background: linear-gradient(#2c2c2c91, rgba(255, 255, 255, 0.492));
}

.fronteras .contenedor .fronterasFlex .texto {
	width: 70%;
	padding: 1rem;
	background-color: #232323b9;
	padding-bottom: 5rem;
	overflow: hidden;
	border: 4px solid rgb(34, 34, 34);
	box-shadow: 10px 30px 10px rgba(0, 0, 0, 0.25);
	border-left: none;
}
.fronteras .contenedor .fronterasFlex .texto h2 {
	font-size: 40px;
	font-weight: 300;
	margin-bottom: 1rem;
	color: #ffffff;
}
.fronteras .contenedor .fronterasFlex .texto h2 span {
	color: var(--icono-enlaces-superior);
	font-weight: 300;
	text-decoration: underline;
}

.fronteras .contenedor .fronterasFlex .texto p {
	color: #bbbbbb;
	padding: 10px;
}

/* fin de fronteras */

/*Preguntas y ubicacion*/
.preguntasUbicacion {
	background-color: #232323;
	clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
	height: 100%;
	padding-top: 250px;
}
.preguntasFrecuentes {
	width: 50%;
}
.preguntasUbicacion.contenedor {
	margin-top: 120px;
	z-index: 10;
}
.preguntasUbicacion .contenedor .preguntasflex {
	display: flex;
	justify-content: space-between;
	color: #ffffff;
	width: 100%;
}

.preguntasUbicacion .preguntasflex .ubicacion {
	padding: 0 4rem;
	width: 60%;
	margin-bottom: 20px;
}
.preguntasUbicacion .preguntasflex .ubicacion .mapa {
	width: 100%;
	position: relative;
	transition: all 0.3s ease-out;
}
.preguntasUbicacion .preguntasflex .ubicacion .mapa p {
	position: absolute;
	bottom: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 3;
	color: #ffffff;
	padding: 1rem;
	transition: all 0.3s ease;
	text-align: center;
}
.preguntasUbicacion .preguntasflex .ubicacion .mapa:hover {
	box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.25);
}
.preguntasUbicacion .preguntasflex .ubicacion .mapa:hover p {
	padding-left: 5px;
}

.preguntasUbicacion .preguntasflex .ubicacion .mapa img {
	width: 100%;
}

.preguntasUbicacion .preguntasflex .ubicacion .titulo {
	margin-bottom: 17px;
}
.preguntasUbicacion .preguntasflex .ubicacion h2 {
	color: var(--boton-header-login);
	font-size: 3rem;
	font-weight: 300;
}
.preguntasUbicacion .preguntasflex .ubicacion h3 {
	font-weight: 200;
}

.separadorbox {
	position: relative;
}
.separador {
	background-color: var(--boton-header-login);
	height: 250px;
	/* clip-path: polygon(0 0, 100% 56%, 100% 56%, 0 60%); */
	width: 100%;
	position: absolute;
	top: 0px;
	z-index: 2;
	clip-path: polygon(0 0, 0 80%, 100% 0);
}

/* acordeon preguntas y respuestas */
.preguntasFrecuentes .pregunta {
	overflow: hidden;
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.25);
	margin-bottom: 10px;
}

.preguntasFrecuentes h2 {
	font-size: 3rem;
	position: relative;
	top: -20px;
	padding: 20px;
}

.preguntasFrecuentes .pregunta .titulo {
	border: 2px solid var(--boton-header-login);
	padding: 1rem;
	transition: 0.2s background-color;
	position: relative;
}
.preguntasFrecuentes .pregunta .titulo:hover {
	border: 2px solid var(--boton-header-login);
	color: var(--boton-header-login);
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.25);
}
.preguntasFrecuentes .pregunta .titulo::before {
	position: absolute;
	content: '';
	right: 14px;
	top: 50%;
	width: 15px;
	height: 2px;
	background-color: var(--boton-header-login);
	transform: translateY(-50%);
}
.preguntasFrecuentes .pregunta .titulo::after {
	position: absolute;
	content: '';
	right: 20px;
	top: 50%;
	width: 2px;
	height: 15px;
	background-color: var(--boton-header-login);
	transform: translateY(-50%);
	transition: 0.3s opacity;
}

.preguntasFrecuentes .pregunta .titulo.activo::after {
	opacity: 0;
}

.preguntasFrecuentes .respuesta {
	overflow: hidden;
	max-height: 0;
	transition: 0.3s max-height ease-out;
	background-color: var(--boton-header-login);
}
.preguntasFrecuentes .respuesta .texto {
	padding: 1rem;
	color: #181818;
}
.preguntasFrecuentes .respuesta ul {
	padding-left: 1rem;
	padding-bottom: 1rem;
	color: #181818;
}

/* fin acordeon preguntas y respuestas */

/* fin de preguntar y ubicacion */

/* footer */
footer {
	background-color: #1d1d1d;
	border-top: 2px solid var(--boton-header-login);
}
footer .footerFlex {
	display: flex;
	justify-content: space-between;
	padding: 2rem 0;
}

footer .footerFlex .info {
	width: 25%;
}

footer .footerFlex .info .titulo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

footer .footerFlex .info p {
	color: #ffffff;
	margin-left: 10px;
	font-size: 14px;
    margin-top: 10px;
}

footer .footerFlex .info .titulo h2 {
	color: var(--boton-header-login);
	padding-left: 10px;
}

footer .footerFlex .info .titulo img {
	width: 100%;
	max-width: 80px;
}

.copy {
	padding: 1rem;
	text-align: center;
	color: #ffffff;
	background-color: #181818;
}
.copybym {
	padding: 1rem;
	background-color: #000000;
	color: #525252;
	text-align: center;
	font-size: 0.8rem;
}

.copybym span {
	color: #f4f4f499;
}

.enlacesUno h2,
.enlacesDos h2 {
	color: var(--boton-header-login);
	font-size: 1.2rem;
	font-weight: 400;
}
.enlacesUno ul,
.enlacesDos ul {
	padding-top: 10px;
}
.enlacesUno ul li,
.enlacesDos ul li {
	margin-bottom: 2px;
}
.enlacesUno a,
.enlacesDos a {
	color: #ffffff;
	font-weight: 200;
	padding: 0 20px;
}
.enlacesUno a:hover,
.enlacesDos a:hover {
	color: var(--boton-header-login);
}

/* formulario de boletin informativo */
.form-boletin {
	background-color: var(--boton-header-login);
	display: flex;
}
.form-boletin input[type='text'] {
	border: 3px solid var(--boton-header-login);
	padding: 0.5rem;
	outline: none;
	background: var(--bg-header-superior);
	width: 100%;
}
.form-boletin input[type='submit'] {
	background-color: var(--boton-header-login);
	border: none;
	padding: 10px;
	font-weight: 300;
	font-size: 1rem;
	text-transform: capitalize;
}
.form-boletin input[type='submit']:hover {
	cursor: pointer;
	opacity: 0.8;
}
.boletin {
	align-self: flex-start;
}
.boletin h2 {
	color: var(--boton-header-login);
	font-size: 1.2rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

/* fin formulario de boletin informativo */
/* fin del footer */

iframe {
	width: 100%;
}

.btn-hamburguesa {
	position: relative;
	z-index: 2;
}

.subir {
	display: flex;
	justify-content: flex-end;
	padding: 1rem;
}
.subir i {
	text-align: center;
	color: var(--boton-header-login);
	font-size: 1.5rem;
	animation: float 6s ease-in-out infinite;
	margin-right: 1rem;
}
/* Media query */

/*=============================================================================
                            FORMULARIO DE LOGIN Y REGISTRO
==============================================================================*/

.login_registro {
	background-color: rgba(0, 0, 0, 0.8);
	position: fixed;
	height: 100%;
	width: 100%;
	z-index: 3;
	top: 0;
	/* top: -100%; */
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-out;
}

.login_registro.activo {
	opacity: 1;
	/* top: 0; */
	visibility: visible;
}

.login_registro .login__contenedor {
	width: 100%;
	max-width: 350px;
	margin: 20vh auto;
	background-color: #ffffff;
	border-radius: 4px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	padding: 1rem;
	position: relative;
	overflow: hidden;
}
.login__contenedor .form__login {
	padding: 1rem;
}

.login__contenedor .titulo {
	font-weight: 400;
	color: #474747;
	font-size: 24px;
	position: relative;
}

.login__contenedor .titulo::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 3px;
	width: 35px;
	background-color: var(--boton-header-login);
	border-radius: 25px;
}

.login__contenedor .input-campo {
	margin-top: 30px;
	height: 50px;
	width: 100%;
	position: relative;
}
.login__contenedor input {
	height: 100%;
	width: 100%;
	position: absolute;
	padding: 0 35px;
	border: none;
	outline: none;
	border-bottom: 2px solid #ccc;
	border-top: 2px solid transparent;
	font-size: 1rem;
}

.login__contenedor input:is(:focus, :valid) {
	border-bottom-color: var(--boton-header-login);
}
.login__contenedor input:is(:focus, :valid) ~ i {
	color: #ecad01;
}

.input-campo i {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #383838;
	/* filter: drop-shadow(1px 2px 2px #ccc); */
	transition: all 0.2s ease;
}

.input-campo i.icono {
	left: 0;
}

.input-campo i.mostrarPw {
	right: 0;
	cursor: pointer;
	padding: 10px;
}

.input-campo.boton {
	margin-top: 30px;
}
.input-campo.boton input {
	border: none;
	color: var(--bg-header-superior);
	box-shadow: 0px 10px 13px -7px rgba(0, 0, 0, 0.25),
		5px 5px 15px 5px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	letter-spacing: 1px;
	font-size: 17px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.3s ease;
	background-color: #ecc101;
}

.boton input:hover {
	background-color: var(--boton-header-login);
}

#cerrarLogin {
	position: absolute;
	right: 0;
	top: 0;
	background: var(--boton-header-login);
	font-size: 1rem;
	color: #000;
	text-transform: uppercase;
	border: none;
	transition: all 0.3s ease-in-out;
	display: block;
	padding: 1rem;
	line-height: 1rem;
}

#cerrarLogin:hover {
	background-color: #db1e05;
	color: #f7b90f;
	cursor: pointer;
}
#cerrarLogin i {
	transition: all 0.3s ease-in-out;
}
#cerrarLogin:hover i {
	transform: rotate(180deg) scale(1.2, 1.2);
}

/*=============================================================================
										FIN FORMULARIO LOGIN Y REGISTRO
  ==============================================================================*/

/*=============================================
ESCRITORIO GRANDE (LG revisamos en 1366px en adelante)
=============================================*/

@media screen and (orientation: landscape) and (min-width: 1200px) {
}

/*=============================================
ESCRITORIO MEDIANO O TABLET HORIZONTAL (MD revisamos en 1024px)
=============================================*/

@media (max-width: 1199px) and (min-width: 992px) {
	.lideresGaleria::before {
		display: none;
	}
	.contenedor {
		width: 100vw;
		overflow: hidden;
	}
	header {
		height: 100px;
	}

	header a {
		font-size: 1rem;
	}
	.headerLista span {
		display: none;
	}
	.usuario {
		width: 50%;
		padding-right: 1rem;
	}
	.usuario a {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1.5rem;
		background-color: var(--boton-header-login);
	}

	.navegacion {
		padding-right: 1rem;
	}
	nav.navegacionSuperior .contenedor .navegacionSupCaja {
		padding: 0 1rem;
	}

	.headerLista ul li a i {
		padding-left: 1rem;
		font-size: 1.5rem;
	}

	.headerLista ul li a:hover {
		color: var(--boton-header-login);
	}
	/* --NAVEGACION */
	.marcas .antiguedad p {
		font-size: 1.8rem;
	}
	.otrasEmpresas p {
		font-size: 1.5rem;
	}

	.navegacion {
		width: 70%;
	}
	/* SLIDER */

	/* LIDERES */
	.lideres-flex {
		flex-direction: column;
		width: 100%;
		align-items: center;
		justify-content: center;
	}
	.marcas {
		height: 200px;
		background-color: #ffffff;
	}
	.marcas-flex {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.marcas .logos {
		width: 90%;
		flex-wrap: wrap;
		text-align: center;
		height: 100%;
		justify-content: center;
		align-items: center;
	}

	.marcas .logos img {
		height: 86px;
		/* padding: 12px 1rem; */
		transform: skewX(35deg);
		object-fit: contain;
		width: 24%;
		padding: 13px 0;
	}

	.marcas .otrasEmpresas {
		width: 100%;
		justify-content: center;
		padding: 10px;
		background-color: #181818;
		margin-bottom: 20px;
	}
	.marcas-flex .antiguedad {
		margin-top: 10px;
		width: 85%;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres p {
		padding: 1rem 0;
		font-size: 1.7rem;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres {
		flex-direction: column;
		width: 70%;
	}
	.lideresGaleria {
		overflow: hidden;
	}
	.lideresGaleria {
		margin-bottom: 0;
	}

	.lideresGaleria::after {
		display: none;
	}

	.lideresGaleria .contenedor .lideres-flex .galeria {
		width: 100%;
		padding: 0;
		border: 0 solid #ffffff;
		height: auto;
	}
	.lideresGaleria .lideres-flex .fotos img {
		max-width: 155px;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria img {
		padding: 1rem 0;
		border: none;
		height: auto;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria .contenedorGaleria {
		height: 100%;
		margin: 0;
	}

	/* FIN LIDERES */
	/* FRONTERAS */

	.fronteras {
		padding: 0;
		position: relative;
	}

	.fronteras .contenedor .fronterasFlex {
		flex-direction: column;
		padding: 0;
	}
	.fronterasFlex .imagen {
		width: 100%;
		margin-bottom: -50px;
	}
	.fronteras .contenedor .fronterasFlex .texto {
		width: 100%;
		height: 560px;
		padding: 1rem;
	}
	.fronteras .contenedor .fronterasFlex .texto h2 {
		font-size: 4rem;
		padding: 1rem;
	}
	.fronteras .contenedor .fronterasFlex .texto p {
		font-size: 1.5rem;
	}

	.fronteras .contenedor .fronterasFlex .texto::after {
		content: '';
		position: absolute;
		background-color: #f7b90f;
		bottom: 10px;
		height: 10px;
		width: 100%;
		animation: float 6s ease-in-out infinite;
	}

	.fronteras .contenedor .fronterasFlex .imagen {
		width: 100%;
		height: auto;
	}

	/* FIN FRONTERAS */

	/* PREGUNTAS FRECUENTES */
	.preguntasflex {
		flex-direction: column;
		margin-bottom: -103px;
	}
	.preguntasFrecuentes {
		height: auto;
		margin-bottom: 100px;
		padding: 0 10px;
	}
	.preguntasUbicacion {
		padding: 0;
		margin: 0;
	}
	iframe {
		width: 100%;
	}
	.preguntasFrecuentes {
		width: 100%;
	}
	.preguntasFrecuentes .pregunta .titulo {
		font-size: 1.6rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion .titulo {
		padding: 2rem;
	}
	.preguntasFrecuentes .respuesta {
		font-size: 1.5rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion {
		padding: 0;
	}
	.preguntasUbicacion .preguntasflex .ubicacion h2 {
		font-size: 4rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion h3 {
		font-size: 3rem;
	}

	/* FIN PREGUNTAS FRECUENTES */
	/* FOOTER */
	.footerFlex {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer .footerFlex .info .titulo img {
		max-width: 140px;
	}
	footer .footerFlex .info {
		width: 100%;

		padding-bottom: 20px;
	}
	footer .footerFlex .info .titulo {
		flex-direction: column;
		text-align: center;
	}
	footer .parrafo {
		font-size: 2rem;
	}
	.boletin {
		width: 70%;
	}
	.form-boletin input[type='text'] {
		font-size: 1.5rem;
	}
	.form-boletin input[type='submit'] {
		font-size: 1.6rem;
	}
	footer .footerFlex .info p {
		padding: 1rem;
		margin: 0;
		font-size: 1.5rem;
	}

	.enlacesUno {
		/* text-align: center; */
		margin-bottom: 20px;
		font-size: 1.3rem;
		text-align: center;
		display: none;
	}
	.enlacesUno h2 {
		font-size: 2rem;
	}

	.boletin {
		align-self: center;
	}

	.copy {
		font-size: 1.5rem;
		text-align: center;
	}
}

/*=============================================
ESCRITORIO PEQUEÑO O TABLET VERTICAL (SM revisamos en 768px)
=============================================*/

@media (max-width: 1200px) and (min-width: 625px) {
	.contenedor {
		width: 100%;
		overflow: hidden;
	}
	header {
		height: 100px;
	}

	header a {
		font-size: 1rem;
	}
	.headerLista span {
		display: none;
	}
	.usuario {
		width: 50%;
		padding-right: 1rem;
	}
	.usuario a {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1.5rem;
		background-color: var(--boton-header-login);
	}
	/* NAVEGACION */
	.navegacion {
		display: none;
	}

	.btn-hamburguesa {
		display: block;
		padding: 1rem;
		font-size: 2rem;
		color: #ccc;
	}

	.headerLista ul li a i {
		padding-left: 1rem;
		font-size: 1.5rem;
	}

	.headerLista ul li a:hover {
		color: var(--boton-header-login);
	}
	/* --NAVEGACION */
	.marcas .antiguedad p {
		font-size: 1.8rem;
	}
	.otrasEmpresas p {
		font-size: 1.5rem;
	}
	/* SLIDER */

	.flechas {
		top: -78px;
	}
	/* SLIDER -- */

	/* LIDERES */
	.lideres-flex {
		flex-direction: column;
		width: 100%;
		align-items: center;
		justify-content: center;
	}
	.marcas {
		height: 200px;
		background-color: #ffffff;
	}
	.marcas-flex {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.marcas .logos {
		width: 90%;
		flex-wrap: wrap;
		text-align: center;
		height: 100%;
		justify-content: center;
		align-items: center;
	}

	.marcas .logos img {
		height: 86px;
		/* padding: 12px 1rem; */
		transform: skewX(35deg);
		object-fit: contain;
		width: 24%;
		padding: 13px 0;
	}

	.marcas .otrasEmpresas {
		width: 100%;
		justify-content: center;
		padding: 10px;
		background-color: #181818;
		margin-bottom: 20px;
	}
	.marcas-flex .antiguedad {
		width: 85%;
		margin-top: 10px;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres p {
		padding: 1rem 0;
		font-size: 1.7rem;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres {
		flex-direction: column;
		width: 70%;
	}
	.lideresGaleria {
		overflow: hidden;
	}
	.lideresGaleria {
		margin-bottom: 0;
	}

	.lideresGaleria::before {
		display: none;
	}

	.lideresGaleria .contenedor .lideres-flex .galeria {
		width: 100%;
		padding: 0;
		border: 0 solid #ffffff;
		height: auto;
	}
	.lideresGaleria .lideres-flex .fotos img {
		max-width: 155px;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria img {
		padding: 1rem 0;
		border: none;
		height: auto;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria .contenedorGaleria {
		height: 100%;
		margin: 0;
	}

	/* FIN LIDERES */
	/* FRONTERAS */

	.fronteras {
		padding: 0;
		position: relative;
	}

	.fronteras .contenedor .fronterasFlex {
		flex-direction: column;
		padding: 0;
	}
	.fronterasFlex .imagen {
		width: 100%;
		margin-bottom: -50px;
	}
	.fronteras .contenedor .fronterasFlex .texto {
		width: 100%;
		height: 560px;
		padding: 1rem;
	}
	.fronteras .contenedor .fronterasFlex .texto h2 {
		font-size: 4rem;
		padding: 1rem;
	}
	.fronteras .contenedor .fronterasFlex .texto p {
		font-size: 1.5rem;
	}

	.fronteras .contenedor .fronterasFlex .texto::after {
		content: '';
		position: absolute;
		background-color: #f7b90f;
		bottom: 10px;
		height: 10px;
		width: 100%;
		animation: float 6s ease-in-out infinite;
	}

	.fronteras .contenedor .fronterasFlex .imagen {
		width: 100%;
		height: auto;
	}

	/* FIN FRONTERAS */

	/* PREGUNTAS FRECUENTES */
	.preguntasflex {
		flex-direction: column;
		margin-bottom: -103px;
	}
	.preguntasFrecuentes {
		height: auto;
		margin-bottom: 100px;
		padding: 250px 1rem;
		width: 100%;
	}
	.preguntasUbicacion {
		padding: 0;
		margin: 0;
	}
	.preguntasFrecuentes .pregunta .titulo {
		font-size: 1.6rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion .titulo {
		padding: 2rem;
	}
	.preguntasFrecuentes .respuesta {
		font-size: 1.5rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion {
		padding: 0;
		width: 100%;
	}
	.preguntasUbicacion .preguntasflex .ubicacion h2 {
		font-size: 4rem;
	}
	.preguntasUbicacion .preguntasflex .ubicacion h3 {
		font-size: 3rem;
	}

	/* FIN PREGUNTAS FRECUENTES */
	/* FOOTER */
	.footerFlex {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer .footerFlex .info .titulo img {
		max-width: 140px;
	}
	footer .footerFlex .info {
		width: 100%;

		padding-bottom: 20px;
	}
	footer .footerFlex .info .titulo {
		flex-direction: column;
		text-align: center;
	}
	footer .parrafo {
		font-size: 2rem;
	}
	.boletin {
		width: 70%;
	}
	.form-boletin input[type='text'] {
		font-size: 1.5rem;
	}
	.form-boletin input[type='submit'] {
		font-size: 1.6rem;
	}
	footer .footerFlex .info p {
		padding: 1rem;
		margin: 0;
		font-size: 1.5rem;
	}

	.enlacesUno {
		/* text-align: center; */
		margin-bottom: 20px;
		font-size: 1.3rem;
		text-align: center;
		display: none;
	}
	.enlacesUno h2 {
		font-size: 2rem;
	}

	.boletin {
		align-self: center;
	}

	.copy {
		font-size: 1.5rem;
		text-align: center;
	}
}

/*=============================================
MOVIL (XS revisamos en 320px)
=============================================*/
@media screen and (orientation: landscape) and (min-device-width: 780px) and (max-device-width: 932px) {
	/* Input Styles */

	.lideresGaleria::before {
		display: none;
	}

	.preguntasFrecuentes {
		width: 100%;
		margin-top: 209px;
		padding: 1rem;
	}
	.ubicacion {
		width: 100%;
	}
}

@media screen and (orientation: landscape) and (min-device-width: 780px) and (max-device-width: 1200px) {
	/* Input Styles */

	.lideresGaleria::before {
		display: none;
	}
	.preguntasUbicacion .preguntasflex .ubicacion {
		width: 100%;
	}

	.ubicacion {
		width: 100%;
	}
}

@media screen and (orientation: landscape) and (min-device-width: 420px) and (max-device-width: 780px) {
	/* Input Styles */

	.lideresGaleria::before {
		display: none;
	}

	.preguntasUbicacion .preguntasflex .ubicacion {
		width: 100%;
	}
}

@media screen and (orientation: landscape) and (min-device-width: 250px) and (max-device-width: 600px) {
	/* Input Styles */

	.lideresGaleria::before {
		display: none;
	}
}

@media (max-width: 767px) {
	.slider__titulo {
		min-height: 42px;
	}
	.contenedor {
		width: 100%;
		overflow: hidden;
	}
	header {
		height: 91px;
	}

	header a {
		font-size: 0.2rem;
	}
	.headerLista span {
		display: none;
	}
	.usuario {
		width: 50%;
	}
	.usuario a {
		display: block;
		width: 100%;
		text-align: center;
		font-size: 1rem;
		background-color: var(--boton-header-login);
	}
	/* NAVEGACION */
	.navegacion {
		display: none;
	}

	.btn-hamburguesa {
		display: block;
		padding: 1rem;
		font-size: 2rem;
		color: #ccc;
	}
	/* --NAVEGACION */

	/* MARCAS */

	/* -- MARCAS */

	/* SLIDER */
	.slider {
		margin-top: -40px;
	}

	.slider__anterior,
	.slider__siguiente {
		position: absolute;
		display: block;
		width: 30px;
		height: 30px;
		border: none;
		top: calc(50%);
		cursor: pointer;
		line-height: 30px;
		text-align: center;
		background: none;
		color: #ffffff;
		opacity: 40%;
		font-size: 1rem;
		transition: opacity 0.3s ease-out;
	}
	.slider__titulo h1 {
		font-size: 1.5rem;
		color: var(--boton-header-login);
		width: 100%;
		padding-left: 6%;
	}
	.slider__titulo p {
		font-size: 0.5rem;
		color: #ffffff;
		padding-left: 7%;
	}
	.slider__contenedor .slider__indicadores {
		bottom: 4px;
	}
	.slider__contenedor .slider__indicadores .glider-dot {
		width: 5px;
		height: 5px;
		border-radius: 50%;
	}

	/* SLIDER -- */
	/* antiguedad */
	.marcas .antiguedad,
	.marcas .antiguedad p {
		transform: skew(0deg);
	}
	.marcas-flex .antiguedad {
		width: 100%;
		background-color: #f4f4f4;
	}
	/* LIDERES */
	.lideres-flex {
		flex-direction: column;
		width: 100%;
		align-items: center;
		justify-content: center;
	}
	.marcas {
		height: 200px;
		background-color: #ffffff;
	}
	.marcas-flex {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.marcas .logos {
		width: 90%;
		flex-wrap: wrap;
		text-align: center;
		height: 100%;
		justify-content: center;
		align-items: center;
	}

	.marcas .logos img {
		height: 86px;
		/* padding: 12px 1rem; */
		transform: skewX(35deg);
		object-fit: contain;
		width: 24%;
		padding: 13px 0;
	}

	.marcas .otrasEmpresas {
		width: 100%;
		justify-content: center;
		padding: 10px;
		background-color: #181818;
		margin-bottom: 20px;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres p {
		padding: 0;
	}

	.lideresGaleria .contenedor .lideres-flex .lideres {
		flex-direction: column;
		width: 100%;
	}
	.lideresGaleria {
		overflow: hidden;
	}
	.lideresGaleria {
		margin-bottom: 0;
	}

	.lideresGaleria::before {
		display: none;
	}

	.lideresGaleria .contenedor .lideres-flex .galeria {
		width: 100%;
		padding: 0;
		border: 0 solid #ffffff;
		height: auto;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria img {
		padding: 0;
		border: none;
		height: auto;
	}
	.lideresGaleria .contenedor .lideres-flex .galeria .contenedorGaleria {
		height: 100%;
		margin: 0;
	}

	/* FIN LIDERES */

	/* PREGUNTAS FRECUENTES Y UBICACION */
	.preguntasFrecuentes {
		width: 100%;
	}
	.preguntasUbicacion .preguntasflex .ubicacion {
		width: 100%;
	}
	.preguntasUbicacion .preguntasflex .ubicacion .titulo {
		padding-left: 1rem;
	}

	/* PREGUNTAS FRECUENTES Y UBICACION --*/

	/* FRONTERAS */

	.fronteras {
		padding: 0;
		position: relative;
		height: 100%;
	}

	.fronteras .contenedor .fronterasFlex {
		flex-direction: column-reverse;
		padding: 0;
	}
	.fronterasFlex .imagen {
		width: 100%;
		margin-bottom: -50px;
		display: none;
	}
	.fronteras .contenedor .fronterasFlex .texto {
		width: 100%;
	}

	.fronteras .contenedor .fronterasFlex .texto::after {
		content: '';
		position: absolute;
		background-color: #f7b90f;
		bottom: 10px;
		height: 10px;
		width: 100%;
		animation: float 6s ease-in-out infinite;
	}

	.fronteras .contenedor .fronterasFlex .imagen {
		width: 100%;
		height: auto;
	}

	/* FIN FRONTERAS */

	/* PREGUNTAS FRECUENTES */
	.preguntasflex {
		flex-direction: column;
		margin-bottom: -103px;
	}
	.preguntasFrecuentes {
		height: auto;
		margin-bottom: 50px;
		padding: 0 10px;
		margin-top: 203px;
	}
	.preguntasUbicacion {
		padding: 0;
		margin: 0;
	}
	.preguntasUbicacion .preguntasflex .ubicacion {
		padding: 0;
	}

	/* FIN PREGUNTAS FRECUENTES */
	/* FOOTER */
	.footerFlex {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	footer .footerFlex .info {
		width: 100%;
		text-align: center;
		padding-bottom: 20px;
	}
	footer .footerFlex .info .titulo {
		flex-direction: column;
	}
	footer .footerFlex .info p {
		padding: 10px;
		margin: 0;
		font-size: 1rem;
	}

	.enlacesUno {
		/* text-align: center; */
		margin-bottom: 20px;
		font-size: 1.3rem;
		/* text-align: center; */
		/* display: none; */
		width: 90%;
	}
	.enlacesDos {
		/* text-align: center; */
		margin-bottom: 20px;
		font-size: 1.3rem;
		/* text-align: center; */
		/* display: none; */
		width: 90%;
	}
	.enlacesUno h2,
	.enlacesDos h2 {
		font-size: 2rem;
	}

	.boletin {
		align-self: center;
		width: 90%;
	}

	.copy {
		font-size: 0.8rem;
		text-align: center;
	}

	/* --FOOTER */
}
