@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&family=Shrikhand&display=swap");
/***UTILS***/
@-webkit-keyframes heartbeat {
  0% {
    transform: scale(0);
    transform-origin: bottom;
  }
  55% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(0);
    transform-origin: bottom;
  }
  55% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@-webkit-keyframes slide {
  0% {
    transform: translateX(-10vh);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide {
  0% {
    transform: translateX(-10vh);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes gradually-appear {
  0% {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes gradually-appear {
  0% {
    opacity: 0;
    transform: translateY(30px);
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(180deg);
  }
}
@-webkit-keyframes spinner-inverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-180deg);
  }
}
@keyframes spinner-inverse {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-180deg);
  }
}
@-webkit-keyframes bubbles-slide {
  0% {
    transform: translateX(0) scale(0);
  }
  90% {
    transform: translateX(-350px) scale(8);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-360px) scale(9);
    opacity: 0;
  }
}
@keyframes bubbles-slide {
  0% {
    transform: translateX(0) scale(0);
  }
  90% {
    transform: translateX(-350px) scale(8);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-360px) scale(9);
    opacity: 0;
  }
}
@-webkit-keyframes blow-up {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(8);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes blow-up {
  0% {
    transform: scale(0);
  }
  80% {
    transform: scale(8);
  }
  100% {
    transform: scale(0);
  }
}
@-webkit-keyframes logo-reveal {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0%;
  }
  100% {
    opacity: 0%;
    transform: translateX(-300px);
  }
}
@keyframes logo-reveal {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  50% {
    opacity: 0%;
  }
  100% {
    opacity: 0%;
    transform: translateX(-300px);
  }
}
@-webkit-keyframes page-reveal {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50vh) scale(0);
    opacity: 0;
  }
}
@keyframes page-reveal {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50vh) scale(0);
    opacity: 0;
  }
}
/***BASE***/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  width: 100%;
  margin: 0;
  font-family: "Roboto";
}

a {
  text-decoration: none;
  color: white;
}

ul {
  list-style-type: none;
}

h2 {
  font-size: 1.5em;
  font-weight: 800;
}

h3 {
  color: black;
  font-weight: 700;
}

.restaurant-card_title p {
  color: black;
  font-size: 1.14em;
}

/***LAYOUT***/
header {
  display: flex;
  justify-content: center;
  margin: 20px 0px 15px 0px;
  position: relative;
}
header img {
  width: 160px;
}
header a {
  color: #444444;
  position: absolute;
  top: 2px;
  left: 22px;
  font-size: 1.25em;
}

.footer {
  padding: 25px;
  color: white;
  background-color: #444444;
}
.footer h6 {
  font-family: "Shrikhand";
  font-size: 1.1em;
  font-weight: 100;
}
.footer_links {
  padding: 15px 0px;
}
.footer_links ul li {
  font-size: 0.95em;
  margin-bottom: 8px;
}
.footer_links ul li :hover {
  color: #ff79da;
}
.footer_links ul li i {
  margin-right: 10px;
}
@media screen and (min-width: 700px) {
  .footer_links {
    display: flex;
    gap: 70px;
  }
}

