@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

p,
a {
  font-family: 'Cairo';
}
.dish{
  margin-top: 100px;
}
.dish h2{
  padding-bottom: 10px;
  font-size: 35px;
  text-align: center;
  color: var(--main-color);
  font-weight: bold !important;
}
.dish .swiper {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  flex-wrap: wrap;
  place-items: center;
  margin-bottom: 50px;
  margin-top: 20px;
}
.dish .swiper .swiper-slide {
  text-align: center;
  max-width: 250px;
  max-height: 250px;
  font-size: 18px;
  width: 26vw;
  height: 26vw;
  min-width: 90px;
  min-height: 90px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

@keyframes music {
  0% {
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
  
  
}
.dish .swiper .swiper-slide img:hover {
  animation: music 2s;
  animation-iteration-count: 1;
}

.dish .swiper .swiper-wrapper {
  align-items: center;
  transition: 1s;
}

@media (max-width:600px) {
  .dish .swiper .swiper-wrapper {
    scale: .8;
  }
}

@media (max-width:400px) {
  .dish .swiper .swiper-wrapper {
    scale: .5;
  }
}

.dish .swiper .swiper-slide img {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 50%;
  top: 0;
  right: 0;
  object-fit: cover;
}

.dish .swiper .all-in {
  position: absolute;
  bottom: 0;
  height: 45%;
  padding: 0 9%;
}
@media (max-width:620px) {
  .dish h2{
      font-size:25px;
  }
}
#city-select {
  position: absolute;
  top: 16%;
  left: 4%;
  outline: none;
  border: 2px #8b322c solid;
  border-radius: 6px;
  width: 115px;
}
 .new-cont{
     position:relative;
 }
 @media (max-width:621px) {
  #city-select {
    width: 75px;
    font-size: small;
  }
}
 @media (max-width:350px) {
  .dish h2{
      font-size:20px;
  }
  #city-select {
      position:relative;
  }
  .new-cont{
     display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin-bottom: 20px;
  }
  .dish h2 {
      padding-bottom:10px;
  }
}