html body {
  margin: 0;
  padding: 0;
  height: 100vh;
}

.mobile-wrapper .container-mobile .top-content {
  height: 20vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F04C26;
}
.mobile-wrapper .container-mobile .middle-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vh;
  padding: 20px;
  margin-bottom: 10px;
}
.mobile-wrapper .container-mobile .middle-content .mid-text p {
  font-family: "PT Sans", sans-serif;
  font-size: 18.91px;
  font-weight: 400;
  line-height: 28.37px;
  letter-spacing: 0.76px;
  text-align: center;
  color: #2F2F2F;
  margin-top: 0;
  margin-bottom: 10px;
}
.mobile-wrapper .container-mobile .middle-content .mid-text .coming-soon {
  margin: 0;
  font-family: "Vidaloka", serif;
  font-size: 92.93px;
  font-weight: 400;
  line-height: 71.91px;
  letter-spacing: -4.9255948067px;
  text-align: center;
  background: linear-gradient(90deg, #F49121 0%, #F04C26 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 15px;
  padding-top: 5px;
}
.mobile-wrapper .container-mobile .bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
  background-color: #141414;
}
.mobile-wrapper .container-mobile .bottom-content .svg-strip {
  display: none;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .social-media {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  width: 80%;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .social-media p {
  font-family: "Vidaloka", serif;
  font-size: 55.17px;
  font-weight: 400;
  line-height: 43.21px;
  letter-spacing: -2.7583332062px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  padding: 20px;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .social-media .media-icons {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .social-media .media-icons a {
  text-decoration: none;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .social-media .media-icons a svg {
  width: 19.24px;
  height: 19.24px;
  fill: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 8px;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .email {
  padding: 20px;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .email .email-text p {
  font-family: "Vidaloka", serif;
  font-size: 55.17px;
  font-weight: 400;
  line-height: 43.21px;
  letter-spacing: -2.7583332062px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.mobile-wrapper .container-mobile .bottom-content .footer-container .email .email-link a {
  font-family: "PT Sans", sans-serif;
  font-size: 16.55px;
  font-weight: 400;
  line-height: 26.48px;
  letter-spacing: 0.7061333656px;
  text-align: center;
  color: #FFFFFF;
  text-decoration: underline;
}

.desktop-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .mobile-wrapper .container-mobile .middle-content .mid-text .coming-soon {
    padding: 20px;
  }
  .mobile-wrapper .container-mobile .bottom-content .footer-container .social-media {
    margin-bottom: 30px;
    width: 140%;
  }
  .mobile-wrapper .container-mobile .bottom-content .footer-container .social-media p {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .mobile-wrapper {
    display: none;
  }
  .desktop-wrapper {
    display: block;
  }
  .desktop-wrapper .desktop-container .top-content {
    height: 25.5vh;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .desktop-wrapper .desktop-container .top-content .first-img {
    width: 55%;
  }
  .desktop-wrapper .desktop-container .top-content .first-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desktop-wrapper .desktop-container .logo {
    background-color: #F04C26;
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .desktop-wrapper .desktop-container .logo img {
    width: 45%;
  }
  .desktop-wrapper .middle-content {
    height: 37.5vh;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .desktop-wrapper .middle-content .mid-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 55%;
  }
  .desktop-wrapper .middle-content .mid-container .mid-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 368px;
    width: 55%;
  }
  .desktop-wrapper .middle-content .mid-container .mid-text p {
    font-family: "PT Sans", sans-serif;
    font-size: 18.91px;
    font-weight: 400;
    line-height: 28.37px;
    letter-spacing: 0.76px;
    text-align: left;
    color: #2F2F2F;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 5px 75px;
    width: 100%;
  }
  .desktop-wrapper .middle-content .mid-container .mid-text .coming-soon {
    margin: 0;
    font-family: "Vidaloka", serif;
    font-size: 92.93px;
    font-weight: 400;
    line-height: 71.91px;
    letter-spacing: -4.9255948067px;
    text-align: left;
    background: linear-gradient(90deg, #F49121 0%, #F04C26 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 5px 75px;
  }
  .desktop-wrapper .middle-content .mid-img {
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .desktop-wrapper .middle-content .mid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desktop-wrapper .bottom-content {
    height: 37.5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #141414;
    width: 100%;
  }
  .desktop-wrapper .bottom-content .svg-strip {
    display: none;
  }
  .desktop-wrapper .bottom-content .second-bottom-img {
    width: 55%;
    height: 100%;
  }
  .desktop-wrapper .bottom-content .second-bottom-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .desktop-wrapper .bottom-content .footer-container {
    width: 45%;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content {
    padding: 25px 0px 0px 25px;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .social-media {
    width: 80%;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .social-media p {
    font-family: "Vidaloka", serif;
    font-size: 55.17px;
    font-weight: 400;
    line-height: 43.21px;
    letter-spacing: -2.7583332062px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding: 0 20px 0px 0px;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .social-media .media-icons {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    width: 80%;
    padding: 0px 0px 15px 0px;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .social-media .media-icons a {
    text-decoration: none;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .social-media .media-icons a svg {
    width: 19.26px;
    height: 19.26px;
    fill: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 8px;
    margin-right: 12px;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .email .email-text p {
    font-family: "Vidaloka", serif;
    font-size: 55.17px;
    font-weight: 400;
    line-height: 43.21px;
    letter-spacing: -2.7583332062px;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 10px;
  }
  .desktop-wrapper .bottom-content .footer-container .social-content .email .email-link a {
    font-family: "PT Sans", sans-serif;
    font-size: 16.55px;
    font-weight: 400;
    line-height: 26.48px;
    letter-spacing: 0.7061333656px;
    text-align: left;
    color: #FFFFFF;
    text-decoration: underline;
  }
  .right-col-container {
    display: none;
  }
}
@media (min-width: 1200px) {
  .desktop-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100vh;
  }
  .desktop-wrapper .desktop-container {
    width: 65%;
  }
  .desktop-wrapper .desktop-container .top-content {
    height: 25.5vh;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .desktop-wrapper .desktop-container .top-content .first-img {
    width: 55%;
  }
  .desktop-wrapper .desktop-container .top-content .logo {
    width: 45%;
  }
  .desktop-wrapper .desktop-container .top-content .logo img {
    width: 45%;
  }
  .desktop-wrapper .desktop-container .middle-content {
    height: 37.5vh;
  }
  .desktop-wrapper .desktop-container .middle-content .mid-container {
    width: 55%;
  }
  .desktop-wrapper .desktop-container .middle-content .mid-container .mid-text {
    height: 19.1666666667vw;
  }
  .desktop-wrapper .desktop-container .middle-content .mid-container .mid-text p {
    font-size: 0.9848958333vw;
    line-height: 1.4776041667vw;
    letter-spacing: 0.0395833333vw;
    margin-bottom: 0.2604166667vw;
    padding: 0.2604166667vw 3.90625vw;
  }
  .desktop-wrapper .desktop-container .middle-content .mid-container .mid-text .coming-soon {
    font-size: 4.8401041667vw;
    line-height: 3.7453125vw;
    letter-spacing: -0.2565413962vw;
    padding: 0.2604166667vw 3.90625vw;
  }
  .desktop-wrapper .desktop-container .middle-content .mid-img {
    width: 45%;
  }
  .desktop-wrapper .desktop-container .bottom-content {
    height: 37vh;
    align-items: unset;
  }
  .desktop-wrapper .desktop-container .bottom-content .svg-strip {
    display: none;
  }
  .desktop-wrapper .desktop-container .bottom-content .second-bottom-img {
    width: 55%;
  }
  .desktop-wrapper .desktop-container .bottom-content .second-bottom-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container {
    width: 45%;
    display: block;
    height: 100%;
    position: relative;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content {
    padding: 0px;
    position: absolute;
    top: 50%;
    width: 81%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .social-media {
    width: 100%;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .social-media p {
    font-size: 2.8734375vw;
    line-height: 2.2505208333vw;
    letter-spacing: -0.1436631878vw;
    padding: 0 5.2083333333vw 0px 0px;
    margin-bottom: 1.5625vw;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .social-media .media-icons {
    margin-bottom: 1.3020833333vw;
    border-bottom: 0.0520833333vw solid rgba(255, 255, 255, 0.4);
    width: 60%;
    padding: 0px 0px 1.3020833333vw 0px;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .social-media .media-icons svg {
    width: 1.0020833333vw;
    height: 1.0072916667vw;
    border: 0.0520833333vw solid rgba(255, 255, 255, 0.4);
    padding: 0.4166666667vw 0.4166666667vw;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .email .email-text p {
    font-size: 2.8734375vw;
    line-height: 2.2505208333vw;
    letter-spacing: -0.1436631878vw;
    margin-bottom: 1.0416666667vw;
  }
  .desktop-wrapper .desktop-container .bottom-content .footer-container .social-content .email .email-link a {
    font-size: 0.8619791667vw;
    line-height: 1.3791666667vw;
    letter-spacing: 0.0367777795vw;
  }
  .desktop-wrapper .right-col-container {
    display: block;
    width: 35%;
  }
  .desktop-wrapper .right-col-container .right-food-img {
    height: 100%;
    width: 100%;
  }
  .desktop-wrapper .right-col-container .right-food-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/*# sourceMappingURL=style.css.map */
