@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600;700&family=PT+Sans:wght@400;700&display=swap');
/*
font-family: 'Cormorant', serif;
font-family: 'PT Sans', sans-serif;
*/
/* Estilos Principales 
-------------------------------------------------------------------------------------------------------------------------------------------- */
:root {
	--main-color: #165043;
	--second-color: #AF7218;
	--third-color: #242424;
	--fourth-color: #777777;
}

body {
	font-family: 'PT Sans', sans-serif;
}

a { 
	transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-webkit-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	text-decoration: none; 
}

a:hover {
	text-decoration: none;
	color: var(--second-color);
}

.bearbox-link:hover {
	text-decoration: underline;
}

.main-title { 
	font-family: 'Cormorant', serif; 
	font-size: 4rem; 
	font-weight: 700;
}

@media( max-width: 320px ) {
	.main-title { font-size: 3rem; }
}

/*Background 
-------------------------------------------------------------------------------------------------------------------------------------------- */
.bg-principal { background: var(--main-color)!important; }

.bg-segundo { background: var(--second-color)!important; }

.bg-tres { background: var(--third-color)!important; }

/*Font-Colors
-------------------------------------------------------------------------------------------------------------------------------------------- */
.text-color-principal { color: var(--main-color); }

.text-color-segundo { color: var(--second-color); }

.text-color-tres { color: var(--third-color); }

.text-color-cuarto { color: var(--fourth-color); }

/*Font-Weight 
-------------------------------------------------------------------------------------------------------------------------------------------- */
.fw-300 { font-weight: 300!important; }

.fw-400 { font-weight: 400!important; }

.fw-600 { font-weight: 600!important; }

.fw-700 { font-weight: 700!important; }

.fw-800 { font-weight: 800!important; }

/*Font-Italic 
-------------------------------------------------------------------------------------------------------------------------------------------- */
.f-italic { font-style: italic!important; }

/* Buttons
-------------------------------------------------------------------------------------------------------------------------------------------- */
#btn-top { 
	position: fixed; 
	bottom: 20px; 
	right: 30px;
	z-index: 100; 
	font-size: .7rem; 
	border: none; 
	outline: none; 
	background-color: var(--main-color); 
	color: #fff; 
	cursor: pointer; 
	padding: 12px; 
	border-radius: 5px; 
	box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23); 
}
#btn-top:hover { background: var(--second-color);}

.btn { border-radius: unset!important; }

.btn-one {
	background: var(--main-color);
	color: #fff;
	border-bottom: 3px solid #000;
}

	.btn-one:hover {
		background: #0b2b24;
		color: #fff!important;
	}

.btn-two {
	background: var(--second-color);
	color: #fff;
	border-bottom: 3px solid #000;
}

	.btn-two:hover {
		background: #744a0c;
		color: #fff!important;
	}


/* Modal
-------------------------------------------------------------------------------------------------------------------------------------------- */
#modal-edad {
	background: rgba(22, 80, 67, .9);
}




/*Navbar
-------------------------------------------------------------------------------------------------------------------------------------------- */
#main-menu {
	padding-top: 1rem;
	padding-bottom: 1rem;
	background: rgba(0, 0, 0, 0.5);
}

#main-menu .img-logo {
	max-width: 200px;
	width: 100%;
	height: auto;
}

#main-menu .navbar-collapse .nav-item .nav-link {
	color: #fff;
	font-family: 'Cormorant', serif;
	font-weight: 600;
	font-size: 1.4rem;
	padding-left: 25px;
	padding-right: 25px;
}

	#main-menu .navbar-collapse .nav-item .nav-link:hover {
		color: var(--second-color);
	}


/*Cortain Menu
-------------------------------------------------------------------------------------------------------------------------------------------- */
#curtain-menu.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #af7318be;
	overflow-x: hidden;
	transition: 0.5s;
}

#curtain-menu .overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

#curtain-menu.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 2rem;
	color: #fff;
	font-weight: 800;
	display: block;
	transition: 0.3s;
	font-family: 'Cormorant', serif;
}

#curtain-menu.overlay a:hover, .overlay a:focus {
	color: #f1f1f1;
}

#curtain-menu.overlay .closebtn {
	position: absolute;
	top: 20px;
	right: 45px;
	font-size: 60px;
}

@media screen and (max-height: 450px) {
	.overlay a {font-size: 1.2rem}
	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}




