.parallax-fullwidth-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin: 0;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  max-width: initial;
  overflow: hidden;
}

.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fixed_width_parallax_image .parallax {
  background-size:initial!important;
  background-repeat: no-repeat!important;
}

.parallax img {
  max-height: 700px;
  visibility:visible;
}
@media (min-width: 992px) {
  .parallax img {
    min-height: 370px;
    object-position: center top;
    object-fit: cover;
    width: 100%;
    visibility: hidden;
  }
}

.section1, .section2 {
  width: 100%;
  min-height: 100vh;
  position: relative;
  transform-style: preserve-3d;
}

.section2 {
  background: rgb(68,35,19);
}
.text {
  top: 30%;
  left: 50%;
  position: absolute;
  font-size: 15vw;
  color: #fff;
  text-shadow: 2px 2px 5px rgb(0,0,0,0.3),
  5px 5px 70px rgb(255,255,255,0.5);
  transform: scale(1,1.1) translate(-50%, 10%);
}