html, body, table, ul{
	border: 0;
	margin: 0;
	padding: 0;
	font-family: 'Lato', sans-serif;
}

/*
Assets
Color Gris oscuro: 282828;
Color verde: 39E974;
*/


/* GENERAL TAGS */
section{
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 700px;
	display: table;
}

a{
	font-family: 'Lato', sans-serif;
	color: #39E974;
	text-decoration: none;
	font-size: 13px;

}

.stop-scrolling{
	overflow: hidden;
	position: fixed;
}

#loader{
	position: fixed;
	display: table;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 999999;
	background-image: url('../assets/maze.png');
}

#loader .loader-cont{
	position: relative;
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#loader .loader-cont img{
	width: 200px;
}

#loader .loader-cont p{
	color: #39E974;
	font-weight: 700;
	font-size: 38px;
}

#loader .loader-cont button{
	border: 0;
	width: 150px;
	height: 50px;
	margin: 0px 10px;
	border-radius: 5px;
	font-size: 16px;
	cursor: pointer;
	background-color: #CFCFCF;
	-webkit-appearance: none;
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}

#loader .loader-cont #YES:hover{
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
    background-color: #39E974;
}

#loader .loader-cont #NO:hover{
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
	background-color: #FA5555;
}

.responsive-logo{
	display: none;
	position: fixed;
	top: 20px;
	left: 140px;
}

.mobile-menu{
	display: none;
	position: fixed;
	top: 30px;
	left: 25px;

}



/* HEADER */
#nav-header{
	position: fixed;
	width: 100%;
	height: 120px;
	top: 0px;
	z-index: 999;
	background-color: #282828;
	display: table;
}

#nav-header .nav-cont{
	position: relative;
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#nav-header .nav-cont .nav-menu{
	padding: 0;
	margin: 0 auto;
	list-style: none;
	width: 80%;
	height: 10px;
	text-align: center;


}

#nav-header .nav-cont .nav-menu .menu-i{
	position: relative;
	display: inline-block;
	margin: 0px 10px;
	width: 130px;
	height: 20px;
}

#nav-header .nav-cont .nav-menu .menu-i img{
	position: absolute;
	left: 0%;
	right: 50%;
	top: -50px;
}

#nav-header .nav-social{
	position: fixed;
	top: 55px;
	right: 15px;
}

#nav-header .nav-social a{
	display: inline-block;
	margin: 0px 10px;
	width:26px;
}

#home-btn-box{
	position: absolute;
	left: 30px;
	top: 55px;
	width: 25px;
	z-index: 90;
}

#home-btn-box .home-btn{
	position: relative;
	width: 50px;
}

#home-menu-btn{
	position: absolute;
	width: 0px !important;
	overflow: hidden;
}



/* HOMEBOX */
#homebox{
	width: 100%;
    height: calc(100vh - 120px);
	margin-top: 120px;
	min-height: 100px;
	overflow: hidden;
}

#homebox .sloganbox{
	position: relative;
	width: 100%;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#homebox .sloganbox img{
	position: relative;
	margin: 0 auto;
}

.slider-window{
	position: absolute;
	width: 100%;
	height: 100%;
	min-width: 1280px;
    min-height: 800px;
    left: 50%;
    margin-left: -640px;
	z-index: -1;
}

/* ABOUTBOX */
#aboutbox{
	background-image: url('../assets/maze.png');
	margin-bottom: -35px;
	min-height: 750px;
}

#aboutbox .about-txt{
	position: relative;
	width: 70%;
	height: auto;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	color: white;
	font-weight: 300;

}

.about-txt span{
	color: #39E974;

}

#aboutbox .about-plx{
	position: relative;
	width: 100%;
	height: 40%;
	background: transparent;
}

/* HOWTOBOX */
#howtobox {
	background-color: rgba(0,0,0,0.8);
	background-image: url('../assets/maze.png');
	padding-bottom: 50px;
}

#howtobox .howto-txt{
	position: relative;
	width: 70%;
	height: auto;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
	text-align: center;
	color: white;
	font-weight: 300;

}

