/* CUSTOM FONTS */

@font-face {
    font-family: 'Brothers';
    src: url('../fonts/Brothers-Bold.woff2') format('woff2'),
        url('../fonts/Brothers-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('../fonts/MinionPro-Regular.woff2') format('woff2'),
        url('../fonts/MinionPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Minion Pro';
    src: url('../fonts/MinionPro-It.woff2') format('woff2'),
        url('../fonts/MinionPro-It.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}


/* GENERAL STYLING */


::-moz-selection {
  background: #e1251b;
  color: #efe59f;
  text-shadow: none;
}

::selection {
  background: #e1251b;
  color: #efe59f;
  text-shadow: none;
}


html {
	--mcolor: #000000;
	--altcolor: #000000;
}

body {
	font-family: 'Minion Pro',sans-serif;
	color: #000;
	line-height:1.4;
	font-size: 19px;
	margin:0;
}

a {
	color:#555;
	outline:none;
}

img {
	max-width:100%;
	height:auto;
}

p {
	margin: 0 0 3.5vw;
}

.relative {
	position:relative;
}

iframe {
	max-width:100%;
}

.unstyled-list {
	padding:0;
	margin:0;
}

.unstyled-list > li {
	padding:0;
	margin:0;
	list-style:none;
}

.small-font, .font-small {
	font-size:12px;
}

.rounded {
	border-radius:4px;
}

.box-shadow {
	box-shadow:3px 4px 18px -14px #666;
}

.small-gutters{
	margin-left: -5px;
	margin-right: -5px;	
}
.small-gutters>[class*=col-]{
	padding-right: 5px;
	padding-left: 5px;
}

.w-100{
	width: 100% !important;
}
.h-100{
	height: 100% !important;
}
.height-100vh{
	height: 100vh;
}
.min-height-100vh{
	min-height: 100vh;
}
.min-height-section{
	height: 100vh;
}

section {
	position:relative;
}

.padding-content {
	padding: 23vw 15px;
}

.padding-vertical-content {
	padding-top: 30px;
	padding-bottom: 30px;
}

.thumb-container {
	display:block;
	text-decoration:none;
	position:relative;
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center center;
}

.thumb-container.absolute {
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height: 100%;
}

/* COLORS */

.white,.white a,a.white {
	color:#fff;
}

.white-content {
	background-color:#fff;
}

.black,.black a,a.black {
	color: #000;
}
.black-content{
	background-color: #000000;
}

.gray, a.gray{
	color: #cccccc;
}
.gray-content{
	background-color: #cccccc;
}

.red, a.red, .red a{
	color: #e1251b !important;
}
.red-content{
	background-color: #e1251b;
}
.yellow-content{
	background-color: #f0eb9f;
}
.yellow, a.yellow, .yellow a{
	color: #f0eb9f !important;
}
.green, a.green, .green a{
	color: #107527;
}
.green-content{
	background-color: #107527;
}

.blue{}
.blue-content{
	background-color: #03defe;
}


/* HEADINGS & FONTS CLASSES */

.h1,.h2,.h3,h1,h2,h3 {
	
    font-family: 'Brothers', sans-serif;
	clear:both;
	line-height:1.1;
	font-weight:700;
}

.h4,.h5,.h6,h4,h5,h6 {
	clear:both;
	line-height:1.3;
	font-weight:500;
	margin:0 0 1rem;
}

.h1,.h2,.h3,.h4,.h5,.h6 {
}

h1,.h1 {
}

h2,.h2 {
	font-size: 36px;
}

h3,.h3 {
}

h4,.h4 {
}

h5,.h5 {
}

h6,.h6 {
}

.minion-font{
    font-family: 'Minion Pro', sans-serif;
}
.brothers-font{
    font-family: 'Brothers', sans-serif;
}

.title{font-size: 7vw;}
.title small{font-size: 69%;}
.title-bordered{
    padding: 0;
    display: flex;
    justify-content: center;
}
.title-bordered.h1{
	margin: 0 0 2vw;
}
.title-bordered > span{
	display: inline-block;
	border-bottom: 1.4vw solid #e1251b;
	font-size: 9vw;
	vertical-align: top;
	margin: 0 0 5vw;
}
.title-bordered.border-yellow > span{
	border-color: #f0eb9f;
}
.section-title {}

.light {
	font-weight:300;
}

.regular {
	font-weight:400;
}

.medium {
	font-weight:500;
}

strong,.bold, .font-bold {
	font-weight:700;
}

.text-italic,.text-cursive{
	font-style: italic;
}

.thecontent{
    margin: 2vw auto 4vw;
}

/* embed responsive */

.embed-responsive {
	position:relative;
	display:block;
	width:100%;
	padding:0;
	overflow:hidden;
}

.embed-responsive iframe {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	width:100%;
	height:100%;
	border:0;
}

.embed-responsive::before {
	display:block;
	content:"";
}

.embed-responsive-16by9::before {
	padding-top:56.25%;
}

.embed-responsive-4by3::before {
	padding-top:75%;
}

.embed-responsive-21by9::before {
	padding-top:42.857143%;
}

.embed-responsive-1by1::before {
	padding-top:100%;
}


/* buttons */

button,.button,input[type="submit"],
a.button {
	-webkit-appearance:none;
	-webkit-border-radius:0;
	outline:none;
	border:none;
	line-height:1;
	text-decoration:none;
	padding:9px 26px;
	margin:0;
	text-align:center;
	transition:all .3s ease;
	border-radius:0;
	display:inline-block;
	border-radius:3px;
	font-size:14px;
	white-space:nowrap;
	background-color:#1f9b1f;
	color:#fff;
	text-transform:uppercase;
	font-weight:700;
}

.button.large-button {
	font-size:19px;
	padding:15px 20px;
	margin:30px auto;
}

.button.small-button {
	font-size:13px;
	padding:8px 28px;
}

.button:hover {
	opacity:.8;
}

.button.effect-button{
	position: relative;
	overflow: hidden;
}
.button.effect-button:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	-webkit-transform: scale3d(0,1,1);
	transform-origin: left;
}
.button.effect-button:hover{
	-webkit-transform: scale3d(1,1,1);
	color: var(--alttextcolor) !important;
	opacity: 1;
}
.button.effect-button > span{
	position: relative;
}
.button.effect-button:before{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 101%;
	transition: all .4s;
	-webkit-transform: scale3d(0,1,1);
	transform-origin: left;
	background-color: var(--altcolor) !important;
	color: var(--alttextcolor) !important;
}
.button.effect-button:hover:before{
	-webkit-transform: scale3d(1,1,1);
	color: var(--alttextcolor) !important;
}


/* animated element */

.animated-element {
	opacity:0;
	display:block;
}

.animated-element.visible {
	-webkit-transform:translateY(10px);
	-moz-transform:translateY(10px);
	-ms-transform:translateY(10px);
	transform:translateY(10px);
	-webkit-animation:moveUp 1.4s ease forwards;
	-moz-animation:moveUp 1.4s ease forwards;
	-ms-animation:moveUp 1.4s ease forwards;
	animation:moveUp 1.4s ease forwards;
}

@-webkit-keyframes moveUp {
	0% {
	}
	
	100% {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
		opacity:1;
	}
}

@-moz-keyframes moveUp {
	0% {
	}
	
	100% {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
		opacity:1;
	}
}

@-ms-keyframes moveUp {
	0% {
	}
	
	100% {
		-ms-transform:translateY(0);
		opacity:1;
	}
}

@keyframes moveUp {
	0% {
	}
	
	100% {
		-webkit-transform:translateY(0);
		-moz-transform:translateY(0);
		transform:translateY(0);
		opacity:1;
	}
}

.animated-element.delay1{
	animation-delay: .5s;
}

/* aside */

#aside {
	position:fixed;
	top:0;
	left:0;
	width: 100%;
	bottom:0;
	z-index: 2;
	opacity:0;
	visibility:hidden;
	-webkit-transition:opacity .5s,visibility .5s,-webkit-transform .5s;
	transition:opacity .5s,visibility .5s,-webkit-transform .5s;
	-o-transition:opacity .5s,visibility .5s,-o-transform .5s;
	transition:transform .5s,opacity .5s,visibility .5s;
	transition:transform .5s,opacity .5s,visibility .5s,-webkit-transform .5s,-o-transform .5s;
	will-change:transform,opacity,visibility;
	overflow:auto;
	-webkit-overflow-scrolling:touch;
	border-radius:2px;
	box-shadow:1px 0 10px -4px #888;
	padding:30px 30px 50px;
}

.menu-active #aside:before {
	transform:translate3d(0,0%,0);
}

.menu-active #aside:after {
	opacity:.08;
}

