@property --k {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}

@media (max-width: 430px) {
  html {
    max-width: 100vw;
    overflow-x: hidden;
  }
}
body {
  margin: 0;
  line-height: 1.6;
  background-color: white;
  color: #333;
  overflow-x: hidden;
  font-family: "Open Sans", sans-serif;
}
@media (max-width: 430px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}
@media (max-width: 321px) {
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

header {
  background-color: white;
  color: black;
  opacity: 1;
  position: fixed;
  top: 0;
  font-family: "Zilla Slab", serif;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  height: 100px;
  font-size: 1.2em;
  font-weight: 900;
  overflow-x: hidden;
}
header nav a {
  color: firebrick;
  left: 2vw;
}
header .container {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  left: 5vw;
}

header .logo {
  display: flex;
  align-items: center;
  position: fixed;
  top: 5px;
  left: 43%;
  justify-content: center;
}
header .logo img {
  width: auto;
  height: 100px;
}

.logo2 {
  display: flex;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 1%;
  justify-content: center;
  z-index: 1001;
}
.logo2 img {
  width: auto;
  height: 90px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 6vh;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
}

nav ul li {
  display: inline;
  margin-right: 15px;
}

nav ul li a {
  text-decoration: none;
  color: firebrick;
}

nav ul li a:hover {
  color: #fbc814;
}

header .order-button {
  background-color: firebrick;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 0.7em;
  cursor: pointer;
  position: absolute;
  left: 75vw;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Motter Corpus Std Regular";
  text-decoration: none;
}

header .order-button:hover {
  background-color: #fbc814;
  color: black;
}
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.hamburger-menu .line {
  width: 100%;
  height: 4px;
  background-color: firebrick;
}

.full-screen-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
}

.full-screen-menu a {
  color: white;
  font-size: 2em;
  margin: 20px 0;
  text-decoration: none;
  font-family: "Motter Corpus Std Regular";
}

.full-screen-menu .dropdown {
  position: relative;
}

.full-screen-menu .dropdown-content {
  position: static;
  box-shadow: none;
  background-color: transparent;
  z-index: 9999;
}

.full-screen-menu .dropdown-content a {
  background-color: transparent;
  color: white;
  padding: 0;
}

.full-screen-menu .dropdown-content a:hover {
  background-color: transparent;
  color: #007bff;
}
.close-menu {
  position: absolute;
  top: 20px;
  right: 40px;
  background: none;
  border: none;
  font-size: 50px;
  cursor: pointer;
  color: white;
}
@media (min-width: 1001px) {
  .hamburger-menu {
    display: none;
  }
}
@media (max-width: 1000px) {
  nav a {
    display: none;
  }
  header .logo {
    display: none;
  }
  header .order-button {
    left: 5vw;
    font-size: 0.6em;
  }
  .logo2 {
    margin-left: 44vw;
    position: fixed;
  }
}

@media (max-width: 727px) {
  header .order-button {
    font-size: 0.6em;
    width: 25%;
    margin-right: 10vw;
  }
  .logo2 {
    margin-left: 40vw;
  }
}

@media (max-width: 430px) {
  header .order-button {
    font-size: 0.3em;
    width: 15vw;
  }
  .hamburger-menu {
    left: 85vw;
  }
  .logo2 {
    margin-left: 38vw;
  }
}

.marquee {
  overflow-x: auto;
  white-space: nowrap;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: rotate(-7deg);
  width: 110vw;
  left: -2vw;
}

.marquee__track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.marquee__track.to-right1 {
  animation: text-left-to-right-2 20s linear infinite;
}

.marquee__track.to-left1 {
  animation: text-right-to-left-2 20s linear infinite;
}
.marquee__track.to-right2 {
  animation: text-left-to-right-2 20s linear infinite;
}

.marquee__track.to-left2 {
  animation: text-right-to-left-2 20s linear infinite;
}

