@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;
  --red: #FF1053;
  --orange: #F48C06;
  --grey: #F0F1FC;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: 'Comfortaa';
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* navbar */
.nav {
  background: var(--white);
  padding: 15px 0;
  text-align: center;
}
.nav-logo img {
  height: 45px;
}
/* header */
.header {
  background: url('/img/bg.png');
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.header-txt {
  margin: 50px 0 0 90px;
}
.header-txt h1 {
  font-size: 40px;
  background-color: var(--red);
  font-weight: 700;
  background-image: linear-gradient(45deg, var(--red), var(--orange), var(--red));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.header-txt h2 {
  font-size: 30px;
  color: var(--black);
  font-weight: 400;
  line-height: 1.1;
  max-width: 75%;
}
.header-txt p {
  color: var(--black);
  font-size: 18px;
  margin-top: 20px;
}
.prefrom-outer {
  margin: 0 auto;
  text-align: center;
}
.preform {
  width: 530px;
  height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-radius: 25px;
  background: var(--white);
  margin: -80px auto 0 auto;
  padding: 30px 40px;
  position: relative;
}
.preform::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 28px;
  background: linear-gradient(90deg, var(--orange), var(--red));
  z-index: -1;
}
.loader-container {
  width: 100%;
  background-color: var(--grey);
  height: 12px;
  border-radius: 20px;
  position: relative;
}
.loader {
  background: linear-gradient(90deg, var(--orange), var(--red));
  height: 12px;
  width: 25%; 
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.preform h3 {
  color: var(--black);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  margin: 25px 0 20px 0;
}
.preform-cta {
  width: 100%;
  height: 40px;
  background: var(--white);
  text-align: left;
  border-radius: 60px;
  border: 1px solid var(--red);
  padding-left: 20px;
  font-size: 20px;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-top: 5px;
  margin-bottom: 10px;
  background-image: url(/img/form/arrow.svg);
  background-size: 20px 20px !important;
  background-repeat: no-repeat !important;
  background-position: 96% !important;
}
.preform-cta img {
  margin: -4px 10px 0 0;
}
.preform-cta:hover {
  background: var(--red);
  color: var(--white);
  background-image: url(/img/form/arrow-white.svg);
}
.preform-cta:hover img {
  filter: brightness(0) invert(1);
}
/* Form */
.form-outer {
  max-width: 100% !important;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-content {
  margin: 0 auto;
}
.form-box {
  width: 855px;
  height: 530px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: auto;
}
.form-info {
  width: 35%;
  height: 100%;
  background: url('/img/form/form-bg.svg');
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  border-radius: 30px 0 0 30px;
  padding: 20px;
}
.form-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 35px;
}
.form-bullet img {
  height: 34px;
  margin-right: 10px;
}
.form-bullet p {
  margin: 0;
  padding: 0;
  color: var(--black);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.1;
  max-width: 75%;
}
.back {
  margin: 10px 0 70px 0;
}
.back-btn {
  background: transparent;
  border: none;
  padding: 0;
}
.back-btn img {
  width: 30px;
  margin: -5px 5px 0 0;
}
.back-btn:hover {
  transform: scale(1.03);
}
#contactform {
  width: 64%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.close-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: transparent;
  margin: -10px -15px 0 0;
}
.close-btn:hover {
  transform: scale(1.06);
}
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  width: 100%;
}
.progressbar {
  width: 85%;
  background-color: var(--grey);
  margin-bottom: 30px;
  border-radius: 20px;
}
.progressbar-inner {
  width: 25%;
  height: 12px;
  border-radius: 20px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--red));;
}
.form-step h3, .leave-step h3 {
  color: var(--black);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.options-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.radio-option {
  width: 100%;
  margin-bottom: 10px;
}
.radio-option input[type="radio"] {
  display: none;
}
.radio-option input[type="radio"] + label {
  width: 100%;
  height: 40px;
  background: var(--white);
  text-align: left;
  border-radius: 60px;
  border: 1px solid var(--red);
  padding-left: 20px;
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-top: 5px;
  cursor: pointer;
  margin-bottom: 10px;
  background-image: url(/img/form/arrow.svg);
  background-size: 20px 20px !important;
  background-repeat: no-repeat !important;
  background-position: 96% !important;
}
.radio-option input[type="radio"] + label:hover {
  background: var(--red);
  color: var(--white);
  background-image: url(/img/form/arrow-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 95%;
}
.radio-option input[type="radio"]:checked + label {
  background: var(--red);
  color: var(--white);
  background-image: url(/img/form/arrow-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 95%;
}
.radio-option label img {
  max-height: 30px;
  margin: 0 10px 5px 0;
}
.radio-option input[type="radio"]:hover + label img, .radio-option input[type="radio"]:checked + label img {
    filter: brightness(0) invert(1);
}
.form-group {
  margin-bottom: 20px;
}
.form-inputs, .form-group select {
  width: 100%;
  height: 40px;
  font-weight: 400;
  background: var(--white);
  text-align: left;
  border-radius: 60px;
  border: 1px solid var(--red);
  padding-left: 45px;
  font-size: 20px !important;
  color: var(--black) !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  padding-top: 5px;
  -webkit-appearance: none;
  background-size: 20px 20px !important;
  background-repeat: no-repeat !important;
  background-position: 15px !important;
}
.form-inputs:focus-visible, .form-group select:focus-visible {
  outline: none;
}
.form-group select {
  padding-left: 20px;
  background: url('/img/form/down-arrow.svg');
  background-position: 95% !important;
}
#postal {
  background-image: url('/img/form/postal.svg');
}
#poblacion {
  background-image: url('/img/form/location.svg');
}
#nombre, #apellido {
  background-image: url('/img/form/name.svg');
}
#email {
  background-image: url('/img/form/email.svg');
}
#telefono {
  background-image: url('/img/form/phone.svg');
}
::-webkit-input-placeholder {
  color: var(--black);
  font-weight: 400;
}
:-moz-placeholder {
  color: var(--black);
  font-weight: 400;
  opacity: 1;
}
::-moz-placeholder {
  color: var(--black);
  font-weight: 400;
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--black);
  font-weight: 400;
}
::-ms-input-placeholder {
  color: var(--black);
  font-weight: 400;
}
::placeholder {
  color: var(--black);
  font-weight: 400;
}
.form-check {
  text-align: left;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  color: var(--black);
  font-size: 11px;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 2.5px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--orange);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--black);
}
.form-check input[type=checkbox]:checked + .checkmark:after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 15px;
  margin-left: 0px;
  margin-top: -2px;
  color: var(--red);
}
#politica-link, #colaboradores-link, #sectores-link, #tabela-link {
  color: var(--red);
}
#politica-link:hover, #colaboradores-link:hover, #sectores-link:hover, #tabela-link:hover {
  color: #FF8000;
}

