@font-face {
  font-family: Harrison Serif Pro;
  src: url(../fonts/HarrisonSerifProDEMO-Black.otf)
}

/* font-family: "Harrison Serif Pro", system-ui; */

#container-gallery {
  max-width: 100%;
  margin-top: 50px;
  margin-bottom: -25px;
}

.image-gallery {
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0px;
  align-items: center;
  gap: 15px;
  position: relative;
}

.img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(224, 83, 6, 0.7); /* background: rgba(0, 0, 0, 0.4); */
  border-radius: 10px;

}

.thumb-portrait {
  position: relative;
  width: 200px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(224, 83, 6)
}

.thumb-portrait img {
  width: 200px;
  height: 300px;
  margin-bottom: 5px;
  transition: 0.3s ease;
  border-radius: 10px;
}

.thumb-portrait:hover img {
  transform: scale(1.1);
  opacity: 0.4;
  filter: brightness(75%);
}

.img-wrap .overlay-img {
  position: absolute;
  margin-top: 45px;
  opacity: 0;
  transition: 0.5s;
}

.img-wrap:hover .overlay-img {
  opacity: 1;
  transform: translateY(-15px);
  /* transform: scale(1.4); */
}

.overlay-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  text-align: center;
}

.overlay-img img {
  width: 25px;
  height: auto;
  margin-bottom: 5px;
}

.overlay-img h1 {
  font-family: "Harrison Serif Pro", system-ui;
  margin-bottom: -30px;
  color: #fff;
}

.overlay-img p {
  color: #fff;
  font-size: 15px;
}

.thumb {
  position: relative;
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(224, 83, 6)
}

.thumb img {
  width: 300px;
  height: 200px;
  padding: 0;
  transition: .3s ease;
}

.thumb:hover img {
  transform: scale(1.1);
  opacity: 0.4;
  filter: brightness(75%);
  /* filter: contrast(5%); */
  /* opacity: .5; */
}