/*Footer
-------------------------------------------------------------------------------------------------------------------------------------------- */
#main-footer {
	background: #000;
}

#main-footer .text-gris {
	color: rgb(119, 119, 119);
}

#main-footer .img-logo {
	max-width: 300px;
	width: 100%;
	height: auto;
}




/*Start
-------------------------------------------------------------------------------------------------------------------------------------------- */
#wrapp-header-home {
	padding-top: 0rem;
	margin-top: 0rem;
	padding-bottom: 0rem;
	background-image: url(../img/tresanero-bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50% 50%;
	background-attachment: scroll;
	background-color: transparent;
	height: 80vh;
}

#wrapp-header-home .main-title {
	font-size: 4.5rem;
	font-weight: 700;
	letter-spacing: -0.016666666666666666rem;
	line-height: 4.3rem;
	font-family: 'Cormorant', serif;
	color: #fff;
}

#wrapp-header-home .hashtag {
	color: #fff;
	font-family: 'Cormorant', serif;
	font-weight: 700;
	font-size: 3rem;
}


@media( max-width: 600px ) {

	#wrapp-header-home {
		height: 90vh;
	}

	#wrapp-header-home .main-title {
		font-size: 2.5rem;
		line-height: 2.8rem;
	}

	#wrapp-header-home .hashtag {
		font-size: 2rem;
	}

}



/*Historia
-------------------------------------------------------------------------------------------------------------------------------------------- */
#historia {
	padding-bottom: 5rem;
    background-image: url(../img/bg-textura.jpg);
    background-position: top left;
    background-attachment: scroll;
    background-color: #ffffff;
}

#historia p { font-size: 1.5rem; }





/*Procesos
-------------------------------------------------------------------------------------------------------------------------------------------- */
#proceso .row-verde { background: var(--main-color); }
#proceso .row-cafe { background: var(--second-color); }
#proceso p { font-size: 1.5rem; }




/*Galeria
-------------------------------------------------------------------------------------------------------------------------------------------- */
#galeria {
    background-image: url(../img/bg-textura.jpg);
    background-position: top left;
    background-attachment: scroll;
    background-color: #ffffff;
}

#galeria .main-title {
	font-size: 4.7rem; 
	padding-top: 3rem; 
	padding-bottom: 3rem;
}

#galeria .hashtag { font-size: 5.4rem; }

@media( max-width: 600px ) {

	#galeria .main-title { 
		font-size: 3.5rem;
		line-height: 3.5rem;
	}

	#galeria .hashtag { 
		font-size: 2rem;
		padding-top: .5rem;
		padding-bottom: .5rem;
	}

}


/*Instagram
-------------------------------------------------------------------------------------------------------------------------------------------- */
#instagram *, *:before, *:after{
-webkit-box-sizing: border-box;
-moz-box-sizing:border-box;
box-sizing: border-box;
}

#instagram .card {
	position: relative;
	margin: auto;
	overflow: hidden;
}


#instagram .card .content-overlay {
	background: rgba(0,0,0,0.7);
	position: absolute;
	height: 99%;
	width: 100%;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 0s;
	-moz-transition: all 0.4s ease-in-out 0s;
	transition: all 0.4s ease-in-out 0s;
}

#instagram .card:hover .content-overlay{ opacity: 1; }

#instagram .content-details {
	position: absolute;
	text-align: center;
	padding-left: 1em;
	padding-right: 1em;
	width: 100%;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease-in-out 0s;
	-moz-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

#instagram .content-details .icon {
	font-size: 3rem;
	color: #fff!important;
	display: block;
}

#instagram .content-details .text {
	font-size: 1rem;
	color: #fff!important;
}

#instagram .card:hover .content-details{
	top: 50%;
	left: 50%;
	opacity: 1;
}

#instagram .fadeIn-bottom{ top: 80%; }


@media( max-width: 600px ) {
	#instagram .card { margin-bottom: .5rem; }
}


/*Conatcto
-------------------------------------------------------------------------------------------------------------------------------------------- */
#contacto {
	background: url(../img/img-bg-Contacto@2x-scaled.jpg);
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
	height: 60vh;
	font-family: 'Cormorant', serif;
}

#contacto h2 {
	font-size: 2.7rem;
}

@media( max-width: 600px ) {
	#contacto {
		height: auto;
		padding-top: 1.8rem;
		padding-bottom: 1.8rem;
	}
}