.hero-campaign-form {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero-campaign-form--background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%;
  animation: marquee 280s infinite linear;
  background-attachment: fixed;
}
.hero-campaign-form--background-image img {
  width: 100%;
}
.hero-campaign-form--background-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, #FFFFFF 45%, rgba(255, 255, 255, 0) 100%);
}
.hero-campaign-form--content {
  width: calc(100% - 48px);
  height: 100%;
  padding: 0 24px;
      position: relative;
}
.hero-campaign-form--content--wrapper {
  max-width: 1416px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.hero-campaign-form--logo {
  position: absolute;
  top: 0;
  height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-campaign-form--logo--link {
    display: inline-flex;
}
.hero-campaign-form--content--main--left--icon {
  margin-bottom: 5%;
  width: 200px;
}
.hero-campaign-form--subtitle {
  font-size: calc(14px + 0.5vw);
  margin-bottom: 20px;
}
.hero-campaign-form--content--main {
  min-height: 90vh;
  padding-top: 10vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-campaign-form--content--main--left {
  padding-top: 32px;
}
.hero-campaign-form--content--main--right {
  padding-bottom: 32px;
}
.hero-campaign-form--subtitle {
  font-family: 'Bitter';
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.01em;
  color: #666666;
}
.hero-campaign-form--content--wrapper h1 {
  font-weight: 600;
  line-height: 100%;
  margin-bottom: 10%;
}
.hero-campaign-form--content--main--right--form {
    background: rgba(255, 255, 255, .6);
    padding: 20px;
    border-radius: 5px;
}
@media only screen and (min-width: 767px) {
  .hero-campaign-form--content--main {
    justify-content: center;
  }
  .hero-campaign-form--content--wrapper h1 {
    margin-top: 0%;
  }
}
@media only screen and (min-width: 940px) {
  .hero-campaign-form--content--main {
    min-height: 100vh;
    padding-top: 0;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-campaign-form--content--main--left {
    width: 48%;
    padding-top: 12vh;
    padding-bottom: 12vh;
  }
  .hero-campaign-form--content--main--right {
    width: 48%;
    padding-bottom: 0;
  }
  .hero-campaign-form--subtitle {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .hero-campaign-form--background-image {
    background-position-x: 300px;
  }
  .hero-campaign-form--content--wrapper h1 {
    font-size: 80px;
  }
  .hero-campaign-form--content {
    width: calc(100% - 6rem);
    padding: 0 3rem;
  }
}
@keyframes marquee {
  0% {
    background-position-y: 0;
  }
  100% {
    background-position-y: -11190px;
  }
}