/***COMPONENTS***/
.btn {
  width: 215px;
  height: 50px;
  border-radius: 30px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(#ff79da, #9356dc);
  box-shadow: 3px 5px 13px 3px lightgray;
  transition: all 500ms;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: radial-gradient(circle, #fface8 0%, #9356dc 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 250ms;
}
.btn:hover {
  box-shadow: 0px 0px 12px 8px lightgray;
}
.btn:hover::after {
  opacity: 1;
}

.heart {
  cursor: pointer;
}
.heart .fa-heart {
  font-size: 30px;
  position: relative;
  color: black;
}
.heart .fa-heart:hover .fa-solid {
  -webkit-animation: heartbeat 1000ms forwards;
          animation: heartbeat 1000ms forwards;
}
.heart .fa-heart .fa-solid {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(#ff79da, #9356dc);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  position: absolute;
  top: 0;
  right: 0;
  transform: scale(0);
}

.step {
  background-color: rgb(246, 246, 246);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 4px 4px 10px 3px #e9e9e9;
  height: 70px;
  counter-increment: stepnumber;
}
.step::before {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #9356dc;
  content: counter(stepnumber);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-left: -12px;
  font-weight: 400;
  font-size: 14px;
}
.step i {
  color: #838383;
  font-size: 20px;
}
.step--highlight i {
  color: #9356dc;
}
@media screen and (min-width: 700px) {
  .step {
    width: 350px;
  }
}

.restaurant-card {
  background-color: white;
  border-radius: 14px;
  box-shadow: 4px 6px 13px -6px lightgray;
  width: 100%;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  position: relative;
}
.restaurant-card_image img {
  width: 100%;
  height: 172px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (min-width: 700px) {
  .restaurant-card_image img {
    -o-object-position: initial;
       object-position: initial;
  }
}
.restaurant-card_image--enchanted img {
  -o-object-position: bottom 40% right 0px;
     object-position: bottom 40% right 0px;
}
.restaurant-card_title {
  display: flex;
  flex-direction: column;
  padding: 11px 0px 15px 13px;
  gap: 3px;
  position: relative;
}
.restaurant-card_title h3 {
  font-weight: 800;
}
.restaurant-card .heart {
  position: absolute;
  bottom: 25px;
  right: 25px;
}
.restaurant-card--new::after {
  content: "New";
  height: 28px;
  width: 80px;
  position: absolute;
  top: 13px;
  right: 13px;
  background-color: #99e2d0;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c9c81;
  font-weight: 600;
  font-size: 0.9em;
}
.restaurant-card:hover {
  box-shadow: 4px 6px 13px 0px gray;
  filter: brightness(130%);
}
@media screen and (min-width: 700px) {
  .restaurant-card {
    min-width: 420px;
    max-width: 600px;
    flex: 1 0 420px;
  }
}

.menu-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: white;
  width: 100%;
  gap: 4px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  padding: 11px 0px 10px 15px;
  box-shadow: 4px 6px 13px -6px lightgray;
  transition: all 500ms ease-in-out;
  -webkit-animation: gradually-appear 1000ms forwards;
          animation: gradually-appear 1000ms forwards;
  opacity: 0;
  cursor: pointer;
}
.menu-card h3 {
  font-size: 1.1em;
  padding-right: 50px;
  line-height: 1.35em;
}
.menu-card_description {
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
}
.menu-card_description p {
  font-size: 0.93em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.menu-card_description span {
  font-weight: 700;
  margin-left: 15px;
}
.menu-card_check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #99e2d0;
  border-radius: 0px 14px 14px 0px;
  font-size: 22px;
  color: white;
  transform: translateX(100%);
  transform-origin: 100% 0%;
  transition: all 500ms ease-in-out;
  overflow: hidden;
}
.menu-card_check .fa-circle-check {
  transition: all 500ms ease-in-out;
}
.menu-card:hover {
  padding-right: 20%;
}
.menu-card:hover > .menu-card_check {
  transform: translateX(0);
}
.menu-card:hover > .menu-card_check > .fa-circle-check {
  transform: rotate(1turn);
}
.menu-card:nth-of-type(1) {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.menu-card:nth-of-type(2) {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.menu-card:nth-of-type(3) {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.menu-card:nth-of-type(4) {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}

/***PAGES***/
.loading-page {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 40;
  -webkit-animation: page-reveal 1300ms forwards;
          animation: page-reveal 1300ms forwards;
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-page_container {
  margin-top: -30vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-animation: page-reveal 1300ms forwards;
          animation: page-reveal 1300ms forwards;
  -webkit-animation-delay: 4000ms;
          animation-delay: 4000ms;
}

.circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: relative;
}
.circle--1 .spinner:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
}
.circle--1 .spinner:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
  background-color: #99e2d0;
}
.circle--1 .spinner:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
}
.circle--1 .spinner:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 100ms;
          animation-delay: 100ms;
  background-color: #ff79da;
}
.circle--1 .spinner:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
}
.circle--1 .spinner:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 150ms;
          animation-delay: 150ms;
  background-color: #9356dc;
}
.circle--1 .spinner:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.circle--1 .spinner:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
  background-color: #99e2d0;
}
.circle--1 .spinner:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
}
.circle--1 .spinner:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 250ms;
          animation-delay: 250ms;
  background-color: #ff79da;
}
.circle--1 .spinner:nth-child(6) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
}
.circle--1 .spinner:nth-child(6)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 300ms;
          animation-delay: 300ms;
  background-color: #9356dc;
}
.circle--1 .spinner:nth-child(7) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
}
.circle--1 .spinner:nth-child(7)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 350ms;
          animation-delay: 350ms;
  background-color: #99e2d0;
}
.circle--1 .spinner:nth-child(8) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.circle--1 .spinner:nth-child(8)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
  background-color: #ff79da;
}
.circle--1 .spinner:nth-child(9) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
}
.circle--1 .spinner:nth-child(9)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 450ms;
          animation-delay: 450ms;
  background-color: #9356dc;
}
.circle--1 .spinner:nth-child(10) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
}
.circle--1 .spinner:nth-child(10)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 500ms;
          animation-delay: 500ms;
  background-color: #99e2d0;
}
.circle--1 .spinner:nth-child(11) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 550ms;
          animation-delay: 550ms;
}
.circle--1 .spinner:nth-child(11)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 550ms;
          animation-delay: 550ms;
  background-color: #ff79da;
}
.circle--1 .spinner:nth-child(12) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.circle--1 .spinner:nth-child(12)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
  background-color: #9356dc;
}
.circle--2 .spinner:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 650ms;
          animation-delay: 650ms;
}
.circle--2 .spinner:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 650ms;
          animation-delay: 650ms;
  background-color: #99e2d0;
}
.circle--2 .spinner:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
}
.circle--2 .spinner:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 700ms;
          animation-delay: 700ms;
  background-color: #ff79da;
}
.circle--2 .spinner:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
}
.circle--2 .spinner:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 750ms;
          animation-delay: 750ms;
  background-color: #9356dc;
}
.circle--2 .spinner:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
.circle--2 .spinner:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
  background-color: #99e2d0;
}
.circle--2 .spinner:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 850ms;
          animation-delay: 850ms;
}
.circle--2 .spinner:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 850ms;
          animation-delay: 850ms;
  background-color: #ff79da;
}
.circle--2 .spinner:nth-child(6) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
}
.circle--2 .spinner:nth-child(6)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 900ms;
          animation-delay: 900ms;
  background-color: #9356dc;
}
.circle--2 .spinner:nth-child(7) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 950ms;
          animation-delay: 950ms;
}
.circle--2 .spinner:nth-child(7)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 950ms;
          animation-delay: 950ms;
  background-color: #99e2d0;
}
.circle--2 .spinner:nth-child(8) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}
.circle--2 .spinner:nth-child(8)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
  background-color: #ff79da;
}
.circle--2 .spinner:nth-child(9) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 1050ms;
          animation-delay: 1050ms;
}
.circle--2 .spinner:nth-child(9)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1050ms;
          animation-delay: 1050ms;
  background-color: #9356dc;
}
.circle--2 .spinner:nth-child(10) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
}
.circle--2 .spinner:nth-child(10)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1100ms;
          animation-delay: 1100ms;
  background-color: #99e2d0;
}
.circle--2 .spinner:nth-child(11) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 1150ms;
          animation-delay: 1150ms;
}
.circle--2 .spinner:nth-child(11)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1150ms;
          animation-delay: 1150ms;
  background-color: #ff79da;
}
.circle--2 .spinner:nth-child(12) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner-inverse 1000ms linear forwards;
          animation: spinner-inverse 1000ms linear forwards;
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
}
.circle--2 .spinner:nth-child(12)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1200ms;
          animation-delay: 1200ms;
  background-color: #9356dc;
}
.circle--3 .spinner:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1250ms;
          animation-delay: 1250ms;
}
.circle--3 .spinner:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1250ms;
          animation-delay: 1250ms;
  background-color: #99e2d0;
}
.circle--3 .spinner:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1300ms;
          animation-delay: 1300ms;
}
.circle--3 .spinner:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1300ms;
          animation-delay: 1300ms;
  background-color: #ff79da;
}
.circle--3 .spinner:nth-child(3) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1350ms;
          animation-delay: 1350ms;
}
.circle--3 .spinner:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1350ms;
          animation-delay: 1350ms;
  background-color: #9356dc;
}
.circle--3 .spinner:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
}
.circle--3 .spinner:nth-child(4)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1400ms;
          animation-delay: 1400ms;
  background-color: #99e2d0;
}
.circle--3 .spinner:nth-child(5) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1450ms;
          animation-delay: 1450ms;
}
.circle--3 .spinner:nth-child(5)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1450ms;
          animation-delay: 1450ms;
  background-color: #ff79da;
}
.circle--3 .spinner:nth-child(6) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
}
.circle--3 .spinner:nth-child(6)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1500ms;
          animation-delay: 1500ms;
  background-color: #9356dc;
}
.circle--3 .spinner:nth-child(7) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1550ms;
          animation-delay: 1550ms;
}
.circle--3 .spinner:nth-child(7)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1550ms;
          animation-delay: 1550ms;
  background-color: #99e2d0;
}
.circle--3 .spinner:nth-child(8) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1600ms;
          animation-delay: 1600ms;
}
.circle--3 .spinner:nth-child(8)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1600ms;
          animation-delay: 1600ms;
  background-color: #ff79da;
}
.circle--3 .spinner:nth-child(9) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1650ms;
          animation-delay: 1650ms;
}
.circle--3 .spinner:nth-child(9)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1650ms;
          animation-delay: 1650ms;
  background-color: #9356dc;
}
.circle--3 .spinner:nth-child(10) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1700ms;
          animation-delay: 1700ms;
}
.circle--3 .spinner:nth-child(10)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1700ms;
          animation-delay: 1700ms;
  background-color: #99e2d0;
}
.circle--3 .spinner:nth-child(11) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1750ms;
          animation-delay: 1750ms;
}
.circle--3 .spinner:nth-child(11)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1750ms;
          animation-delay: 1750ms;
  background-color: #ff79da;
}
.circle--3 .spinner:nth-child(12) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-animation: spinner 1000ms linear forwards;
          animation: spinner 1000ms linear forwards;
  -webkit-animation-delay: 1800ms;
          animation-delay: 1800ms;
}
.circle--3 .spinner:nth-child(12)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: scale(0);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.6;
  -webkit-animation: blow-up 1000ms ease-in-out;
          animation: blow-up 1000ms ease-in-out;
  -webkit-animation-delay: 1800ms;
          animation-delay: 1800ms;
  background-color: #9356dc;
}

