/* 2023-01-09 10:43   */
/* Ver 2.0 */


* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
}

body {
	overflow-x: hidden;
}

.container {
	display: -ms-grid;
	display: grid;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
	padding: 0px 24px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
}

.top-menu {
	background: #ffffff;
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
					box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2);
	height: 80px;
	margin-top: -80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	font-size: 1rem;
	position: -webkit-sticky;
	position: sticky;
	top: 0px;
	z-index: 10;
}

.top-menu .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
			justify-content: space-between;
	height: 80px;
	z-index: 1;
	width: 100%;
	padding: 0px 24px;
	max-width: 1100px;
}

.top-menu .container .logo {
	color: #f9f9f9;
	justify-self: flex-start;
	cursor: pointer;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	margin-left: 24px;
	font-weight: bold;
	text-decoration: none;
	outline: none;
}

.top-menu .container .toggle {
	display: none;
}

.top-menu .container .menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	list-style: none;
	text-align: center;
	margin-right: -22px;
	font-family: 'EB Garamond', serif;
}

.top-menu .container .menu li {
	height: 80px;
	position: relative;
}

.top-menu .container .menu li a {
	color: #00000066;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	text-decoration: none;
	padding: 0px 1rem;
	height: 100%;
	cursor: pointer;
}

.top-menu .container .menu li a.social {
	color: #00000066;
	font-size: 24px;
	padding: 0px 1rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	text-decoration: none;
	height: 100%;
	cursor: pointer;
}

.top-menu .container .menu li .sub-menu {
	display: none;
	/* background-color: ; */
	list-style-type: none;
	position: absolute;
	min-width: 200px;
	width: 250px;
	right: 0;
	left: 0;
	margin: auto;
}

.top-menu .container .menu li .sub-menu li {
	height: auto;
	text-align: left;
}

.top-menu .container .menu li .sub-menu li a {
	padding: .5em 1em;
}

.top-menu .container .menu li:hover .sub-menu {
	display: block;
}

.text-center{
	text-align: center!important;
	color: #f3eee8;
}

aside {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: black;
	display: -ms-grid;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	left: 0px;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	opacity: 0;
	top: -100%;
	overflow-y: auto;
}

aside.visible {
	opacity: 1;
	top: 0;
}

aside .close {
	position: absolute;
	top: 1.2rem;
	right: 1.5rem;
	background: transparent;
	font-size: 2rem;
	cursor: pointer;
	outline: none;
}

aside ul {
	display: block;
	grid-template-columns: 1fr;
	grid-template-rows: repeat(6, 80px);
	text-align: center;
}

aside ul li {
	display: block;
	padding: 7px;
	cursor: pointer;
}

aside ul li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	font-size: 1.5rem;
	list-style: none;
	-webkit-transition: all 0.2s ease-in-out 0s;
	transition: all 0.2s ease-in-out 0s;
	text-decoration: none;
	color: #f9f9f9;
	cursor: pointer;
}

aside ul li .sub-menu {
	display: none;
	background-color: #c0a06d;
}

aside ul li .sub-menu li {
	padding: 7px;
}

aside ul li:hover .sub-menu {
	display: block;
}

footer {
	background-color: #c0a06d;
}

footer .container {
	padding: 24px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	max-width: 1100px;
	margin: 0px auto;
}

footer .container .box {
	max-width: 1000px;
	width: 100%;
}

footer .container .box .row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
			justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	max-width: 1100px;
	margin: 0px auto;
}

footer .container .box .row .logo {
	color: #f9f9f9;
	justify-self: start;
	cursor: pointer;
	text-decoration: none;
	font-size: 1.5rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	font-weight: bold;
}

footer .container .box .row .copy-r {
	color: #f9f9f9;
}

footer .container .box .row .social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
}

footer .container .box .row .social a {
	color: #f9f9f9;
	font-size: 24px;
	margin-left: 1rem;
}

footer .container .box .details {
	height: 150px;
	border-top: 1px solid white;
	margin: 30px 0 80px;
	padding: 40px 0 60px;
}

