/* Variables */
:root {
	--green:         #6DBB4D;
	--dark-green:    #67B149;
	--darkest-green: #163B07;
	--yellow:        #F4BB1F;
}

/* Font faces */
@font-face {
	font-family: 'Gotham';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local('Gotham'), url(../fonts/gotham_regular.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Gotham';
	font-style: bold;
	font-weight: 700;
	font-display: swap;
	src: local('Gotham'), url(../fonts/gotham_bold.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Honeyguide';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local('Gotham'), url(../fonts/dk-honeyguide.woff) format('woff');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
	box-sizing: border-box;
	outline: none;
}
html {
	font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
	background-color: var(--green);
}

/* Typography */
h1,
h2,
h3 {
	font-family: 'Honeyguide', sans-serif;
	font-weight: 400;
}
  
#sucur{
	text-align: center;
	color: #ffffff;
	font-size: 2.1rem;
	margin-top:-18px;
	margin-bottom: 5px;
}


.section-title {
	font-size: 3rem;
	text-align: center;
	color: #fff;
	margin-bottom: 1rem;
}
.section-title:before,
.section-title:after {
	content: "•";
}
.section-title:before {
	margin-right: 8px;
}
.section-title:after {
	margin-left: 8px;
}

/* Media */
img {
	max-width: 100%;
}

/* Layout */
.container {
	position: relative;
	display: block;
	max-width: 1170px;
	margin: 0 auto;
	box-sizing: border-box;
	padding: 16px;
}

/* Buttons */
.btn {
	background-color: var(--darkest-green);
	color: #fff;
	text-decoration: none;
	margin: 0 auto;
	border-radius: 25px;
	padding: 4px 24px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1.5rem;
	border: none;
	cursor: pointer;
}
.btn:hover {
	color:var(--yellow);
}

/* Site Header */
.site-header {
	width: 100%;
	padding: 8px 16px;
	background-color: #fff;
	box-sizing: border-box;
}
.site-header .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
.site-header__branding {
	max-width: 175px;
}
.site-header__branding img {
	display: block;
	margin-right: auto;
	max-height: 60px;
}

.site-header__menu {
	flex: 1;
	display: none;
}

/* Main menu */
.main-navigation {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;

}
.main-navigation li a,
.secondary-navigation li a{
	padding: 4px 12px;
	border-radius: 15px;
	text-decoration: none;
	color: var(--green);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}
.main-navigation li:not(:last-child) {
	margin-right: 8px;
}
.main-navigation li a:hover,
.secondary-navigation li a:hover {
	color: var(--darkest-green);
}
.main-navigation li.special a,
.secondary-navigation li.special a {
	background-color: var(--green);
	color: var(--darkest-green);
}
.main-navigation li.special a:hover,
.secondary-navigation li.special a:hover {
	background-color: var(--darkest-green);
	color: #fff;
}

.site-header__social {
	flex: none;
	width: 90px;
	display: none;
	align-items: center;
}

/* Social Icons */
.social-icon:not(:last-child) {
	margin-right: 8px;
}
.social-icon i {
	display: block;
	width: 28px;
	height: 28px;
	background-image: url(../images/icon-sheet.jpg);
	background-size: 56px;
}
.social-icon i.facebook {
	background-position: 0 0;
}
.social-icon:hover i.facebook {
	background-position: 0 28px;
}
.social-icon i.instagram {
	background-position: 28px 0;
}
.social-icon:hover i.instagram {
	background-position: 28px 28px;
}

/* Menu toggle */
.menu-toggle {
	border: none;
	background-color: transparent;
	width: 48px;
	margin-left: auto;
	padding: 8px;
	box-sizing: border-box;
}
.menu-toggle .menu-toggle__bar {
	display: block;
	height: 4px;
	background-color: var(--green);
	margin-left: 0;
}
.menu-toggle .menu-toggle__bar:not(:last-child) {
	margin-bottom: 4px;
}

/* Offcanvas menu */
.offcanvas:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.4);
	z-index: 8;
	display: none;
}
.offcanvas.active:before {
	display: block;
}
.offcanvas__menu {
	display: block;
	width: 250px;
	position: fixed;
	top: 0;
	left: -100%;
	bottom: 0;
	z-index: 9;
	background-color: #fff;
	margin: 0;
	padding: 32px 21px;
	transition: all 300ms ease-in-out;
}
.offcanvas.active .offcanvas__menu {
	left: 0;
}
.offcanvas .secondary-navigation {
	list-style: none;
	padding: 0;
}
.offcanvas .secondary-navigation li:not(:last-child) {
	margin-bottom: 14px;
}
.offcanvas .secondary-navigation li a {
	font-size: 16px;
}