.menu-active #aside {
	opacity:1;
	visibility:visible;
}

#aside > div {
	height:100%;
	position:relative;
	z-index:1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	align-content: center;
	font-size: 5vw;
}

#aside > div > div {
	width: 100%;
}


#aside ul.menu {
	margin: 8vw auto 0;
	list-style:none;
	overflow-x:hidden;
	padding:0;
}

#aside ul.menu > li {
	position:relative;
	margin: 0 0 0.2vw;
}

.menu-active #aside ul.menu > li {
	transition: all .7s;
	opacity:1;
	transform:translate3d(0,0px,0);
}
#aside ul.menu > li > a {
	display:block;
	font-size: 9vw;
	letter-spacing:1px;
	text-decoration:none;
	padding:2px 0;
	line-height:1.1;
	padding: 0;
	text-align: center;
}

.hamburger{
	position: fixed;
	right: 20px;
	top: 20px;
	z-index: 3;
	padding: 5px;
	height: 35px;
}
/*.hamburger{
	background-color: #e1251b;
	transition: all .5s;
}
.hamburger.is-active{
	background-color: transparent;
}*/
.hamburger-box{
	width: 30px;
}
.hamburger-inner,.hamburger-inner:after,.hamburger-inner:before {
	background-color: #117427;
	opacity: 1 !important;
	width: 30px;
	height: 4px;
}

