/* RESET*/

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, img, ins, kbd, q, s, samp,small, strike, sub, sup, tt, var,u, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,caption, thead, 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;
}
/* HTML5 display-role reset for older browsers */
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;
}

* {box-sizing:border-box;}


/*ESTILOS GENERALES
****************************************/

body {
	font-family: "Arsenal", serif;
	overflow-x: hidden;
	background-image: url(../imagenes/webb.png);
	}
	
::-webkit-scrollbar {
	width: 10px;
	}
	
::-webkit-scrollbar-track { /*fondo-barra-scroll*/
	background-color: #E9E9E9;
	}

::-webkit-scrollbar-thumb { /*barra-scroll*/
	background-color: ##c0ed03;
	}
	
::-moz-selection {
	background-color:#F2E205;
	color: #003428;
	}
	
::selection {
	background-color:#F2E205;
	color: #003428;
	}
	
a {
	text-decoration:none;	
		
	transition: 0.3s ease;
	-webkit-transition: 0.3s ease;
	-o-transition: 0.3s ease;
	-moz-transition: 0.3s ease;
	}


/*FIRMA KOI*/

#firma-koi {
	width: 100%;
	height: 100px;
	padding-top: 40px;
	background: #79A637;
}

#firma-koi h5 {
	position: relative;
	float: left;
	width: 550px;
	height: 20px;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 1px;	
	color: white;
	margin-left: 50px;
}

#firma-koi h4 {
	position: relative;
	float: right;
	width: 140px;
	height: 20px;
	font-size: 12px;
	line-height: 20px;
	letter-spacing: 1px;	
	color: white;
	margin-right: 50px;		
}

#firma-koi h4 a {
	color: white;
}

#firma-koi h4 a:hover {
	color: #10454f;	
}

/*INICIO*/
#barra-top {
	width: 100%;
	background-color: #003428;
	height: 100px;
	position: fixed;
	z-index: 1;
	box-shadow: 1px 5px 5px -4px rgba(0,0,0,0.4);

}

#barra-top article {
	width: 80%;
	height: 100px;
	margin: auto;
}

#barra-top article figure {
	position: relative;
	float: left;
	width: 25%;
	height: 100px;
	background-image: url(../imagenes/nases.png);
	background-position: left;
	background-repeat: no-repeat;

}

#barra-top article p {
	position: relative;
	float: left;
	width: 25%;
	height: 100px;
	text-align: center;
	line-height: 100px;	
	font-size: 18px;
	letter-spacing: 1px;
	color: white;
	font-weight: 400;
}

#barra-top article section {
	position: relative;
	float: left;
	width: 25%;
	height: 100px;		
}

#barra-top article section a {
	position: absolute;
	top: 0;
	left: 0;
	width: 190px;
	height: 100px;
	background-image: url(../imagenes/whatsapp.png);
	background-repeat: no-repeat;
	background-position: left center;
	line-height: 100px;	
	font-size: 18px;
	letter-spacing: 1px;
	text-align: right;
	color: white;
	font-weight: 400;
	
}

#barra-top article ul {
	position: relative;
	float: right;
	width: 25%;
	height: 100px;	
	text-align: center;
}

#barra-top article ul li {
	display: inline-block;
}

#barra-top article ul li a:hover {
	opacity: 0.5;
}



:root {
    /* Full grid area variable */
    --fullGrid: 1 / 1 / -1 / -1;
}

header {
    /* Create grid spanning viewport width & height */
    display: grid;
    grid-template-rows: 100vh;
    overflow: hidden;
}

.video-bg {
    /* Span the full grid */
    grid-area: var(--fullGrid);

    /* Re-size video to cover full screen while maintaining aspect ratio */
    min-width: 100%;
    height: 700px;
    object-fit: cover;

    /* Display video below overlay */
    z-index: -1;
}

.video-bg::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    /* Span the full grid */
    grid-area: var(--fullGrid);  
	
	height: 700px;

    /* Semi-transparent background */
    background-color: rgba(0, 52, 40, 0.6);
	
}

