
#Menu_Hot_Section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
._container {
  /* max-width: 1400px; */
  width: 100%;
  padding: 80px 60px;
  background: var(--bg-color1);
}
.slide-container {
  margin: 0 30px 30px 30px;
  overflow: hidden;
}
.card {
  background: #fff;
  border-radius: 15px;
  border: 1px solid white;
}
.card .image-box img {
  width: 100%;
  border-radius: 15px 15px 0 0;
  aspect-ratio: 1 / 1;
}
.card .profile-details {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding: 15px;
}
.card .profile-details img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
}
.profile-details .name-job {
  height: 9vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.profile-details .name {
  font-size: 15px;
  font-weight: 200;
  color: #000;
  text-align: center;
}
.profile-details .job {
  font-size: 12px;
  font-weight: 500;
  color: var(--title1);
}
.swiper-navBtn {
  color: #000;
  height: 50px;
  width: 50px;
  transform: translateY(-40%);
  background: #fff;
  border-radius: 50%;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 24px;
}
.swiper-pagination-bullet {
  background-color: #333;
}
.swiper-slide.last-slide {
  background-color: var(--param1);
  transition: 0.3s;
  transform-origin: 0 50%;
}
.swiper-slide.last-slide:hover {
  background-color: var(--param2);
}
.swiper-slide.last-slide:hover h2 {
  color: var(--param1);
}
.card .image-box {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .swiper-navBtn {
    display: none;
  }
  ._container {
    padding: 50px 0px;
  }
}
@media screen and (max-width: 899px) {
  .card .image-box {
    min-height: auto;
  }
}