.close-offcanvas {
	color: var(--green);
	font-size: 24px;
	border: none;
	background-color: transparent;
}

/* Footer */
.site-footer {
	width: 100%;
	padding: 8px 16px;
	background-color: #fff;
	box-sizing: border-box;
}
.site-footer .container{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

/*
 * Hero
 */
#hero {
	position: relative;
	display: block;
}
#hero img {
	width: 100%;
}

/* Menu */
#menu {
	background-image: url(../images/bg-champinon.png);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
}

.menu-links {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.menu-links__col {
	width: calc(100% / 2 - 16px);
	margin: 8px;
	text-align: center;
	cursor: pointer;
}
.menu-links__col img {
	max-width: 100%;
}
.menu-links__col h4 {
	text-transform: uppercase;
	color: #ffffff;
}
.menu-links__col:hover h4 {
	color: var(--darkest-green);
}

.menu-close {
	position: fixed;
	display: none;
	cursor: pointer;
	top: 16px;
	right: 16px;
	background: var(--green);
	padding: 16px;
	border-radius: 50%;
	height: 50px;
	width: 50px;
	text-align: center;
	color: #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	z-index: 8;
}

.menu-wrap {
	width: 100%;
	display: block;
	position: relative;
	z-index: 3;
}

.menu-content-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.menu-content-wrap.active:before {
	content: "";
	position: fixed;
	height: 100vh;
	width: 100vw;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,0.5);
}

/* Menu Item */
.menu-item {
	display: none;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	position: relative;
	align-items: center;
	max-width: 360px;
	margin: 0 auto;
}
.menu-item .menu-item__image{
	flex: none;
	width: 100%;
}
.menu-item .menu-item__desc {
	flex: none;
	width: 100%;
	background-color: #fff;
}
.menu-item .menu-item__combo {
	flex: none;
	width: 100%;
}

.menu-item .menu-item__image img,
.menu-item .menu-item__combo img {
	display: block;
	width: 100%;
}

.menu-item .menu-item__image img.desktop,
.menu-item .menu-item__combo img.desktop {
	display: none;
}

