:root {
  --magenta: #ff00e5;
  --black: #000;
  --white: white;
  --color: #edab03;
  --white-2: white;
  --black-2: black;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

h2 {
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Bahnpro, sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 150%;
}

p {
  margin-bottom: 10px;
  font-family: Open Sans, sans-serif;
  font-size: 18px;
  line-height: 150%;
}

a {
  color: #fff;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

.main-bg {
  background-image: url('../images/background.png');
  background-position: 50%;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.container {
  width: 700px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.flex-verticle-center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.logo {
  padding-top: 40px;
}

.warning {
  z-index: 1;
  background-color: #edab0300;
  background-image: url('../images/banner.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 375px;
  display: flex;
  position: absolute;
  top: 136px;
}

.body {
  overflow: visible;
}

.footer {
  z-index: 2147483647;
  background-color: #212121;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.white {
  color: #fff;
  margin-bottom: 0;
}

.white.large {
  margin-bottom: 37px;
  font-size: 24px;
  line-height: 150%;
}

.white.large.no-margin {
  margin-bottom: 10px;
  font-size: 14px;
}

.flex-horizontal {
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-link {
  margin-right: 40px;
}

.main-content {
  z-index: 10;
  background-image: url('../images/woman-1.png');
  background-position: 50%;
  background-size: auto;
  flex-direction: column;
  align-items: center;
  min-height: 900px;
  display: flex;
  position: relative;
}

.image {
  z-index: 12;
  position: relative;
  top: 0;
}

.text-block {
  z-index: 15;
  background-color: #edab03b8;
  margin-top: 409px;
  margin-bottom: 20px;
  padding: 52px;
  position: relative;
  top: 0;
}

.p {
  font-size: 18px;
  line-height: 150%;
}

.text-span {
  color: #fff;
  font-size: 24px;
  position: relative;
}

.button {
  z-index: 35;
  background-color: var(--magenta);
  color: var(--black);
  text-align: center;
  width: 100%;
  padding: 5px 100px;
  transition: background-color .325s;
  position: relative;
}

.button:hover {
  background-color: var(--black);
  color: var(--white);
}

.button.submit {
  text-transform: uppercase;
  height: 100px;
  padding-top: 19px;
  font-family: Bahnpro, sans-serif;
  font-size: 48px;
}

.form-block {
  margin-bottom: 0;
}

.form-step {
  z-index: 10;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.form-step.hide {
  display: none;
}

.form-step-wrapper {
  padding: 26px;
}

.checkbox {
  display: none;
}

.checkbox-label {
  border: 10px solid var(--color);
  background-image: linear-gradient(#00000080, #00000080);
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 100px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 0;
  display: flex;
}

.checkbox-label:hover {
  background-image: linear-gradient(to bottom, var(--black), var(--black));
  color: #000;
}

.checkbox-label:active {
  background-color: var(--color);
}

.checkbox-label-2 {
  color: var(--color);
  text-transform: uppercase;
  margin-bottom: 0;
  padding-top: 6px;
  font-family: Bahnpro, sans-serif;
  font-size: 36px;
  line-height: 36px;
}

.text-block-top {
  z-index: 15;
  background-color: #edab03f7;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 52px;
  position: relative;
  top: 50px;
}

.step1-form {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 600px;
  padding-bottom: 20px;
  display: flex;
  position: relative;
}

.image-2 {
  z-index: 16;
  position: relative;
  bottom: 31px;
}

.div-block {
  z-index: 20;
  justify-content: center;
  margin-bottom: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  inset: auto 0% 10%;
}

.checkbox-2 {
  border-color: #ccc0;
  display: none;
}

.bold-text-2 {
  font-size: 23px;
}

.div-block-2 {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: auto;
  padding-top: 92px;
  padding-bottom: 20px;
  display: flex;
}

.card {
  border: 6px solid var(--color);
  background-color: #fff;
  border-radius: 17px;
  width: 400px;
  height: 400px;
  padding: 0;
}

.card.card-1 {
  -webkit-text-fill-color: inherit;
  background-color: #fff;
  background-image: url('../images/rectangle-11_1.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: content-box;
  border-style: none;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 450px;
  height: 480px;
  display: flex;
  position: relative;
}

.card-image-1 {
  background-image: url('../images/skinny.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
}

.choice-card {
  width: 450px;
  height: 500px;
  margin-bottom: 40px;
}

.choice-card.card-1 {
  background-image: url('../images/rectangle-11.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  display: flex;
}

.choice-card.card-2 {
  background-image: url('../images/rectangle-10.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  display: flex;
}

.choice-card.card-3 {
  background-image: url('../images/bbw.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  display: flex;
}

.choice-card.card-4 {
  background-image: url('../images/big-tits.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  display: flex;
}

.choice-card.card-5 {
  background-image: url('../images/big-ass.png');
  background-position: 50%;
  background-size: cover;
  border-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 26px;
  display: flex;
}

.choices {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.checkbox-3 {
  background-image: url('../images/heart.svg');
  background-position: 0 0;
  background-size: cover;
  border-style: none;
  width: 55px;
  height: 55px;
}

.grid {
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  display: block;
}

.checkbox-4 {
  background-color: #fff;
  border-radius: 20px;
  width: 21px;
  height: 21px;
  margin-right: 10px;
}

.checkbox-field {
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.checkbox-field.what-you-want {
  padding-top: 10px;
  padding-bottom: 10px;
}

.label {
  color: #fff;
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 19px;
}

.label.large {
  font-size: 26px;
}

.image-3 {
  width: 100%;
}

.looking-for-div {
  margin-bottom: 20px;
}

.email-div {
  z-index: 35;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: absolute;
  top: 313px;
}

.input {
  height: 75px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
}

.checkbox-label-3, .checkbox-label-4, .checkbox-label-5, .checkbox-label-6, .checkbox-label-7 {
  display: none;
}

.submit-button {
  background-color: var(--magenta);
  color: #000;
  text-transform: uppercase;
  width: 100%;
  height: 100px;
  padding-top: 21px;
  font-family: Bahnpro, sans-serif;
  font-size: 61px;
  line-height: 61px;
}

.checkbox-5 {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  margin-right: 10px;
  padding-top: 2px;
}

.checkbox-field-2 {
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  display: flex;
}

.div-block-3 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 13px;
  display: flex;
}

.image-4 {
  width: 560px;
  padding-bottom: 20px;
}

.image-age {
  width: 100%;
}

.checkbox-label-8 {
  color: var(--black);
  font-size: 11px;
  line-height: 14px;
}

.link-2, .link-3 {
  color: var(--color);
}

.body-2 {
  background-color: var(--black);
  padding-top: 40px;
  box-shadow: 0 2px 9px #0000007a;
}

.profile-card {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 350px;
  padding: 18px;
  display: flex;
}

.profile-card.brandi {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/brandi.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.profile-card.kaela {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/kaela.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.profile-card.roxy {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/roxy.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.profile-card.kimberly {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/kimberly.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.profile-card.katie {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/katie.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.profile-card.miranda {
  background-image: linear-gradient(0deg, #000, #fff0), url('../images/miranda.png');
  background-position: 0 0, 50%;
  background-size: auto, cover;
}

.grid-2 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-3 {
  grid-template-rows: auto;
  width: 100%;
}

.div-block-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.div-block-5 {
  background-color: #0fce42;
  border-radius: 20px;
  width: 10px;
  height: 10px;
  margin-top: 0;
  margin-right: 10px;
}

.bold-text-3 {
  line-height: 14px;
}

.grid-4 {
  grid-template-columns: 1fr 1fr 1fr;
}

.message {
  background-color: #df4604;
  border-radius: 13px;
  justify-content: center;
  align-items: center;
  width: 700px;
  height: 100px;
  margin-top: 21px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 17px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.grid-6 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  display: block;
}

.div-block-6 {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.image-5 {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.text-span-2 {
  color: #fff;
  font-weight: 700;
}

.button-2 {
  background-color: #24bb1f;
}

.button-2.black {
  background-color: var(--black);
  border: 1px solid #fff;
}

.overlay-form {
  background-color: #00000070;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.form-div {
  background-color: #fff;
  border-radius: 8px;
  width: 800px;
  margin-top: 118px;
  padding: 34px;
  position: relative;
  overflow: scroll;
}

.grid-7 {
  grid-template-columns: .5fr 1fr;
  width: 100%;
}

.paragraph {
  font-size: 22px;
  line-height: 34px;
}

.paragraph-2 {
  font-size: 22px;
  line-height: 32px;
}

.grid-8 {
  grid-column-gap: 15px;
  grid-template-columns: .5fr 1fr;
  width: 100%;
}

.new-btn {
  color: #fff;
  background-color: #238b17;
  padding: 17px 40px;
}

.new-btn.margin {
  background-color: #8f8f8f;
  margin-left: 19px;
}

.text-span-3 {
  color: #f80000;
}

.div-block-7 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading {
  font-family: Open Sans, sans-serif;
  font-size: 45px;
}

.div-block-8 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-3 {
  font-size: 1px;
}

.div-block-12 {
  width: 100%;
  margin-top: 17px;
  display: flex;
}

.div-block-13 {
  background-color: #000;
  justify-content: center;
  align-items: center;
  height: 75px;
  margin-bottom: 10px;
  padding: 18px 0 0;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.button-2-copy {
  background-color: var(--black);
  border: 1px solid #fff;
  margin-right: 20px;
}

.coupon-wrap {
  color: #564fe6;
  letter-spacing: 1px;
  cursor: pointer;
  background-color: #0926ff12;
  border: 2px dashed #564fe6;
  border-radius: 6px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 700;
  display: flex;
}

.lightbox-modal {
  z-index: 9999;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  padding: 25px;
  display: none;
  position: fixed;
  inset: 0%;
}

.colon-wrap {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 5px;
  height: 30px;
  display: flex;
}

.icon-2 {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  margin-left: 20px;
  display: flex;
}

.dot {
  background-color: #000;
  border-radius: 10px;
  width: 5px;
  height: 5px;
}

.wrap {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  display: flex;
  position: relative;
}

.modal-inner {
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 15px;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.h1-small {
  color: #000;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2em;
}

.time {
  color: #000;
  border: 2px solid #0000001a;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 600;
  display: flex;
}

.time-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 30px;
  display: flex;
}

.icon_close {
  color: #000;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
  position: absolute;
  inset: 15px 15px auto auto;
}

.icon_close.z-index {
  z-index: 10;
  overflow: hidden;
}

.grid-8-copy {
  grid-column-gap: 15px;
  grid-template-columns: .5fr 1fr;
  width: 100%;
  display: block;
}

.form, .form-block-2 {
  width: 100%;
}

.exit-intent-popup {
  z-index: 2147483647;
  background-color: #585757ab;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.exit-intent {
  background-color: var(--color);
  width: 500px;
  padding: 34px;
}

.div-block-14 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-15 {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-2 {
  margin-top: 0;
}

.copy {
  font-size: 11px;
}

.heading-3 {
  font-family: Open Sans, sans-serif;
  font-size: 45px;
}

.link-4 {
  color: #edab03;
}

.radio-button-2 {
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.container-2 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.text-span-4 {
  color: #f80000;
}

.form-div-2 {
  background-color: #fff;
  border-radius: 8px;
  width: 800px;
  margin-top: 12px;
  padding: 34px;
  position: relative;
  overflow: scroll;
}

.paragraph-7 {
  font-size: 1px;
}

.image-6 {
  position: absolute;
  inset: 6px auto 0% 0%;
}

.image-copy {
  position: absolute;
  inset: -5px 0% 0% auto;
}

.checkbox-label-9 {
  color: #000;
  font-size: 11px;
  line-height: 14px;
}

.flex-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.div-block-17, .div-block-7-copy {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.div-block-19 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.grid-9 {
  grid-column-gap: 15px;
  grid-template-columns: .5fr 1fr;
  width: 100%;
}

.website-content {
  background-color: #000;
  height: 100vh;
  position: relative;
}

.website-content.desktop {
  padding-top: 40px;
  overflow: hidden;
}

.div-block-21 {
  width: 100%;
  margin-top: 17px;
  display: flex;
}

.form-block-3 {
  z-index: 100;
  position: relative;
}

.input-2 {
  border-radius: 4px;
  height: 65px;
}

.paragraph-8 {
  z-index: 100;
  position: relative;
}

.radio-button-label-6 {
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
}

.relative {
  background-image: url('../images/background.png');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 100vh;
  display: flex;
  position: static;
}

.button-div {
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn {
  background-color: #27a724;
  padding: 22px 40px;
  font-family: Oswald, sans-serif;
  font-size: 29px;
}

.btn.claim {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 18px;
}

.reward {
  font-size: 16px;
  line-height: 20px;
}

.reward-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid #000;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  margin-bottom: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
}

.image-7 {
  z-index: 10;
  display: block;
  position: absolute;
  inset: auto auto 0% -28%;
}

.radio {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.card-2 {
  background-color: #fff;
  border-radius: 30px;
  width: 100%;
  padding: 28px 92px 92px 239px;
}

.container-3 {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.checkbox-field-3 {
  margin-bottom: 20px;
}

.success-message {
  text-align: left;
  background-color: #ffffffba;
}

.radio-button-field-4 {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.title {
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 20px;
}

.thumbnail {
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph-9 {
  z-index: 100;
  position: relative;
}

.radio-button-label-7 {
  margin-bottom: 0;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
}

.image-8 {
  z-index: 10;
  display: block;
  position: absolute;
  inset: auto auto 0% -4%;
}

.container-4 {
  width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.body-3 {
  background-color: var(--black);
}

.website-content-copy {
  background-color: #000;
  height: 100vh;
  position: relative;
}

.website-content-copy.desktop {
  padding-top: 40px;
  overflow: visible;
}

.body-4 {
  background-color: var(--black);
  padding-top: 20px;
}

@media screen and (max-width: 991px) {
  .profile-card.brandi {
    display: flex;
  }

  .grid-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .message {
    width: 100%;
  }

  .form-div {
    width: 600px;
  }

  .container-2 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }

  .form-div-2 {
    width: 600px;
  }

  .image-6 {
    top: 98px;
    left: -16%;
  }

  .image-copy {
    top: 102px;
    right: -35%;
  }

  .website-content.desktop {
    display: flex;
  }

  .image-7, .image-8 {
    left: -18%;
  }

  .website-content-copy.desktop {
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .warning {
    top: 12px;
  }

  .main-content {
    background-position: 50%;
    min-height: 500px;
    padding-bottom: 135px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block {
    margin-top: 444px;
  }

  .button {
    position: absolute;
    inset: auto 0% 0%;
  }

  .form-step {
    background-image: none;
    min-height: auto;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-top {
    margin-top: 10px;
  }

  .email-div {
    top: 276px;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
    align-content: start;
  }

  .form-div {
    width: 500px;
  }

  .form-div-2 {
    width: 500px;
    margin-top: 0;
  }

  .relative {
    max-width: 100%;
    overflow: hidden;
  }

  .step {
    background-color: #ffffff94;
    padding: 10px;
  }

  .image-7 {
    left: 16%;
  }

  .card-2 {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container-3 {
    max-width: 100%;
  }

  .image-8 {
    left: 16%;
  }

  .container-4 {
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .warning {
    background-position: 50%;
    background-size: cover;
    top: 125px;
  }

  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .white {
    text-align: center;
    font-size: 14px;
  }

  .white.large.no-margin {
    text-transform: none;
    font-size: 14px;
  }

  .main-content {
    background-repeat: no-repeat;
    background-size: cover;
  }

  .text-block {
    margin-top: 316px;
    padding: 13px;
  }

  .p, .text-span.center {
    text-align: center;
  }

  .button {
    width: 100%;
    margin-top: 3px;
    inset: auto 0% 0%;
  }

  .button.submit, .button.non-absolute {
    position: static;
  }

  .bold-text {
    width: 100%;
    font-size: 16px;
  }

  .link-block {
    padding-left: 20px;
  }

  .link-block.w--current {
    padding-right: 20px;
  }

  .form-step {
    background-image: linear-gradient(#0000, #0000);
    width: 100%;
    padding: 51px 0 20px;
    top: -27px;
    overflow: scroll;
  }

  .checkbox-label {
    margin-bottom: 28px;
  }

  .text-block-top {
    width: 100%;
    margin-top: 0;
    padding: 13px;
    top: 36px;
  }

  .step1-form {
    min-height: 400px;
  }

  .image-2 {
    bottom: -11px;
  }

  .bold-text-2 {
    text-align: center;
    font-size: 17px;
  }

  .div-block-2 {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .choice-card.card-1 {
    max-width: 100%;
    height: 350px;
    margin-bottom: 40px;
  }

  .choice-card.card-2, .choice-card.card-3, .choice-card.card-4 {
    max-width: 100%;
    height: 300px;
  }

  .choice-card.card-5 {
    max-width: 100%;
    height: 350px;
  }

  .grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: -5px;
    padding-bottom: 3px;
  }

  .label.large {
    font-size: 18px;
  }

  .input {
    height: 55px;
  }

  .checkbox-label-3, .checkbox-label-4, .checkbox-label-5, .checkbox-label-6, .checkbox-label-7 {
    display: none;
  }

  .footerlink, .link {
    font-size: 14px;
  }

  .cneter {
    text-align: center;
  }

  .checkbox-label-8 {
    font-size: 11px;
    line-height: 14px;
  }

  .body-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .message {
    width: 100%;
    height: auto;
    min-height: 100px;
    padding: 19px;
  }

  .overlay-form {
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    position: fixed;
    inset: 0%;
  }

  .form-div {
    width: 100%;
    margin-top: 11px;
    padding: 20px 10px 0;
    overflow: auto;
  }

  .grid-8 {
    display: block;
  }

  .new-btn.margin {
    margin-top: 10px;
    margin-left: 0;
  }

  .div-block-8 {
    display: none;
  }

  .div-block-9, .div-block-10, .div-block-11 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-13 {
    height: auto;
  }

  .colon-wrap {
    height: 15px;
  }

  .dot {
    width: 3px;
    height: 3px;
  }

  .time {
    border-radius: 5px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .grid-8-copy {
    display: block;
  }

  .exit-intent-popup {
    display: none;
  }

  .exit-intent {
    width: 100%;
  }

  .div-block-16 {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    display: flex;
    position: fixed;
    inset: 0% auto auto 0%;
  }

  .copy {
    font-size: 11px;
  }

  .paragraph-4 {
    font-size: 14px;
  }

  .heading-3 {
    text-align: center;
  }

  .radio-button-2 {
    width: 25px;
    height: 25px;
    margin-right: 10px;
  }

  .radio-button-field-2 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .radio-button-field {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
    width: auto;
    display: flex;
  }

  .container-2 {
    max-width: 100%;
    padding: 0 27px 27px;
    overflow: visible;
  }

  .paragraph-6 {
    text-align: center;
    padding-top: 10px;
  }

  .form-div-2 {
    width: 100%;
    margin-top: 11px;
    padding: 20px 10px 0;
    overflow: auto;
  }

  .image-6 {
    left: -44%;
  }

  .image-copy {
    inset: auto -55% 0% auto;
  }

  .checkbox-label-9 {
    font-size: 11px;
    line-height: 14px;
  }

  .div-block-17 {
    justify-content: center;
    align-items: flex-start;
  }

  .div-block-7-copy {
    justify-content: center;
    align-items: center;
  }

  .div-block-18 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .div-block-19 {
    margin-bottom: 10px;
    display: flex;
  }

  .radio-button-label {
    margin-bottom: 0;
    font-size: 18px;
  }

  .div-block-20 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .paragraph-5 {
    text-align: center;
  }

  .grid-9 {
    display: block;
  }

  .website-content.desktop {
    padding-top: 9px;
    overflow: hidden;
  }

  .div-block-21 {
    flex-flow: column;
  }

  .radio-button-label-2 {
    font-size: 19px;
  }

  .radio-button-field-3 {
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
    display: flex;
  }

  .radio-button-label-3, .radio-button-label-4, .radio-button-label-5 {
    font-size: 18px;
  }

  .paragraph-8 {
    font-size: 19px;
    line-height: 27px;
  }

  .heading-4 {
    margin-bottom: 10px;
  }

  .relative {
    min-height: auto;
  }

  .btn {
    margin-top: 10px;
  }

  .step {
    background-color: #fff0;
    background-image: linear-gradient(#0000, #ffffffb0 44%, #ffffffc2 64%, #fff0);
    height: 100%;
  }

  .paragraph-9 {
    font-size: 19px;
    line-height: 27px;
  }

  .heading-5 {
    margin-bottom: 10px;
  }

  .website-content-copy.desktop {
    padding-top: 9px;
    overflow: hidden;
  }
}

#w-node-_89c994d3-7130-439e-8ce7-3a0da9fde3d1-a6d6a223, #w-node-_89c994d3-7130-439e-8ce7-3a0da9fde3d1-5cf2bb41, #w-node-_4a1e2304-aec6-556d-8684-c49f127f7f42-5cf2bb41 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f9102d0e-fc8b-da9e-0c65-898e4410fff2-892d6fd2, #w-node-d0211767-152b-0bde-ae39-41736e35cafc-892d6fd2 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-cc444bda-1d20-22cc-504a-df33eac5b94a-892d6fd2, #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-892d6fd2 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-892d6fd2 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_124fb44b-c475-e146-851e-4ece151b7141-892d6fd2 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-892d6fd2 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-892d6fd2 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_45434763-2704-69c1-e120-f4b5695fa0a4-892d6fd2, #w-node-_3e53899e-4764-7294-cf16-9ee987ba37d9-892d6fd2, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003355-892d6fd2, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003357-892d6fd2, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc3-892d6fd2, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc5-892d6fd2 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-cc444bda-1d20-22cc-504a-df33eac5b94a-2fb29188, #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-2fb29188 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-2fb29188 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_124fb44b-c475-e146-851e-4ece151b7141-2fb29188 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-2fb29188 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-2fb29188 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_45434763-2704-69c1-e120-f4b5695fa0a4-2fb29188, #w-node-_3e53899e-4764-7294-cf16-9ee987ba37d9-2fb29188, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003355-2fb29188, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003357-2fb29188, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc3-2fb29188, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc5-2fb29188 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-cc444bda-1d20-22cc-504a-df33eac5b94a-b4dbf490, #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-b4dbf490 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-b4dbf490 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_124fb44b-c475-e146-851e-4ece151b7141-b4dbf490 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-b4dbf490 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-b4dbf490 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_45434763-2704-69c1-e120-f4b5695fa0a4-b4dbf490, #w-node-_3e53899e-4764-7294-cf16-9ee987ba37d9-b4dbf490, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003355-b4dbf490, #w-node-_9fbeafde-91c7-a6f0-dfa1-d6b9f1003357-b4dbf490, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc3-b4dbf490, #w-node-_63866655-76ee-0938-89fb-8a51b2138fc5-b4dbf490, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0040-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0042-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a004f-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0051-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a005f-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0061-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0080-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0082-0ae9c6cf, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0040-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0042-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a004f-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0051-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a005f-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0061-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0080-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0082-25001139, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0040-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0042-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a004f-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0051-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a005f-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0061-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0080-928eb82c, #w-node-_55433542-d790-5c71-c1a9-b0a6393a0082-928eb82c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-892d6fd2, #w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-892d6fd2, #w-node-_124fb44b-c475-e146-851e-4ece151b7141-892d6fd2, #w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-892d6fd2, #w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-892d6fd2, #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-2fb29188, #w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-2fb29188, #w-node-_124fb44b-c475-e146-851e-4ece151b7141-2fb29188, #w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-2fb29188, #w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-2fb29188, #w-node-c4d8f481-8794-e763-c61f-5f13ab6c82f7-b4dbf490, #w-node-_1a1ea83a-12e7-c147-beea-930a3b3cdd48-b4dbf490, #w-node-_124fb44b-c475-e146-851e-4ece151b7141-b4dbf490, #w-node-c7d47bb4-23d5-736c-5975-22d21c8d766f-b4dbf490, #w-node-ec1025c0-a81a-9cd0-3b16-0a08dec19f2e-b4dbf490 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Bahnpro';
  src: url('../fonts/bahnpro_thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bahnpro';
  src: url('../fonts/bahnpro_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bahnpro';
  src: url('../fonts/bahnpro_regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}