.hamburger.is-active .hamburger-inner,.hamburger.is-active .hamburger-inner:after,.hamburger.is-active .hamburger-inner:before {
	background-color: #f0eb9f;
	opacity: 1;
}

/* MAIN */

#main {
	position:relative;
	padding-top:45px;
}

/* SECTION PRESENTATION */


.logo{
	position: relative;
	width: 90%;
}
.logo > img:first-child {
	width: 100%;
}
.logo > img:last-child {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

/* BOTTLE SECTION */

#bottle-section{overflow: hidden;}
#recipe .title{
}

.tomatoes{
	min-height: 250px;
	overflow: hidden;
	position: relative;
}
.tomatoes .thumb-container{
	width: 300%;
	left: 50%;
	transform: translateX(-50%);
	background-size: auto 80%;
	background-repeat: repeat-x;
	height: 100%;
}

.hortalizas{
	min-height: 340px;
	overflow: hidden;
	position: relative;
	padding-bottom: 100%;
}
.hortalizas .thumb-container{background-size: auto 100%;width: 100%;}
.hortalizas #pepino{
	top: -24%;
	width: 100%;
	height: 70%;
	z-index: 1;
}
.hortalizas #tomate{
    top: 20%;
    width: 100%;
    height: 55%;
    z-index: 1;
    opacity: 1;
}
.hortalizas #cebolla{
    height: 82%;
    top: 40%;
    margin-left: 2%;
}


#quien-es{}
#quien-es .thecontent{
}

#donde{
    overflow: hidden;
}
#donde .thumb-container{
	height: 77vw;
	background-size: auto 100%;
	left: 20%;
	width: 200%;
	background-position: left center;
}

#lapili{
	padding-top: 40px;
	overflow: hidden;
}
#lapili .title{
	font-size: 15vw;
	position: absolute;
	left: 0;
	top: 30px;
	text-align: center;
	width: 100%;
	line-height: 1;
}
#lapili img{
	width: 100%;
	display: block;
	max-width: 80%;
	margin: auto;
}

#nuestra-casa{
    position: relative;
}
#nuestra-casa {}


.thumbs-section{
    position: relative;
}
.thumbs-section .overflow-hidden{
    height: 250px;
    overflow: hidden;
    position: relative;
}
.thumbs-section .title{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%,-50%);
    left: 50%;
    z-index: 1;
    width: 100%;
    text-align: center;
    line-height: 1;
    font-size: 9vw;
    padding-top: 2.1vw;
}

.thumb-content{
    margin: 0 0 20px;
}
.thumb-content .thumb-container{
	width: 100%;
	padding-bottom: 100%;
	margin: 20px auto;
	border-radius: 50%;
}
.thumb-content:last-child{
	
}
.thumb-content:last-child .thumb-container{
    display: none;
}


.title-bordered .ong{
    display: block;
    font-size: 43vw;
    line-height: 0.7;
    margin-top: 30px;
}

footer{
	padding: 1vw;
	font-size: 3.2vw;
}

footer a{
	text-decoration: none;
}

