html {
	scroll-behavior: smooth;
}

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

body {
	background: #f2f2f2;
	/*font-family: 'Roboto', sans-serif;*/
	/*font-family: 'Montserrat', sans-serif;*/
	font-family: 'Open Sans', sans-serif;

}

a {
	text-decoration: none;
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 80px);
	
	position: relative;
	z-index: 2;
}

/*.hero h1 {
	font-family: 'Montserrat', sans-serif;
	font-size: 80px;
	color: #ffc827;
}*/

.hero h3 {
	color: #fff;
	font-style: italic;
	font-weight: 300;
}

.hero p {

	font-size: 40px;
	/*text-transform: uppercase;*/
	color: #fff;
}

nav {
	background: #ff4d4d;
	height: 80px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	display: flex;
	position: sticky;
	top: 0;
	overflow: hidden;
}

nav a {
	flex: 1;
	height: 100%;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	transition: .2s ease-in-out all;
	font-weight: 500;
}

nav a:hover {
	background: #ff3333;
}

nav .indicador {
	width: 0px;
	height: 7px;
	background: #ffc827;
	position: absolute;
	bottom: 0;
	transition: .3s ease-out all;
	/* transform: translate(-500px); */
}

.seccion {
	min-height: 100vh;
	max-width: 800px;
	width: 90%;
	margin: auto;

	padding-top: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

}

.seccion .card {
	background: #fff;
	height: 90%;
	padding: 40px;
	border-radius: 5px;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.seccion h1 {
	font-size: 38px;
	margin-bottom: 20px;
}

.seccion p {
	line-height: 38px;
	margin-bottom: 20px;
	color: #1c1c1c;
	font-size: 18px;
}

.seccion img {
	width: 100%;
	vertical-align: top;
	margin-bottom: 20px;
}
.seccion h2 {
	font-size: 30;
	margin-bottom: 10px;
}
.slider-frame {
	width: 100%;
	height: auto;
	overflow: hidden;
}

@keyframes slide{
	0% {margin-left: 0%;}
	20% {margin-left: 0%;}

	25% {margin-left: -100%;}
	45% {margin-left: -100%;}

	50% {margin-left: -200%;}
	70% {margin-left: -200%;}

	75% {margin-left: -300%;}
	95% {margin-left: -300%;}
}
.slider-frame ul {
	display: flex;
	padding: 0;
	width: 400%;
	animation: slide 15s infinite  ease-in-out;
}

.slider-frame li {
	list-style: none;
	width: 100%;
}

@media screen and (max-width: 800px) {
	nav a {
		font-size: 14px;
		padding: 5px;
	}
}

@media screen and (max-width: 450px) {
	nav a {
		font-size: 12px;
	}
}


video {
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.capa {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/*background: #f1f1f1;*/
	/*opacity: 0.5;*/
	background: rgba(199, 199, 199, 0.5);
	mix-blend-mode: normal;
	background-image: radial-gradient(circle, rgb(0, 0, 0) , transparent 100%), 
                      radial-gradient(circle, rgb(0, 0, 0) , transparent 100%);
    background-position: 0 0, 10px 10px; /* Desplazamiento de los puntos */
    background-size: 4px 4px; /* Tamaño de los puntos */
}

.material-icons {
	font-size: 36px;
}
.contacto {
	text-align: center;
}