.bar-flow {
  position: absolute;
  width: 300px;
  height: 40px;
}
.bar-flow .bubble {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: antiquewhite;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: scale(0);
  -webkit-animation: bubbles-slide 1000ms ease-in-out;
          animation: bubbles-slide 1000ms ease-in-out;
}
.bar-flow .bubble:nth-child(1) {
  -webkit-animation-delay: 1850ms;
          animation-delay: 1850ms;
  background-color: #99e2d0;
}
.bar-flow .bubble:nth-child(2) {
  -webkit-animation-delay: 1900ms;
          animation-delay: 1900ms;
  background-color: #ff79da;
}
.bar-flow .bubble:nth-child(3) {
  -webkit-animation-delay: 1950ms;
          animation-delay: 1950ms;
  background-color: #9356dc;
}
.bar-flow .bubble:nth-child(4) {
  -webkit-animation-delay: 2000ms;
          animation-delay: 2000ms;
  background-color: #99e2d0;
}
.bar-flow .bubble:nth-child(5) {
  -webkit-animation-delay: 2050ms;
          animation-delay: 2050ms;
  background-color: #ff79da;
}
.bar-flow .bubble:nth-child(6) {
  -webkit-animation-delay: 2100ms;
          animation-delay: 2100ms;
  background-color: #9356dc;
}
.bar-flow .bubble:nth-child(7) {
  -webkit-animation-delay: 2150ms;
          animation-delay: 2150ms;
  background-color: #99e2d0;
}
.bar-flow .bubble:nth-child(8) {
  -webkit-animation-delay: 2200ms;
          animation-delay: 2200ms;
  background-color: #ff79da;
}
.bar-flow .bubble:nth-child(9) {
  -webkit-animation-delay: 2250ms;
          animation-delay: 2250ms;
  background-color: #9356dc;
}
.bar-flow .bubble:nth-child(10) {
  -webkit-animation-delay: 2300ms;
          animation-delay: 2300ms;
  background-color: #99e2d0;
}
.bar-flow .bubble:nth-child(11) {
  -webkit-animation-delay: 2350ms;
          animation-delay: 2350ms;
  background-color: #ff79da;
}
.bar-flow .bubble:nth-child(12) {
  -webkit-animation-delay: 2400ms;
          animation-delay: 2400ms;
  background-color: #9356dc;
}