footer .container .box .details > * {
	width: 30%;
	height: 100%;
}

footer .container .box .details > * > h3 {
	color: white;
	letter-spacing: 2px;
	margin-bottom: 4px;
	font-family: sans-serif;
}

footer .container .box .details > * > p > a {
	text-decoration: none;
}

footer .container .box .details .item-1 {
	text-align: left;
}

footer .container .box .details .item-2 {
	text-align: center;
}

footer .container .box .details .item-3 {
	text-align: right;
}

footer .container .box .details .details-item .info-para {
	color: white;
	font-size: 18px;
	transition: all ease .2s;
	font-family: 'EB Garamond';
}

footer .container .box .details .details-item .info-link {
	color: white;
	font-size: 18px;
	transition: all ease .2s;
	cursor: pointer;
	font-family: 'EB Garamond';
}

footer .container .box .details .details-item .info-reg {
	color: white;
	font-size: 10px;
	margin-top: 16px;
	font-family: 'EB Garamond';
}

footer .container .box .details .details-item .info-link:hover {
	font-size: 19px;
	text-decoration: underline;
}

section#home {
	background: #0c0c0c;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	height: 800px;
	position: relative;
	z-index: 1;
	overflow: hidden;
	font-family: 'EB Garamond', serif;
}

section#home .slide-box {
	background-color: #00000066;
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 5;
}

section#home .text-box {
	position: absolute;
	inset: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
			justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
			-ms-flex-direction: column;
					flex-direction: column;
}

section#home .text-box h1 {
	color: #f9f9f9;
	font-size: 60px;
	text-align: center;
	z-index: 999;
	font-weight: 400;
}

section#home .text-box p {
	margin-top: 24px;
	/* acomodado el margin */
	/* margin-left: -450px; */
	color: #f9f9f9;
	font-size: 30px;
	text-align: center;
	max-width: 600px;
	z-index: 999;
}


section.contenido {
	padding: 80px 40px 0px;
}


section.contenido .container .row {
	display: -ms-grid;
	display: grid;
	grid-auto-columns: minmax(auto, 1fr);
	-webkit-box-align: center;
	-ms-flex-align: center;
			align-items: center;
			grid-template-areas: "col1";
}

section.contenido .container .row .col-1 {
	margin-bottom: 15px;
	padding: 0px 15px;
	grid-area: col1 / col1 / col1 / col1;
}

section.contenido .container .row .col-1 p {
	margin-bottom: 20px;
}

section.contenido .container .row .col-2 {
	margin-bottom: 15px;
	padding: 0px 15px;
	grid-area: col2 / col2 / col2 / col2;
}

section.contenido .container .row .col-2 p {
	margin-bottom: 20px;
}

section.contenido .container .gallery-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
			flex-wrap: wrap;
	padding: 0 4px;
	/* Create four equal columns that sits next to each other */
}

section.contenido .container .gallery-row .column {
	-webkit-box-flex: 33%;
			-ms-flex: 33%;
					flex: 33%;
	max-width: 33%;
	padding: 0 4px;
}


section.contenido .container .gallery-row .column img {
	margin-top: 8px;
	vertical-align: middle;
	width: 100%;
}

section.contenido .container .gallery-row.salon img {
	width: 50%;
	display: inline-block;
	vertical-align: middle;
}


section.contenido h2 {
	font-family: 'EB Garamond', serif;
	text-align: center;
	margin: auto;
	margin-bottom: 40px;
	max-width: 700px;
	font-size: 28px;
	font-weight: 100;
}

section.contenido p {
	font-family: 'EB Garamond', serif;
	font-size: 20px;
	line-height: 30px;
	text-align: justify;
}

section.contenido input,
section.contenido select,
section.contenido textarea {
	width: 100%;
	border-radius: 4px;
	height: 40px;
	padding: 10px;
	margin-bottom: 20px;
	border: 1px solid;
}

section.contenido input.half,
section.contenido select.half,
section.contenido textarea.half {
	width: 50%;
	-webkit-box-sizing: border-box;
					box-sizing: border-box;
	float: left;
}