#hero-section{
    height: 100vh;
    max-height: none;
}
#hero-section .claim{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3.7vw 1.5vw 2.1vw;
    font-size: 7.1vw;
    line-height: 1;
}

#contacto{}
#contacto .thumb-container{
	min-height: 300px;
}

/*  RESPONSIVE (768, 992,..) */

@media (min-width: 768px) {	
	
	/* generales */


	footer {
		padding: .8vw;
		font-size: 0.8vw;
	}
		
	body{
		font-size: 1.4vw;
	}
	.min-height-section,
	.min-height-section-desktop{
		max-height: 750px;
		height: 56.6vw;
	}
	#natural .textimage{
		max-width: 80%;
	}
	.h1,.h2,.h3,.h4,.h5,.h6 {
	line-height: 1.2;
	}
	
	h1,.h1 {
	}
	
	h2,.h2 {
		font-size: 4vw;
		line-height: 1;
	}
	
	h3,.h3 {
	font-size: 2.2vw;
	}
	
	h4,.h4 {
	font-size: 1.6vw;
	}
	
	h5,.h5 {
	}
	
	h6,.h6 {
	}

	.title-bordered{
    text-align: center;
}
	.title-bordered > span{
		border-bottom-width: 0.6vw;
		font-size: 3.5vw;
		display: inline-block;
		margin: 0 0 1.5vw;
	}
	.title-bordered.h1 > span{
		font-size: 3.9vw;
		margin: 0 0 1vw;
	}
	
	.padding-vertical-content {
		padding-top:60px;
		padding-bottom: 60px;
	}
	.thecontent{
		margin: 2vw auto 4vw;
		font-size: 2.1vw;
	}
	.thecontent p{
		margin: 0 0 2vw;
	}

    #aside > div > div{
    	font-size: 2vw;
    }
    #aside ul.menu{
    	margin: 2vw 0 0 ;
    }
	#aside ul.menu > li > a{
		font-size: 4.2vw;
	}


	.logo{
	    max-width: 700px;
	}
		
	#recipe .title{
		margin: 100px 0px;
	}


	.tomatoes{
	}
	.tomatoes .thumb-container{
		background-size: auto 50%;
	}
	
	
	.hortalizas{
		padding: 0;
		height: auto;
	}

	
	#quien-es{}
	#quien-es .thecontent{
	}
	
		
	#donde{
		padding-bottom: 0;
	}

	#donde .title-bordered > span{
		font-size: 2.8vw;
	}
	#donde .thumb-container{
	height: 35vw;
	left: 0;
	width: 100%;
	background-position: center center;
	}

    #lapili{}
    #lapili img{
    	max-width: 60%;
    	/* max-height: 640px; */
    	width: auto;
    }

	#lapili .title{
		font-size: 10vw;
		top: 5vw;
	}
	
	
	#nuestra-casa{}
	
	.thumbs-section{
	    display: flex;
	}
	.thumbs-section .overflow-hidden{
	    width: 50%;
	    height: 30vw;
	    min-height: 450px;
	}
	.thumbs-section .title{
	    font-size: 6vw;
	}
	
	.title-bordered .ong{
		display: inline;
		font-size: inherit;
		margin-right: 10px;
	}


	.thumb-content{
		margin: 0 0 20px;
		position: relative;
		padding-left: 14vw;
		max-width: 52vw;
		margin: 1vw auto 4vw;
		min-height: 3vw;
		padding-top: 1vw;
	}
	.thumb-content .thumb-container{
		position: absolute;
		left: 0;
		width: 13vw;
		height: 13vw;
		padding: 0;
		top: 0;
		margin: 0;
	}
	.thumb-content:last-child{

	}
	.thumb-content:last-child .thumb-container{
		display: block;
	}
	
		
	#hero-section{}
	#hero-section .claim{
	    font-size: 2.2vw;
	    padding: 1.3vw 1vw 0.6vw;
	}
	
	
	/* SCROLL ANIMATIONS */
	
	
	#donde #furgo{
		margin-left: 20%;
	}
	
	.hortalizas #pepino{
		transform: rotate(30deg);
		top: -50%;
	}
	.hortalizas #tomate{
		transform: rotate(30deg);
		top: -10%;
	}
	.hortalizas #cebolla{
		transform: rotate(30deg);
		top: 00%;
	}
	
	
	#botella{
		transform: scale(2);
	}
}

@media (min-width: 1200px) {
	
}

