.section-header {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #00b6ce; */
}

.section-header h1 {
  width:30%;
  font: 400 32px "Montserrat", sans-serif;
  text-transform: uppercase;
  color: #00b6ce;
  text-align: center;
  padding: 10px;
  font-weight: 900;
  border-bottom: 2px solid #00b6ce
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 20px;
}

.gallery-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  height: 40vh;
  width: auto;
  border-radius: 8px;
  padding: 4px;
  box-sizing: border-box;
}


.gallery img {
  height: 100%;
  width: auto;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: white;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .description {
  opacity: 1;
}
video, iframe{
  height: 40vh;
  width: auto;
}
iframe{
  aspect-ratio:16/9;
}
/* video {
  position: relative;
  outline: none;
}

video::-webkit-media-controls {
  display: none !important;
  visibility: hidden;
}

video:hover::-webkit-media-controls {
  display: block;
  visibility: visible;
} */