@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&display=swap');
/*  font-family: 'Open Sans Condensed', sans-serif;  */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
/*   font-family: 'Krona One', sans-serif;  */
/*   font-family: 'Noto Sans JP', sans-serif;   */

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,700&display=swap');
@import url("../iconos-web/iconos-web.css");

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Open Sans Condensed', sans-serif;
	font-size: 13pt;
	line-height: 160%;
	background: #fff;
	color: #000;
	/* min-height: 100vh; */
	/* display: flex;
	flex-direction: column;
	justify-content: space-between; */
}

.contenedor__header {
	width: 100%;
	padding: 10px 0;
	;
}

.contenedor__header .logo {
	width: 200px;
	margin: 0 auto;
}

.contenedor__header img {
	width: 100%;
	display: block;
	margin: 0;
	padding: 0;
}

#contenedor-slider-index {
	width: 100%;
	/* height: 500px; */
	position: relative;
	overflow: hidden;
	margin: auto;
	color: #fff;
	height: calc(100vh - 130px);
}

.btn,
.btn:visited {
	display: inline-block;
	text-decoration: none;
	margin-top: 0px;
	/* background: #c6a363; */
	color: #fff;
	/* font-family: "Roboto Condensed", sans-serif; */
	font-weight: 700;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 5px 10px;
	border-radius: 20px;
	transition: all .3s ease-in;
	display: flex;
	align-items: center;
	align-content: center;
	backdrop-filter: blur(10px);
	box-shadow: 0px 0px 30px rgba(277, 228, 237, .37);

	&:hover {
		color: #c6a363;
		background: transparent;
	}

	&:active {
		transform: scale(1.1);
	}
}

.iconos {
	font-size: 2rem;
	margin-right: 10px;
	margin-top: 10px;
	color: #fff;
}

#slider section img {
	width: 100%;
	height: calc(100vh - 130px);
	object-fit: cover;
}

#slider section h1 {
	margin: 0;
	padding: 0 10px;
	text-align: center;
	font-family: var(--titulos);
	font-size: 22pt;
	line-height: 1.2;
	text-shadow: 3px 3px 3px var(--color3);
	z-index: 900;
}

#slider section h2 {
	font-size: 16pt;
	font-family: var(--destacados);
	line-height: 1.2;
	margin-top: 25px;
	text-align: center;
	padding: 0 20px;
}

#slider {
	width: 100%;
	display: flex;
	width: 1700%;	/*este ancho varia de acuerdo a la cantidad de imagenes... 100% por cada una*/
}

#slider section {
	width: 100%;
	overflow: hidden;
}

#slider section .small img,
#slider section .normal img {
	min-width: 100%;
	/* min-height: 100%; */
	display: inline-block;
	object-fit: cover;
	margin: 0;
	object-fit: cover;

}
#slider section .normal {
	width: 100%;
	height: 100%;
	object-fit: cover;

}

#slider section img {
	width: 100%;
}

#slider section .texto__slide {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	background-color: rgba(0, 22, 40, .6);
}
#slider section .texto__slide .descripcion {
	width: 100%;
	height: 120px;
	text-align: right;
	/* display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: end;
	align-content: flex-end; */

	position: absolute;
	bottom: 0;
	right: 30px;
}
#slider section .texto__slide .descripcion .btn,
#slider section .texto__slide .descripcion .btn:visited {
	width: 100px;
	background: var(--color1);
	font-size: 14pt;
	padding: 5px 25px;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	margin-top: 15px;
}
#slider section .texto__slide .descripcion .btn:hover {
	color: var(--color1);
	background: #fff;
}

#slider section .texto__slide h1,
#slider section .texto__slide h2 {
	font-size: 14pt;
	text-align: right;
	padding: 0;
	margin: 0;
}
#slider section .texto__slide h2 {
	font-size: 12pt;
}

#btn-prev-index,
#btn-next-index {
	width: 40px;
	height: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 22px;
	text-align: center;
	cursor: pointer;
	color: #fff;
	z-index: 900;
	display: flex;
	justify-content: center;
	align-items: center;
}

#btn-prev-index:hover,
#btn-next-index:hover {
	background: rgba(255, 255, 255, 0.5);
}

#btn-prev-index {
	left: 3px;
}

#btn-next-index {
	right: 3px;
}
#slider .botonera {
	position: absolute;
	bottom: 10px;
	z-index: 2;
}
.botonera {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: -120px;

}

/* DESDE */

@media (width >= 768px) {

	#contenedor-slider-index {
		height: 650px;
}

	#slider section .texto__slide .descripcion {
		width: 40%;
		height: 200px;
		right: 100px;
	}

	#slider section h1 {
		font-size: 40pt;
	}

	#slider section h2 {
		font-size: 18pt;
	}

	#slider section .normal {
		display: block;
	}

	#slider section .small {
		display: none;
	}
}