* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;

  transition: all ease-in-out 0.2s;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

div {
  box-sizing: border-box;
}

a {
  box-sizing: border-box;
}

.img-fluid {
  width: 100%;
  position: relative;
  display: block;
  margin: 0 auto;
}

/* GENERAL */
:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --yellow: #f3b701;
  --red: #68121d;
  --grey: #f1f1f1;
  --darkgrey: #cacaca;

  --blackOp: #1a1a1a8e;
  --yellowOp: #f3b7012f;
  --yellowOp2: rgba(243, 183, 1, 0.418);
  --blue: #4c5db2;
}

body {
  background-image: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(230, 230, 230, 0.5) 100%
    ),
    url(../images/background.png);
  background-size: 100%;
  background-repeat: repeat;
}

p,
h3,
small {
  font-family: "Roboto", sans-serif;
}

p {
  font-size: 16px;
}

h3 {
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
}

small {
  font-size: 14px;
}

h1,
h2,
h4,
h2 span {
  font-family: "Passion One", sans-serif;
}

h1 {
  font-size: 5rem;
  color: var(--yellow);
}

h2 {
  font-size: 4rem;
}

h2 span {
  font-size: 4rem;
}

h4 {
  font-size: 2rem;
}

.yellow-text {
  color: var(--yellow);
}

@media screen and (max-width: 640px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.2rem;
  }

  p {
    font-size: 16px;
  }

  h3 {
    font-size: 1.5rem;
  }
}

a {
  text-decoration: none;
  color: var(--white);
}

a:hover,
a:active {
  color: var(--yellow);
}

/* Social media links */
.socialmedia a i {
  border: 1px solid var(--white);
  padding: 7px;
  border-radius: 9999px;

  margin-right: 10px;
}

.socialmedia a i:hover {
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

/* Buttons */
.button {
  border: 2px solid var(--white);
  padding: 0px 20px;
  border-radius: 9999px;

  font-style: italic;

  height: 40px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.button:hover {
  border: 2px solid var(--yellow);
  cursor: pointer;
}

.red-button {
  border: 2px solid var(--red);
  color: var(--red);
}

.yellow-button {
  border: 2px solid var(--yellow);
  background-color: var(--yellow);
  color: var(--black);
}

.yellow-button:hover {
  border: 2px solid var(--yellow);
  background-color: unset;
  color: var(--yellow);
}

.container-responsive {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 3.5rem;
}

/* CONTAINER HEADER 1024px*/
@media only screen and (min-width: 1066px) {
  .container-responsive {
    width: 1024px;
    margin: auto;
  }
}

/* HEADER */
header {
  width: 100%;
  position: relative;
  z-index: 500;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px;
  width: 100%;

  color: var(--white);
}

.logo a img {
  width: 117px;
}

.header-container nav ul {
  font-size: 16px;
  font-weight: bold;
  list-style: none;

  display: flex;
}

.header-container nav ul li {
  margin-left: 5px;
}

.header-container nav ul li a p {
  padding: 0.4rem 0.6rem;
}

.header-container nav ul li a.featured p {
  border: solid 2px var(--yellow);
  background: var(--yellow);
  color: var(--black);
  border-radius: 4px;
}

/* Burger menu */
.mobile-header {
  display: none;
}

.burger-menu {
  z-index: 8;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.burger-button {
  width: 64px;
  height: 64px;
  display: flex;
  cursor: pointer;
  background: transparent;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

#burger-check {
  opacity: 0;
}

#burger-check:checked ~ .burger-button > span {
  transform: rotate(45deg);
}
#burger-check:checked ~ .burger-button > span::before {
  top: 0;
  transform: rotate(0);
}
#burger-check:checked ~ .burger-button > span::after {
  top: -2px;
  transform: rotate(90deg);
}
#burger-check:checked ~ .burger-box {
  visibility: visible;
  right: 0;
}

.burger-button > span,
.burger-button > span::before,
.burger-button > span::after {
  display: block;
  position: relative;
  width: 40px;
  height: 2px;
  background-color: var(--white);
  border-radius: 5px;
  transition-duration: 0.25s;
  z-index: 100;
}

