@media (min-width: 768px) {
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .gallery-item {
    flex: 1 1 calc(33.333% - 20px);
    box-sizing: border-box;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .gallery-item {
    flex-basis: 100%;
    margin: 0;
    padding: 0;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1; /* Maintain the aspect ratio */
    object-fit: cover;
  }

  /* Ensure that the image height is equal to the device width */
  .gallery-item img {
    height: 100vw; /* Set height equal to 100% of the viewport width */
  }
}



.arrow:hover {
  background:#F0F0F0; 
}
.day {
  border:0px solid #fff; 
  border-radius:50%;
  padding-top:2px;  
}
.day:hover {
  border:2px solid #222222;   
  padding-top:0px;   
}

 


.cookie-consent-container {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  z-index: 1000;
}

.cookie-consent-button {
  color: #fff;
  background-color: #f44336;
  border: none;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
}
