@import url("https://fonts.googleapis.com/css?family=Poppins:400,500");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
:root {
  --first-color: #ff0022;
  --first-color-alt: #c50e27;
  --container-color: #ffffffff;
  --header-color: #f8e9f2;
  --title-color: #393939;
  --text-color: #393939;
  --body-color: #edfdfb;
  --container-color: #ffffffff;
}

body.dark-theme {
  --first-color: #ff0022;
  --first-color-alt: #c50e27;
  --header-color: #1d251d;
  --title-color: #f1f2f3;
  --text-color: #c7d1cc;
  --body-color: #1d2521;
  --container-color: #1d251d;
}

*, ::before, ::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-transition: background-color 1.5s ease, opacity 1.5s ease;
  transition: background-color 1.5s ease, opacity 1.5s ease;
}

body {
  overflow-x: hidden;
}

body.scrollable {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

ul {
  padding: 0;
  list-style: none;
}

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

img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 960px;
  width: calc(100% - 3rem);
  margin: 0 auto;
}

.grid {
  display: -ms-grid;
  display: grid;
  gap: 1.5rem;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.active {
  color: var(--first-color);
}

section, footer {
  padding: 4rem 0 2rem;
  background: var(--body-color);
}

@media (min-width: 64em) {
  section, footer {
    padding: 6rem 0 2rem;
  }
}

.section-title, .section-subtitle {
  text-align: center;
}

.section-title {
  margin: .5rem 0 1.5rem;
  color: var(--title-color);
}

.section-subtitle {
  display: block;
  color: var(--first-color);
}

:root {
  --sk-size: 80px;
  --sk-color: rgb(245, 241, 241);
}

.loading-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 5s;
  transition: 5s;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#fbc2eb), to(#a6c1ee));
  background-image: linear-gradient(to top, #fbc2eb 0%, #a6c1ee 100%);
}

/* Utility class for centering */
.sk-center {
  margin: auto;
}

.sk-chase {
  width: var(--sk-size);
  height: var(--sk-size);
  position: relative;
  -webkit-animation: sk-chase 2.5s infinite linear both;
          animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: sk-chase-dot 2.0s infinite ease-in-out both;
          animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: var(--sk-color);
  border-radius: 100%;
  -webkit-animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
          animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2) {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3) {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4) {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5) {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6) {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

.sk-chase-dot:nth-child(1):before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s;
}

.sk-chase-dot:nth-child(2):before {
  -webkit-animation-delay: -1.0s;
          animation-delay: -1.0s;
}

.sk-chase-dot:nth-child(3):before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s;
}

.sk-chase-dot:nth-child(4):before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s;
}

.sk-chase-dot:nth-child(5):before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s;
}

.sk-chase-dot:nth-child(6):before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s;
}