.burger-button > span::before {
  content: "";
  top: -8px;
  right: 0px;
}

.burger-button > span::after {
  content: "";
  top: 8px;
  right: 0px;
}

.burger-box {
  display: block;
  position: fixed;
  visibility: hidden;
  top: 0;
  right: -100%;

  width: 40%;
  height: 100vh;

  margin: 0;

  list-style: none;

  background-color: var(--black);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.2);

  padding-top: 10px;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.burger-box ul {
  margin-top: 200px;
  margin-bottom: 50px;
}

.burger-box ul li {
  display: flex;
  justify-content: center;
}

.burger-box ul li a {
  display: block;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: var(--white) !important;
  font-weight: bold;
  list-style: none;
  text-decoration: none;
  text-align: center;
  transition-duration: 0.25s;
}

.burger-box ul li a:hover {
  color: var(--yellow) !important;
  border-bottom: none;
  transition: all 0.1s;
}

.burger-box ul li a.featured {
  border: solid 2px var(--yellow);
  padding: 0.4rem 0.8rem;
  color: var(--yellow) !important;
  border-radius: 4px;
}

.desktop-header .container-responsive,
.mobile-header .container-responsive {
  padding-bottom: 0;
}

@media only screen and (max-width: 951px) {
  .desktop-header {
    display: none;
  }

  .mobile-header {
    display: flex;
    justify-content: space-between;
    padding: 17px;
    width: 96%;
  }

  .burger-box {
    width: 100%;
  }
}

/* FOOTER */
footer {
  position: relative;
}

footer .red-footer {
  background-image: url("../images/banner-red.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  padding-top: 30px;

  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

footer .red-footer .info {
  display: flex;
  justify-content: space-around;

  color: var(--white);
}

footer .red-footer img {
  width: 300px;
}

footer .red-footer .info img {
  display: none;
}

footer .red-footer .details {
  margin-bottom: 50px;
}

footer .red-footer .d-follow {
  margin-left: 120px;
}

footer .red-footer .details p,
footer .red-footer .details .socialmedia {
  margin-top: 10px;
}

footer .black-footer {
  background-color: var(--black);
  border-top: 2px solid var(--yellow);
  color: var(--white);

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 8px 0px;
}

@media only screen and (max-width: 768px) {
  footer .red-footer .info img {
    display: block;
    height: auto;
  }

  footer .red-footer img {
    display: none;
  }

  footer .red-footer .info .d-timetable {
    width: 100%;
    text-align: center;
  }

  footer .red-footer .info {
    flex-direction: column;
    text-align: center;
  }

  footer .red-footer .d-follow {
    margin-left: unset;
  }

  footer .red-footer {
    height: auto;
    padding-top: 50px;
  }

  footer .black-footer {
    flex-direction: column;
  }

  footer .black-footer small {
    margin-bottom: 10px;
    text-align: center;
  }
}

@media only screen and (max-width: 375px) {
  footer .black-footer img {
    width: 90%;
    margin: auto;
  }
}

/* BANNER LOCATION */
.location-banner {
  position: relative;
  margin: auto;
  text-align: center;

  position: relative;
  z-index: -2;
}

.location-banner .red-banner {
  background-image: url("../images/banner-red.webp");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  color: var(--white);
  padding-top: 50px;
}

.location-banner .red-banner h2,
.location-banner .red-banner .phones .phone p {
  color: var(--yellow);
}

.location-banner .red-banner img {
  width: 350px;
  margin-bottom: 45px;
}

.location-banner .red-banner .phones {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 40px 0px;
}

.title {
  margin-top: 25px;
  padding-top: 60px;

  position: relative;
  z-index: -3;

  text-align: center;
}

.map {
  position: relative;
}

.map.title {
  padding-top: 2rem;
  margin-top: 0;
}

.map.title .separation {
  margin-bottom: 100px;
}

.location-banner {
  background-color: var(--white);
}

.title h3 {
  color: var(--red);
}

.title .separation {
  width: 70px;
}

.map-img {
  width: 100%;
  margin-bottom: -50px;

  position: relative;
  z-index: -3;
}

@media only screen and (max-width: 480px) {
  .phones {
    flex-direction: column;
  }

  .location-banner .red-banner img {
    width: 80%;
  }
}

/* Home page */

.cover {
  /* position: relative;
    z-index: -1; */

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  width: 100%;

  margin-top: -130px;
}

.big-cover {
  padding-top: 6rem;
  background-image: url("../images/banner-black-home.png");
  min-height: 600px;
}

/* SLIDER */
.slider {
  width: 100%;
  margin: auto;
  overflow: hidden;

  margin-top: -130px;
  background-color: black;
}

.slider .container-responsive {
  position: relative;
  z-index: 2;
}

.slider ul {
  display: flex;
  padding: 0;
  width: 400vw;
  animation: slide 10s infinite alternate linear;
}

.slider ul li {
  width: 100vw;
  list-style: none;
}

.slider ul li img {
  object-fit: contain;
  width: 100%;
  height: auto;
}

.slider ul li img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right top,
    #05193799,
    #004d7a99,
    #00879399,
    #00bf7299,
    #a8eb1299
  );
  z-index: -1;
}

