

/* Slide Show */

#slideImg {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.showcase {
  position: relative;
  z-index: 1;
  overflow: visible;
  /* margin-bottom: 100px; */
}

.showcase .overlay {
  width: 100%;
  min-height: 22vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  top: 0;
}

.showcase .padded {
  padding: 20vh 0 10vh 0;
}

.content .title {
  font-size: 70px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  letter-spacing: 3px;
}

.highlight {
  color: var(--cream-color);
  font-weight: bold;
}

/* End */

/* Gallery */

.gallery {
  width: 85%;
  margin: 70px auto;
}

.gallery .text-2 {
  text-align: center;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 2px;
}

.gallery h1 {
  text-align: center;
  font-size: 40px;

  color: #581c1c;
}

.gallery .line-1 {
  width: 15%;
}

.gallery .line-2 {
  width: 8%;
  margin-top: 5px;
}

.gallery .line-3 {
  width: 3%;
  margin-top: 5px;
}

.gallery .lines {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-container {
  width: 32%;
  position: relative;
  overflow: hidden;
}

.gallery-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-container .main-text {
  position: absolute;
  top: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
  background-color: #222222b7;
  color: #fff;
  text-align: center;
  opacity: 0;
  transition-duration: 1s;
}

.gallery-container:hover .main-text {
  top: 0;
  opacity: 1;
}

.gallery-container h2 {
  font-size: 25px;
}