.howto-txt span{
	color: #39E974;

}

#howtobox .howto-recipes{
	position: relative;
	width: 100%;
	height: 50%;
}

#howtobox .recipes{
	width: 100%;
	text-align: center;
	list-style: none;
	position: relative;
	margin: 0 auto;
	top: 0px;

}

#howtobox .recipes .recipe-item{
	display: inline-block;
	width: 190px;
	height: 190px;
	border: 2px #39E974 solid;
	margin: 10px 10px;
	-webkit-transition-duration: 1s; /* Safari */
    transition-duration: 1s;
}

#howtobox .recipes .recipe-item img{
	width: 100%;
	height: 100%;
}

#howtobox .recipes .recipe-item:hover{
	-webkit-transition-duration: 2s; /* Safari */
    transition-duration: 2s;
	border: 2px #39E974 dashed;
}

.recipes-window{
	display: none;
	position: absolute;
	vertical-align: middle;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.8);

}
.recipes-window p{
	position: relative;
	width: 90%;
}

.recipes-window img{
	position: relative;

}

.window-wrap{
	position: relative;
	margin: 0 auto;
	width: 60%;
	height: auto;
	top: 140px;
	color: white;
	background: rgba(10,10,10,1);
	padding: 20px;
	border: 1px solid #39E974;
}

.cerrar-window{
	position: absolute;
	top: 15px;
	right: 25px;
}

.cerrar-window img{
	width: 30px;
}



/* CONTACTBOX */

#contactbox{
	height: calc(100vh - 170px);
	background-image: url('../assets/contactodef.jpg');
	background-size: cover;
	min-height: 300px;
}

#contactbox .contact-box{
	position: relative;
	width: 90%;
	height: 80%;
	top: 50px;
	margin: 0 auto;
}

#contactbox .contact-box form{
	position: relative;
	width: 100%;
	height: 230px;
}

.data{
	position: relative;
	margin: 5px 0px;
	display: block;
	width: 27%;
	height: 40px;
	background: white;
	font-size: 14px;
}

.message{
	position: absolute;
	font-size: 14px;
    top: 0px;
    right: 0px;
    width: 70%;
    height: 142px;
    background: transparent;
    border: 2px white solid;
    color: white;
}

.message::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    white;
}
.message:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    white;
   opacity:  1;
}
.message::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    white;
   opacity:  1;
}
.message:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    white;
}

.send{
	border: 0;
	background-color: #39E974;
	width: 180px;
	height: 40px;
	font-size: 16px;
	border-radius: 7px;
	position: absolute;
	right: 0;
	bottom: 0;
	cursor: pointer;
}


.contact-box p{
	width: 70%;
	color: white;
	font-weight: 300;
	margin: 20px 0px;
}




/* FOOTER */

#footer{
	position: relative;
	width: 100%;
	height: 53px;
	background-color: #39E974;
}

.legal-info{
	position: relative;
	width: 100%;
	text-align: center;
	margin: 0 auto;
	top: 15px;
}

.legal-info a{
	font-size: 10px;
	color: black ;
}
.copyright{
	position: absolute;
	top: 15px;
	right: 25px;
}

.copyright a{
	color: black;
}

@media only screen and (min-width: 1280px) {
	.slider-window{
	    left: 0px;
	    margin-left: 0px;
	}

}

@media only screen and (max-width: 1000px) {
    /* HEADER */
    #nav-header .nav-cont .nav-menu .menu-i{
		width: 100px;
	}
}

@media only screen and (max-width: 1090px) {
    /* HEADER */
    #howtobox .recipes{
    	width: 660px;
    }
}

