/* css/style.css */

  .events-container .slick-slide {
      margin: 0 12px;
  }
  .events-container .slick-list {
      margin: 0 -12x;
  }
.experience-events-section {
    width: 100%;
    padding: 10px 0;
}

.events-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.event-item {
    background-color: #fff;
    width: 48%; 
    text-align: left;
}

.event-item .event-image img {
    width: 100%;
    height: auto;
    display: block;
}

.event-details {
    padding: 20px;
}

.event-details h3 {
    font-family: 'Courier New', Courier, monospace; /* Example font */
    font-size: 24px;
    margin-bottom: 10px;
}

.event-details .event-dates {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.event-details p {
    font-size: 14px;
    line-height: 1.6;
}

.view-button {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid #333;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin-top: 20px;
}

/* Slick Carousel Styles */
.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #333;
}

.slick-dots li.slick-active button:before {
    color: #000;
}
@media screen and (max-width:980px) {
	.event-item {
       display: block !important;
	}
}
@media screen and (max-width:768px) {
	.event-item {
       width: 100%;
	}
}