/* RESET */
*,
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0 auto;
  padding: 0;
}

img {
  max-width: 100%;
}

/* TYPO */
/* Font-family */
body {
  font-family: "Roboto", sans-serif;
}

.header__logo,
.footer__logo {
  font-family: "Shrikhand", cursive;
}

/* VARIABLES */
/* ANIMATIONS */
/* Keyframes */
/* @-webkit-keyframes loader { */
  /* 0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
} */
@keyframes loader {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
    z-index: -10;
  }
}
/* 
@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0.5rem);
            transform: translateY(0.5rem);
  }
  75% {
    -webkit-transform: translateY(-0.5rem);
            transform: translateY(-0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
} */

@keyframes jump {
  0% {
    /* -webkit-transform: translateY(0); */
            transform: translateY(0);
  }
  25% {
    /* -webkit-transform: translateY(0.5rem); */
            transform: translateY(0.5rem);
  }
  75% {
    /* -webkit-transform: translateY(-0.5rem); */
            transform: translateY(-0.5rem);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*------------------------*/
.loader {
  background-color: whitesmoke;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center; */
          justify-content: center;
  /* -webkit-box-align: center;
      -ms-flex-align: center; */
          align-items: center;
  /* -webkit-animation: loader 1s; */
          animation: loader 1s;
  /* -webkit-animation-delay: 1.5s; */
          animation-delay: 1.5s;
  /* -webkit-animation-fill-mode: both; */
          animation-fill-mode: both;
  z-index: 1000;
}

.loader__title {
  color: #9256dc6e;
  font-family: 'Shrikhand';
  font-size: 1.5rem;
}

.loader__itemContainer {
  width: 9rem;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center; */
          justify-content: center;
}

.loader__itemContainer .loader__item {
  height: 1rem;
  width: 1rem;
  background-color: #9256dc6e;
  border-radius: 50%;
  /* -webkit-animation: jump 1s; */
          animation: jump 1s;
  /* -webkit-animation-iteration-count: 3; */
          animation-iteration-count: 3;
}

.loader__itemContainer .loader__item--2 {
  /* -webkit-animation-delay: 0.25s; */
          animation-delay: 0.25s;
}

.loader__itemContainer .loader__item--3 {
  /* -webkit-animation-delay: 0.5s; */
          animation-delay: 0.5s;
}

.loader__itemContainer .loader__item--4 {
  /* -webkit-animation-delay: 0.75s; */
          animation-delay: 0.75s;
}

.loader__itemContainer .loader__item--5 {
  /* -webkit-animation-delay: 1s; */
          animation-delay: 1s;
}

.header_home {
  background: #fff;
  padding: 1em;
  /* -webkit-box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329); */
  box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329);
  position: relative;
}

.header_home .header__logo {
  text-align: center;
}

.where {
  cursor: pointer;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center; */
  justify-content: center;
  background: whitesmoke;
  font-size: 1.2rem;
  font-weight: bold;
}

.where .fa-map-marker-alt {
  padding: 1.2em;
}

.about .container {
  padding: 2em;
  text-align: center;
}

.about .container .about__content {
  margin: 2em 0;
}

.about .container .btn {
  cursor: pointer;
  /* background: -webkit-gradient(linear, left top, left bottom, from(#ff79da), to(#9356dc)); */
  background: linear-gradient(#ff79da, #9356dc);
  border-radius: 2rem;
  /* -webkit-box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329); */
  box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329);
  padding: 0.75em 1.5em;
  margin-top: 1em;
  margin: auto;
  width: 15rem;
  /* -webkit-transform: scale(1); */
          transform: scale(1);
  /* -webkit-transition: -webkit-transform 400ms; */
  /* transition: -webkit-transform 400ms; */
  transition: transform 400ms;
  /* transition: transform 400ms, -webkit-transform 400ms; */
}

.about .container .btn:hover {
  /* -webkit-transform: scale(1.15); */
          transform: scale(1.15);
  /* -webkit-box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.8); */
  box-shadow: 0 1rem 2rem rgba(20, 20, 20, 0.8);
  /* background: -webkit-gradient(linear, left top, left bottom, from(#ffb3e9), to(#bb95e9)); */
  background: linear-gradient(#ffb3e9, #bb95e9);
}

.about .container .btn .about__btn {
  text-decoration: none;
  color: #fff;
}

.how {
  /* display: -webkit-box; */
  /* display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column; */
          flex-direction: column;
}

.how .how__title {
  margin-left: 1em;
  text-align: left;
}

.how .container {
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center; */
  justify-content: center;
  padding: 0 1.5em;
}

.how .container ol {
  list-style: none;
  padding: 0.75em;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -ms-flex-wrap: wrap; */
      flex-wrap: wrap;
}

.how .container .step {
  /* display: -webkit-box; */
  /* display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-pack: center;
      -ms-flex-pack: center; */
          justify-content: center;
  /* -webkit-box-align: center;
      -ms-flex-align: center; */
          align-items: center;
  padding: 1.5em;
  margin: 0.8em;
  /* -webkit-box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329); */
  box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329);
  border-radius: 1.5rem;
  background: whitesmoke;
  position: relative;
}

.how .container .step .step__counter {
  text-align: center;
  /* -webkit-box-align: center;
      -ms-flex-align: center; */
  align-items: center;
  padding: 0.2em;
  position: absolute;
  left: -1em;
  background: #9356dc;
  color: #fff;
  border-radius: 3rem;
  height: 1.5rem;
  width: 1.5rem;
}

.how .container .step .step__icon {
  color: #7e7e7e;
  padding: 0 0.5em;
}

#restaurants {
  background: #f7f7f7;
  padding: 2em 1em;
}