.slider ul li .cover-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.transition-slider {
  position: relative;
  z-index: 0;
  margin-bottom: -42px;
}

.transition-slider:before {
  content: "";
  position: absolute;
  display: block;
  left: 0px;
  top: -30px;
  width: 100%;
  height: 30px;
  z-index: 10;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(0);
  }

  35% {
    transform: translateX(-25%);
  }
  55% {
    transform: translateX(-25%);
  }

  60% {
    transform: translateX(-50%);
  }
  85% {
    transform: translateX(-50%);
  }

  90% {
    transform: translateX(-75%);
  }
  100% {
    transform: translateX(-75%);
  }
}

.slider .previous,
.slider .next {
  cursor: pointer;
  position: absolute;
  z-index: 50;
  top: 35%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 16px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;

  background-color: var(--yellowOp);
}

.slider .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.slider .previous:hover,
.slider .next:hover {
  background-color: var(--yellowOp2);
}

/* COVERS */
.small-cover .cover-info {
  align-items: flex-start;
}

.small-cover {
  padding-top: 4rem;
  background-image: url("../images/banner-black-others.webp");
  min-height: 400px;
}

.location-cover {
  background-image: url("../images/banner-black-location.webp");
}

.menu-cover {
  background-image: url("../images/banner-black-menu.webp");
}

.menu-cover {
  background-image: url("../images/banner-black-menu.webp");
}

