@font-face {
  font-family: "mainfont";
  src: url(/font/vazir/Vazir-Medium.ttf);
}

* {
  font-family: "mainfont";
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  overflow-x: hidden;
}

.Container {
  width: 100%;
  height: 100%;

  background-color: #819d81;
}
.TopPart {
  background-color: #819d81;
  display: flex;
  justify-content: space-around;
  justify-items: center;
  align-items: center;
  align-content: center;

  width: 100%;
  height: 900px;
}
.TopPart img {
  height: 500px;
  border-radius: 30px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.title {
  color: white;
  font-size: 25px;
  width: 40%;
  direction: rtl;
  text-align: right;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.ButtonHolder {
  margin-top: 20px;

  font-size: 20px;
  display: flex;
  justify-content: space-evenly;
  justify-items: flex-start;
  align-items: flex-start;
  align-content: flex-start;

  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.ButtonHolder a {
  color: white;
  font-size: 20px;
  padding: 15px;
  background: #7a917a;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 15px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}
.ButtonHolder a:hover {
  scale: 1.2;
}
.MiddlePart {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  align-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 22px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "koodak", sans-serif;

  width: 100%;
  height: 900px;
}

/* Slider Css */
swiper-container {
  width: 100%;
  height: auto;
}

swiper-slide {
  text-align: center;
  font-size: 18px;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.ProductImage {
  border-radius: 20px;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.SwiperContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  justify-items: center;
  align-items: center;
  align-content: center;
  width: 100%;
  height: 100%;
}

.MobileHeadLefts li,
.MobileHeadRight li {
  display: none;
}

@media only screen and (max-width: 600px) {
  .SwiperContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    justify-items: center;
    align-items: center;
    align-content: center;
    width: 70%;
    height: 70%;
  }
  .MiddleText {
    text-align: center;
    color: white;
    font-size: 25px;
    padding: 10px;
  }

  .ButtonHolder a {
    color: white;
    font-size: 20px;
    padding: 8px;
    background: #7a917a;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
  }
  .title {
    color: white;
    font-size: 20px;
    width: 70%;
    direction: rtl;
    text-align: right;

    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }

  .TopPart {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .TopPart img {
    height: 300px;
    margin-bottom: 15px;
    border-radius: 30px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  }
}
