@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');

p,a {
  font-family: 'Cairo';
}
.resturant{
  margin-top: 50px;
  margin-bottom: 50px;
}
.resturant .swiper {
  width: 100%;
  height: 100%;
}
.resturant-head{
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 4%;
  padding-right: 4%;
  margin-bottom: 30px;
}
.resturant .swiper .swiper-slide {
  text-align: center;
  font-size: 18px;
  width: 290px !important;
  height: 290px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.resturant-head h3{
  border-bottom: 1px solid #8b322c;
  font-size: x-large;
  line-height: normal;
}
.resturant-head a{
  color: #8b322c;
  border-bottom: 2px solid #8b322c;
  text-decoration: none;
  font-weight: bold;
}
.resturant-head a:hover{
  color:#fec470;
  border-color:#fec470;
}
.resturant .swiper .swiper-wrapper {
    align-items: center;
    transition: 1s;
}

@media (max-width:600px) {
    .resturant .swiper .swiper-wrapper {
        scale: .8;
    } 
    .resturant-head{
      transform: translateY(30px);
    }
}

@media (max-width:400px) {
    .resturant .swiper .swiper-wrapper {
        scale: .5;
    } 
    .resturant{
      margin: 0 !important;
    }
    .resturant-head {
      transform: translateY(70px);
      height: fit-content;
      margin-bottom: 0;
  }
  .resturant-head h3{
    font-size: medium;
  }
  .resturant-head a{
    font-size: 13px;
  }
}

.resturant .swiper .swiper-slide img {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  object-fit: cover;
}

