/* here is exhibit section */
.stall-visit {
  max-width: 200px;
}
.stall-visit img {
  width: 100%;
  height: 100%;
}
.exhibit-main {
  overflow: hidden;
}
/* img segamrnt */
.product-box {
  text-align: center;
  padding: 20px;
}

.product-img-box {
  max-width: 150px;
  margin: auto;
  background-color: var(--light-color);
  box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
  border-radius: 10px;
  padding: 20px;
}

/* Ensuring images are fully responsive */
.product-img-box .product-img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  display: block !important;
}

/* Adding hover effect */
.product-img-box img:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.hightlight-product-text {
  font-size: 18px;
  color: var(--dark-color);
}
/* Styling the text */

.product-title {
  font-family: myFont;
  margin-top: 15px;
  font-size: 20px;
  color: #000;
  font-weight: 600;
}
.visitore-product-box {
  background-color: var(--secondary-color);
}
.visitor-product-heding-2 {
  font-size: 50px;
  font-family: myFont;
  font-weight: 900;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: -15px;
}

/* meduim and mobile screen */
@media screen and (min-width: 320px) and (max-width: 768px) {
  .visitor-product-heding-2 {
    font-size: 30px;
    margin-bottom: -10px;
  }
}
/* Exhibition Calendar  satrt */

.calendar-card {
  position: relative;
}
.calendar-card .calendar-event {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.calendar-card .calendar-event .event-img {
  max-width: 200px;
}
.event-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.event-icon {
  font-size: 20px;
  color: var(--primary-color);
}
.calendar-txt h3 {
  margin-bottom: 5px;
  font-family: myFont;
  padding: 5px;
  font-size: 1.2rem;
}
.calendar-txt span {
  font-size: 1rem;
  padding: 5px;
  font-family: myFont;
  color: #000;
}
/* Exhibition Calendar end */