/* Menu - Ensaladas */
.menu-item__desc.is-ensalada {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.menu-item__desc.is-ensalada > div {
	flex: none;
	width: 100%;
}

.menu-item__desc.is-ensalada .desc h4 {
	font-size: 24px;
	text-transform: uppercase;
	font-weight: 300;
	font-style: italic;
	text-align: center;
	color: #666;
	margin-top: 0;
	margin-bottom: 0;
}
.menu-item__desc.is-ensalada .desc strong {
	display: block;
	font-size: 20px;
	text-align: center;
	color: var(--green);
	margin-top: 0;
	margin-bottom: 12px;
}

.menu-item__desc.is-ensalada .ingredients {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.menu-item__desc.is-ensalada .ingredients > div {
	flex: none;
	width: 100%;
	text-align: center;
	position: relative;
	margin-bottom: 32px;
}

.menu-item__desc.is-ensalada .ingredients > div:not(:last-child):after {
	content: "+";
	position: absolute;
	top: 118%;
	right: 50%;
	font-size: 20px;
	font-weight: 700;
	transform: translate(50%,-50%);
	color: var(--green);
}

.menu-item__desc.is-ensalada .ingredients > div > p {
	margin-bottom: 0;
	font-size: 13px;
}

.menu-item__desc.is-ensalada .ingredients > div > small {
	font-size: 10px;
	color: var(--green);
	font-weight: 700;
}

.menu-item__desc.is-ensalada .prices ul {
	list-style: none;
	padding: 0 24px;
}

.menu-item__desc.is-ensalada .prices li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.menu-item__desc.is-ensalada .prices li span {
	background-color: var(--green);
	border-radius: 5px;
	padding: 4px;
	color: #ffffff;
	margin-left: auto;
	display: inline-block;
}

/* Menu - Sandwich */
.menu-item__desc.is-sandwich {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.menu-item__desc.is-sandwich > div {
	flex: none;
	width: 100%;
	margin-bottom: auto;
}

.menu-item__desc.is-sandwich .desc {
	margin-top: auto;
}
.menu-item__desc.is-sandwich .desc h4 {
	font-size: 21px;
	font-weight: 400;
	text-align: center;
	color: #666; 
	margin: 8px 14px;
	padding-bottom: 8px;
	border-bottom: 4px solid var(--green);
}
.menu-item__desc.is-sandwich .desc strong {
	display: block;
	font-size: 20px;
	text-align: center;
	color: var(--green);
	margin-top: 0;
	margin-bottom: 12px;
}

.menu-item__desc.is-sandwich .prices ul {
	list-style: none;
	padding: 0 24px;
	display: flex;
	flex-wrap: wrap;
}

.menu-item__desc.is-sandwich .prices li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
	width: 100%;
	padding: 8px;
}

.menu-item__desc.is-sandwich .prices li .crispy {
	display: inline-block;
	height: 16px;
	width: 16px;
	background-image: url(../images/crispy_buffaloranch.png);
	background-size: cover;
	background-repeat: no-repeat;
	margin-left: 4px;
}

.menu-item__desc.is-sandwich .prices li span {
	background-color: var(--green);
	border-radius: 5px;
	padding: 4px;
	color: #ffffff;
	margin-left: auto;
	display: inline-block;
}

/* Menu - Pasta */
.menu-item__desc.is-pasta {
	padding: 16px;
}
.menu-item__desc.is-pasta .prices-row {
	display: flex;
	flex-wrap: wrap;
}
.menu-item__desc.is-pasta .prices-col {
	flex: none;
	width: 100%;
}
.menu-item__desc.is-pasta .prices-col:not(:last-child):after {
	content:"";
	display: block;
	height: 4px;
	width: 100%;
	background: var(--green);
	margin-top: 16px;
}
.menu-item__desc.is-pasta .prices-col p {
	display: flex;
	justify-content: space-between;
	width: 100%;
	font-size: 21px;
}
.menu-item__desc.is-pasta .prices-col span {
	background-color: var(--green);
	border-radius: 5px;
	padding: 4px;
	color: #ffffff;
	margin-left: auto;
	display: inline-block;
}
.menu-item__desc.is-pasta .prices-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.menu-item__desc.is-pasta .prices-col li:not(:last-child):after {
	content: "•";
	color: var(--green);
	display: inline-block;
	margin-left: 4px;
	margin-right: 4px;
}
.menu-item__desc.is-pasta .desc {
	color: var(--green);
	font-size: 21px;
	font-weight: 70;
	text-align: center;
}
.menu-item__desc.is-pasta .desc h4 {
	margin-bottom: 0;
	margin-top: 8px;
}

/* Menu - Tacosalad */
.menu-item__desc.is-tacosalad {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
}
.menu-item__desc.is-tacosalad > div {
	flex: none;
	width: 100%;
}

.menu-item__desc.is-tacosalad .desc {
	margin-top: 8px;
	margin-bottom: 8px;
}

.menu-item__desc.is-tacosalad .desc h4 {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	color: var(--green);
	margin-top: 0;
	margin-bottom: 0;
}

.menu-item__desc.is-tacosalad .desc ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.menu-item__desc.is-tacosalad .desc li:not(:last-child):after {
	content: "•";
	color: var(--green);
	display: inline-block;
	margin-left: 4px;
	margin-right: 4px;
}

.menu-item__desc.is-tacosalad .prices ul {
	list-style: none;
	padding: 0 24px;
}

.menu-item__desc.is-tacosalad .prices li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 8px;
}

.menu-item__desc.is-tacosalad .prices li span {
	background-color: var(--green);
	border-radius: 5px;
	padding: 4px;
	color: #ffffff;
	margin-left: auto;
	display: inline-block;
}

/* Aderezos */
#aderezos {
	background: url(../images/bg-pleca-1.png) 100% 100%;
	background-position: bottom center;
	background-size: cover;
}
.aderezos-wrap,
.contact-wrap {
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-end;
	margin-bottom: 2rem;
}
.aderezos-col,
.contact-col {
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.aderezos-col img {
	max-width: 100%;
}

/* Ubicaciones */
#ubicaciones {
	background-image: url(../images/bg-brocoli.png);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: contain;
}
.locations-wrap {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	overflow: hidden;
	flex-direction: column;
}