#aviso_legal_text{
    font-family: 'Comfortaa';
}

.form-btn {
  width: 175px;
  height: 50px;
  border-radius: 50px;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}
.form-btn img {
  margin: 0 0 0 5px;
}
.form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}
.form-btn:hover::before {
  opacity: 0; 
}
.form-btn:hover {
  background-color: var(--red);
  color: #ffffff;
}
.error, #termos-error, #termos2-error {
  color: var(--red);
  font-size: 11px;
  width: 100%;
}
#termos-error, #termos2-error {
  margin-left: -20px;
}
.leave-step {
  display: none;
}
.leave-options {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.close-cta {
  margin-left: 40px;
  background: var(--grey);
  color: rgba(0, 0, 0, 0.3);
}
.close-cta::before {
  background: var(--grey);
}
.close-cta:hover {
  background: var(--grey);
  color: var(--black);
}

input:focus{
    outline: none;
}

/* section 1 */
.section1 {
  text-align: center;
  padding: 50px 0 115px 0;
}
.sec1-txt {
  margin-bottom: 30px;
}
.sec1-txt h3 {
  font-size: 20px;
  color: var(--black);
}
.sec1-txt h3 span {
  font-weight: 700;
}
.vant-box-outer {
  position: relative;
}
.vant-box-outer:nth-child(1)::after, .vant-box-outer:nth-child(2)::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 2px;
  background: transparent;
  border-top: 4px dashed var(--red);
  right: -10px;
  top: 50%;
  z-index: -1;
}
.vant-box {
  width: 85%;
  height: 80px;
  background: var(--grey);
  border-radius: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  margin: 0 auto;
}
.vant-box img {
  margin: 0 10px 0 -20px;
}
.vant-box p {
  margin: 0;
  padding: 0;
  line-height: 1.1;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  max-width: 80%;
}
.vant-box p {
  font-weight: 700;
}
/* error */
#error h3 {
  font-size: 30px;
  max-width: 80%;
  margin: 0 auto 20px auto;
  line-height: 1.1;
}
/* Offerwall */
#offer-nav {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.offerheader {
  padding: 40px 0;
}
.offer-img {
  text-align: right;
}
.offer-img img {
  height: 120px;
}
.ty-message-box h3 {
  font-size: 40px;
  background-color: var(--red);
  font-weight: 700;
  background-image: linear-gradient(45deg, var(--red), var(--orange), var(--red));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.ty-message-box h5 {
  font-size: 25px;
  color: var(--black);
  font-weight: 700;
  margin: 15px 0;
}
.ty-message-box p {
  font-size: 15px;
  line-height: 1.1;
  margin: 10px 0 0 0;
  max-width: 80%;
}
.ty-message-box a{
    border: 1px solid var(--orange);
    padding: 5px; 
    text-decoration: none;
    margin-top: 10px;
    display: block;
    width: 120px;
    font-weight: 700;
    color: #fff;
    background-color: var(--orange);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ty-message-box a:hover{ 
    border: 1px solid var(--red);
    background-color: var(--red);
    transform: scale(1.1);
}
/* section1 thank you page */
.section1-ty {
  text-align: center;
  padding: 20px 0;
} 
.sec1-ty-txt h3 span {
  font-weight: 700;
  background-color: var(--red);
  font-weight: 700;
  background-image: linear-gradient(45deg, var(--red), var(--orange), var(--red));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.sec1-ty-txt. p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.1;
}
.offer-box {
  margin: 0 auto 20px auto;
  background: var(--white);
  border-radius: 20px;
  padding: 40px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(211, 17, 35, 0.2);
  border-left: 10px solid var(--grey);
  position: relative;
}
.offer-box:hover {
  transform: scale(1.02);
  border-left: 10px solid var(--red);
  box-shadow: 0 2px 10px rgba(241, 95, 34, 0.2);
}
.pos-box {
  position: absolute;
  min-width: 40px;
  height: 35px;
  top: 0;
  left: 0;
  background: var(--red);
  margin-left: -10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px 0 20px 0;
  padding: 0 10px;
}
.pos-box p {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  padding: 0 5px;
  animation: flash 3s linear infinite;
}
@keyframes flash {
  0% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(1.05);
  }
}
.pos-box img {
  max-width: 20px;
  margin: -2px auto 0 auto;
  transform: rotate(-90deg);
}
#rise {
  background: var(--orange);
}
.offer-box img {
  width: 200px;
}
.offer-txt {
  text-align: left;
  width: 55%;
  margin: 0 30px;
}
.offer-txt p {
  color: var(--black);
  font-size: 15px;
  line-height: 1.2;
  margin: 0; 
}
.ty-pg-cta {
  width: 175px;
  height: 50px;
  border-radius: 50px;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ty-pg-cta img {
  margin: -5px 0 0 8px;
  width: 20px;
}
.ty-pg-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  z-index: -1;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}
.ty-pg-cta:hover::before {
  opacity: 0; 
}
.ty-pg-cta:hover {
  background-color: var(--red);
  color: #ffffff;
}

