@font-face {
	font-family: 'Hit and Run';
	src: url('../fonts/hit-and-run/HitandRun-Regular.woff2') format('woff2');
	font-style: normal;
	font-weight: 400;
}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
	text-decoration: none;
	list-style: none;
}

/** Custom Properties **/
:root {
	--white: #fff;
	--black: #000;
	--gray-light: #d4d5d3;
	--gray-dark: #494a47;
	--green: #7ed957;
	--green-dark: #076b4b;
	--green-light1: #e5f3da;
	--green-light2: #f5f7ee;
	--pink: #ef6a80;
	--red: #cf192c;
}

/** Globals **/
body {
	font-size: 16px;
	overflow-x: hidden;
}
h1 {
	margin-bottom: 10px;
}
.container {
	width: 90%;
	max-width: 110rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.container {
		width: 80%;
	}
}
@media screen and (max-width: 480px) {
	.container {
		width: 90%;
	}
}

/* Fonts */
.arimo {
	font-family: 'Arimo';
	font-weight: 400;
}
.hit {
	font-family: 'Hit and Run';
	font-weight: 400;
}
.league {
	font-family: 'League Gothic';
	font-weight: 400;
}
.norwester {
	font-family: 'Norwester';
	font-weight: 400;
}

/* Header */
.header {
	min-height: 100vh;
}
.video {
	width: 100%;
	min-width: 100%;
	min-height: auto;
	overflow-x: hidden;
	position: absolute;
	top: 0px;
	right: 0px;
	z-index: -1000;
}
.navbar {
	padding-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navbar img {
	width: 200px;
	height: auto;
}
.navbar__menu {
	color: var(--white);
	text-transform: uppercase;
	font-size: 50px;
}
.navbar__menu-items {
	display: flex;
	gap: 60px;
}
.navbar__menu-items li a {
	color: var(--white) !important;
}
.navbar__menu-items li a:hover {
	color: var(--red) !important;
}
@media screen and (max-width: 1440px) {
	.header {
		.navbar {
			padding-top: 50px;

			img {
				width: 150px;
			}

			.navbar__menu {
				.navbar__menu-items {
					gap: 40px;
					font-size: 40px;
				}
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.header {
		.navbar {
			padding-top: 45px;

			img {
				width: 140px;
			}

			.navbar__menu {
				.navbar__menu-items {
					gap: 38px;
					font-size: 38px;
				}
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.header {
		min-height: 90vh;

		.navbar {
			padding-top: 40px;

			img {
				width: 120px;
			}

			.navbar__menu {
				.navbar__menu-items {
					gap: 35px;
					font-size: 35px;
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.header {
		min-height: 45vh;

		.navbar {
			padding-top: 30px;

			img {
				width: 100px;
			}

			.navbar__menu {
				.navbar__menu-items {
					gap: 30px;
					font-size: 30px;
				}
			}
		}
	}
}
@media screen and (max-width: 768px) {
	.header {
		min-height: 43vh;

		.navbar {
			padding-top: 30px;

			img {
				width: 80px;
			}

			.navbar__menu {
				.navbar__menu-items {
					gap: 24px;
					font-size: 24px;
				}
			}
		}
	}
}
@media screen and (max-width: 480px) {
	.header {
		min-height: 35vh;

		.navbar {
			align-items: flex-start;
			padding-top: 15px;

			img {
				width: 80px;
			}

			.navbar__menu {
				.navbar__menu-items {
					flex-direction: column;
					gap: 8px;
					font-size: 22px;
				}
			}
		}
	}
}

/* Header Inner Pages */
.header__nav2 {
	background-color: var(--black);
	padding: 10px 0;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 100;
}
.navbar2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.navbar__menu2 {
	color: var(--white);
	text-transform: uppercase;
	font-size: 30px;
}
.navbar__menu-items2 {
	display: flex;
	gap: 60px;
}
.navbar__menu-items2 li a {
	color: var(--white) !important;
}
.navbar__menu-items2 li a:hover {
	color: var(--green) !important;
}
.navbar__menu-items li a.active {
	color: var(--red) !important;
	position: relative;
}
.navbar__menu-items li a.active::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--red);
	position: absolute;
	bottom: -3px;
	left: 0;
}
.navbar__menu-items2 li a.active {
	color: var(--red) !important;
	position: relative;
}
.navbar__menu-items2 li a.active::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--red);
	position: absolute;
	bottom: -3px;
	left: 0;
}
@media screen and (max-width: 1440px) {
	.navbar__menu2 {
		font-size: 29px;

		.navbar__menu-items2 {
			gap: 50px;
		}
	}
}
@media screen and (max-width: 1024px) {
	.navbar__menu2 {
		font-size: 28px;

		.navbar__menu-items2 {
			gap: 40px;
		}
	}
}
@media screen and (max-width: 768px) {
	.navbar__menu2 {
		font-size: 24px;

		.navbar__menu-items2 {
			gap: 30px;
		}
	}
}

/* Welcome */
.welcome {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
	padding: 100px 0;
	margin-top: 150px;
}
.welcome__left {
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.welcome__left img,
.welcome__right img {
	width: 100%;
}
.welcome__left p {
	font-size: 44px;
}
@media screen and (max-width: 1440px) {
	.welcome__left p {
		font-size: 32px;
	}
}
@media screen and (max-width: 1366px) {
	.welcome__left p {
		font-size: 30px;
	}
}
@media screen and (max-width: 1280px) {
	.welcome__left p {
		font-size: 28px;
	}
}
@media screen and (max-width: 1024px) {
	.welcome__left p {
		font-size: 24px;
	}
}
@media screen and (max-width: 768px) {
	.welcome__left {
		padding: 0;

		.welcome__left p {
			font-size: 25px;
		}
	}
}
@media screen and (max-width: 480px) {
	.welcome {
		grid-template-columns: 1fr;

		.welcome__left {
			padding: 0px 30px;

			.welcome__left p {
				font-size: 24px;
			}
		}
	}
}

/* All you can eat */
.ayce {
	display: grid;
	grid-template-columns: 43% 57%;
	min-height: 700px;
}
.ayce__left img {
	width: 100%;
}
.ayce__right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	padding: 0 20%;
}
.ayce__right .img1 {
	align-self: flex-start;
	width: 35%;
	position: absolute;
	top: 0;
	left: -2px;
	z-index: -1;
}
.ayce__right-center {
	align-self: center;
}
.ayce__right-center .img2 {
	width: 70%;
	margin-bottom: 30px;
}
.ayce__right-center p {
	font-size: 40px;
}
.ayce__right .img3 {
	align-self: flex-end;
	width: 35%;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}
@media screen and (max-width: 1440px) {
	.ayce__right {
		padding: 0 12% 0 20%;
	}
	.ayce__right-center .img2 {
		width: 62%;
	}
	.ayce__right-center p {
		font-size: 32px;
	}
}
@media screen and (max-width: 1366px) {
	.ayce__right {
		padding: 0 12% 0 18%;
	}
	.ayce__right-center .img2 {
		width: 60%;
	}
	.ayce__right-center p {
		font-size: 32px;
	}
}
@media screen and (max-width: 1280px) {
	.ayce__right {
		padding: 0 15% 0 18%;
	}
	.ayce__right-center .img2 {
		width: 53%;
	}
	.ayce__right-center p {
		font-size: 28px;
	}
}
@media screen and (max-width: 1024px) {
	.ayce {
		min-height: 500px;
		.ayce__right {
			padding: 0 15%;

			.img1 {
				width: 30%;
			}
			.ayce__right-center {
				align-self: flex-start;
				.img2 {
					width: 50%;
				}
				p {
					font-size: 25px;
				}
			}
			.img3 {
				width: 30%;
			}
		}
	}
}
@media screen and (max-width: 768px) {
	.ayce {
		min-height: 400px;

		.ayce__right {
			padding: 0 15%;

			.img1 {
				width: 30%;
			}
			.ayce__right-center {
				align-self: flex-start;
				.img2 {
					width: 60%;
				}
				p {
					font-size: 25px;
				}
			}
			.img3 {
				width: 30%;
			}
		}
	}
}
@media screen and (max-width: 480px) {
	.ayce {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(2, 1fr);
		min-height: 300px;

		.ayce__right {
			padding: 0 15%;

			.img1 {
				width: 30%;
			}
			.ayce__right-center {
				align-self: flex-start;
				.img2 {
					width: 60%;
				}
				p {
					font-size: 25px;
				}
			}
			.img3 {
				width: 30%;
			}
		}
	}
}

/* Menu */
.menu,
.slider__menu {
	background-color: var(--white);
	min-height: 700px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;
	padding: 80px 0 70px;
}
.menu img.menu-img1 {
	width: 30%;
}
.menu img.menu-img2 {
	width: 12%;
}
.menu img.menu__grid-img2 {
	width: 15%;
}
.menu__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(3, 1fr);
	gap: 0;
	border: 2px solid var(--black);
}
@media screen and (max-width: 1440px) {
	.menu img.menu-img1 {
		width: 28%;
	}
	.menu img.menu-img2 {
		width: 10%;
	}
}
@media screen and (max-width: 1366px) {
	.menu img.menu-img1 {
		width: 27%;
	}
	.menu img.menu-img2 {
		width: 9%;
	}
}
@media screen and (max-width: 1024px) {
	.menu {
		padding: 60px 0 60px;

		.menu__grid {
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: repeat(5, 1fr);

			.item:nth-child(3) {
				order: 4;
			}
			.item:nth-child(4) {
				order: 3;
			}
			.item:nth-child(5) {
				order: 5;
			}
			.item:nth-child(6) {
				order: 6;
			}
			.item:nth-child(7) {
				order: 8;
			}
			.item:nth-child(8) {
				order: 7;
			}
			.item:nth-child(9) {
				order: 9;
			}
		}

		.menu img.menu-img1 {
			width: 27%;
		}
		.menu img.menu-img2 {
			width: 9%;
		}
	}
}
@media screen and (max-width: 768px) {
	.menu {
		padding: 60px 0 60px;

		.menu__grid {
			grid-template-columns: repeat(2, 1fr);
			grid-template-rows: repeat(5, 1fr);

			.item:nth-child(3) {
				order: 4;
			}
			.item:nth-child(4) {
				order: 3;
			}
			.item:nth-child(5) {
				order: 5;
			}
			.item:nth-child(6) {
				order: 6;
			}
			.item:nth-child(7) {
				order: 8;
			}
			.item:nth-child(8) {
				order: 7;
			}
			.item:nth-child(9) {
				order: 9;
			}
		}

		img.menu-img1 {
			width: 27%;
		}
		img.menu-img2 {
			width: 9%;
		}
		img.menu__grid-img2 {
			width: 30%;
		}
	}
}
@media screen and (max-width: 480px) {
	.menu {
		.menu__grid {
			grid-template-columns: 1fr;
			grid-auto-rows: repeat(9, 1fr);

			.item:nth-child(3) {
				order: 3;
			}
			.item:nth-child(4) {
				order: 4;
			}
			.item:nth-child(5) {
				order: 5;
			}
			.item:nth-child(6) {
				order: 6;
			}
			.item:nth-child(7) {
				order: 7;
			}
			.item:nth-child(8) {
				order: 8;
			}
			.item:nth-child(9) {
				order: 9;
			}
		}

		img.menu-img1 {
			width: 45%;
		}
		img.menu-img2 {
			width: 20%;
		}
		img.menu__grid-img2 {
			width: 30%;
		}
	}
}
.menu__grid-text {
	padding: 70px 50px;
	display: flex;
	flex-direction: column;
	text-align: center;
	gap: 30px;
	align-items: center;
	justify-content: space-between;
}
.menu__grid-textinner {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: 24px;
	line-height: 40px;
	gap: 40px;
	align-items: center;
}
.menu__grid-textinner p:first-child {
	margin-bottom: 10px;
}
.menu__grid-img {
	width: 100%;
}
.menu__grid-line {
	background-color: var(--green);
	height: 2px;
	width: 130px;
	margin-top: 20px;
}
.menu__grid-title {
	color: var(--red);
	font-size: 50px;
}
.menu__grid p {
	font-size: 24px;
}
.menu__grid-price {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.menu__grid-price .price-img {
	height: 50px;
	width: auto;
}
.menu__grid-img2 {
	margin-top: 30px;
}
@media screen and (max-width: 1440px) {
	.menu {
		.menu__grid {
			.menu__grid-text {
				padding: 50px 30px;

				.menu__grid-textinner {
					line-height: 30px;

					.menu__grid-title {
						font-size: 40px;
					}
					p {
						font-size: 20px;
					}
				}

				.menu__grid-price {
					.price-img {
						height: 40px;
						width: auto;
					}
					.menu__grid-line {
						width: 110px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.menu {
		.menu__grid {
			.menu__grid-text {
				padding: 45px 27px;

				.menu__grid-textinner {
					line-height: 28px;

					.menu__grid-title {
						font-size: 38px;
					}
					p {
						font-size: 19px;
					}
				}

				.menu__grid-price {
					.price-img {
						height: 38px;
						width: auto;
					}
					.menu__grid-line {
						width: 106px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.menu {
		.menu__grid {
			.menu__grid-text {
				.menu__grid-textinner {
					line-height: 27px;

					.menu__grid-title {
						font-size: 35px;
					}
					p {
						font-size: 18px;
					}
				}

				.menu__grid-price {
					.price-img {
						height: 35px;
						width: auto;
					}
					.menu__grid-line {
						width: 90px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.menu {
		.menu__grid {
			.menu__grid-text {
				padding: 45px 35px;

				.menu__grid-textinner {
					line-height: 30px;

					.menu__grid-title {
						font-size: 39px;
					}
					p {
						font-size: 21px;
					}
				}

				.menu__grid-price {
					.price-img {
						height: 39px;
						width: auto;
					}
					.menu__grid-line {
						width: 100px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.menu {
		.menu__grid {
			.menu__grid-text {
				padding: 45px 35px;

				.menu__grid-textinner {
					line-height: 26px;

					.menu__grid-title {
						font-size: 34px;
					}
					p {
						font-size: 18px;
					}
				}

				.menu__grid-price {
					.price-img {
						height: 34px;
						width: auto;
					}
					.menu__grid-line {
						width: 100px;
					}
				}
			}
		}
	}
}

/* Visit Us */
.visit-us {
	min-height: 700px;
	background-color: var(--white);
}
.visit__background {
	min-height: 770px;
	background-image: url('../images/mex05a.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.maps {
	position: relative;
	padding-top: 100px;
}
.visit__background-img1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 35%;
}
.visit__background-img2 {
	position: absolute;
	top: 0;
	right: 0;
	width: 35%;
}
.visit__background h2 {
	font-size: 44px;
	letter-spacing: 1px;
	text-align: center;
	color: var(--white);
	margin-bottom: 100px;
}
.visit__background-maps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
	padding: 0 50px;
	margin-bottom: 60px;
}
.visit__background-maps .locattions {
	width: 20%;
}
.visit__background-maps img {
	width: 100%;
}
@media screen and (max-width: 1440px) {
	.visit__background {
		min-height: 630px;

		h2 {
			font-size: 40px;
		}
		.visit__background-maps {
			gap: 20px;
			padding: 0 40px;
		}
	}
}
@media screen and (max-width: 1366px) {
	.visit__background {
		min-height: 610px;

		h2 {
			font-size: 34px;
		}
		.visit__background-maps {
			gap: 20px;
			padding: 0 30px;
		}
	}
}
@media screen and (max-width: 1280px) {
	.visit__background {
		min-height: 580px;

		h2 {
			font-size: 32px;
		}
		.visit__background-maps {
			gap: 20px;
			padding: 0 30px;
		}
	}
}
@media screen and (max-width: 1024px) {
	.visit__background {
		min-height: 470px;

		h2 {
			margin-bottom: 50px;
		}
	}
}
@media screen and (max-width: 768px) {
	.visit__background {
		min-height: 1430px;

		.maps {
			h2 {
				margin-bottom: 60px;
			}

			.visit__background-maps {
				grid-template-columns: repeat(2, 1fr);
				grid-auto-rows: repeat(3, 1fr);
				padding: 0 5%;
				gap: 15px;
			}
		}
	}
}
@media screen and (max-width: 480px) {
	.visit__background {
		min-height: 850px;

		.maps {
			padding-bottom: 40px;

			h2 {
				margin-bottom: 50px;
			}

			.visit__background-maps {
				grid-template-columns: repeat(2, 1fr);
				grid-auto-rows: repeat(3, 1fr);
				padding: 0 5%;
				gap: 15px;
			}
		}
	}
}

/* Footer */
.footer .footer__socials {
	height: 250px;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	align-items: center;
	background-color: var(--black);
}
.footer__socials .footer__socials-icons {
	display: flex;
	gap: 20px;
	justify-content: center;
	align-items: center;
}
.footer .footer__socials img {
	width: 65px;
}
.footer .footer__socials p {
	color: var(--white);
	font-size: 22px;
	text-align: center;
}
@media screen and (max-width: 1440px) {
	.footer {
		.footer__socials {
			height: 200px;

			.footer__socials-icons {
				img {
					width: 55px;
				}
			}
			p {
				font-size: 19px;
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.footer {
		.footer__socials {
			height: 200px;

			.footer__socials-icons {
				img {
					width: 52px;
				}
			}
			p {
				font-size: 18px;
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.footer {
		.footer__socials {
			height: 180px;

			.footer__socials-icons {
				img {
					width: 48px;
				}
			}
			p {
				font-size: 17px;
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.footer {
		.footer__socials {
			height: 160px;

			.footer__socials-icons {
				img {
					width: 46px;
				}
			}
			p {
				font-size: 16px;
			}
		}
	}
}
@media screen and (max-width: 768px) {
	.footer {
		.footer__socials {
			height: 140px;
			gap: 10px;

			.footer__socials-icons {
				img {
					width: 44px;
				}
			}
			p {
				font-size: 15px;
			}
		}
	}
}
@media screen and (max-width: 480px) {
	.footer {
		.footer__socials {
			height: 140px;
			gap: 10px;

			.footer__socials-icons {
				img {
					width: 42px;
				}
			}
			p {
				font-size: 14px;
			}
		}
	}
}

/* Schedules */
.schedules {
	background-color: var(--white);
	min-height: 700px;
	position: relative;
}
.schedules__left {
	position: absolute;
	top: -3px;
	left: -2px;
	width: 25%;
}
.schedules__center {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10% 30%;
	display: flex;
	flex-direction: column;
	gap: 50px;
}
.schedules__center td {
	height: 80px;
}
.schedules__center img {
	width: 100%;
	margin-bottom: 50px;
}
.schedules__center .days {
	color: var(--pink);
	font-size: 40px;
}
.schedules__center .hours {
	padding-left: 70px;
	font-size: 40px;
}
.schedules__right {
	width: 25%;
	position: absolute;
	bottom: -2px;
	right: -3px;
}
@media screen and (max-width: 1440px) {
	.schedules {
		.schedules__left,
		.schedules__right {
			width: 23%;
		}

		.schedules__center {
			padding: 8% 20%;
			gap: 40px;

			td {
				height: 70px;
			}
			img {
				width: 60%;
			}
			.days,
			.hours {
				font-size: 34px;
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.schedules {
		.schedules__left,
		.schedules__right {
			width: 20%;
		}

		.schedules__center {
			padding: 8% 20% 3%;

			td {
				height: 60px;
			}
			img {
				width: 60%;
			}
			.days,
			.hours {
				font-size: 34px;
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.schedules {
		.schedules__left,
		.schedules__right {
			width: 20%;
		}

		.schedules__center {
			padding: 8% 20% 3%;

			td {
				height: 60px;
			}
			img {
				width: 60%;
			}
			.days,
			.hours {
				font-size: 32px;
			}
		}
	}
}
@media screen and (max-width: 768px) {
	.schedules {
		min-height: 600px;

		.schedules__left,
		.schedules__right {
			width: 20%;
		}

		.schedules__center {
			padding: 15% 10%;

			td {
				height: 60px;
			}
			img {
				width: 50%;
			}
			.days,
			.hours {
				font-size: 28px;
			}
		}
	}
}

/* Slider Menu */
.slider__menu {
	margin-bottom: 40px;
}
.slider__menu img.menu-title {
	width: 30%;
}
.slider__menu img.menu-deco {
	width: 12%;
}
.slider__menu-slider {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: 10px 0 5px;
}
.slider__menu-slider img {
	width: 100%;
}
.slider__menu-dots {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.slider__menu-dots .dot,
.slider__menu-dots .dotb {
	height: 8px;
	width: 8px;
	border-radius: 50%;
	background-color: #aaa;
}
.slider__menu-dots .dotb {
	background-color: var(--black);
}
@media screen and (max-width: 1440px) {
	.slider__menu {
		img.menu-title {
			width: 25%;
		}
		img.menu-deco {
			width: 10%;
		}

		.slider__menu-slider {
			padding: 0 10%;
		}
	}
}
@media screen and (max-width: 1366px) {
	.slider__menu {
		img.menu-title {
			width: 23%;
		}
		img.menu-deco {
			width: 9%;
		}
	}
}
@media screen and (max-width: 1280px) {
	.slider__menu {
		img.menu-title {
			width: 21%;
		}
		img.menu-deco {
			width: 8%;
		}
	}
}

/* Live Mexican */
.live__mexican {
	background-color: var(--white);
	min-height: 700px;
	margin-bottom: 30px;
}
.fuerte,
.acompania,
.extras {
	margin-top: 70px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.live__mexican-title {
	background-color: var(--green-light1);
	height: 70px;
	padding: 0 30%;
	display: flex;
	justify-content: center;
	position: relative;
	margin-bottom: 70px;
}
.live__mexican img {
	width: 30%;
}
.live__mexican-title .img1 {
	position: absolute;
	top: -50%;
}
.live__mexican-title .img2 {
	position: absolute;
	bottom: -50%;
}
@media screen and (max-width: 1440px) {
	.live__mexican {
		.fuerte {
			.live__mexican-title {
				img.img1,
				img.img2 {
					width: 40%;
				}
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.live__mexican {
		.fuerte {
			.live__mexican-title {
				img.img1,
				img.img2 {
					width: 42%;
				}
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.live__mexican {
		.fuerte {
			.live__mexican-title {
				img.img1,
				img.img2 {
					width: 45%;
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.live__mexican {
		.fuerte {
			.live__mexican-title {
				img.img1,
				img.img2 {
					width: 55%;
				}
			}
		}
	}
}
.live__mexican-forte,
.live__mexican-accompaniment {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.live__mexican-forte .title,
.live__mexican-accompaniment .title {
	letter-spacing: 2px;
	font-size: 38px;
	color: var(--red);
}
@media screen and (max-width: 1440px) {
	.live__mexican-forte .title,
	.live__mexican-accompaniment .title {
		font-size: 35px;
	}
}
.live__mexican-forte .decoration,
.live__mexican-accompaniment .decoration {
	display: flex;
	justify-content: flex-end;
	margin-right: -10%;
	margin-left: 10%;
}
.live__mexican-forte .decoration img,
.live__mexican-accompaniment .decoration img {
	width: 45%;
}
.live__mexican-forte table,
.live__mexican-accompaniment table {
	width: 100%;
}
.live__mexican-forte thead {
	letter-spacing: 2px;
	font-family: 'Hit and Run';
	font-size: 26px;
	color: var(--red);
	height: 70px;
}
.live__mexican-forte .td1,
.live__mexican-accompaniment .td1 {
	letter-spacing: 1px;
	font-family: 'Hit and Run';
	font-size: 26px;
	color: var(--pink);
	height: 45px;
}
.live__mexican-forte .td2,
.live__mexican-accompaniment .td2 {
	font-family: 'Norwester';
	font-size: 26px;
}
.live__mexican-forte .th1,
.live__mexican-accompaniment .td1 {
	width: 28%;
	text-align: left;
}
.live__mexican-accompaniment .td1 {
	width: 75%;
	text-align: left;
}
.live__mexican-forte .td2 {
	width: 18%;
	text-align: center;
}
.live__mexican-accompaniment .td2 {
	width: 25%;
	text-align: right;
	padding-right: 30px;
}
.live__mexican-forte table tbody tr:nth-child(odd),
.live__mexican-accompaniment table tbody tr:nth-child(odd) {
	background-color: var(--green-light2);
}
.live__mexican-accompaniment .grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
}
.live__mexican-accompaniment table {
	margin-bottom: 30px;
}
.live__mexican-accompaniment .price {
	margin: 0 25px;
	padding: 30px;
	background-color: var(--green-light2);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	font-family: 'Hit and Run';
	letter-spacing: 1px;
	align-items: center;
	gap: 10px;
}
.live__mexican-accompaniment .price .price-text {
	font-size: 60px;
	color: var(--pink);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--red);
}
.live__mexican-accompaniment .price .price-cost {
	font-size: 50px;
	color: var(--green);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--green-dark);
}
.live__mexican-accompaniment .combo {
	background-color: var(--green-light2);
	padding: 25px;
	display: flex;
	gap: 20px;
	flex-direction: column;
	align-items: center;
	font-family: 'Hit and Run';
	font-size: 30px;
}
.live__mexican-accompaniment .combo1 {
	width: 60%;
	margin-bottom: 20px;
}
.live__mexican-accompaniment .combo5 {
	position: relative;
	margin: 6px 0 -6px 0;
}
.live__mexican-accompaniment .combo2 .base {
	color: #737373;
}
.live__mexican-accompaniment .combo3 .base,
.live__mexican-accompaniment .combo4 .base {
	color: var(--pink);
}
.live__mexican-accompaniment .combo2 .stroke,
.live__mexican-accompaniment .combo3 .stroke {
	font-size: 40px;
	color: var(--green);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--green-dark);
}
.live__mexican-accompaniment .combo4 .stroke {
	color: var(--green);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--green-dark);
}
.live__mexican-accompaniment .combo5 .base {
	line-height: 30px;
	font-size: 90px;
	color: var(--green);
}
.live__mexican-accompaniment .combo5 .stroke {
	position: absolute;
	top: -3px;
	left: -3px;
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--green-dark);
	color: transparent;
}
.live__mexican-accompaniment .combo6 {
	color: var(--pink);
}
.live__mexican-accompaniment .combo7 .stroke {
	text-align: center;
	letter-spacing: 2px;
	line-height: 50px;
	font-size: 40px;
	color: var(--gray-light);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--gray-dark);
}
@media screen and (max-width: 1440px) {
	.live__mexican-forte,
	.live__mexican-accompaniment {
		padding: 0 50px;

		thead {
			font-size: 24px;
			height: 66px;
		}
		.td1,
		.td2 {
			font-size: 24px;
		}
	}

	.live__mexican-accompaniment {
		.grid {
			gap: 50px;

			.price {
				.price-text {
					font-size: 54px;
				}
				.price-cost {
					font-size: 44px;
				}
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.live__mexican-forte,
	.live__mexican-accompaniment {
		padding: 0 30px;

		thead {
			font-size: 22px;
			height: 60px;
		}
		.td1,
		.td2 {
			font-size: 22px;
		}
	}
}
@media screen and (max-width: 1280px) {
	.live__mexican-forte,
	.live__mexican-accompaniment {
		padding: 0 20px;

		thead {
			font-size: 20px;
			height: 60px;
		}
		.td1,
		.td2 {
			font-size: 20px;
		}
	}

	.live__mexican-accompaniment {
		.grid {
			.price {
				.price-text {
					font-size: 50px;
				}
				.price-cost {
					font-size: 40px;
				}
			}
			.combo {
				justify-content: space-between;
				.combo2,
				.combo3,
				.combo4 {
					.stroke {
						font-size: 28px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.live__mexican-forte,
	.live__mexican-accompaniment {
		padding: 0px;

		thead {
			font-size: 20px;
			height: 60px;
		}
		.td1,
		.td2 {
			font-size: 20px;
		}
	}
	.live__mexican-accompaniment {
		.grid {
			gap: 40px;

			.price {
				.price-text {
					font-size: 40px;
				}
				.price-cost {
					font-size: 34px;
				}
			}
			.combo {
				justify-content: space-between;

				.combo1 {
					width: 70%;
				}
				.combo2,
				.combo3,
				.combo4,
				.combo6 {
					.stroke {
						font-size: 24px;
					}
				}
				.combo4,
				.combo6 {
					text-align: center;
				}
				.combo7 {
					.stroke {
						font-size: 30px;
					}
				}
			}
		}
	}
}
.live__mexican-extras {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 100px;
	margin-top: 70px;
	margin-bottom: 70px;
}
.live__mexican-extras .nachos h2 {
	font-size: 40px;
	color: var(--red);
	letter-spacing: 1px;
	margin-bottom: 30px;
}
.live__mexican-extras .nachos h2 span {
	font-size: 46px;
	color: var(--green);
	-webkit-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--green-dark);
}
.live__mexican-extras .nachos p {
	font-size: 22px;
	line-height: 38px;
}
.live__mexican-extras table {
	margin: 30px 0;
	text-align: center;
	width: 100%;
}
.live__mexican-extras table thead {
	height: 60px;
	font-size: 34px;
	color: var(--red);
}
.live__mexican-extras table tbody {
	height: 40px;
	font-size: 22px;
	font-weight: medium;
}
.live__mexican-extras table .border {
	border-right: 4px solid var(--green-light1);
}
@media screen and (max-width: 1440px) {
	.live__mexican {
		.extras {
			.live__mexican-extras {
				gap: 50px;

				.nachos {
					h2 {
						font-size: 35px;

						span {
							font-size: 40px;
						}
					}
					p {
						font-size: 20px;
					}
					table {
						th {
							font-size: 30px;
						}
						td {
							font-size: 20px;
						}
					}
				}

				p.title {
					font-size: 35px;
				}
				table {
					tbody {
						td {
							height: 36px;
							font-size: 20px;
						}
					}
				}
			}
		}
	}
}
.live__mexican-extras .nachos .list {
	font-size: 21px;
	color: var(--pink);
	opacity: 0.6;
	line-height: 30px;
}
.live__mexican-extras .nachos img {
	margin-top: 30px;
	width: 100%;
}
.live__mexican-extras .title {
	font-size: 40px;
	letter-spacing: 2px;
	color: var(--red);
}
.live__mexican-extras .decoration {
	display: flex;
	justify-content: flex-end;
	margin-right: -20%;
	margin-left: 20%;
}
.live__mexican-extras .decoration img {
	width: 90%;
}
.live__mexican-extras table tbody tr {
	height: 50px;
}
.live__mexican-extras table tbody tr:nth-child(even) {
	background-color: var(--green-light2);
}
.live__mexican-extras .td1 {
	text-align: left;
	width: 75%;
	font-family: 'Hit and Run';
	font-size: 26px;
	letter-spacing: 1px;
	color: var(--pink);
}
.live__mexican-extras .td2 {
	width: 25%;
	font-family: 'Norwester';
	font-size: 26px;
}
.beverages {
	margin-top: 40px;
}

/* Our Locations */
.locations .locations__images::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.locations .locations__images {
	min-height: 700px;
	display: flex;
	position: relative;
}
.locations .locations__images .img-locations {
	width: 50%;
	height: auto;
}
.locations .img-locations1 {
	width: 35%;
	position: absolute;
	top: 0;
	left: 0;
}
.locations .img-locations2 {
	width: 35%;
	position: absolute;
	top: 0;
	right: 0;
}
.locations .img-title {
	position: absolute;
	width: 70%;
	top: 290px;
	left: 0;
	right: 0;
	margin: auto;
}
.locations__maps {
	height: 300px;
	background-color: var(--white);
	position: relative;
}
.locations__maps .mini-maps {
	position: absolute;
	top: -180px;
	left: 0;
	right: 0;
	margin: auto;
	padding: 0 18%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}
.locations__maps .mini-maps img {
	width: 100%;
	height: 100%;
}
.locations__maps .address {
	width: 100%;
	position: absolute;
	top: 65%;
	height: 56px;
	background-color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
}
.locations__maps .address .address-data {
	display: flex;
	align-items: center;
	gap: 20px;
}
.locations__maps .address .address-data img {
	height: 36px;
}
.locations__maps .address .address-data p {
	font-family: 'Norwester';
	font-size: 24px;
	color: var(--white);
}
@media screen and (max-width: 1440px) {
	.locations {
		.locations__images {
			.img-locations1,
			.img-locations2 {
				width: 34%;
			}
			.img-title {
				top: 230px;
			}
		}
		.locations__maps {
			height: 250px;
			margin-top: -150px;

			.mini-maps {
				padding: 0 15%;
				top: -150px;
			}
			.address {
				height: 48px;

				.address-data {
					img {
						height: 30px;
					}
					p {
						font-size: 18px;
					}
				}
			}
		}
	}
}
@media screen and (max-width: 1366px) {
	.locations {
		.locations__images {
			.img-title {
				top: 200px;
			}
		}
		.locations__maps {
			margin-top: -190px;

			.mini-maps {
				gap: 20px;
				top: -140px;
			}
			.address {
				gap: 50px;
			}
		}
	}
}
@media screen and (max-width: 1280px) {
	.locations {
		.locations__images {
			.img-title {
				top: 200px;
			}
		}
		.locations__maps {
			height: 220px;
			margin-top: -190px;

			.mini-maps {
				gap: 20px;
				top: -140px;
			}
			.address {
				gap: 40px;
			}
		}
	}
}
@media screen and (max-width: 1024px) {
	.locations {
		.locations__images {
			.img-title {
				width: 80%;
			}
		}
		.locations__maps {
			height: 220px;

			.mini-maps {
				top: -90px;
				padding: 0 10%;
			}
			.address {
				height: 40px;
				gap: 30px;

				.address-data {
					gap: 10px;
					img {
						height: 26px;
					}
					p {
						font-size: 14px;
					}
				}
			}
		}
	}
}

/* Gallery */
.gallery .grid1 {
	margin-bottom: 10px;
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
}
.gallery .grid2 {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(3, 1fr);
}
.gallery .grid1 img,
.gallery .grid2 img {
	width: 100%;
}
.gallery .grid3 {
	margin-top: -130px;
	margin-bottom: 70px;
	padding: 0 15%;
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 80px;
}
.gallery .grid3 img {
	height: 30%;
}
.gallery .grid3 .gallery-grab {
	width: 60%;
	height: 60%;
}
.gallery .grid4 {
	padding: 80px 15% 110px;
	display: grid;
	justify-content: center;
	gap: 50px;
	grid-template-columns: repeat(2, 1fr);
	/* grid-template-rows: repeat(2, 1fr); */
}
.gallery .grid4 img {
	width: 100%;
}
@media screen and (max-width: 1440px) {
	.gallery {
		.grid3 {
			margin-top: -90px;

			.gallery-title {
				width: 55%;
				height: 55%;
			}
			.gallery-grab {
				width: 25%;
				height: 25%;
			}
		}
		.grid4 {
			padding: 40px 15% 80px;
		}
	}
}
@media screen and (max-width: 1366px) {
	.gallery {
		.grid3 {
			margin-top: -85px;
		}
		.grid4 {
			padding: 40px 15% 70px;
		}
	}
}
@media screen and (max-width: 1280px) {
	.gallery {
		.grid3 {
			margin-top: -80px;
		}
		.grid4 {
			padding: 20px 15% 70px;
		}
	}
}
@media screen and (max-width: 1024px) {
	.gallery {
		.grid3 {
			margin-top: -60px;
		}
		.grid4 {
			padding: 20px 15% 70px;
		}
	}
}