.locations-tabs {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	flex: 1;
	background-color: var(--darkest-green);
	justify-content: center;
	border-top-right-radius: 15px;
	border-bottom-right-radius: 15px;
}

.location-tabs__figure-wrap {
	position: relative;
	width: 100%;
}
.location-tabs__figure-wrap:before {
	content: "";
	display: block;
	width: 90%;
	height: 12px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: var(--green);
	border-radius: 50px;
}
.location-tabs__figure-wrap.open {
	margin-bottom: auto;
	margin-top: 32px;
}
.location-tabs__figure-wrap.close {
	margin-top: auto;
	margin-bottom: 32px;
}

.location-tabs__figure {
	background: #fff;
	width: 90px;
	height: 90px;
	border-radius: 50%;
	display: flex;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	padding: 12px;
	box-sizing: border-box;
	border: 5px solid var(--green);
	position: relative;
}
.location-tabs__figure img {
	max-width: 100%;
	max-height: 100%;
}

.locations-tabs button {
	border: none;
	background-color: transparent;
	cursor: pointer;
	color: #fff;
	padding: 16px;
	font-weight: 700;
	text-transform: uppercase;
}
.locations-tabs button:hover {
	color: var(--yellow);
}

.locations-content {
	flex: 1;
	background-color: #fff;
}

.locations-content .tabcontent {
	display: none;
}

/* Factura */
#factura .container {
	text-align: center;
}

#factura {
	background-image: url(../images/bg-pepino.png);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: contain;
}

#factura .btn {
	font-size: 2.2rem;
	padding: 8px 32px;
}

/* Contacto */
#contacto {
	background: url(../images/bg-pleca-2.png);
	background-position: bottom center;
	background-size: cover;
	padding-bottom: 100px;
}

.applicant-btn,
.contact-btn {
	margin-bottom: 16px;
}

.contact-wrap {
	align-items: flex-start;
}

.contact-col h3 {
	color: #fff;
	font-weight: 400;
	font-size: 2rem;
}

.applicant-wrap,
.contact-wrap {
	display: none;
}

.applicant-form {
	background-color: var(--darkest-green);
	padding: 16px;
	border-radius: 15px;
	margin-top: 16px;
	margin-bottom: 16px;
}

.contact-form {
	padding: 16px;
	width: 100%;
}

