.hero {
  position: relative;
  background: #A0A09F;
	    height: 100%;
  overflow: visible;
}
.hero .container {
  height: -moz-fit-content;
  height: fit-content;
  overflow: visible;
}
.hero__sticky {
/*   position: sticky; */
	position: relative;
  top: 0;
  z-index: 10;
  background: #A0A09F;
  padding: 36px 0px;
  z-index: 3;
}
.hero__content {
  display: block;
  flex-flow: column;
  height: 100%;
  position: relative;
}
.hero__head {
  padding: 36px 0px;
}
.hero__title {
  font-family: Geist;
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -3%;
  text-transform: uppercase;
  color: #fff;
  overflow: hidden;
}
.hero__title p {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}
.hero__title p:nth-child(2) {
  position: relative;
  transform: translateX(50px);
  left: 30%;
}
.hero__title p:nth-child(3) {
  transform: translateX(-50px);
}
.hero__title.visible p {
  opacity: 1;
  transform: translateX(0);
}
.hero__title.visible p:nth-child(1) {
  transition-delay: 0.2s;
}
.hero__title.visible p:nth-child(2) {
  transition-delay: 0.4s;
}
.hero__title.visible p:nth-child(3) {
  transition-delay: 0.6s;
}
.hero__body {
  height: auto;
  position: relative;
  z-index: 1;
}
.hero__body img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_mini-title {
	position: relative;
	padding-bottom: 48px;
}

.hero_mini-title:before {
	display: none;
}

@media (max-width: 1024px) {
  .hero {
    background: #001c36;
    height: 100%;
	padding-top: 24px;
  }
  .hero__content {
    display: flex;
    flex-flow: column;
  }
  .hero__sticky {
    padding: 0;
  }
  .hero__head {
    padding: 0 0 28px 0;
  }
  .hero__title {
    font-family: Geist;
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: calc((48px / 100) * -3)!important;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
  }
  .hero__title p:nth-child(2) {
    position: relative;
    left: unset;
  }
  .hero__body {
    height: 320px;
  }
  .hero_mini-title {
	padding-bottom: 28px;
  }
}/*# sourceMappingURL=style.css.map */