/* Loader*/
@keyframes fadeIn {
  to {
    opacity: 0;
    z-index: -1;
  }
}
.content-wrapper {
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 1;
  animation: fadeIn 1s ease 4s forwards;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrapper .loader {
  background: linear-gradient(90deg, rgb(131, 58, 180) 0%, rgb(253, 29, 29) 50%, rgb(252, 176, 69) 100%);
  width: 20vh;
  height: 20vh;
  animation: spin 3s linear;
  position: absolute;
  border-radius: 50%;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*CSS START HERE*/       
header {
  display: flex;
  padding: 1rem 1rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  header {
    padding: 1rem 1rem;
    position: relative;
    z-index: 1000;
  }
}

.header__logo {
  font-family: "Shrikhand", "cursive";
  margin: 0;
  text-align: center;
}

.city {
  display: flex;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap: 17px;
  flex-shrink: 0;
  background: #EAEAEA;
  align-self: stretch;
}
.city svg {
  width: 12px;
  height: 16px;
  flex-shrink: 0;
}
.city p {
  color: #353535;
  font-size: 16px;
  font-weight: 500;
}

.book {
  color: #353535;
  font-size: 16px;
  font-weight: 500;
  background-color: #F6F6F6;
}
.book h1 {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 39px 58px 0px 42px;
  height: 68px;
}
.book h2 {
  color: #353535;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  padding-bottom: 27px;
}
.book .book__center-btn {
  display: flex;
  justify-content: center;
  padding-bottom: 70px;
  height: 50px;
  flex-shrink: 0;
  margin: 13px 18px 13px 18px;
}
@media (min-width: 768px) {
  .book .book__center-btn {
    padding-bottom: 30px;
  }
}
.working {
  margin-bottom: 68px;
}
@media (min-width: 768px) {
  .working {
    display: flex;
    padding: 50px 180px;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    align-self: stretch;
  }
}
.working h2 {
  padding: 48px 80px 26px 20px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .working h2 {
    padding: 0;
  }
}

.working__number {
  --number-radius:24px;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  width: var(--number-radius);
  height: var(--number-radius);
  background-color: #9356dc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: calc(var(--number-radius) / -2);
}

.working__center-btn {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  padding-left: 32px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .working__center-btn {
    flex-direction: initial;
  }
}

.restaurants {
  background: #F6F6F6;
  padding-bottom: 66px;
}
@media (min-width: 768px) {
  .restaurants {
    padding: 30px 180px;
  }
}
.restaurants h2 {
  padding: 54px 80px 0 20px;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 20px;
}

.restaurants__list {
  grid-template-columns: repeat(1, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 2rem;
  display: grid;
  padding-left: 17px;
  padding-right: 18px;
}
@media (min-width: 768px) {
  .restaurants__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

a {
  text-decoration: none;
}
a:hover {
  transform: scale(1.015);
}

.restaurants__card {
  border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  text-decoration: none;
}
@media (min-width: 768px) {
  .restaurants__card {
    width: 490px;
  }
}
.restaurants__card .restaurants__btn-new {
  border-radius: 2px;
  background: #99E2D0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  color: #008766;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  position: absolute;
  top: 5%;
  right: 5%;
  border: #99E2D0;
  padding: 7px 9px 7px 9px;
}
.restaurants__card img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.restaurants__card__txt {
  padding: 16px 0 12px 13px;
  position: relative;
}
.restaurants__card__txt i {
  position: absolute;
  top: 30%;
  font-size: 25px;
  right: 8%;
}/*# sourceMappingURL=home.css.map */