@media only screen and (max-width: 880px) {
    /* HEADER */
	.responsive-logo{
		display: block;
		z-index: 9;
	}

	.responsive-logo img{
		width: 70px;

	}

	.mobile-menu{
		display: block;
		z-index: 9;
	}

	#homebox .sloganbox img{
		width: 90%;
	}

	#nav-header .nav-cont{
    	position: fixed;
    	top: 0;
    	left: -201px;
    	width: 200px;
    	height: 100%;
    	display: table;
    	background-color: rgba(0,0,0,0.8);
    }

	#nav-header .nav-cont .nav-menu{
		padding: 0;
		margin: 0 auto;
		list-style: none;
		display: table-cell;
		vertical-align: middle;
		width: 80%;
		height: 10px;
		text-align: center;
	}


    #nav-header .nav-cont .nav-menu .menu-i{
	position: relative;
	display: block;
	margin: 0px 10px;
	width: 100%;
	text-align: left;
	padding-left: 10px;
	height: 50px;
}

  #nav-header .nav-cont #logo-nav{
    display: none;
}

#home-btn-box{
	display: none;
}

#home-menu-btn{
	position: relative;
	width: inherit;
	overflow: visible;
}




}


@media only screen and (max-width: 700px) {
	.howto-title img{
		width: 230px;
	}

	.about-title img{
		width: 250px;
	}

	#aboutbox .about-plx{
		position: relative;
		width: 100%;
		height: 30%;
		background: transparent;
	}

	#howtobox .recipes{
    	width: 420px;
    }

    #howtobox .recipes .recipe-item{
    	width: 110px;
    	height:110px;
	}

			/* CONTACTBOX */

	#contactbox{
		height: 100vh;
		background-image: url('../assets/contactodef.jpg');
		background-size: cover;
		min-height: 690px;
	}

	#contactbox .contact-box{
		position: relative;
		width: 90%;
		height: 80%;
		top: 50px;
		margin: 0 auto;
	}

	#contactbox .contact-box form{
		position: relative;
		width: 100%;
		height: 230px;
	}

	.data{
		width: 100%;
	}

	.message{
		position: relative;
		width: 100%;
	}

	.send{
		position: relative;
		top: 10px;

	}


	.contact-box p{
		width: 70%;
		color: white;
		font-weight: 300;
		margin: 20px 0px;
	}

}

@media only screen and (max-width: 620px) {
	.cTitle{
		width: 180px;
	}

	.copyright{
	    position: relative;
	    top: 20px;
	    right: 0px;
	    margin: 0 auto;
	    width: 150px;
	}

	#footer{
		height: 73px;
	}
}

@media only screen and (max-width: 480px){
#aboutbox{
		min-height: 860px;
	}
#loader .loader-cont img{
	width: 120px;
}

}

@media only screen and (max-width: 450px) {
	#howtobox .recipes{
		width: 320px;
	}

	#loader .loader-cont p{
		font-size: 24px;
	}

	#loader .loader-cont button{
		width: 80px;
		height: 40px;
		margin: 0px 10px;
	}

}

label {
  font-size: 0;
  cursor: pointer;
  z-index: 100;
}
label span {
  color: white;
  font: 200 75px Roboto;
  transition: .3s;
  opacity: 0;
}
label:hover span {
  opacity: 1;
}

input[type='checkbox'] {
  display: none;
}
input[type='checkbox']:checked ~ .container .menu {
  background: transparent;
}
input[type='checkbox']:checked ~ .container .menu:before {
  bottom: 0;
  transform: rotate(45deg);
}
input[type='checkbox']:checked ~ .container .menu:after {
  top: 0;
  transform: rotate(-45deg);
}

.container {
  display: inline-block;
  width: 75px;
  height: 52.64423px;
  position: relative;
}

.menu {
  height: 5.76923px;
  width: 45px;
  background: #39E974;
  transition: 0.3s;
  position: relative;
  transform: translateY(23.4375px);
}
.menu:before {
  height: 5.76923px;
  width: 45px;
  background: #39E974;
  transition: 0.3s;
  content: '';
  position: absolute;
  bottom: 13.4375px;
}
.menu:after {
  height: 5.76923px;
  width: 45px;
  background: #39E974;
  transition: 0.3s;
  content: '';
  position: absolute;
  top: 13.4375px;
}
@media only screen and (max-width: 380px) {
	.responsive-logo {
	    left: 90px;
	}
}