section.contenido input.half.r,
section.contenido select.half.r,
section.contenido textarea.half.r {
	width: 48%;
	margin-left: 2%;
}

section.contenido textarea {
	height: 100px;
}

section.contenido .radio {
	display: inline-block;
	margin-right: 10px;
	margin-top: 10px;
}

section.contenido .radio input {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

section.contenido .enviar input {
	font-family: 'EB Garamond', serif;
	text-align: center;
	font-size: 20px;
	background: #2c6378;
	color: #ffffff;
	border: none;
	/* Acomodado el padding de enviar */
	/* padding: 12px; */
	cursor: pointer;
}

section.info-img {
	padding: 80px 0;
}

section.info-img .container {
	position: relative;
}

section.info-img .container .text-box {
	position: relative;
	width: 100%;
	padding: 40px calc(50% + 60px) 40px 60px;
	background-color: #f3eee8;
	min-height: 320px;
	color: #2c6378;
}

section.info-img .container .text-box.to-right {
	padding: 60px 60px 40px calc(50% + 60px);
}


section.info-img .container .text-box h3 {
	font-family: 'EB Garamond', serif;
	margin-bottom: 20px;
}

section.info-img .container .text-box h2 {
	font-family: 'EB Garamond', serif;
	font-size: 28px;
	font-weight: 400;
	margin-bottom: 20px;
}

section.info-img .container .text-box p,
section.info-img .container .text-box ul li {
	font-family: 'EB Garamond', serif;
	font-size: 18px;
	line-height: 24px;
	text-align: justify;
}

section.info-img .container .text-box ul li {
	margin-bottom: 10px;
}

section.info-img .container .text-box ul li:last-child {
	margin-bottom: 0;
}

section.info-img .container .text-box button {
	font-family: 'EB Garamond', serif;
	position: absolute;
	bottom: 40px;
	width: calc(50% - 120px);
	text-align: left;
	background: #2c6378;
	color: #ffffff;
	border: none;
	padding: 12px;
	cursor: pointer;
}

section.info-img .container img {
	position: absolute;
	width: 50%;
	top: 0;
	bottom: 0;
	margin: auto;
}

section.info-img .container img.to-left {
	left: 0;
}

section.info-img .container img.to-right {
	right: 0;
}


section.articles-carousel {
	padding: 40px 0;
}

section.articles-carousel .article-wrapper {
	margin: 0 20px;
}

section.articles-carousel .article-wrapper .text-box {
	position: relative;
	width: 100%;
	padding: 60px 40px;
	background-color: #f3eee8;
	color: #2c6378;
	min-height: 400px;
}

section.articles-carousel .article-wrapper .text-box .article-img {
	width: calc(100% + 80px);
	height: 250px;
	margin: -60px 0 40px -40px;
	background-size: cover;
	background-position: 50% 50%;
}

section.articles-carousel .article-wrapper .text-box h4 {
	font-family: 'EB Garamond', serif;
	margin-bottom: 10px;
	text-align: center;
	font-weight: 600;
}

section.articles-carousel .article-wrapper .text-box p {
	font-family: 'EB Garamond', serif;
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
}

section.articles-carousel .article-wrapper .text-box button {
	width: 100%;
	text-align: left;
	background: #2c6378;
	color: #ffffff;
	border: none;
	padding: 12px;
	cursor: pointer;
}

.rslides {
	position: relative;
	list-style: none;
	overflow: hidden;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}

.rslides li {
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	position: absolute;
	display: none;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.rslides li:first-child {
	position: relative;
	display: block;
	float: left;
}

.rslides img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
		 object-fit: cover;
	background: #0c0c0c;
	position: absolute;
}

ul.lista-de-panes {
	margin-left: 20px;
}

ul.lista-de-panes > li {
	 font-family: 'EB Garamond', serif;
	 font-size: 18px ;
	 letter-spacing: 0.5px;
	 line-height: 25px;
}

.pagina.panaderia ul.lista-de-panes > li::before {
	content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
	color: rgb(137,113,113); /* Change the color */
	font-weight: bold; /* If you want it to be bold */
	display: inline-block; /* Needed to add space between the bullet and the text */
	width: 1em; /* Also needed for space (tweak if needed) */
	margin-left: -1em; /* Also needed for space (tweak if needed) */
  }


@media (max-width: 1024px) {
	
}	


/***************************************************************************/
/***************************************************************************/
/*                                                                          /
/*                    iPad VERTICAL y Móviles		<= 768px                    / 
/*                                                                          /
/ **************************************************************************/


@media (max-width: 768px) {
	.menu {
		display: none !important;
	}

	ul.menu-res li:hover .sub-menu {
		display: none;
	}

	.toggle {
		display: block !important;
		position: absolute;
		top: 0px;
		right: 0px;
		-webkit-transform: translate(-100%, 60%);
						transform: translate(-100%, 60%);
		font-size: 1.8rem;
		cursor: pointer;
		color: #f9f9f9;
	}

	section#home .text-box p {
		margin-left: initial;
	}

	section.contenido {
		padding-left: 0px;
		padding-right: 0px;
	}

	section.contenido .container .row.contact-row {
		display: block !important;
	}

	section.contenido .container .gallery-row .column { 
		max-width: 50%;
		-webkit-box-flex: 50%;
		-ms-flex: 50%;
		flex: 50%;
	}

	section.info-img .container .text-box {
		padding: 40px 60px;
	}

	section.info-img .container .text-box.to-right {
		padding: 40px 60px;
	}

	section.info-img .container img {
		position: relative;
		width: 100% !important;
	}

	footer {
			font-family: 'Questrial', sans-serif;
	}


	footer .container .box .details > .details-item h3 {
			padding-bottom: 8px;
			border-bottom: 1px dotted white;
			margin-bottom: 10px;

	}

	footer .container .box .details {
	font-size: 0.75em;    
	}


footer .container .box .details .details-item p {
margin-bottom: 8px;
}

footer .container .box .details .item-3 p>a.info-link {
font-size: 1em;        
}

footer .container .box .details {
font-size: 0.75em;    
}


footer .container .box .details .details-item p {
margin-bottom: 8px;
}

footer .container .box .details .item-3 p>a.info-link {
font-size: 1em;        
}


/* DEBUGIN */ 
/* *************************************************************************************************** */
.media_768,
.media_425,
.media_375 {
	display: block;
	text-align: center;
	background-color: black;
	color: white;
	z-index: 20;
	position: fixed;
	top: 53px;
  width: 33vw;
  padding: 4px 0px;
} 

.media_768 { left: 0 }
.media_425 { left: 33vw }
.media_375 { left: 66vw }

} /* fin media query */



