.image-container {
  background-color: #000000;
  position: relative;
  display: inline-block;
  width: 300px;
  height: 200px;
  overflow: hidden;
}

.image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.5s ease;
}

.text-overlay {
  font-family: 'Bauer Bodoni Black BT';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  /*text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);*/
  z-index: 1;
  transition: opacity 0.5s ease;
}

.image-container:hover .image {
  opacity: 1.0;
}

.image-container:hover .text-overlay {
  opacity: 0;
}

@media (min-width: 768px) {
  #div-departements {
    padding: 3em;
  }
}

@media (max-width: 767px) {
  #div-departements {
    padding: 0em;
  }
}