@keyframes text-right-to-left-2 {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes text-left-to-right-2 {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.marquee__text {
  font-size: 6vw;
  display: inline-block;
  padding: 0 0.2em;
  color: firebrick;
  margin-top: -2vh;
  font-family: "Motter Corpus Std Regular";
}
.marquee__text1 {
  font-size: 6vw;
  display: inline-block;
  padding: 0 0.2em;
  color: transparent;
  -webkit-text-stroke: 1px red;
  margin-top: -6vh;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
}

@media (max-width: 1000px) {
  .marquee__track.to-right1 {
    margin-top: 3vh;
  }
  .marquee__track.to-left1 {
    margin-top: -3vh;
  }
  .marquee__track.to-right2 {
    margin-top: -1vh;
  }
  .marquee__track.to-left2 {
    margin-top: -3vh;
  }
  .marquee__text {
    font-size: 8vw;
  }
  .marquee__text1 {
    font-size: 8vw;
  }
}
@media (max-width: 900px) {
  .marquee__track.to-left1 {
    margin-top: 0vh;
  }
  .marquee__track.to-right2 {
    margin-top: 0vh;
  }
  .marquee__track.to-left2 {
    margin-top: 0vh;
  }
}
@media (max-width: 768px) {
  .marquee__track.to-right1 {
    margin-top: 14vh;
  }
}
@media (max-width: 700px) {
  .marquee__track.to-left1 {
    margin-top: 1vh;
  }
  .marquee__track.to-right2 {
    margin-top: 1vh;
  }
  .marquee__track.to-left2 {
    margin-top: 1vh;
  }
}

@media (max-width: 430px) {
  .marquee {
    width: 103.5vw;
  }
  .marquee__track.to-left1 {
    margin-top: 3vh;
  }
  .marquee__track.to-right2 {
    margin-top: 3vh;
  }
  .marquee__track.to-left2 {
    margin-top: 3vh;
  }
}

.f1 {
  align-items: center;
  position: absolute;
  z-index: 2;
  margin-top: -65vh;
  justify-content: center;
}
.f1 img {
  width: 60vh;
  height: 60vh;
  object-fit: cover;
  border-radius: 50%;
  margin-left: 35.5vw;
}
@media (max-width: 1300px) {
  .f1 {
    margin-top: -55vh;
  }
}
@media (max-width: 1100px) {
  .f1 {
    margin-top: -46vh;
  }
  .f1 img {
    width: 50vh;
    height: 50vh;
    margin-left: 38vw;
  }
}
@media (max-width: 1000px) {
  .f1 {
    margin-top: -50vh;
  }
  .f1 img {
    margin-left: 35vw;
    width: 45vh;
    height: 45vh;
  }
}
@media (max-width: 900px) {
  .f1 {
    margin-top: -45vh;
  }
  .f1 img {
    margin-left: 32vw;
  }
}
@media (max-width: 768px) {
  .f1 {
    margin-top: -40vh;
  }
  .f1 img {
    margin-left: 34vw;
    width: 40vh;
    height: 40vh;
  }
}
@media (max-width: 700px) {
  .f1 {
    margin-top: -30vh;
  }
  .f1 img {
    height: 35vh;
    width: 35vh;
    margin-left: 31vw;
  }
}
@media (max-width: 600px) {
  .f1 {
    margin-top: -30vh;
  }
  .f1 img {
    height: 35vh;
    width: 35vh;
    margin-left: 25vw;
  }
}

@media (max-width: 430px) {
  .f1 {
    margin-top: -30vh;
  }
  .f1 img {
    height: 35vh;
    width: 35vh;
    margin-left: 25vw;
  }
}

.f1 .facturacion-button {
  background-color: firebrick;
  color: white;
  border: none;
  padding: 15px 25px;
  font-size: 1.5em;
  margin-top: 10vh;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  bottom: 25px;
  margin-left: 75vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 200;
}

.facturacion-button:hover {
  background-color: #fbc814;
  color: black;
}
@media (max-width: 1000px) {
  .f1 .facturacion-button {
    margin-left: 40vw;
  }
}
@media (max-width: 900px) {
  .f1 .facturacion-button {
    margin-left: 39vw;
  }
}
@media (max-width: 700px) {
  .f1 .facturacion-button {
    margin-left: 32vw;
  }
}
@media (max-width: 600px) {
  .f1 .facturacion-button {
    margin-left: 28vw;
  }
}
@media (max-width: 420px) {
  .f1 .facturacion-button {
    margin-left: 22vw;
  }
}

section {
  margin-top: 25vh;
  height: 250vh;
  @supports (animation-timeline: view()) {
    background: 0 0/ 90% 0.5rem no-repeat fixed firebrick;
    animation: k 1s both;
    animation-timeline: view();
    animation-range: contain;
  }
}

@keyframes k {
  to {
    --k: 1;
  }
}

section h1 {
  color: yellow;
  margin-left: -53vw;
  font-size: 8vw;
  text-align: center;
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
  margin-top: -10vh;
}

section img {
  width: auto;
  height: 80vh;
  object-fit: cover;
  margin-top: -15vh;
}

.stick {
  box-sizing: border-box;
  display: grid;
  align-content: center;
  container-type: inline-size;
  position: sticky;
  top: 0;
  padding: 1em;
  height: 110vh;
  margin-top: 0vh;
}

.wrap {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 2em;
  translate: calc(var(--k) * (90cqw - 100%));
}

@media (max-width: 499px) {
  section {
    display: none;
  }
}

@media (max-width: 1300px) {
  section h1 {
    font-size: 7vw;
    margin-left: -95vw;
    margin-top: -10vh;
  }
  section img {
    margin-top: -5vh;
  }
}
@media (max-width: 1000px) {
  section {
    height: 200vh;
  }
  section h1 {
    font-size: 8vw;
    margin-left: -80vw;
    margin-top: -30vh;
  }
  section img {
    height: 60vh;
  }
}
@media (max-width: 900px) {
  section h1 {
    margin-left: -105vw;
  }
  section img {
    margin-top: -10vh;
    height: 60vh;
  }
  .stick {
    height: 110vh;
  }
}
@media (max-width: 768px) {
  section h1 {
    margin-left: -140vw;
  }
}
@media (max-width: 700px) {
  section h1 {
    margin-left: -160vw;
  }
}
@media (max-width: 610px) {
  section h1 {
    margin-left: -195vw;
    margin-top: -10vh;
  }
  section img {
    margin-top: 0vh;
    height: 60vh;
  }
}
@media (max-width: 550px) {
  section h1 {
    margin-left: -225vw;
  }
}
@media (max-width: 525px) {
  section h1 {
    margin-left: -240vw;
  }
}
.f12 {
  top: 10vh;
  position: relative;
  height: 70vh;
  background-color: firebrick;
  margin-top: 20vh;
}
.f12 h2 {
  color: yellow;
  margin-top: 10vh;
  font-size: 9vw;
  text-align: center;
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 5vh;
}
.f12 .menu-section {
  display: none;
  margin-top: 50vh;
  margin: 20px 0;
  text-align: center;
  height: 52vh;
}

.f12 .menu-section h2 {
  font-size: 2em;
  color: firebrick;
  margin-bottom: 10px;
}

.f12 .menu-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
}

.f12 .menu-scroll img {
  height: 50vh;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 499px) {
  .f12 {
    display: none;
  }
}
@media (max-width: 430px) {
  .menu-section {
    display: block;
  }
}
.f3 {
  position: relative;
  height: 120vh;
  background-color: white;
  margin-top: 10vh;
}
.f3 h1 {
  color: firebrick;
  margin-top: 10vh;
  font-size: 6vw;
  text-align: center;
  font-family: "Rochester", cursive;
  font-weight: 400;
  font-style: normal;
  margin-bottom: -0vh;
}
.f3 .menu {
  display: flex;
  gap: 14vw;
  margin-left: 2vw;
  padding: 0;
  overflow-x: auto;
  position: relative;
}
.f3 .menu-button {
  background-color: firebrick;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 2vw;
  margin-top: 20vh;
  cursor: pointer;
  border-radius: 5px;
  position: relative;
  bottom: 1px;
  margin-left: 39.5vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 200;
}

.menu-button:hover {
  background-color: #fbc814;
  color: black;
}
@media (max-width: 1000px) {
  .f3 h1 {
    font-size: 9vw;
  }
  .f3 .menu-button {
    margin-left: 36vw;
  }
}
@media (max-width: 768px) {
  .f3 {
    height: 220vh;
  }
  .f3 .menu-button {
    margin-top: 100vh;
    font-size: 1.5em;
    margin-left: 32%;
  }
}
@media (max-width: 600px) {
  .f3 .menu-button {
    margin-left: 25%;
  }
  .f3 h1 {
    font-size: 11vw;
  }
}

@media (max-width: 430px) {
  .f3 {
    margin-left: -1vw;
  }
  .f3 h1 {
    font-size: 16vw;
  }
  .f3 .menu-button {
    margin-left: 17vw;
    margin-top: 115vh;
  }
}

.f4 {
  position: relative;
  height: 130vh;
  background-color: white;
  margin-top: 0;
  width: 80vw;
  margin-left: 10vw;
}
.f4 h1 {
  color: firebrick;
  margin-top: 10vh;
  font-size: 3vw;
  text-align: center;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  font-optical-sizing: auto;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 5vw;
}

.instagram-media {
  width: 20vw;
}
@media (max-width: 1300px) {
  .f4 {
    margin-left: 5vw;
  }
  .instagram-grid {
    gap: 1vw;
  }
}
@media (max-width: 1000px) {
  .f4 {
    margin-left: 6vw;
    height: 230vh;
  }
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 1vw;
  }
  .instagram-media {
    margin-left: 5vw;
  }
}