.title {
  font-family: "Shrikhand";
  font-size: 40px;
  width: 300px;
  height: 60px;
  position: absolute;
  top: 25%;
  right: -50px;
}
.title_writing {
  position: relative;
  z-index: -1;
  background: linear-gradient(to left, #9356dc, #ff79da, #99e2d0);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.title_writing_cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  color: rgb(163, 161, 161);
  -webkit-animation: logo-reveal 1000ms forwards;
          animation: logo-reveal 1000ms forwards;
  -webkit-animation-delay: 2400ms;
          animation-delay: 2400ms;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgb(246, 246, 246);
  padding-bottom: 55px;
}
.intro_map {
  width: 100%;
  height: 50px;
  background-color: #e9e9e9;
  box-shadow: inset 0px 8px 3px -4px lightgray;
  font-weight: 700;
  font-size: 0.98em;
  color: #444444;
  text-align: center;
  padding-top: 15px;
}
.intro_map i {
  margin-right: 10px;
  margin-left: -20px;
}
.intro_title {
  text-align: center;
  margin: 40px 20px 30px 20px;
}
.intro_title p {
  font-size: 1.125em;
  font-weight: 200;
  margin-top: 40px;
}

.steps {
  font-size: 16px;
  font-weight: 700;
  padding: 55px 20px 70px 20px;
}
.steps h2 {
  margin-bottom: 30px;
}
.steps_container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 10px;
  background-color: white;
  counter-reset: stepnumber;
}
@media screen and (min-width: 700px) {
  .steps_container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.restaurants {
  padding: 55px 20px;
  width: 100%;
  background-color: rgb(246, 246, 246);
}
.restaurants h2 {
  margin-bottom: 20px;
}
.restaurants_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 700px) {
  .restaurants_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.cover {
  width: 100%;
  height: 275px;
}
@media screen and (min-width: 700px) {
  .cover {
    height: 375px;
  }
}
.cover img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 275px;
}
@media screen and (min-width: 700px) {
  .cover img {
    height: 400px;
    -o-object-position: top 60% right 0px;
       object-position: top 60% right 0px;
  }
}

.menu {
  background-color: rgb(246, 246, 246);
  border-radius: 40px 40px 0px 0px;
  position: relative;
  margin-top: -50px;
  padding: 20px 17px 80px 17px;
}
.menu_title {
  display: flex;
  justify-content: space-between;
  margin: 10px 10px 30px 0px;
  gap: 20px;
}
@media screen and (min-width: 700px) {
  .menu_title {
    justify-content: center;
    gap: 50px;
  }
}
.menu_title h3 {
  font-family: "Shrikhand";
  font-size: 1.8em;
  font-weight: 500;
}
@media screen and (min-width: 700px) {
  .menu_container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
}
.menu_btn {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.menu_btn .btn {
  width: 190px;
}

.menu-part_title {
  text-transform: uppercase;
  font-size: 1.07em;
  color: #444444;
  width: 43px;
  padding-bottom: 5px;
  border-bottom: 3px solid #99e2d0;
  white-space: nowrap;
  -webkit-animation: slide 1000ms;
          animation: slide 1000ms;
}
.menu-part_container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 15px 0px 40px 0px;
}
@media screen and (min-width: 700px) {
  .menu-part {
    flex: 1 1 250px;
    max-width: 400px;
  }
}/*# sourceMappingURL=main.css.map */