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

/*Reset CSS*/
h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

body {
  margin: 0;
}
body > svg {
  height: 0;
  position: absolute;
}

html {
  scroll-behavior: smooth;
}

/* CSS start here*/
.restaurants__card__txt .heart {
  color: #101010;
  font-size: 1.6rem;
  position: absolute;
  top: 27%;
  right: 6%;
}
.restaurants__card__txt .heart:hover {
  cursor: pointer;
  animation: heart 3s infinite;
  background: linear-gradient(to bottom, #ff79da, #e86edb, #cf64dc, #b35cdc, #9356dc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.menu__title .heart {
  color: #101010;
  font-size: 1.6rem;
}
.menu__title .heart:hover {
  cursor: pointer;
  animation: heart 3s infinite;
  background: linear-gradient(to bottom, #ff79da, #e86edb, #cf64dc, #b35cdc, #9356dc);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.btn-primary {
  border-radius: 25px;
  background: var(--button-gradient, linear-gradient(175deg, #9356DC 0%, #FF79DA 100%));
  border: var(--button-gradient, linear-gradient(175deg, #9356DC 0%, #FF79DA 100%));
  color: var(--white, #FFF);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 13px 18px 13px 18px;
}

.btn-secondary {
  border-radius: 20px;
  background: #F6F6F6;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  height: 72.379px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  border: #F6F6F6;
  width: 322px;
  height: 72px;
  padding-left: 33px;
  display: flex;
  align-items: center;
  gap: 27px;
  position: relative;
}

footer {
  background: #353535;
  padding: 22px 25px 22px 25px;
}
@media (min-width: 768px) {
  footer {
    display: flex;
    padding: 30px 25px;
    align-items: center;
    justify-content: end;
    gap: 16px;
    flex-shrink: 0;
    flex-direction: row-reverse;
  }
}
footer h3 {
  color: #FFF;
  font-family: Shrikhand;
  font-size: 18px;
  font-weight: 400;
  padding-bottom: 16px;
}
footer .footer__menu {
  gap: 7px;
}
@media (min-width: 768px) {
  footer .footer__menu {
    display: flex;
  }
}
footer .footer__icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer p {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding-right: 8px;
  cursor: pointer;
}
footer p a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  padding-right: 8px;
  cursor: pointer;
}

.menu__card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInCard 0.5s ease-in-out forwards;
}

@keyframes fadeInCard {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu__card:nth-child(1) {
  animation-delay: 0s;
}

.menu__card:nth-child(2) {
  animation-delay: 0.3s;
}

.menu__card:nth-child(3) {
  animation-delay: 0.6s;
}

.menu__card:nth-child(4) {
  animation-delay: 0.9s;
}

.menu__card:nth-child(5) {
  animation-delay: 1.2s;
}

.menu__card:nth-child(6) {
  animation-delay: 1.5s;
}

.menu__card:nth-child(7) {
  animation-delay: 1.8s;
}

.menu__card:nth-child(8) {
  animation-delay: 2.1s;
}

.menu__card:nth-child(9) {
  animation-delay: 2.4s;
}

.menu__card:nth-child(10) {
  animation-delay: 2.7s;
}/*# sourceMappingURL=main.css.map */