@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Shrikhand&display=swap");
header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  box-shadow: 0 3px 3px 0 #909090;
  background-color: white;
  z-index: 2;
}
header h1 {
  font-family: "Shrikhand", cursive;
}
header i {
  position: absolute;
  left: 2%;
}

.restaurant {
  background-color: #f6f6f6;
  padding: 3rem 1rem;
}
@media only screen and (min-width: 1200px) {
  .restaurant {
    padding: 3rem 3rem;
  }
}
.restaurant > div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 600px) {
  .restaurant > div {
    display: grid;
    grid-template-columns: calc(50% - 0.5rem) calc(50% - 0.5rem);
  }
}
@media only screen and (min-width: 1200px) {
  .restaurant > div {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 0.75rem));
  }
}
.restaurant__card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0.1rem 0.1rem 0.5rem 0px #909090;
  transition: transform 0.2s ease-out;
}
.restaurant__card:hover {
  transform: scale(1.05);
}
.restaurant__card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 45vw;
}
@media only screen and (min-width: 600px) {
  .restaurant__card img {
    height: 30vw;
  }
}
@media only screen and (min-width: 1200px) {
  .restaurant__card img {
    height: 15vw;
  }
}
.restaurant__card--new {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #99e2d0;
  color: #1b6150;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  border-bottom-right-radius: 15px;
}
.restaurant__card__details {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 1rem;
}
.restaurant__card__details__text h3 {
  font-size: 1.25rem;
}
.restaurant__card__details__text p {
  font-size: 1rem;
}
.restaurant__card__details__icons {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.75rem;
}
.restaurant__card__details__icons .fa-regular {
  position: absolute;
  transition: color 50ms ease-in-out;
}
.restaurant__card__details__icons .fa-solid {
  color: transparent;
  background: linear-gradient(#9356dc, #ff79da) text;
  transform: scale(0);
  transition: transform 250ms 50ms ease-in;
}
.restaurant__card__details__icons:hover .fa-solid {
  transform: scale(1);
}
.restaurant__card__details__icons:hover .fa-regular {
  color: #9356dc;
}

.heroHeader {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
  background-color: #f6f6f6;
  text-align: center;
}
.heroHeader__text {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.heroHeader__text h2 {
  width: 85%;
}
.heroHeader__cta {
  background: linear-gradient(350deg, #9356dc, #ff79da);
  border: 0px;
  border-radius: 30px;
  color: white;
  padding: 1rem 3rem;
  font-size: 1rem;
  box-shadow: 0.1rem 0.1rem 0.5rem 0px #aaaaaa;
  transition: all 0.3s ease-in-out;
}
.heroHeader__cta:active {
  transform: translateY(0.1rem);
  box-shadow: 0.1rem 0.1rem 0.5rem 0px #909090;
  opacity: 0.8;
}

.working {
  padding: 3rem 1rem;
}
@media only screen and (min-width: 1200px) {
  .working {
    padding: 3rem 3rem;
  }
}
.working__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media only screen and (min-width: 600px) {
  .working__step {
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    margin: 0 0.5rem;
  }
}
.working__step i {
  transition: color 0.2s 0.1s ease-in-out;
}
.working__step--1, .working__step--2, .working__step--3 {
  position: relative;
  width: 65%;
  background-color: #f6f6f6;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  border-radius: 25px;
  box-shadow: 0.1rem 0.1rem 0.5rem 0px #aaaaaa;
}
@media only screen and (min-width: 600px) {
  .working__step--1, .working__step--2, .working__step--3 {
    padding: 1rem 2rem;
    border-radius: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .working__step--1, .working__step--2, .working__step--3 {
    padding: 2rem 3rem;
  }
}
.working__step--1 p, .working__step--2 p, .working__step--3 p {
  font-size: 1rem;
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  .working__step--1 p, .working__step--2 p, .working__step--3 p {
    font-size: 0.7rem;
  }
}
@media only screen and (min-width: 1200px) {
  .working__step--1 p, .working__step--2 p, .working__step--3 p {
    font-size: 1.1rem;
  }
}
.working__step--1:hover::after, .working__step--2:hover::after, .working__step--3:hover::after {
  opacity: 0.2;
}
.working__step--1:hover i, .working__step--2:hover i, .working__step--3:hover i {
  color: #9356dc;
}
.working__step--1::before {
  content: "1";
  text-align: center;
  align-content: center;
  background-color: #9356dc;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 8%;
  height: 35%;
  position: absolute;
  left: -4%;
}
.working__step--1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #9356dc;
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (min-width: 600px) {
  .working__step--1::after {
    border-radius: 15px;
  }
}
.working__step--2::before {
  content: "2";
  text-align: center;
  align-content: center;
  background-color: #9356dc;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 8%;
  height: 35%;
  position: absolute;
  left: -4%;
}
.working__step--2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #9356dc;
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (min-width: 600px) {
  .working__step--2::after {
    border-radius: 15px;
  }
}
.working__step--3::before {
  content: "3";
  text-align: center;
  align-content: center;
  background-color: #9356dc;
  color: white;
  border-radius: 50%;
  display: inline-block;
  width: 8%;
  height: 35%;
  position: absolute;
  left: -4%;
}
.working__step--3::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #9356dc;
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (min-width: 600px) {
  .working__step--3::after {
    border-radius: 15px;
  }
}

* {
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2rem;
  font-weight: 500;
}
@media only screen and (min-width: 600px) {
  h1 {
    font-size: 1.75rem;
  }
}

h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media only screen and (min-width: 600px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6666666667rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media only screen and (min-width: 600px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  font-weight: 300;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
}
@media only screen and (min-width: 600px) {
  body {
    font-size: 1rem;
  }
}

.container {
  margin-top: 3.9rem;
}

.location {
  background-color: #eaeaea;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-weight: 800;
}

.footer {
  background-color: #353535;
  color: white;
  padding: 1rem;
}
@media only screen and (min-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer h3 {
  font-family: "Shrikhand", cursive;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 600px) {
  .footer__details {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer div,
.footer p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.footer__details div {
  display: flex;
  gap: 0.5rem;
}/*# sourceMappingURL=styles.css.map */