.cover-info {
  width: 450px;
  text-align: center;
  margin-left: 60px;

  line-height: 55px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cover-info-small {
  text-align: left !important;
  margin-top: 10px;
  padding-top: 70px;
}

.cover-info-contact {
  text-align: left !important;
  padding-top: 160px;
}

.cover-info h3 {
  color: var(--white);
  height: 40px;
}

.cover-info h1 {
  margin-bottom: 30px;
  margin-top: 10px;
}

.cover .button {
  position: relative;
  z-index: 50;
}

.transition-container {
  display: block;
  position: relative;
  width: 100%;
  z-index: 100;
  margin-bottom: 3rem;
}

.transition {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  height: 43px;
}

.transition.transition-top {
  top: -5px;
}
.transition.transition-bottom {
  bottom: -3px;
}

.transition-black {
  background-image: url("../images/transition-black.svg");
}

.transition-yellow {
  background-image: url("../images/transition-yellow.svg");
}

.transition-arrow {
  background-image: url("../images/transition-arrow.svg");
  background-size: 100%;
}

.transition-white {
  background-image: url("../images/transition-white.svg");
  padding-bottom: 83px;
}

.transition-red {
  background-image: url("../images/transition-red.svg");
  margin-bottom: -6px;
}

.transition-180 {
  transform: rotate(180deg);
}

.center-banner-vertical {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.yellow-cover {
  position: relative;
  background-image: url("../images/banner-yellow.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  /*height: 400px;*/

  position: relative;
  z-index: -2;
}

.yellow-cover h2 {
  padding-top: 70px;
  padding-bottom: 20px;
  text-align: center;
}

.yellow-cover .elements {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
}

.yellow-cover .elements .element-content,
.yellow-cover .elements img {
  margin: 10px;
}

.yellow-cover .elements .element-content img {
  height: 68px;
  width: auto;
}

.yellow-cover .elements img {
  width: 142px;
}

.yellow-cover .elements .arrow {
  padding-bottom: 40px;
}

.yellow-cover .elements .arrow-opp {
  transform: scaleY(-1);
  padding-bottom: 40px;
}

.menu-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding-bottom: 100px;
}

.menu-buttons {
  width: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: center;
}

.menu-buttons .menu-part {
  width: 100%;
}

.menu-buttons .menu-button {
  margin: 10px;

  position: relative;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.menu-buttons .menu-button::before,
.menu-banner .menu-vertical::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to left, var(--blackOp), rgba(0, 0, 0, 0));
}

.menu-buttons .menu-part .menu-button:nth-child(1) {
  background-image: url("../images/pizzonona-banner-web_boton-05.webp");
}

.menu-buttons .menu-part .menu-button:nth-child(2) {
  background-image: url("../images/pizzonona-banner-web_boton-07.webp");
}

.menu-buttons .menu-part .menu-button:nth-child(3) {
  background-image: url("../images/pizzonona-banner-web_boton.webp");
}

.menu-banner .menu-vertical {
  background-image: url("../images/pizzonona-banner-web_boton-05.webp");
}

.menu-buttons .menu-part-menu .menu-button:nth-child(1) {
  background-image: url("../images/pizzonona-banner-web_boton-menu-platillos.webp");
}

.menu-buttons .menu-part-menu .menu-button:nth-child(2) {
  background-image: url("../images/pizzonona-banner-web_boton-menu-promo.webp");
}

.menu-buttons .menu-button h2 {
  margin: 25px;
  font-size: 3.2rem;
  color: var(--white);
  width: auto;
  line-height: 1;

  position: relative;
}

.menu-buttons .menu-button h2 span {
  font-size: 3.2rem;
}

.menu-buttons .menu-button h2 span {
  position: relative;
  z-index: 2;
}

.menu-buttons .yellow-button {
  position: absolute;
  bottom: 20px;
  right: 20px;

  display: none;
}

.menu-buttons .yellow-button:hover {
  border: none;
  background-color: var(--yellow);
  color: var(--black);
}

.menu-text-bckg {
  border-radius: 0px 999px 999px 0px;
  width: 10%;
  height: 100%;
  background-color: var(--yellow);

  position: absolute;
  left: -25px;
}

.menu-button:hover .menu-text-bckg {
  width: 100%;
}

.menu-button:hover .yellow-button {
  display: flex;
}

.menu-buttons .menu-part {
  width: 60%;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-buttons .menu-part .menu-button {
  width: 46.5%;
  height: 300px;
}

.menu-buttons .menu-part .menu-button:first-child {
  width: 100%;
}

.menu-buttons .menu-vertical {
  width: 30%;
}

@media only screen and (max-width: 951px) {
  .menu-buttons .menu-part .menu-button {
    width: 100%;
    height: 200px;
  }
}

@media only screen and (max-width: 534px) {
  .cover-info {
    width: 100%;
    margin-left: unset;
    line-height: 40px;
  }
  .menu-button .yellow-button {
    display: flex;
  }
  .menu-button .menu-text-bckg {
    width: 100%;
  }
  .menu-buttons .menu-button h2 {
    font-size: 1.8rem;
  }
  .menu-buttons .menu-button h2 span {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 768px) {
  .yellow-cover .elements .arrow {
    display: none;
  }

  .yellow-cover .elements .arrow-opp {
    display: none;
  }

  .menu-banner .menu-buttons {
    flex-direction: column;
  }

  .menu-banner .menu-buttons .menu-part {
    width: 100%;
  }

  .menu-banner .menu-buttons .menu-button {
    width: 100%;
    height: 200px;
  }

  .menu-banner .menu-buttons .menu-vertical {
    width: 97%;
    height: 200px;
  }
}

@media only screen and (max-width: 375px) {
  .yellow-cover h2 {
    padding-top: 20px;
  }

  .cover-info h3 {
    margin: 0px 30px;
  }

  .cover-info h1 {
    margin: 0px 30px;
  }

  .menu-banner .menu-buttons .menu-vertical {
    width: 95%;
  }
}

/* DRIVE THRU BANNER */
.banner-drivethru {
  background-image: url("../images/banner-red.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

.banner-drivethru .container-responsive {
  display: flex;
  padding: 75px 60px;
  justify-content: space-between;
  align-items: center;
}

.banner-drivethru .drivethru-info {
  width: 55%;

  margin-right: 60px;
}

.banner-drivethru .drivethru-info h3,
.banner-drivethru .drivethru-info p {
  color: var(--white);
}

.banner-drivethru .drivethru-info p {
  margin: 55px 0px;
}

.banner-drivethru .drivethru-info p strong,
.banner-drivethru .drivethru-info h2 {
  color: var(--yellow);
}

.banner-drivethru .drivethru-info .button {
  width: 200px;
}

.banner-drivethru img {
  width: 45%;
}

.drivethru-big {
  display: inline;
}

.drivethru-small {
  display: none;
}

@media only screen and (max-width: 768px) {
  .banner-drivethru .container-responsive {
    padding: 60px 30px;
    padding-bottom: 0px;
    flex-direction: column;
  }

  .banner-drivethru img {
    width: 80%;
  }

  .banner-drivethru .drivethru-info {
    width: 100%;
    margin-right: 0px;
  }

  .drivethru-small {
    display: inline;
    margin-top: 20px;
  }

  .drivethru-big {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .banner-drivethru .container-responsive {
    padding: 50px 15px;
    padding-bottom: 0px;
  }
}

/* APP BANNER */
.banner-app {
  position: relative;
  width: 100%;
}

.banner-app .container-responsive {
  display: flex;
  padding: 75px 60px;
  justify-content: space-between;
  align-items: center;
}

.banner-app .app-info {
  width: 55%;

  margin-right: 60px;
}

.banner-app .app-info p {
  margin: 55px 0px;
}

.banner-app .app-info .button {
  width: 200px;
}

.banner-app img {
  width: 50%;
}

.download-buttons {
  display: flex;
  justify-content: flex-start;
}

.download-buttons a img {
  width: 150px;
  margin-right: 20px;
}

.download-buttons a:hover {
  cursor: pointer;
  opacity: 0.8;
}

@media only screen and (max-width: 768px) {
  .banner-app .container-responsive {
    padding: 60px 30px;
    flex-direction: column;
    padding-bottom: 0px;
  }

  .banner-app img {
    width: 50%;
    margin-bottom: 50px;
  }

  .banner-app .app-info {
    width: 100%;
    margin-right: 0px;
  }

  .banner-app .app-small {
    display: inline;
    margin-top: 20px;
  }

  .banner-app .app-big {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .banner-drivethru .container-responsive {
    padding: 50px 15px;
    padding-bottom: 0px;
  }
}

/* CONTACT PAGE */
.contact-title {
  margin: 10px;
  margin-left: 60px;
  margin-top: 50px;
}

.contact-content {
  display: flex;
  padding: 2rem 1rem;
  margin-bottom: 50px;

  justify-content: space-between;
  align-items: flex-start;
}

.contact-content .contact-content-1 {
  width: 65%;
}

.contact-content .contact-content-1 hr {
  border: 1px solid var(--darkgrey);
  margin-bottom: 20px;
}

.contact-content .contact-content-1 p {
  margin-bottom: 30px;
}

.contact-content .contact-content-1 form {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-content .contact-content-1 form .form-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-content .contact-content-1 form .form-content div {
  margin-top: 20px;
  width: 95%;
}

.contact-content .contact-content-1 form .form-content div input {
  width: 100%;
  height: 43px;
  background-color: var(--white);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 5px;

  padding-left: 15px;
}

#fmsj {
  height: 300px;
  width: 100%;
  background-color: var(--white);
  box-shadow: 1px 0px 6px rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 5px;
  padding: 15px;
}

.contact-content .contact-content-1 form .form-content div label {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 8px;
}

.contact-content .contact-content-1 form .form-content .form-big {
  width: 100%;
}

.contact-content .contact-content-1 form .form-content .form-small {
  width: 45%;
}
.contact-content .contact-content-1 form .form-content .check-privacy {
  width: 100%;
  display: flex;
}

.contact-content .contact-content-1 form .form-content .check-privacy input {
  width: 16px;
  height: 16px;
  background-color: var(--white);
  border: 1px solid var(--black);
  margin-right: 15px;
  border-radius: 5px;

  margin-top: 3px;
}

.contact-content .contact-content-1 form .form-content .check-privacy label {
  height: 100%;
}

.contact-content .contact-content-1 form .form-content .check-privacy label a {
  color: var(--yellow);
}

.contact-content
  .contact-content-1
  form
  .form-content
  .check-privacy
  label
  a:hover {
  text-decoration: underline;
}

.contact-content .contact-content-1 form .button {
  margin-top: 36px;
}

.contact-content .contact-content-2 {
  width: 25%;
  background-color: var(--grey);
  border-top: 3px solid var(--yellow);
  color: var(--red);
  padding: 20px;
}

.contact-content .contact-content-2 .contact-content-2-2 {
  padding: 20px;
}

.contact-content .contact-content-2 h4 {
  margin-bottom: 20px;
}

.contact-content .contact-content-2 .socialmedia a i {
  margin-bottom: 20px;

  border: 1px solid var(--red);
  color: var(--red);
}

.contact-content .contact-content-2 .socialmedia a i:hover {
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

@media only screen and (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-content .contact-content-1,
  .contact-content .contact-content-2 {
    width: 100%;
  }

  .contact-content .contact-content-2 {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 375px) {
  .contact-content {
    margin: 0px 30px;
    margin-bottom: 50px;
  }

  .contact-title {
    margin-left: 30px;
  }

  .contact-content .contact-content-1 form .form-content .form-small {
    width: 100%;
  }
}

/* LOCATION PAGE */
.location-restaurant {
  margin: 0px 60px;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.location-restaurant .info-location-restaurant {
  width: 50%;
}

.location-restaurant img {
  width: 45%;
}

.location-restaurant .info-location-restaurant h2 {
  margin-bottom: 30px;
}

.location-restaurant .info-location-restaurant p {
  margin-top: 30px;
}

.location-restaurant .info-location-restaurant p a {
  color: var(--yellow);
}

.location-restaurant .info-location-restaurant p a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 375px) {
  .location-restaurant {
    margin: 0px 30px;
  }
}

@media only screen and (max-width: 768px) {
  .location-restaurant {
    flex-direction: column;
  }

  .location-restaurant .info-location-restaurant {
    width: 100%;
    margin-bottom: 20px;
  }

  .location-restaurant .info-location-restaurant p {
    margin-top: 10px;
  }

  .location-restaurant img {
    width: 100%;
  }
}

/* MENU PAGE */
.page-menu-buttons .menu-part {
  margin-top: 50px;
  width: 100%;
  justify-content: center;
  align-content: center;
}

.page-menu-buttons .menu-part .menu-button {
  width: 47% !important;
  height: 180px;
}

.menu {
  margin-bottom: 50px;
}

.menu-classification {
  margin: 0px 60px;
}

.menu-classification h2 {
  margin-bottom: 20px;
  margin-top: 40px;
}

.menu-img-complete {
  width: 100%;

  margin-bottom: 0px;

  position: relative;
  z-index: -2;
}

.menu-classification .menu-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.menu-classification .menu-elements .menu-element {
  border-top: 1px solid var(--darkgrey);
  width: 45%;
  padding: 15px 0px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.menu-classification .menu-elements-big {
  justify-content: flex-start;
}

.menu-classification .menu-elements-big .menu-element {
  flex-direction: column;
  border-top: unset;
  width: auto;
  align-items: center;
}

.menu-classification .menu-elements-big .menu-element p {
  margin-top: 10px;
  text-align: center;
}

.menu-classification .menu-elements .menu-element .menu-img {
  width: 70px;
  height: 70px;
  margin-right: 15px;
  object-fit: fill;
}

.menu-classification .menu-elements-big .menu-element .menu-img {
  width: 160px;
  height: 160px;
}

.menu-classification .menu-elements .menu-element p {
  width: 70%;
}

.menu-classification .menu-elements .menu-element p strong {
  font-size: 20px;
}

#armatupizza .armatupizza-elements {
  display: flex;
  justify-content: space-between;

  font-size: 20px;
}

#armatupizza .armatupizza-elements img {
  width: 50%;
  height: auto;
}

#armatupizza .armatupizza-elements .vegetales,
#armatupizza .armatupizza-elements .carnes {
  margin: 10px;
}

#drivethru {
  margin-top: 50px;
}

#drivethru .menu-title-dt {
  display: flex;
}

#drivethru .menu-title-dt img {
  width: 150px;
  margin-right: 30px;
}

#drivethru .menu-elements {
  align-items: center;
}

#drivethru .menu-elements .menu-element {
  border: none;
  width: auto;
}

#drivethru .menu-elements .menu-element img {
  width: auto;
  height: 300px;
  margin-right: -40px;

  position: relative;
  z-index: 10;
}

#drivethru .menu-elements .menu-element p {
  background-color: var(--blue);
  color: var(--white);
  padding: 25px;
  padding-left: 50px;
  border-radius: 2px;
  width: 250px;
  border: 5px solid #958ab3;
}

