.affiliate__main {
    background-color: #fff;
}
.affiliate__main .container {
    width: 1400px;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    box-sizing: border-box;
}
.affiliate__main * {
  box-sizing: border-box;
}
  
/* Hero */
.affiliate__hero {
  width: 100%;
  height: 358px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;

  position: relative;
  overflow: hidden;
}
.affiliate__hero .bg-image {
  height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
}
.affiliate__hero .container {
  position: absolute;
  z-index: 1;
  left: 50%;
  top:50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
}
.affiliate__headline {
  font-size: 50px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  margin: 0;
  filter: drop-shadow(4px 4px 54px rgb(0, 0, 0, 0.7));
}
.affiliate__content {
  padding: 45px 0;
  line-height: 1.4;
}
.affiliate__content ul li {
  padding: 7px 0;
}
.affiliate__content .container {
  display: flex;
}
.affiliate__content .col-left p,   .affiliate__content .col-left ul li {
  font-size: clamp(0.875rem, 0.7835rem + 0.3902vw, 1.125rem);
}
.affiliate__content .col-left {
  background-color: #F6F5F0;
  width: 55%;
  padding: 2% 3%;
}
.affiliate__content .col-right {
  width: 45%;
  padding: 0 0 0 3%;
}
.form-wrapper {
  background-color: #fff;
  padding:6%;
  border-radius: 10px;
  border:1px solid #DCDCDC;
}
.form-wrapper h3 {
  font-size: 26px;
  text-align: center;
  margin-top: 0;
}
.form-wrapper p {
  font-size: 16px;
}
.form-wrapper .form-row {
  display: flex;
}
.form-wrapper .form-row {
  display: flex;
  margin-left: -15px;
    margin-right: -15px;
}
.form-wrapper .form-row > div {
  display: flex;
  flex-direction: column;
  padding-bottom: 25px;
  position: relative;
}
.form-wrapper .form-row .form-col {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}
.form-wrapper .form-col-full {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
.form-wrapper label {
  margin-bottom: 3px;
  font-size: 12px;
}
.form-wrapper label > span {
  color: #ff1f00;
}
.form-wrapper .form-cta {
  display: flex;
  justify-content: center;
}
.form-wrapper .form-cta button {
  height: 50px;
  width: 200px;
}
.form-wrapper .affiliate-control {
  border-radius: 5px;
  font-size: 14px;
}
.form-wrapper textarea.affiliate-control {
  height: 80px;
}
.form-wrapper select.affiliate-control {
display: inline-block;
box-sizing: unset;
position: relative;
}
.form-wrapper .form-col-full.selectable {
  position: relative;
}
.form-wrapper .form-col-full.selectable::after {
  content: "";
  display: block;
  width: 18px;
  height: 9px;
  background-image: url('/info/images/caret.svg');
  background-repeat: no-repeat;
  position: absolute;
  right: 26px;
  top: 38px;
  z-index: 10;
}
.form-wrapper .message-state.hide {
  display: none;
}
.form-wrapper .form-state.hide {
  display: none;
}
.form-wrapper .affiliate-control.is-invalid + .control-error {
  display: inline-block;
}
.form-wrapper .affiliate-control.is-invalid {
  border-color: #FF1F00;
}
.form-wrapper .control-error {
    color: #ff1f00;
    position: absolute;
    bottom: 7px;
    font-size: 13px;
    display: none;
}
.error {
    font-size: 16px;
    color: red;
    font-weight: 600;
    margin-bottom: 10px;
}

@media only screen and (max-width: 991px) {
  .affiliate__content .col-left {
    width: 50%;
  }
  .affiliate__content .col-right {
    width: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .affiliate__content .col-left {
    width: 100%;
  }
  .affiliate__content .col-right {
    width: 100%;
    padding: 6% 0;
  }
  .affiliate__content .container {
    flex-direction: column;
  }

  .affiliate__hero {
    height: 200px;
  }
  .affiliate__headline {
    font-size: 36px;
  }
}

@media only screen and (max-width: 570px) {
  .affiliate__hero {
    height: 160px;
  }
  .affiliate__headline {
    font-size: 26px;
  }
}