/* Forms */
.form-control {
	width: 100%;
	display: block;
	margin-bottom: 1rem;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.form-row .form-control {
	flex: 1;
}
.form-row .is-one-fourth {
	flex: none;
	width: 100%;
}

.form-control label {
	text-align: left;
	color: #fff;
	text-transform: uppercase;
	display: block;
	margin-bottom: 8px;
	font-weight: 700;
}

.form-control input[type="text"],
.form-control input[type="tel"],
.form-control input[type="email"],
.form-control input[type="number"],
.form-control input[type="url"],
.form-control select,
.form-control textarea {
	border: none;
	width: 100%;
	border-radius: 15px;
	padding: 8px 16px;
	box-sizing: border-box;
}

.form-error {
	color: #fff;
	font-size: 14px;
	margin-top: 8px;
	text-align: left;
}

.g-recaptcha > div {
	margin: 0 auto 16px;
}


/* Utils */
.text-center {
	text-align: center;
}

.interrogation {
	display: inline-block;
	width: 21px;
	height: 40px;
	background-image: url(../images/symbol.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin-bottom: -12px;
}

/* Responsive */
/* Tablet > */
@media screen and (min-width:768px) {
	/* Section title */
	.section-title {
		font-size: 6rem;
	}
	/* Menu */
	.menu-links__col {
		/*width: calc(100% / 4 - 16px);*/
		margin: 8px;
		text-align: center;
	}
	/* Aderezos */
	.aderezos-col {
		width: calc(100% / 3);
		text-align: center;
		padding: 0 16px;
	}
	
	/* Ubicaciones */
	.locations-wrap {
		flex-direction: row-reverse;
	}

	.locations-tabs {
		flex: none;
		width: 375px;
	}

	/* Contacto */
	.contact-col {
		width: calc(100% / 2);
		padding: 0 16px;
	}

	/* Utils */
	.interrogation {
		width: 37px;
		height: 70px;
	}
}
/* Medium Desktop > */
@media screen and (min-width:991px) {
	.site-header__menu {
		display: block;
	}

	.site-header__social {
		display: flex;
	}	

	.menu-toggle {
		display: none;
	}
	/* Menu Item */
	.menu-close {
		top: 10%;
		right: 32px;
	}
	.menu-item {
		flex-direction: row;
		max-width: 100%;
		align-items: stretch;
	}
	.menu-item .menu-item__image,
	.menu-item .menu-item__combo {
		flex: 1;
	}
	.menu-item .menu-item__image img.desktop,
	.menu-item .menu-item__combo img.desktop {
		display: block;
	}
	.menu-item .menu-item__image img.mobile,
	.menu-item .menu-item__combo img.mobile {
		display: none;
	}

	.menu-item .menu-item__desc {
		width: 60%;
	}
	/* Menu - Ensaladas */
	.menu-item__desc.is-ensalada {
		flex-direction: row;
	}
	.menu-item__desc.is-ensalada > div:first-child {
		flex: none;
		width: 60%;
		border-right: 4px solid var(--green);
		padding-right: 8px;
		padding-left: 8px;
	}
	.menu-item__desc.is-ensalada .prices {
		flex: 1;
	}
	.menu-item__desc.is-ensalada .ingredients > div {
		flex: 1;
		margin-bottom: 0;
		padding: 0 6px;
	}
	.menu-item__desc.is-ensalada .ingredients > div:not(:last-child):after {
		content: "+";
		position: absolute;
		top: 43%;
		right: -6px;
		font-size: 20px;
		font-weight: 700;
		transform: translateY(-50%);
	}
	/* Menu Sandwich */
	.menu-item__desc.is-sandwich .prices li {
		display: flex;
		justify-content: space-between;
		margin-bottom: 8px;
		width: 50%;
		padding: 8px;
	}
	/* Menu - Pasta */
	.menu-item__desc.is-pasta .prices-col {
		flex: 1;
	}
	.menu-item__desc.is-pasta .prices-col:first-child {
		border-right: 4px solid var(--green);
		padding-right: 12px;
		margin-right: 12px;
	}
	.menu-item__desc.is-pasta .prices-col:not(:last-child):after {
		display: none;
	}
	/* Menu - Tacosalad */
	.menu-item__desc.is-tacosalad {
		flex-direction: row;
	}
	.menu-item__desc.is-tacosalad > div:first-child {
		flex: none;
		width: 60%;
		border-right: 4px solid var(--green);
		padding-right: 8px;
		padding-left: 8px;
	}
	.menu-item__desc.is-tacosalad .prices {
		flex: 1;
	}

	/* Contacto */
	.form-row .form-control:not(:last-child) {
		margin-right: 16px;
	}
	.form-row .is-one-fourth {
		width: calc(100% / 4);
	}
}
/* Desktop > */
@media screen and (min-width:1200px) {
	/* Something else */
}