@media only screen and (max-width: 375px) {
  .menu-classification {
    margin: 0px 30px;
  }

  #drivethru .menu-elements .menu-element img {
    height: 250px;
    margin-left: -50px;
  }
}

@media only screen and (max-width: 768px) {
  .page-menu-buttons .menu-part {
    flex-direction: column;
  }

  .page-menu-buttons .menu-part .menu-button {
    width: 90% !important;
  }

  .menu-classification .menu-elements {
    flex-direction: column;
  }

  .menu-classification .menu-elements-big {
    flex-direction: row;
  }

  .menu-classification .menu-elements .menu-element {
    width: 100%;
  }

  .menu-classification .menu-elements-big .menu-element {
    width: auto;
  }

  #armatupizza .armatupizza-elements {
    flex-direction: column;
  }

  #armatupizza .armatupizza-elements img {
    width: 100%;
  }

  #armatupizza .armatupizza-elements .vegetales,
  #armatupizza .armatupizza-elements .carnes {
    text-align: center;
  }
}

@media only screen and (max-width: 534px) {
  .button-cover {
    margin-left: 30px;
    margin-top: 20px;
  }
}

/* JS DETAILS */
.map-container {
  position: relative;
  width: 100%;
}

#map {
  width: 100%;
  height: 420px;

  margin-bottom: -30px;

  position: relative;
  z-index: -2;

  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.map-container div:last-child {
  position: absolute;
  z-index: 20;

  background-image: url(../images/marker.png);
  background-position: calc(50% + 20px);
  background-repeat: no-repeat;

  width: 100%;
  inset: 0;
  /* margin-left: 20px; */
}