header h1 {
    font-size: 60px;
	line-height: 70px;
	letter-spacing: 2px;
    font-weight: 700;	
    color: #fff;
	text-align: center;
	padding-top: 300px;	
	width: 750px;
	height: 500px;
	margin: auto;	
}

header h1 span {
	font-weight: 100;
	color: #F2E205;
}



/*flecha*/
.flecha-animada {
	width: 36px;
	height: 100px;
	margin: auto;	
	margin-top: 100px;
}

.flecha-animada .flecha-abajo {
	position: absolute;
	width: 36px;
	height: 2px;
	opacity: 0;
	transform: scale(0.3);
	animation: move-arrow 3s ease-out infinite;
}
.flecha-animada .flecha-abajo:first-child {
	animation: move-arrow 3s ease-out 1s infinite;
}
.flecha-animada .flecha-abajo:nth-child(2) {
	animation: move-arrow 3s ease-out 2s infinite;
}
.flecha-animada .flecha-abajo:before, .flecha-abajo:after {
	content: '';
	position: absolute;
	top: 0;
	height: 100%;
	width: 50%;
	background: white;
}
.flecha-animada .flecha-abajo:before {
	left: 0;
	transform: skewY(30deg);
}
.flecha-animada .flecha-abajo:after {
	right: 0;
	width: 50%;
	transform: skewY(-30deg);
}
@keyframes move-arrow {
	25% {
		opacity: 1;
   }
	33.3% {
		opacity: 1;
		transform: translateY(2.28rem);
   }
	66.6% {
		opacity: 1;
		transform: translateY(3.12rem);
   }
	100% {
		opacity: 0;
		transform: translateY(4.8rem) scale(0.5);
   }
}

/*cierre header*/

.presentacion {
	width: 640px;
	height: 300px;
	color: #79a637;
	font-size: 24px;
	line-height: 40px;
	text-align: center;
	font-weight: 400;
	margin: auto;	
	margin-bottom: 150px;
}

.presentacion span {
	font-weight: 800;
}

.proyectos {
	width: 100%;
	height: 800px;
	margin: auto;
	padding-top: 100px;
	border-top: 1px solid #c0ed03;
}

.proyectos h2 {
	font-size: 32px;
	margin-bottom: 50px;	
	font-weight: 800;
	letter-spacing: 1px;
	text-align: center;
	color: #10454f;
}

.proyectos figure {
	width: 1300px;
	height: 542px;
	margin: auto;
	background-image: url(../imagenes/plano.png);
}

.proyectos section {
	position: relative;
	float: left;
	width: 48%;
	height: 400px;
	margin: 1%;
}


.proyectos section:nth-child(2) {
	background-color: #c0ed03;
}

.proyectos section:nth-child(3) {
	background-color: #10454f;
}


#beneficios {
	width: 100%;
	height: 1000px;
	background-image: url(../imagenes/SLIDE2.jpg);
	background-position: center center;
	border-top: 1px solid #c0ed03;	
}

#beneficios h3 {
	font-size: 28px;
	margin-top: 120px;
	margin-bottom: 100px;	
	font-weight: 800;
	letter-spacing: 3px;
	color: #10454f;
	text-align: center;
}

#beneficios ul {
	width: 1200px;
	height: 600px;
	margin: auto;
}

#beneficios ul li {
	position: relative;
	float: left;
	width: 296px;
	height: 296px;
	margin: 2px;
	background-color: #79A637;
	text-align: center;
	color: #fff;	
}

#beneficios ul li:nth-child(1),
#beneficios ul li:nth-child(4),
#beneficios ul li:nth-child(7) {
	background-color: #F2E205;
	color: #003428;
}

#beneficios ul li:nth-child(3),
#beneficios ul li:nth-child(6) {
	background-color: #003428;
	color: white;
}

#beneficios ul li figure {
	width: 40px;
	height: 40px;
	margin: auto;
	margin-top: 40px;
}

#beneficios ul li figure img {
	width: 100%;
}

#beneficios ul li h4 {
	font-size: 20px;
	line-height: 24px;
	font-weight: 800;
	width: 220px;
	margin: auto;
	padding-top: 10px;
	padding-bottom: 20px;
	border-bottom: 1px solid #fff;
}