#topsection input[type=checkbox] {
	display:none;
} /* to hide the checkbox itself */

#topsection input[type=checkbox] + label {
	color:#fff;
	font-size:15px;
	font-weight: 400;
}

#topsection input[type=checkbox] + label:before {
  font-family: 'FontAwesome';
  display: inline-block;
}

#topsection input[type=checkbox] + label:before { 
	content: "\f096"; 
} /* unchecked icon */

#topsection input[type=checkbox] + label:before {
	letter-spacing: 10px;
} /* space between checkbox and label */

#topsection input[type=checkbox]:checked + label:before {
	content: "\f046";
} /* checked icon */

#topsection input[type=checkbox]:checked + label:before {
	letter-spacing: 5px;
}

.faux-checkbox {
    /*display: flex;
    align-items: center;*/
}
.faux-checkbox::before {
    content: 'x';
    background-color: #fc0328;
    display: inline-flex;
    height: 20px;
    width: 20px;
    border: 1px solid #000;
    border-radius: 2px;
    margin-right: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
    line-height: 1;
}

.faux-checkbox.checked::before {
    content: '✓';
    background-color: #02cc71;
    
}

.disclaimer{
    padding: 20px 0;
    text-align: center;
    vertical-align: middle;
}
.disclaimer a{
    color: var(--black);
    font-size: 20px;
    text-decoration: none;
    font-weight: 400;
}
/* funnel */
.scale {
  animation: scale 1s ease-out forwards;
}
@keyframes scale {
    0% {
        transform: scale(1.0);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1.0);
    }
}
.funnel {
  min-height: 100vh;
  background: url('/img/back-blur.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.over {
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  justify-content: center;
  align-items: center;
}
.funnel-info {
  width: 40%;
  padding: 0 40px;
}
.funnel-info h4 {
  font-weight: 400;
  font-size: 26px;
}
.funnel-info h4 span {
  font-size: 70px;
  font-weight: 700;
  text-transform: uppercase;
  background-image: linear-gradient(45deg, var(--red), var(--orange), var(--red));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.funnel-info h4 strong {
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  background-image: linear-gradient(45deg, var(--red), var(--orange), var(--red));
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}
.funnelform-box {
  position: relative;
  z-index: 99;
  height: auto;
  overflow: hidden;
}
#funnelform {
  background: linear-gradient(-230deg, var(--orange), var(--red));
  padding: 80px 30px;
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
#funnelform h3 {
  font-size: 35px;
  color: var(--white);
  font-weight: 700;
  margin: 0 auto 30px auto;
}
.disc {
  font-size: 9px;
  color: var(--white);
  max-width: 85%;
  margin: 30px auto 0 auto;
}
.disc #repsol-link{
    text-decoration: none;
}
.rp-link-click {
  color: var(--white);
}
.rp-link-click:hover {
  color: var(--orange);
}
#repsol-link {
  color: var(--white);
  font-weight: 700;
}
.repsol-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 0 20px 0;
}
.repsol-box img {
  width: 60%;
  margin-bottom: 40px;
}
.radio-opt {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.radio-buton {
  width: 70%;
}
.nointeresa {
  width: 25%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  color: var(--red);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 90%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 15px 0 0;
  font-size: 24px;
  font-weight: 700;
}
.nointeresa label {
  background: linear-gradient(45deg, #f0f1fc, #f0f1fc, #f0f1fc);
  color: var(--black);
  opacity: 0.5;
  font-size: 18px;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transform: scale(1.1);
}
.nointeresa label:hover{
  background: linear-gradient(45deg, #f0f1fc, #f0f1fc, #f0f1fc);
  transform: scale(1.03);
  box-shadow: none;
  opacity: 1;
  color: var(--black);
}
/* Adstrategy */
#section-ads {
  background: var(--white);
  padding: 30px 0;
  text-align: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
/* Media Queries */
@media only screen and (max-width: 1440px) {
  .header-txt {
    margin: 30px 0 0 60px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt h2 {
    font-size: 25px;
    max-width: 70%;
  }
  .preform {
    margin: -60px auto 0 auto;
  }
}
@media only screen and (max-width: 1320px) {
  .header-txt h2 {
    max-width: 80%
  }
  .preform {
    width: 510px;
    height: 300px;
    padding: 20px 30px;
  }
  .vant-box p {
    font-size: 14px;
  }
  .vant-box {
    width: 90%;
  }
  .vant-box img {
    margin: 0 10px 0 -15px;
    width: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  .preform {
    margin: -10px auto 0 auto;
  }
  #funnelform {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h2 {
    font-size: 22px;
  }
  .header-txt p {
    margin-top: 10px;
  }
  .form-box {
    width: 100%;
  }
  .form-bullet p {
    font-size: 14px;
    max-width: 65%;
  }
  .form-step h3, .leave-step h3 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-txt h1 {
    font-size: 28px;
  }
  .header-txt h2 {
    font-size: 20px;
    max-width: 85%;
  }
  .header-txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1030px) {
  .header-txt h1 {
    font-size: 25px;
  }
  .header-txt h2 {
    font-size: 18px;
    max-width: 88%;
  }
}
@media only screen and (max-width: 991px) {
  .preform {
    margin: 0 auto;
    width: 100%;
    align-items: center;
  }
  .header {
    background-size: 150%;
    background-position: left bottom;
  }
  .sec1-txt h3 {
    font-size: 18px;
  }
  .vant-box-outer:nth-child(1)::after, .vant-box-outer:nth-child(2)::after {
    display: none;
  }
  .preform h3 {
    font-size: 24px;
  }
  .form-info {
    display: none;
  }
  .form-box {
    height: 430px;
  }
  #contactform {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .leave-options {
    justify-content: space-around;
  }
  .progressbar {
    margin: 30px auto;
  }
  .close-btn {
    margin: -10px -45px 0 0;
  }
  .back {
    position: absolute;
    top: 0;
    margin: 20px 0;
  }
  .offer-box img {
    margin-bottom: 10px;
  }
  .ty-pg-cta img {
    margin: -5px 0 0 8px;
  }
  .pos-box img {
    margin: -2px auto 0 auto;
  }
  .offer-txt {
    width: 90%;
    text-align: center;
    margin: 10px auto 20px auto;
  }
  .offer-txt p {
    margin: 0 auto;
  }
  .offer-box {
    flex-direction: column;
  }
  .offer-img {
    text-align: center;
  }
  .offer-img img {
    width: 90px;
  }
  #funnelform {
    padding: 60px 20px;
  }
  .radio-buton label {
    font-size: 16px;
  }
  #funnelform h3 {
    font-size: 30px;
  }
  .funnelform-box {
    height: auto;
  }
  #funnelform {
    padding: 50px 20px;
  }
  .funnel-info h4 {
    font-size: 18px;
  }
  .funnel-info h4 span {
    font-size: 35px;
  }
}
@media only screen and (max-width: 880px) {
  .header {
    background-size: 150%;
    background-position: left top;
  }
  .header-txt h1 {
    font-size: 22px;
  }
  .header-txt h2 {
    font-size: 16px;
  }
  .header-txt p {
    font-size: 14px;
  }
  .preform h3 {
    font-size: 20px;
  }
  .sec1-txt h3 {
    font-size: 16px;
  }
  .vant-box {
    max-width: 80%;
  }
}
@media only screen and (max-width: 768px) {
  .radio-buton label {
    font-size: 20px;
  }
  .repsol-box {
    flex-direction: column;
  }
  .repsol-box img {
    width: 70%;
    margin-bottom: 40px;
  }
  .radio-opt {
    width: 100%;
  }
  .header {
    text-align: center;
  }
  .header-txt h1 {
    font-size: 26px;
  }
  .header-txt h2 {
    font-size: 18px;
    margin: 0 auto;
    max-width: 100%;
  }
  .header-txt p {
    font-size: 16px;
  }
  .preform {
    width: 80%;
  }
  .vant-box {
    max-width: 90%;
  }
  .header-txt {
    margin: 30px auto;
  }
  .form-box  {
    width: 100%;
  }
  .offer-box img {
    width: 200px;
    margin-bottom: 20px;
  }
  .offer-txt {
    text-align: center;
    width: 100%;
    margin: 0 0 20px 0;
  }
  .offer-txt h3 {
    max-width: 80%;
    margin: 0 auto 10px auto;
  }
  .offer-txt p {
    max-width: 90%;
    margin: 0 auto;
  }
  .ty-pg-cta img {
    width: 20px;
    margin: -5px 0 0 8px;
  }
  .pos-box img {
    margin: -2px auto 0 auto;
  }
  .section1 {
      padding: 50px 0 70px 0;
  }
  #funnelform {
    text-align: center;
  }
  .funnelform-box {
    flex-direction: column-reverse;
  }
  .funnel-info {
    width: 100%;
  }
  .repsol-box img {
    margin: 0 auto 40px auto;
  }
  .radio-opt {
    justify-content: space-around;
  }
  .repsol-box {
    justify-content: center;
  }
  .funnel-info {
    text-align: center;
    padding: 40px 20px;
  }
}
@media only screen and (max-width: 680px) {
  .header {
    background-size: cover;
  }
  .preform {
    width: 95%;
  }
  .header-txt h2 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 550px) {
  .form-step h3, .leave-step h3 {
    font-size: 25px;
  }
  .close-btn {
    margin: -10px -35px 0 0;
  }
  .offer-box img {
    width: 150px;
  }
  .offer-txt p {
    max-width: 95%;
  }
  .ty-pg-cta img {
    width: 20px;
  }
  .radio-opt {
    flex-direction: column;
  }
  .radio-buton {
    width: 90%;
  }
  .radio-buton label {
    margin: 10px auto;
  }
}
@media only screen and (max-width: 475px) {
  .preform {
    padding: 20px 25px;
  }
  .preform h3 {
    font-size: 18px;
  }
  .sec1-txt h3 {
    font-size: 14px;
  }
  .header-txt h1 {
    font-size: 24px;
  }
  .leave-step {
    max-width: 95%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 435px) {
  #funnelform {
    padding: 40px 10px;
  }
  #funnelform h3 {
    font-size: 30px;
    max-width: 90%;
  }
  .header-txt h1 {
    font-size: 22px;
  }
  .header-txt h2 {
    font-size: 15px;
  }
  .header-txt p {
    font-size: 13px;
  }
  .nav-logo img {
    height: 40px;
  }
  .vant-box {
    max-width: 100%;
  }
  .vant-box p {
    font-size: 12px;
  }
  .leave-options {
    flex-direction: column;
    justify-content: center;
  }
  .close-cta {
    margin: 20px 0 0 0;
  }
  .form-check label {
    font-size: 11px;
  }
  .form-group select {
    font-size: 16px !important;
  }
}
@media only screen and (max-width: 400px) {
  .preform {
    padding: 20px;
  }
  .preform h3 {
    font-size: 16px;
  }
  .header-txt h1 {
    font-size: 20px;
  }
  .vant-box {
    max-width: 98%;
    margin: 0 20px;
  }
  .sec1-txt h3 {
    max-width: 80%;
    margin: 0 auto;
  }
  .preform-cta {
    font-size: 16px;
  }
  .radio-option input[type="radio"] + label {
    font-size: 16px;
  }
  .form-inputs {
    font-size: 16px !important;
  }
  .form-step h3, .leave-step h3 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    max-width: 80%;
    font-size: 22px;
    margin: 0 auto 10px auto;
  }
  .vant-box p {
    max-width: 70%;
    font-size: 11.5px;
  }
  #funnelform h3 {
    font-size: 26px;
    max-width: 100%;
  }
  .funnel-info h4 span {
    font-size: 28px;
  }
  .form-group select {
    background: none;
  }
}
@media only screen and (max-width: 320px) {
  .sec1-txt h3 {
    max-width: 85%;
  }
  .vant-box {
    max-width: 95%;
    height: 145px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    text-align: center;
    flex-direction: column;
  }
  .vant-box p {
    max-width: 85%;
  }
  .vant-box img {
    margin: 5px auto 15px auto;
  }
}