@-webkit-keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes sk-chase-dot {
  80%, 100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-chase-dot-before {
  50% {
    -webkit-transform: scale(0.4);
            transform: scale(0.4);
  }
  100%, 0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

html {
  font-size: 100%;
}

/*16px*/
body {
  background: var(--container-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--title-color);
}

p {
  margin-bottom: 1rem;
}

h1, h2, h3, h4, h5 {
  margin: 3rem 0 1.38rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

h1 {
  margin-top: 0;
  font-size: 1.802rem;
}

h2 {
  font-size: 1.602rem;
}

h3 {
  font-size: 1.424rem;
}

h4 {
  font-size: 1.266rem;
}

h5 {
  font-size: 1.125rem;
}

small, .text_small {
  font-size: 0.889rem;
}

@media (max-width: 87.4375em) {
  h1 {
    margin-top: 0;
    font-size: 4.209rem;
  }
  h2 {
    font-size: 3.157rem;
  }
  h3 {
    font-size: 2.369rem;
  }
  h4 {
    font-size: 1.777rem;
  }
  h5 {
    font-size: 1.333rem;
  }
  small, .text_small {
    font-size: 0.75rem;
  }
}

.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: var(--header-color);
}

.scroll__top {
  z-index: 100;
}

.nav {
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .nav {
    height: calc(3rem + 1.5rem);
  }
}

.nav__logo {
  font-family: 'Lobster', 'cursive';
  font-size: 1.5rem;
  color: var(--text-color);
}

@media (min-width: 768px) {
  .nav__logo {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.nav__menu {
  background-color: var(--header-color);
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem 0 1rem;
    -webkit-transition: top .5s ease, background-color 1.5s;
    transition: top .5s ease, background-color 1.5s;
    z-index: -1;
    -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  }
}

.nav__item {
  color: var(--text-color);
  margin-bottom: .5rem;
  font-weight: 500;
}

@media (min-width: 768px) {
  .nav__item {
    margin-left: 1.9rem;
    margin-bottom: 0;
  }
}

.nav__toggle {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.5rem;
}

.nav__link {
  -webkit-transition: color .5s;
  transition: color .5s;
}

.nav__link:hover {
  color: var(--first-color);
}

.nav__toggle {
  cursor: pointer;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav .show-menu {
  top: 0;
}

.nav .active-link {
  color: var(--first-color);
}

.scroll__top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  border-radius: 6px;
  font-size: 2rem;
  display: inline-block;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  visibility: hidden;
  background: var(--first-color-alt);
  -webkit-animation: bounce 1.5s ease-in-out infinite;
          animation: bounce 1.5s ease-in-out infinite;
}

.scroll__top i {
  color: #fff;
}

.show {
  visibility: visible;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.toggle__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-color);
}

.toggle__container .fa-moon {
  display: none;
}

.toggle__container .fa-sun {
  display: block;
  color: #ffc400;
}

@media (max-width: 768px) {
  .toggle__container {
    position: absolute;
    right: 1rem;
    top: 1.8rem;
    color: var(--text-color);
    font-size: 1rem;
  }
}

.toggle__container.show .fa-moon {
  display: block;
  color: var(--text-color);
}

.toggle__container.show .fa-sun {
  display: none;
}

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

@media (max-width: 768px) {
  .home {
    padding: 3rem 0 0;
  }
}

.home__container {
  height: calc(100vh - 3rem);
  -ms-flex-line-pack: center;
      align-content: center;
  gap: .5rem;
  color: #707070;
}

@media (min-width: 768px) {
  .home__container {
    padding-top: 4rem;
    height: 70vh;
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
}

.home__data {
  margin-bottom: 1.5rem;
}

.home__title {
  font-weight: 600;
  color: #ff0022;
  font-size: 2.1rem;
}

@media (min-width: 768px) {
  .home__title {
    font-size: 2.802rem;
  }
}

@media (min-width: 64em) {
  .home__title {
    font-size: 4.024rem;
  }
}

.home__subtitle {
  margin-top: 0;
  margin-bottom: 2rem;
}

@media (max-width: 39.9375em) {
  .home__subtitle {
    font-size: 1.9rem;
  }
}

.home__img {
  -ms-grid-column-align: center;
      justify-self: center;
  width: 320px;
  border-radius: 10px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 768px) {
  .home__img {
    width: 390px;
  }
}

.button {
  display: inline-block;
  background: #ff0022;
  color: #fff;
  padding: .75rem 1rem;
  border-radius: .5rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.button:hover {
  background: #c50e27;
}

.about {
  padding-top: 5rem;
  background: var(--body-color);
}

@media (min-width: 576px) {
  .about__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

.about__data {
  text-align: center;
}

@media (max-width: 768px) {
  .about__data .section-title {
    font-size: 1.9rem;
  }
}

.about__img {
  width: 250px;
  border-radius: .5rem;
  -ms-grid-column-align: center;
      justify-self: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

@media (min-width: 576px) {
  .about__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (min-width: 768px) {
  .about__img {
    width: 380px;
  }
}

.services__container {
  row-gap: 2.5rem;
  -ms-grid-columns: (minmax(220px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.services__content {
  text-align: center;
}

.services__img {
  width: 64px;
  height: 64px;
  fill: var(--first-color);
  margin-top: 1.5rem;
}

.services__title {
  color: var(--title-color);
}

.services__description {
  padding: 0 1.5rem;
}

.menu__container {
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .menu__container {
    margin: 0 auto;
    -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
  }
}

.menu__content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--body-color);
  border-radius: .5rem;
  -webkit-box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
          box-shadow: 0 2px 4px rgba(3, 74, 40, 0.15);
  padding: .75rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.menu_img {
  width: 100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .menu_img {
    width: 180px;
  }
}

.menu h5 {
  margin: 0.8rem 0 0;
}

.menu__name {
  font-size: .938rem;
  font-weight: 600;
}

.menu__name, .menu__price {
  color: var(--title-color);
}

.menu__detail, .menu__price {
  font-size: 0.833rem;
}

.menu__price {
  margin-bottom: 1rem;
}

.menu__button {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: .624rem, .814rem;
  border-radius: .5rem 0 .5rem 0;
}

.app {
  text-align: center;
}

.app__container {
  gap: .5rem;
}

@media (min-width: 576px) {
  .app__container {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    text-align: initial;
  }
  .app__container .section-title, .app__container .section-subtitle {
    text-align: initial;
  }
}

.app__stores {
  margin: 0 0 .5rem;
}

.app__stores .app__store {
  width: 120px;
  margin: .9rem;
}

@media (min-width: 576px) {
  .app__stores .app__store {
    margin: 0;
  }
}

.app__image {
  width: 240px;
  -ms-grid-column-align: center;
      justify-self: center;
  border-radius: 18px;
  overflow: hidden;
}

@media (min-width: 576px) {
  .app__image {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

@media (min-width: 768px) {
  .app__image {
    -webkit-column-gap: .5rem;
            column-gap: .5rem;
  }
}

.contact__container {
  text-align: center;
}

@media (min-width: 576px) {
  .contact__container {
    text-align: initial;
    -ms-grid-columns: 1.75fr 1fr;
        grid-template-columns: 1.75fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contact__container .section-title, .contact__container .section-subtitle {
    text-align: initial;
  }
}

.contact__description {
  margin-bottom: 1.5rem;
}

.footer {
  background: var(--header-color);
}

.footer__container {
  -ms-grid-columns: (minmax(220px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  row-gap: 2rem;
}

.footer__logo h3 {
  color: var(--first-color);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: .5rem;
}

.footer__description h4 {
  margin: .25rem 0 1.5rem;
}

.footer__social {
  font-size: 1.5rem;
  color: var(--title-color);
  margin-right: 1.2rem;
}

.footer__title {
  color: var(--title-color);
  margin-top: 1rem;
}

.footer__link {
  color: var(--text-color);
  -webkit-transition: .5s;
  transition: .5s;
}

.footer__link:hover {
  color: var(--first-color);
  padding-left: .5rem;
}

.footer__copy {
  text-align: center;
  font-size: .833rem;
  color: var(--text-color);
  margin-top: 3.5rem;
}
/*# sourceMappingURL=style.css.map */