/* DRIVE THRU PAGE */

.yellow-cover-dt {
  height: unset;
  padding: 0;
}

.yellow-cover-dt .container-responsive {
  padding: 0 1rem;
}

.drivethru-page {
  display: flex;
  justify-content: center;
  align-items: center;

  padding-top: 70px;
}

.drivethru-page div {
  text-align: center;
  width: 100%;
}

.drivethru-page img {
  object-fit: contain;
  max-width: 320px;
}

.cover-drivethru {
  width: 100%;
}

.drivethru-info-page {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 40px 60px;
}

.drivethru-info-page img {
  width: 40%;
  position: relative;
  z-index: -3;
}
.drivethru-info-page .drivethru-info-text p {
  margin: 45px 0px;
}

.drivethru-info-page .drivethru-info-text h4 {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
}

.drivethru-info-page .drivethru-info-text h4 strong {
  color: var(--yellow);
}

@media only screen and (max-width: 768px) {
  .drivethru-page div {
    width: 100%;
    padding: 1rem auto;
  }

  .drivethru-page img {
    max-width: 33%;
    align-self: flex-end;
  }

  .drivethru-info-page {
    padding: 40px 30px;
  }

  .drivethru-info-page {
    flex-direction: column;
  }

  .drivethru-info-page .drivethru-info-text {
    width: 100%;
  }

  .drivethru-info-page img {
    width: 100%;
  }

  .drivethru-info-page {
    margin-bottom: -80px;
  }
}