/***************************************************************************/
/*                  MOVIL GRANDE y REGULAR <= 425px               					/
/ **************************************************************************/

@media (max-width: 425px) {

	section.contenido p {
		line-height: normal;
    text-align: unset;
	}

	.copy-r {
		display: none;
	}
	
	footer .container .box .details > .details-item h3 {
    margin-top: 20px;
		border-top: 1px dotted white;
		padding-top: 8px;
}

	footer .container .box .details > .details-item:first-child > h3 {
		margin-top: -10px;
		border-top: none;

	}

	footer .container .box .row.details {
    flex-wrap: wrap;
    justify-content: space-between;
		font-size: 1em; 
	}

	footer .container .box > .row.details {
			height: initial;
	}

	footer .container .box .details div.details-item {
			width: 100%;
			height: initial;
			text-align: initial;
	}



/* DEBUGIN */ 
/* *************************************************************************************************** */
	.media_768 {
		display: none;
	}

} /* fin media query */


/***************************************************************************/
/*                      TELEFONOS MÓVILES <= 375px                 					/
/ **************************************************************************/

@media (max-width: 375px) {



/* DEBUGIN */ 
/* *************************************************************************************************** */	
	.media_425 {
		display: none;
	}

} /* fin media query */



/*# sourceMappingURL=styles.css.map */
