.oes-wrap {
  width: 100%;
  padding: 55px 24px 80px;
  overflow: hidden;
  background: #fff;
}

.oes-wrap--full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
}

.oes-wrap *,
.oes-wrap *::before,
.oes-wrap *::after {
  box-sizing: border-box;
}

.oes-eco {
  --oes-text: #fff;
  --oes-accent: #e31e24;
  --oes-overlay-start: rgba(5, 14, 6, .82);
  --oes-overlay-end: rgba(5, 12, 6, .15);
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 670px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  background: #182016;
  color: var(--oes-text);
  font-family: "Poppins", sans-serif;
  isolation: isolate;
}

.oes-eco__background {
  position: absolute;
  inset: -12%;
  z-index: 0;
  background-position: var(--oes-position-desktop, 50% 50%);
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translate3d(0, 0, 0) scale(.9);
  transition: transform .08s linear;
}

.oes-eco__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, var(--oes-overlay-start), var(--oes-overlay-end) 75%);
}

.oes-eco__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(40px, 6vw, 85px);
}

.oes-wrap--reveal .oes-eco__content {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .75s ease, transform .75s ease;
}

.oes-wrap--reveal.is-visible .oes-eco__content,
.elementor-editor-active .oes-wrap--reveal .oes-eco__content {
  opacity: 1;
  transform: none;
}

.oes-eco__kicker {
  margin: 0 0 20px;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.oes-eco__title {
  margin: 0 0 26px;
  padding: 0;
  color: inherit;
  font-family: "TW Cen MT", "Century Gothic", Futura, sans-serif;
  font-size: clamp(55px, 6vw, 90px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: normal;
  text-transform: none;
}

.oes-eco__title span {
  display: block;
}

.oes-eco__description {
  max-width: 460px;
  margin: 0;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.oes-eco__button {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  margin-top: 30px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 30px;
  background: transparent !important;
  color: var(--oes-text) !important;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .08em;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.oes-eco__button i {
  color: var(--oes-accent);
  font-size: 18px;
  font-style: normal;
  line-height: 1;
}

.oes-eco .oes-eco__button:hover,
.oes-eco .oes-eco__button:focus-visible {
  border-color: #fff;
  background: #fff !important;
  color: #111 !important;
}

@media (max-width: 900px) {
  .oes-eco {
    height: 620px;
  }
}

@media (max-width: 600px) {
  .oes-wrap {
    padding: 40px 14px 55px;
  }

  .oes-eco {
    height: 640px;
  }

  .oes-eco__background {
    inset: -18%;
    background-position: var(--oes-position-mobile, 50% 50%);
  }

  .oes-eco__content {
    justify-content: center;
    padding: 34px;
  }

  .oes-eco__title {
    font-size: clamp(50px, 16vw, 68px);
  }

  .oes-eco__description {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oes-eco__background,
  .oes-eco__content {
    transition: none !important;
    transform: none !important;
  }
}

