/* images carousel in awards page */
.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* END images carousel in awards page */



/* Hide arrows by default */
.splide__arrow {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show arrows on hover of the slider */
.splide:hover .splide__arrow {
  opacity: 1;
}

/* Make arrows larger */
.splide__arrow {
  width: 50px;
  height: 50px;
}

/* Make arrow icon bigger */
.splide__arrow svg {
  width: 35px;
  height: 35px;
}

/* Optional: style them nicer */
.splide__arrow {
  background: rgba(0, 0, 0, 0.3);
}



.splide__arrow svg {
  fill: white;
}