@media (max-width: 768px) {
  .f4 {
    height: 470vh;
    margin-top: -40vh;
  }
  .instagram-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
    margin-left: 15vw;
  }
}
@media (max-width: 600px) {
  .instagram-grid {
    margin-left: 10vw;
  }
  .f4 h1 {
    font-size: 5vw;
    margin-left: 9vw;
  }
}
@media (max-width: 430px) {
  .f4 {
    display: none;
  }
}
.f13 {
  position: relative;
  height: 80vh;
  background-color: white;
  margin-top: -80vh;
  width: 95vw;
  margin-left: 2.5vw;
}

.f13 h1 {
  color: firebrick;
  margin-top: 20vh;
  font-size: 8vw;
  text-align: center;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  font-optical-sizing: auto;
}

.instagram-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 10px;
  margin-top: 20px;
}

.instagram-item {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (min-width: 431px) {
  .f13 {
    display: none;
  }
}

.location {
  height: 170vh;
  width: 90vw;
  margin-top: 50vh;
  margin-bottom: 10vh;
  background-color: white;
  display: flex;
  position: relative;
  flex-direction: column;
}
.map-container {
  position: relative;
  width: 90vw;
  margin-top: 5vh;
  height: 80vh;
  margin-left: 5vw;
  margin-bottom: 5vw;
  order: 2;
}
.map {
  position: relative;
}
.adress {
  color: black;
  margin-top: 10vw;
  left: 8vw;
  width: 85vw;
  position: relative;
  z-index: 1;
  order: 1;
}
.adress h1 {
  color: firebrick;
  font-size: 3vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  font-style: normal;
}
.adress p {
  font-size: 2vw;
  font-family: "Courier New";
  font-weight: 600;
  font-style: normal;
  width: 50vw;
}
@media (max-width: 1000px) {
  .location {
    flex-direction: column;
    height: 70vh;
    margin-top: 50vh;
    margin-bottom: 52vh;
  }
  .map-container {
    margin-left: 5vw;
    order: 2;
    margin-top: 10vh;
  }
  .adress {
    left: 8vw;
    order: 1;
    margin-top: -30vh;
    width: 60vw;
  }
  .adress h1 {
    font-size: 5vw;
  }
  .adress p {
    font-size: 3vw;
    width: 70vw;
  }
}
@media (max-width: 700px) {
  .location {
    height: 50vh;
  }
  .map-container {
    margin-top: 0vh;
  }
}
@media (max-width: 499px) {
  .location {
    height: 100vh;
    margin-top: 20vh;
    margin-bottom: 72vh;
  }
  .map-container {
    margin-top: -10vh;
  }
  .adress {
    margin-left: 8vw;
    margin-top: -40vh;
  }
  .adress h1 {
    font-size: 7vw;
  }
  .adress p {
    font-size: 5vw;
    width: 85vw;
  }
}

footer {
  background-color: firebrick;
  color: white;
  position: relative;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-size: 1.4vw;
  font-weight: 900;
  overflow-x: hidden;
  padding: 20px;
}

.footer-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  text-align: center;
}
.footer1 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0vw;
}
.footer-container p {
  margin-left: 0vw;
}
.footer-ig {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0vw;
}

