


.container1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  
}

.item-container1 {
  position: relative;
  margin: 6px;
  width: 250px;
  height: 350px;
  overflow: hidden;
  background-color: #ffffff00;
  box-shadow: 0 0 30px 5px rgba(255, 167, 140, 0.253);
  cursor: pointer;
  border: 1px solid #ff000031;
  border-radius: 5%;
}

.img-container1,
.body-container1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
}

.img-container1 img {
  width: 100%;
  border-radius: 5%;
}



.overlay {
  position: relative;
  width: 100%;
  height: 270px;
  background-color: rgba(252, 252, 252, 0);
  opacity: 0;
  transition: height linear 0.8s, opacity linear 0.2s;
}

.item-container1:hover .overlay {
  opacity: 1;
  height: 190px;
}

.event-info {
  background-color: #000000d3;
  display: flex;
  border: 2px solid #e91d1d21;
  border-radius: 5%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3px;
  box-shadow: #ff000098;
}

.title1{
  color: #ffffff;
font-size: 1.5em;
font-weight: bold;
letter-spacing: 1px;
margin: 12px;
}
.price {
  color: #ffa600;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 1px;
  margin: 12px;
}

.info {
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.separator {
  width: 20%;
  height: 6px;
  background-color: #ff0101dc;
  margin-bottom: 16px;
}

.additional-info {
  border-top: 1px solid #bbb;
  margin-top: 12px;
  padding: 28px;
  padding-bottom: 0;
}

.additional-info .info {
  font-size: 0.9em;
  margin-bottom: 20px;
  text-align: center;
}

.info i {
  color: #000000;
  font-size: 0.8em;
  margin-right: 4px;
}

.info span {
  color: #ffffff;
  font-weight: bolder;
}

.action {
  color: #ffffff00;
  border: 3px solid #fff;
  background-color: transparent;
  position: absolute;
  top: -120px;
  left: 5%;
  transform: translateX(-50%);
  width: 60%;
  outline: none;
  cursor: pointer;
  padding: 12px;
  text-transform: uppercase;
  font-size: 1.3em;
  font-weight: bold;
  letter-spacing: 2px;
  transition: background-color 0.4s, top 0.4s;
}

.item-container1:hover .action {
  top: 50px;
}

.action:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.container7 {
  max-width: 50px;
  width: 100%;
  padding: 10px;
  text-align: center;
}

h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.card1 {
  background-color: white;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card1 img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
