.hero-campaign {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-campaign--background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  animation: marquee 280s infinite linear;
  background-attachment: fixed;
}
.hero-campaign--background-image img {
  width: 100%;
}
.hero-campaign--background-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  width: 70%;
  background: linear-gradient(90deg, #FFFFFF 45%, rgba(255, 255, 255, 0) 100%);
}
.hero-campaign--content {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 48px);
  height: 100%;
  padding: 0 24px;
}
.hero-campaign--content--wrapper {
  max-width: 1416px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.hero-campaign--logo {
  height: 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-campaign--logo--link {
    display: inline-flex;
}
.hero-campaign--logo .btn {
  margin-right: 0;
}
.hero-campaign--subtitle {
  font-size: calc(14px + 0.5vw);
}
.hero-campaign--content--main {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-campaign--screen {
  position: absolute;
  right: 0;
  z-index: 1000;
  height: 100%;
  display: none;
  align-items: center;
}
.hero-campaign--screen--content {
  position: relative;
  margin-right: -110px;
  transition: margin-right 1s;
  cursor: pointer;
}
.hero-campaign--screen--content--mobile br {
  display: none;
}
.hero-campaign--screen--content:hover {
  margin-right: -90px;
}
.hero-campaign--screen--content svg {
  position: absolute;
  top: 25px;
  left: 26px;
}
.hero-campaign--screen--thank-you {
  display: none;
  position: absolute;
  right: 24px;
  z-index: 1000;
  height: 550px;
  align-items: center;
  top: calc(50% - 275px);
}
.hero-campaign--screen--thank-you img {
  position: relative;
  height: 100%;
  border-radius: 22px;
}
.hero-campaign--screen--thank-you--background-overlay {
  position: absolute;
  width: 96%;
  height: 96%;
  background: linear-gradient(104deg, #FFFFFF 25%, rgba(255, 255, 255, 0) 75%);
  top: 11px;
  left: 11px;
  border-radius: 10px;
  opacity: 0.6;
}
.hero-campaign--screen--content--text--thank-you {
  position: absolute;
  left: 36px;
  top: 34px;
  font-size: 22px;
  font-family: Rajdhani;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #134e5e;
}
.hero-campaign--screen--content--text--thank-you--white {
  color: white;
}
.hero-campaign--subtitle {
  font-family: 'Bitter';
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #666666;
}
.hero-campaign--screen--content--text {
  position: absolute;
  left: 26px;
  bottom: 14px;
  font-family: 'Rajdhani';
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #134E5E;
}
.hero-campaign--content--wrapper h1 {
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10%;
}
@media only screen and (min-width: 767px) {
  .hero-campaign--content--main {
    justify-content: center;
  }
  .hero-campaign--content--wrapper h1 {
    margin-top: 0%;
  }
}
@media only screen and (min-width: 800px) {
  .hero-campaign--screen {
    display: flex;
  }
  .hero-campaign--screen--content--mobile {
    display: none;
  }
  .hero-campaign--content--wrapper .hero-campaign--content--main h1, .hero-campaign--content--wrapper .hero-campaign--content--main p {
    max-width: 600px;
  }
}
@media only screen and (min-width: 940px) {
  .hero-campaign--content--wrapper .hero-campaign--content--main h1, .hero-campaign--content--wrapper .hero-campaign--content--main p {
    max-width: 800px;
  }
  .hero-campaign--content--main--thank-you {
    width: 60%;
  }
  .hero-campaign--screen--thank-you {
    height: 420px;
    top: calc(50% - 156px);
    display: initial;
  }
}
@media only screen and (min-width: 1280px) {
  .hero-campaign {
    min-height: 1000px;
  }
  .hero-campaign--background-image {
    background-position-x: 300px;
  }
  .hero-campaign--content--wrapper h1 {
    font-size: 80px;
  }
  .hero-campaign--content {
    width: calc(100% - 6rem);
    padding: 0 3rem;
  }
  .hero-campaign--screen--thank-you {
    right: 14%;
   }
  .hero-campaign--screen--content--text--thank-you {
    left: 48px;
    top: 42px;
    font-size: 28px;
  }
}
@media only screen and (min-width: 1460px) {
  .hero-campaign--screen--thank-you {
    height: 550px;
    top: calc(50% - 275px);
  }
  .hero-campaign--screen--content--text--thank-you {
    left: 48px;
    top: 42px;
    font-size: 28px;
  }
  .hero-campaign--content--main--thank-you {
    width: initial;
  }
}
@keyframes marquee {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -11190px;
  }
}