.footer-ig img {
  height: 60px;
  width: auto;
  cursor: pointer;
}

.footer-logo {
  height: 20vh;
  width: auto;
}
.footer2 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0vw;
}
.footer-powered {
  height: 100px;
  width: auto;
  display: flex;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 15px;
  }
  .footer-container p {
    margin-left: 0;
    font-size: 3.1vw;
  }
  .footer-ig {
    margin-left: 0;
  }
  .footer2 span {
    font-size: 3vw;
  }
  .footer-powered {
    height: 130px;
  }
}

/* ESTO ES DEL MENÚ -------------------------*/
/* ESTO ES DEL MENÚ -------------------------*/
/* ESTO ES DEL MENÚ -------------------------*/
/* ESTO ES DEL MENÚ -------------------------*/
/* ESTO ES DEL MENÚ -------------------------*/

.f6 {
  position: relative;
  height: 50vh;
  background-color: white;
  margin-top: 20vh;
  max-width: 100vw;
}
.f6 h1 {
  color: firebrick;
  margin-top: 5vh;
  font-size: 6vw;
  text-align: left;
  left: 5vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  width: 90%;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.f6 p {
  color: black;
  margin-top: -23vh;
  text-align: justify;
  font-size: 1.7vw;
  font-family: "Courier New";
  font-weight: 600;
  width: 40%;
  position: relative;
  margin-left: 45vw;
  font-style: normal;
}
@media (max-width: 1000px) {
  .f6 {
    margin-top: 20vh;
  }
  .f6 h1 {
    margin-left: 0vw;
    text-align: center;
    margin-top: 10vh;
    font-size: 5.5vw;
  }
  .f6 p {
    margin-left: 10vw;
    width: 80vw;
    font-size: 2.5vw;
    margin-top: 0vh;
    text-align: justify;
  }
}

@media (max-width: 768px) {
  .f6 h1 {
    text-align: center;
    font-size: 6vw;
  }
  .f6 p {
    font-size: 3.2vw;
  }
}
@media (max-width: 430px) {
  .f6 {
    margin-top: 20vh;
    max-width: 90vw;
    height: 20vh;
    z-index: -1;
  }
  .f6 h1 {
    margin-top: 20vh;
    text-align: center;
    margin-left: -5vw;
    width: 100vw;
    font-size: 8vw;
  }
  .f6 p {
    margin-left: 0vw;
    font-size: 4vw;
    margin-top: 5vh;
    text-align: justify;
    left: 5vw;
  }
}
.menucompleto {
  width: 100%;
  max-width: 100%;
  height: 40vh;
  margin-top: 10vh;
  justify-content: center;
  align-items: center;
  margin-left: 43vw;
  position: relative;
}
.menucompleto button {
  font-family: "Motter Corpus Std Regular";
}
.menucompleto button:hover,
.menucompleto button:active {
  background-color: #fbc814;
  color: black;
}

.view-full-menu {
  padding: 10px 20px;
  font-size: 1.2vw;
  background-color: firebrick;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.full-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.full-menu-image {
  max-width: 90%;
  max-height: 90%;
}

.close-full-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 30px;
  font-weight: 1000;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 1000px) {
  .menucompleto button {
    font-size: 2vw;
    margin-left: -5vw;
    margin-top: 0vh;
  }
}
@media (max-width: 768px) {
  .menucompleto {
    margin-top: 10vh;
  }
  .menucompleto button {
    font-size: 4vw;
    margin-left: -18vw;
    margin-top: 0vh;
  }
}
@media (max-width: 430px) {
  .menucompleto {
    margin-top: 30vh;
    height: 10vh;
  }
  .menucompleto button {
    font-size: 3.5vw;
    margin-left: -18vw;
  }
  .menucompleto button:active {
    margin-left: -5vw;
  }
  .close-full-menu {
    width: 10px;
    height: 30px;
    right: 30px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.f7 {
  position: relative;
  height: 100vh;
  background-color: white;
  margin-top: -60vh;
  max-width: 100%;
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 35vh;
  border: 1px solid firebrick;
  border-radius: 50px;
  width: 40vw;
  padding: 1px;
  margin-left: 30%;
}
.menu button {
  background-color: transparent;
  border: none;
  border-radius: 50px;
  padding: 8px 20px;
  margin: 0 10px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.14vw;
  font-family: "Motter Corpus Std Regular";
}
.menu button.active {
  background-color: firebrick;
  color: #fff;
  border-color: firebrick;
}
@media (max-width: 1410px) {
  .menu {
    width: 47vw;
    margin-left: 25vw;
  }
}
@media (max-width: 1000px) {
  .f7 {
    height: 100vh;
  }
  .menu button {
    font-size: 1.3vw;
    margin: 0 4px;
  }
  .menu {
    width: 52vw;
    margin-top: 30vh;
    margin-left: 22.5vw;
  }
}
@media (max-width: 768px) {
  .f7 {
    height: 160vh;
    margin-top: 0vh;
  }
  .menu button {
    font-size: 2.3vw;
    margin: 0 -1px;
    margin-top: -0vh;
    height: 5vh;
  }
  .menu {
    width: 80vw;
    margin-left: 10vw;
    margin-top: -30vh;
    margin-bottom: 0vh;
    height: 5vh;
  }
}
@media (max-width: 430px) {
  .f7 {
    height: 100vh;
    margin-top: 0;
  }
  .menu {
    margin-left: 7.5vw;
    margin-top: 0vh;
    z-index: 1;
    height: 4vh;
    width: 83.5vw;
  }
  .menu button {
    font-size: 2.4vw;
    margin: 0 -6.2px;
    z-index: 1;
    margin-top: 0vh;
    height: 4vh;
    color: black;
  }
}
.section {
  display: none;
  height: 40vh;
  margin-top: 0vh;
  padding: 20px;
  background-color: white;
  position: relative;
  margin-left: 4vw;
}
.section.active {
  display: block;
}
.carousel {
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 60vh;
  justify-content: center;
}
.carousel img {
  width: auto;
  height: 35vh;
  margin-left: -12vw;
  margin-top: 8vh;
}
.carousel-item {
  width: 45vw;
  transition: transform 1s ease;
  display: flex;
  justify-content: center;
}
.carousel-text {
  text-align: center;
  margin-top: 43vh;
  margin-left: -17vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  font-size: 1.5vw;
}
.carousel-item:hover {
  transform: scale(1.3);
}
.licuados {
  width: 17vw;
}
@media (max-width: 1300px) {
  .carousel img {
    height: 28vh;
  }
  .carousel-item:hover {
    transform: scale(1.2);
  }
}
@media (max-width: 1000px) {
  .carousel img {
    height: 23vh;
  }
  .carousel-text {
    font-size: 2vw;
    margin-left: -20vw;
    margin-top: 35vh;
  }
  .carousel-item:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  .carousel {
    flex-direction: column;
    height: 130vh;
    margin-top: 0vh;
    margin-left: 21vw;
  }
  .carousel img {
    width: 45vw;
    margin-top: 5vh;
  }
  .carousel-item {
    margin-top: 5vh;
  }
  .carousel-text {
    font-size: 4vw;
    margin-left: -33vw;
    margin-top: 30vh;
  }
  .carousel-item:hover {
    transform: scale(1.1);
  }
}
@media (max-width: 430px) {
  .f7 {
    height: 130vh;
  }
  .section {
    height: 0vh;
    z-index: 0;
    margin-top: 0vh;
    margin-left: -3vw;
  }
  .carousel {
    width: 80vw;
    margin-left: 0vw;
    margin-top: 0vh;
    height: 120vh;
  }
  .carousel-item {
    width: 50vw;
    margin-top: -2vh;
    margin-left: 22vw;
  }
  .carousel img {
    width: 60vw;
  }
  .carousel-text {
    font-size: 5vw;
    margin-left: -42vw;
    margin-top: 31vh;
  }
  .carousel-item:hover {
    transform: scale(1);
  }
}

/* ESTO ES DEL ABOUT US ............................................ */
/* ESTO ES DEL ABOUT US ............................................ */
/* ESTO ES DEL ABOUT US ............................................ */
/* ESTO ES DEL ABOUT US ............................................ */
/* ESTO ES DEL ABOUT US ............................................ */

.f8 {
  position: relative;
  height: 140vh;
  background-color: white;
  margin-top: 20vh;
}
.f8 .container {
  height: 30vh;
  position: relative;
  margin-top: 10vh;
}
.f8 .container h1 {
  color: firebrick;
  margin-top: 35vh;
  font-size: 5vw;
  text-align: left;
  left: 1.2%;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  width: 67vw;
  font-style: normal;
  position: relative;
  z-index: 1;
}
.f8 .container p {
  color: black;
  margin-top: -20vh;
  white-space: wrap;
  text-align: justify;
  font-size: 1.5vw;
  font-family: "Courier New";
  font-weight: 600;
  position: relative;
  margin-left: 65%;
  font-style: normal;
}
.f8 img {
  width: 50vw;
  height: auto;
  margin-left: 6vw;
  margin-top: -7vh;
  z-index: 2;
  position: relative;
}
.f8 .container1 {
  position: relative;
  margin-top: -60vh;
}
.f8 .container1 img {
  width: 40vw;
  height: auto;
  object-fit: cover;
  margin-left: 50vw;
  position: relative;
}
.f8 .container1 h1 {
  color: firebrick;
  margin-top: -20vh;
  font-size: 6vw;
  white-space: wrap;
  text-align: justify;
  font-family: "Motter Corpus Std Regular";
  font-weight: 400;
  z-index: 20;
  position: absolute;
  margin-left: 42vw;
  font-style: normal;
}
.f8 .container1 p {
  color: black;
  margin-top: 0vh;
  white-space: wrap;
  text-align: justify;
  font-size: 1.5vw;
  font-family: "Courier New";
  font-weight: 600;
  width: 47%;
  z-index: 20;
  position: absolute;
  margin-left: 42vw;
  font-style: normal;
}

@media (max-width: 1000px) {
  .f8 .container h1 {
    margin-left: 0vw;
    width: 90vw;
    font-size: 6vw;
    text-align: center;
    margin-top: 10vh;
  }
  .f8 .container p {
    margin-left: 0vw;
    width: 90vw;
    font-size: 2.5vw;
    margin-top: 0vh;
  }
  .f8 img {
    width: 50vw;
    margin-left: 0vw;
    margin-top: 15vh;
  }
  .f8 .container1 {
    margin-top: 0vh;
  }
  .f8 .container1 img {
    width: 50vw;
    height: auto;
    margin-left: 40vw;
    margin-top: -80vh;
  }
  .f8 .container1 h1 {
    margin-top: -10vh;
    margin-left: 20vw;
    width: 80vh;
    font-size: 8vw;
  }
  .f8 .container1 p {
    margin-top: 5vh;
    margin-left: 5vw;
    width: 90vw;
    font-size: 2.5vw;
    white-space: wrap;
  }
}
@media (max-width: 768px) {
  .f8 img {
    width: 55vw;
    margin-left: 0vw;
    margin-top: 10vh;
  }
  .f8 .container p {
    font-size: 2.7vw;
  }
  .f8 .container1 p {
    font-size: 2.7vw;
  }
}
@media (max-width: 430px) {
  .f8 {
    height: 120vh;
    width: 100vw;
  }
  .f8 .container h1 {
    margin-left: 5vw;
    width: 90vw;
    font-size: 7.5vw;
    text-align: center;
    margin-top: 18vh;
  }
  .f8 .container p {
    margin-left: 5vw;
    width: 90vw;
    font-size: 3.2vw;
    margin-top: 0vh;
  }
  .f8 img {
    width: 90vw;
    left: 5vw;
    margin-top: -5vh;
  }
  .f8 .container1 img {
    width: 90vw;
    height: auto;
    margin-left: 0vw;
    margin-top: 15vh;
  }
  .f8 .container1 h1 {
    margin-top: -60vh;
    left: -10vw;
    width: 80vw;
    font-size: 11vw;
  }
  .f8 .container1 p {
    margin-top: -50vh;
    font-size: 3vw;
  }
}

.f9 {
  position: relative;
  height: 90vh;
  background-color: firebrick;
  margin-top: -10vh;
  width: 102vw;
}
.f9 .container {
  height: 50vh;
  position: relative;
  margin-top: 10vh;
}
.f9 .container h1 {
  color: white;
  margin-top: 3%;
  font-size: 5vw;
  text-align: left;
  left: 0vw;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  width: 50%;
  font-style: normal;
  position: absolute;
  z-index: 1;
}
.f9 img {
  width: 40vw;
  height: auto;
  object-fit: cover;
  margin-left: 30vw;
  margin-top: -100vh;
  z-index: 2;
  position: absolute;
  margin-bottom: 5vh;
}
.f9 .container p {
  color: white;
  margin-top: 30vh;
  white-space: wrap;
  text-align: justify;
  font-size: 1.5vw;
  font-family: "Courier New";
  font-weight: 600;
  width: 25vw;
  z-index: 20;
  position: absolute;
  margin-left: -2vw;
  font-style: normal;
}
.f9 .container1 {
  height: 50vh;
  position: relative;
  margin-top: 10vh;
}
.f9 .container1 h1 {
  color: white;
  margin-top: -54vh;
  font-size: 5vw;
  text-align: left;
  left: 73vw;
  font-family: "Motter Corpus Std Regular";
  width: 50%;
  font-style: normal;
  position: absolute;
}
.f9 .container1 p {
  color: white;
  margin-top: -30vh;
  white-space: wrap;
  text-align: justify;
  font-size: 1.5vw;
  font-family: "Courier New";
  font-weight: 600;
  width: 25vw;
  z-index: 20;
  position: absolute;
  margin-left: 71vw;
  font-style: normal;
}
@media (max-width: 1300px) {
  .f9 {
    margin-top: -30vh;
  }
}
@media (max-width: 1000px) {
  .f9 {
    margin-top: 10vh;
    height: 160vh;
  }
  .f9 img {
    width: auto;
    height: 80vh;
    margin-top: -40vh;
    margin-left: 10vw;
  }
  .f9 .container {
    margin-left: -20vw;
    width: 120vh;
  }
  .f9 .container h1 {
    margin-left: 50vw;
    margin-top: 2vh;
    font-size: 8vw;
  }
  .f9 .container p {
    margin-left: 25vw;
    width: 90vw;
    font-size: 2.5vw;
    margin-top: 20vh;
  }
  .f9 .container1 {
    margin-top: -20vh;
  }
  .f9 .container1 h1 {
    margin-top: 80vh;
    margin-left: -45vw;
    width: 50vh;
    font-size: 8vw;
    z-index: 1000;
  }
  .f9 .container1 p {
    margin-top: 100vh;
    margin-left: 5vw;
    width: 90vw;
    font-size: 2.5vw;
    white-space: wrap;
  }
}
@media (max-width: 768px) {
  .f9 {
    margin-top: -30vh;
  }
  .f9 .container p {
    font-size: 3.5vw;
  }
  .f9 .container1 p {
    font-size: 3.5vw;
  }
}

@media (max-width: 600px) {
  .f9 {
    height: 130vh;
    margin-top: -50vh;
  }
  .f9 .container {
    margin-left: -20vw;
    width: 100vw;
  }
  .f9 .container h1 {
    margin-left: 55vw;
  }
  .f9 .container p {
    margin-left: 25vw;
    font-size: 3.5vw;
    margin-top: 15vh;
  }
  .f9 .container1 {
    margin-top: -20vh;
  }
  .f9 img {
    width: auto;
    height: 70vh;
    margin-top: -60vh;
    margin-left: 0vw;
  }
  .f9 .container1 h1 {
    margin-left: -40vw;
    margin-top: 55vh;
  }
  .f9 .container1 p {
    font-size: 3.5vw;
    margin-left: 5vw;
    margin-top: 68vh;
  }
}
@media (max-width: 430px) {
  .f9 {
    height: 110vh;
    overflow-x: hidden;
  }
  .f9 .container h1 {
    margin-left: 45vw;
    margin-top: -5vh;
    width: 100vw;
    font-size: 11vw;
  }
  .f9 .container p {
    margin-left: 25vw;
    width: 90vw;
    font-size: 4.2vw;
    margin-top: 4.2vh;
  }
  .f9 img {
    width: auto;
    height: 50vh;
    margin-left: -16vw;
    margin-top: -65vh;
  }
  .f9 .container1 h1 {
    margin-top: 35vh;
    margin-left: -46vw;
    width: 100vh;
    font-size: 11vw;
    z-index: 0;
  }
  .f9 .container1 p {
    margin-top: 45vh;
    margin-left: 5vw;
    width: 89vw;
    font-size: 4.2vw;
    white-space: wrap;
  }
}

.f10 {
  margin-top: 10vh;
  position: relative;
  height: 80vh;
  background-color: white;
  position: relative;
}
.f10 h1 {
  color: firebrick;
  margin-top: 0vh;
  font-size: 6vw;
  text-align: left;
  left: 1.5%;
  font-family: "Motter Corpus Std Regular";
  font-weight: 1000;
  width: 90%;
  z-index: 2;
  font-style: normal;
  position: absolute;
}
.f10 p {
  color: black;
  margin-top: -3vh;
  white-space: wrap;
  text-align: justify;
  font-size: 1.4vw;
  font-family: "Courier New";
  font-weight: 600;
  width: 50vw;
  z-index: 20;
  position: absolute;
  margin-left: 38%;
  font-style: normal;
}
.f10 img {
  width: 30vw;
  height: auto;
  object-fit: cover;
  margin-left: 65vw;
  margin-top: 12vh;
  z-index: 1;
  position: relative;
}

@media (max-width: 1000px) {
  .f10 {
    margin-top: 10vh;
    height: 120vh;
  }
  .f10 h1 {
    margin-left: 0vw;
    width: 100vw;
    font-size: 8vw;
    text-align: center;
  }
  .f10 p {
    margin-left: 10vw;
    width: 80vw;
    font-size: 2.5vw;
    margin-top: 40vh;
  }
  .f10 img {
    width: 40vw;
    height: auto;
    margin-left: 30vw;
    margin-top: 70vh;
    position: relative;
  }
}
@media (max-width: 768px) {
  .f10 {
    height: 90vh;
  }
  .f10 p {
    font-size: 3vw;
    margin-top: 30vh;
  }
  .f10 img {
    margin-top: 52vh;
  }
}

@media (max-width: 430px) {
  .f10 {
    margin-top: 10vh;
    height: 80vh;
    width: 100vw;
  }
  .f10 h1 {
    margin-left: 5vw;
    width: 90vw;
    font-size: 7vw;
    text-align: center;
    margin-top: 5vh;
  }
  .f10 p {
    margin-left: 5vw;
    width: 90vw;
    font-size: 4vw;
    margin-top: 20vh;
  }
  .f10 img {
    width: 70vw;
    margin-left: 15vw;
    margin-top: 40vh;
  }
}

@media (max-width: 430px) {
  .container,
  .f3,
  .f4,
  .f6,
  .f7,
  .f8,
  .f9,
  .f10 {
    width: 100vw;
    margin: 0;
    padding: 0;
  }

  .adress {
    margin-top: 15vh;
    left: 0;
    width: 100%;
    margin-bottom: 10vh;
  }
  .map-container {
    margin-top: 5vh;
    left: 0;
    width: 100%;
  }

  .f4 .instagram-media,
  .f6 p,
  .f8 img,
  .f9 img {
    width: 100%;
    margin-left: 0;
  }

  footer .container,
  footer .container1 {
    width: 100%;
    margin-left: 50vw;
  }
  header .container {
    width: 100%;
    margin-left: 45vw;
  }
  .f1 img {
    height: 25vh;
    width: 25vh;
    margin-left: 25vw;
    margin-top: 7vh;
  }
}