#beneficios ul li p {
	font-size: 18px;
	line-height: 22px;
	font-weight: 500;
	padding: 15px 40px 0 40px;
}

#como-llegar {
	width: 100%;
	height: 900px;
	background-image: url(../imagenes/fondo-oscuro.jpg);
	padding-top: 120px;
	text-align: center;
}

#como-llegar h2 {
	font-size: 32px;
	margin-bottom: 50px;	
	font-weight: 800;
	letter-spacing: 3px;
	color: #c0ed03;
	text-align: center;
}

#como-llegar ul {
	width: 1200px;
	height: 450px;
	margin: auto;	
	margin-bottom: 80px;
}

#como-llegar ul li {
	width: 380px;
	height: 450px;
	display: inline-block;
	background-color: rgba(0, 0, 0, 0.2);
}

#como-llegar ul li:nth-child(2) {
	margin-left: 25px;
	margin-right: 25px;
}

#como-llegar a {
	color: white;
	padding: 20px 30px 20px 70px;
	border: 1px solid #78ac7a;
	font-size: 18px;
	font-weight: 600;
	font-style: oblique;
	letter-spacing: 1px;
	text-align: center;
	background-image: url(../imagenes/whatsapp.png);
	background-position: left center;
	background-repeat: no-repeat;
}

#como-llegar a:hover {
	color: #c0ed03;
	border: 1px solid #c0ed03;
	background-image: url(../imagenes/whatsapp-hover.png);
}

/**********************************************************************************************************************************************************************************************************************************************************/


/* 1366*/
@media screen and (max-width:1400px) {

/*INICIO*/

#barra-top {
	height: 70px;
}

#barra-top article {
	height: 70px;
	width: 90%;
}

#barra-top article p {
	line-height: 70px;	
	font-size: 16px;
	height: 70px;
}


#barra-top article section {
	height: 70px;		
}

#barra-top article section a {
	height: 70px;
	line-height: 70px;
}

#barra-top article figure {
	height: 70px;
}

#barra-top article ul {	
	height: 70px;
}

#barra-top article ul {	
	height: 70px;
}

#barra-top article ul li {	
	height: 70px;
	margin: 0 5px;
}

#barra-top article ul li a img {	
	height: 70px;
}

#banner {
	padding-top: 200px;
	height: 650px;
}

.proyectos figure {
	width: 80%;
	height: 500px;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

#beneficios ul {
	width: 1024px;
	height: 520px;
	margin: auto;
}

#beneficios ul li {
	width: 252px;
	height: 252px;
}

#beneficios ul li figure {
	margin-top: 30px;
}

#beneficios ul li h4 {
	padding-bottom: 10px;
}

#beneficios ul li p {
	font-size: 16px;
	line-height: 20px;
	padding: 15px 30px 0 30px;
}


}


/*1024*/
@media screen and (max-width:1350px) {

#barra-top article {
	width: 96%;
}

#barra-top article figure {
	background-size: 70%;
}

#barra-top article ul {
	width: 25%;
}

.proyectos {
	background-size: 90%;	
}

#como-llegar ul {
	width: 1000px;
	height: 380px;
}

#como-llegar ul li {
	width: 310px;
	height: 380px;
}

#como-llegar ul li img {
	width: 100%;
}

#firma-koi h5 {
	margin-left: 20px;		
	}
	
#firma-koi h4 {
	margin-right: 20px;		
	}

}

/*menos de 1024*/
@media screen and (max-width:1023px) {

header h1 {
	font-size: 40px;
	line-height: 50px;
	width: 540px;
	height: 400px;
	
}


.proyectos {
	width: 100%;
	height: 700px;
	margin: auto;
	padding-top: 40px;
	text-align: center;
	background-image: none;

}	

.proyectos h2 {
	width: 200px;
	margin: auto;
	font-size: 20px;
	line-height: 26px;
	margin-bottom: 50px;	
	
}

#beneficios {
	width: 100%;
	height: 1600px;
	background-position: bottom center;
	background-repeat: no-repeat;
}