@media only screen and (max-width: 375px) {
  .drivethru-page div {
    width: 60%;
  }

  .drivethru-info-page {
    padding: 40px 15px;
  }
}

.big-text {
  font-size: 2rem;
  font-family: "Passion One", sans-serif;
}

.padding-horizontal {
  padding: 0px 60px;
}

/* FLOATING ACTIONS */
.floating-actions{
  display: flex;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 450;
  padding: 0 1rem 1rem;
  isolation: isolate;
}

.floating-actions .actions{
  display: flex;
  position: relative;
  gap:1rem;
  z-index: 10;
}

.floating-actions .actions button#phones {
  display: grid;
  position: relative;
  width: 48px;
  height: 48px;
  align-content: center;
  font-size: 1rem;
  border-radius: 50%;
  border: solid 2px var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}

.floating-actions .actions button#phones.active{
  background: var(--red);
  border-color: var(--red);
}

.floating-actions .actions a.button{
  display: flex;
  position: relative;
  height: 48px;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
  background: var(--yellow);
  text-transform: uppercase;
  border-color: var(--black);
  color: var(--black);
  font-weight: 700;
}

.floating-actions .reactions{
  display: flex;
  position: absolute;
  bottom:calc(100% + .6rem);
  right: 1rem;
  z-index: 5;
  background: var(--red);
  padding: 1rem;
  border-radius: 8px;
  transform: translate(39%, 67%) scale(.1);
  transition: transform .2s ease-in-out;
  color: white;
}

