.block-hero-full-height {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: auto;
  padding: 3rem 1.5rem;
  overflow: hidden;
  background-color: #1B1E1D;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height {
    min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-full-height {
    min-height: calc(100vh - 90px);
  }
}
.block-hero-full-height__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.block-hero-full-height__container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}
.block-hero-full-height__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  width: 724px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__divider {
    gap: 18px;
    margin-bottom: 13px;
  }
}
@media only screen and (min-width: 992px) {
  .block-hero-full-height__divider {
    gap: 26px;
    margin-bottom: 16px;
  }
}
.block-hero-full-height__divider-line {
  flex: 1;
  height: 1px;
}
@media only screen and (min-width: 1200px) {
  .block-hero-full-height__divider-line {
    height: 2px;
  }
}
.block-hero-full-height__divider-line:first-of-type {
  background-image: linear-gradient(270deg, #EDA58B 0%, #C05630 33%, #C05630 67%, #883D21 100%);
}
.block-hero-full-height__divider-line:last-of-type {
  background-image: linear-gradient(270deg, #883D21 0%, #C05630 33%, #C05630 67%, #EDA58B 100%);
}
.block-hero-full-height__divider-icon {
  flex-shrink: 0;
  width: 20px;
  height: auto;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__divider-icon {
    width: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-full-height__divider-icon {
    width: 32px;
  }
}
.block-hero-full-height__content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
}
.block-hero-full-height__content h1 {
  margin: 0 auto 20px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__content h1 {
    font-size: 48px;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .block-hero-full-height__content h1 {
    font-size: 72px;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-full-height__content h1 {
    font-size: 95px;
  }
}
.block-hero-full-height__content p {
  margin: 0 auto 1rem;
  font-size: 16px;
  line-height: normal;
  width: 750px;
  max-width: 100%;
  font-weight: 300;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__content p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .block-hero-full-height__content p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .block-hero-full-height__content p {
    font-size: 24px;
  }
}
.block-hero-full-height__content strong {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #883D21, #C05630, #EDA58B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 500;
  text-shadow: none;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__content strong {
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
  }
}
.block-hero-full-height__content > *:last-child {
  margin-bottom: 0;
}
.block-hero-full-height__btn {
  display: none;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__btn {
    display: flex;
  }
}
.block-hero-full-height__pause-btn {
  position: absolute;
  bottom: 60px;
  right: 100px;
  z-index: 3;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.block-hero-full-height__pause-btn g {
  transition: opacity 0.3s ease;
}
.block-hero-full-height__pause-btn circle {
  transition: stroke 0.3s ease;
}
.block-hero-full-height__pause-btn:hover g, .block-hero-full-height__pause-btn:focus g {
  opacity: 1;
}
.block-hero-full-height__pause-btn:hover circle, .block-hero-full-height__pause-btn:focus circle {
  stroke: #C05630;
}
.block-hero-full-height__pause-btn.is-paused .block-hero-full-height__pause-icon {
  display: none;
}
.block-hero-full-height__pause-btn.is-paused .block-hero-full-height__play-icon {
  display: block;
}
.block-hero-full-height__pause-icon {
  display: block;
}
.block-hero-full-height__play-icon {
  display: none;
}
.block-hero-full-height__scroll-btn {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  align-items: center;
  justify-content: center;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease-out;
  animation: bounce 2s infinite;
  background-color: transparent;
  border: none;
  border-radius: 50%;
}
.block-hero-full-height__scroll-btn:hover {
  animation-play-state: paused;
}
.block-hero-full-height__scroll-btn:focus {
  outline: 2px solid #C05630;
  outline-offset: 2px;
}
.block-hero-full-height__scroll-icon {
  width: 24px;
  height: 24px;
  fill: #fff;
}
@media only screen and (min-width: 768px) {
  .block-hero-full-height__scroll-icon {
    width: 28px;
    height: 28px;
  }
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/*# sourceMappingURL=hero-full-height.css.map */