#beneficios h3 {
	width: 320px;
	height: 60px;
	margin: auto;
	margin-top: 70px;
	margin-bottom: 60px;	
	font-size: 22px;
	line-height: 30px;
	letter-spacing: 2px;
}

#beneficios ul {
	width: 515px;
	height: 1050px;
}

#como-llegar {
	width: 100%;
	height: 1850px;
	background-color: #10454f;
	padding-top: 120px;
	text-align: center;
}

#como-llegar ul {
	width: 380px;
	height: 1400px;
}

#como-llegar ul li {
	width: 380px;
	height: 450px;
}

#como-llegar ul li:nth-child(2) {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 25px;
	margin-bottom: 25px;
}

#como-llegar ul li img {
	width: 100%;
}



}

/*800*/
@media screen and (max-width:800px) {

#barra-top article figure {
	width: 25%;
	background-size: 100%;
}

#barra-top article p:nth-child(2) {
	display: none;
}

#barra-top article p {
	width:200px;
}

#barra-top article ul {
	width: 210px;
}

#banner h1 {
	width: 600px;
	height: 200px;	
}

.presentacion {
	width: 500px;
}

.proyectos {
	height: 1150px;
}

.proyectos figure {
	width: 385px;
	height: 952px;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url(../imagenes/plano-vertical.png);
}

#firma-koi {
	height: 180px;
	padding-top: 60px;
}

#firma-koi h5 {
	width: 100%;
	height:auto;
	line-height: 20px;
	text-align: center;	
	padding: 0 50px;
	margin-bottom: 15px;
	margin-left: 0;
	margin-right: 0;
}

#firma-koi h4 {
	float: left;
	width: 100%;
	text-align: center;	
	margin-left: 0;
	margin-right: 0;
}

}

/*600*/
@media screen and (max-width:600px) {

#barra-top article {
	width: 100%;
}	

#barra-top article figure {
	width: 50px;
	background-image: url(../imagenes/koniminto-icon.png);
	background-size: 80%;
}

#barra-top article section a {	
	width: 180px;
	height: 70px;	
	line-height: 70px;
}

#barra-top article ul {
	width: 150px;
	height: 70px;	
}


header h1 {
	font-size: 30px;
	line-height: 36px;
	width: 200px;
	height: 500px;
}

}

/*500*/
@media screen and (max-width:515px) {

#barra-top article p {
	display: none;
}

.presentacion {
	width: 300px;	
	font-size: 20px;
	line-height: 33px;
}

#beneficios h3 {
	width: 300px;
	height: 60px;
	margin-top: 50px;
	margin-bottom: 40px;	
	font-size: 18px;
	line-height: 25px;
	letter-spacing: 2px;
}


#beneficios ul {
	width: 320px;
	height: 1100px;
}

#beneficios ul li {
	position: relative;
	float: left;
	width: 316px;
	height: auto;
}

#beneficios ul li figure {
	width: 30px;
	height: 30px;
	margin: auto;
	margin-top: 20px;
}

#beneficios ul li h4 {
	font-size: 18px;
	line-height: 22px;
	font-weight: 600;
	width: 60%;
	padding-top: 10px;
	padding-bottom: 30px;
	border-bottom: none;
}

#beneficios ul li p {
	display: none;
}

}

/*400*/
@media screen and (max-width:380px) {

.proyectos {
	height: 900px;
}

.proyectos figure {
	width: 300px;
	height: 742px;
}

#como-llegar {
	width: 100%;
	height: 1650px;
	background-color: #10454f;
	padding-top: 120px;
	text-align: center;
}

#como-llegar h2 {
	font-size: 26px;
}

#como-llegar ul {
	width: 320px;
	height: 1250px;
}

#como-llegar ul li {
	width: 320px;
	height: 400px;
}

#como-llegar ul li:nth-child(2) {
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 25px;
	margin-bottom: 25px;
}

#como-llegar ul li img {
	width: 100%;
}

#firma-koi {
	padding-top: 50px;
}

}