.floating-actions .reactions::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  bottom: -6px;
  right: 18px;
  background: var(--red);
  transform: rotateZ(45deg);
}

.floating-actions .reactions a{
  color: var(--yellow);
}

.floating-actions .reactions.active{
  transform: translate(0, 0) scale(1);
}

.menu-complete {
  margin-top: -60px;
}

/* ORDENA EN LÍNEA */

.cover-info-order {
  text-align: left !important;
  padding-top: 160px;
}

.cover-info h1 {
  line-height: 1.05;
}

.order-online .container-responsive {
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.order-online .container-responsive .phones {
  display: flex;
  width: 100%;
  margin-top: 4rem;
  gap: 2rem;
}

.order-online .container-responsive .phones .phone {
  display: flex;
  flex-flow: column;
  gap: 0.2rem;
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
}

.order-online .container-responsive .phones .phone h3 {
  display: block;
  margin-bottom: 1.2rem;
}

.order-online .container-responsive .phones .phone img{
  width: 100%;
  border-radius: 8px;
}

.text-yellow {
  color: var(--yellow);
}

.order-online-cover{
  position: relative;
  isolation: isolate;
  padding: 8rem 1rem 2rem;
}

.text-media-cover{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.text-media-cover img{
  margin-top: 1.5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.4));
}

img.cover-image{
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.order-online-cover::before{
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, #1b1b1b 2%, transparent 60%);
}

@media screen and (max-width: 840px) {
  .order-online-cover{
    padding: 10rem 1rem 1rem;
  }
  .text-media-cover{
    flex-flow: column;
  }
  .order-online-cover::before{
    background: linear-gradient(0deg, #1b1b1b 5%, transparent 100%);
  }
}