.cards {
  display: -ms-grid;
  display: grid;
  /* -ms-grid-columns: 1fr; */
  grid-template-columns: 1fr;
  /* -webkit-column-gap: 2rem; */
  column-gap: 2rem;
  row-gap: 2rem;
}

@media (min-width: 768px) {
  .cards {
    /* -ms-grid-columns: 1fr 1fr; */
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: #fff;
  border-radius: 1rem;
  text-decoration: none;
  /* -webkit-box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329); */
  box-shadow: 0 0.5rem 0.5rem rgba(10, 10, 10, 0.329);
  color: inherit;
  display: block;
  position: relative;
}

.card .card__badge {
  background: #99e2d0;
  color: #1b6150;
  padding: 0.5em;
  border-radius: 0.15rem;
  position: absolute;
  right: 1em;
  top: 1em;
}

.card .card__img {
  /* -o-object-fit: cover; */
  object-fit: cover;
  height: 12rem;
  width: 100%;
  border: 0 solid transparent;
  border-radius: 1rem 1rem 0 0;
}

.card .card__footer {
  /* 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;
  padding: 1em;
}

.card .card__footer .card__content {
  line-height: 1rem;
}

.card .card__footer .card__btn {
  font-size: xx-large;
  position: relative;
  /* -webkit-transition: all 450ms; */
  transition: all 450ms;
}

.card .card__footer .card__btn:hover {
  /* -webkit-transform: scale(1.1); */
  transform: scale(1.1);
}

.card .card__footer .card__btn:hover .icon--noBG {
  opacity: 0;
}

.card .card__footer .card__btn:hover .icon--BG {
  opacity: 1;
  /* -webkit-animation: fadein 1s; */
  animation: fadein 1s;
}

.card .card__footer .card__btn .icon--noBG {
  opacity: 1;
}

.card .card__footer .card__btn .icon--BG {
  position: absolute;
  opacity: 0;
  left: 0;
  /* background: -webkit-gradient(linear, left top, right top, from(#ff79da), to(#9356dc)); */
  background: linear-gradient(to right, #ff79da, #9356dc);
  /* background-clip: text; */
  -webkit-background-clip: text;
  color: transparent;
  /* -webkit-text-fill-color: transparent; */
}

.card figure {
  width: 100%;
  /* display: -webkit-box;
  display: -ms-flexbox; */
  display: flex;
  /* -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column; */
  flex-direction: column;
  margin: auto;
  border-radius: 1rem;
}

footer .container {
  background: #383737;
  padding: 1em;
}

footer .footer__logo {
  font-family: "Shrikhand", cursive;
  text-align: left;
  font-size: 1.5rem;
  color: #fff;
}

footer .footer__nav .footer__list {
  list-style: none;
  line-height: 1.5rem;
  padding: 1em 0;
}

footer .footer__nav .footer__list .footer__link {
  color: #fff;
  text-decoration: none;
  line-height: 1.7rem;
}

footer .footer__nav .footer__list .footer__link .footer__icon {
  margin-right: 0.5em;
}
