@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --orange: #F17242;
  --green: #389274;
  --darkgreen: #1F3950;
  --lightgrey: #FAF9FE;
  --white: #fff;
  --black: #000;
  --red: #FE646F;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Outfit", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}

/* pixel hidden */
img[src*="tracking.adstrategysites.com/aff_lsr"] {
  display: none !important;
}

/* navbar */
.nav {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  z-index: 88;
}

.nav-scroll {
  background: var(--white);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1)
}

.nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 0 20px;
  list-style: none;
}

.nav-menu ul li {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: var(--darkgreen);
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  line-height: 1.1;
}

.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0%;
  height: 2px;
  background: var(--green);
  transition: width 0.3s ease;
}

.nav-menu ul li:hover::after {
  width: 100%;
}

.nav-menu ul li img {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(16%) sepia(65%) saturate(461%) hue-rotate(167deg) brightness(97%) contrast(92%);
}

.nav-menu ul li:hover {
  color: var(--green);
}

.nav-menu ul li:hover img {
  filter: none;
}

.nav-menu ul li:last-of-type::after {
  content: none;
}

.nav-menu ul li button {
  width: 170px;
  height: 40px;
  border-radius: 10px;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.6s ease;
}

.nav-menu ul li button:hover {
  background: var(--darkgreen);
  transform: scale(1.05);
}

/* header */
.header {
  margin-top: 60px;
  padding: 50px 0;
  background: linear-gradient(180deg, #FFF 0%, #FAF9FE 100%);
  position: relative;
}

.header::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  border-radius: 0 0 100px 0;
  width: 100px;
  height: 205px;
  background: var(--green);
  z-index: 99;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-txt {
  text-wrap: balance;
}

.header-txt img {
  height: 70px;
  margin-bottom: 50px;
}

.header-txt h1 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
  color: var(--darkgreen);
}

.header-txt h1 span {
  font-weight: 700;
  color: var(--green);
}

.header-txt h3 {
  font-size: 32px;
  font-weight: 500;
  margin: 30px 0;
  line-height: 1.1;
}

.header-txt p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--darkgreen);
}

.header-img img {
  height: 700px;
  margin-right: 50px;
  margin-bottom: -50px;
}

/* form */
#contactform {
  background: var(--white);
  text-align: center;
  width: 430px;
  border-radius: 30px 30px 30px 0;
  box-shadow: 0 0 75px 0 rgba(0, 0, 0, 0.20);
  padding: 50px 60px;
}

#contactform h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance; 
  color: var(--darkgreen);
  margin-bottom: 35px;
}
#contactform h2 span{ 
    color: var(--green);
}
#contactform h5 {
  color: var(--darkgreen);
  font-family: Outfit;
  font-size: 24px;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-color: var(--green);
  text-decoration-thickness: 15%;
  text-underline-offset: 21%;
  text-underline-position: from-font;
  margin-bottom: 35px;
}

.form-step h6 {
  font-size: 24px;
  font-weight: 600;
  color: var(--darkgreen);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 20px;
}

.follow-up h6 {
  margin-bottom: 10px;
}

.follow-up p {
  font-size: 14px;
  cursor: pointer;
  text-wrap: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  margin-bottom: 5px;
}

.follow-up b {
  text-decoration: underline;
}
#additionalPerson{
  margin-top: 15px;
}
#additionalPerson .row {
  align-items: center;
  justify-content: space-between;
}

#additionalPerson h6 {
  width: 100%;
  text-align: center;
}

#additionalPerson button {
  background: transparent;
  width: 30px;
  height: 30px;
  border: 1px solid var(--green);
  padding: 2px;
  border-radius: 6px;
}

.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.form-step.active {
  display: flex;
}

.radio-opt {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

.radio-buton {
  width: 100%;
  margin: 5px 0;
}

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--white);
  border: 1px solid var(--green);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--darkgreen);
  font-size: 16px;
  font-weight: 400;
  padding: 0 15px;
  line-height: 1;
}

.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label {
  background: var(--green);
  border: 1px solid var(--green);
  color: var(--white);
}

/* sliders */
.value-display {
  margin-bottom: 10px;
  border-bottom: 2px solid var(--darkgreen);
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-display img {
  margin-left: 10px;
}

#prestValue {
  font-size: 34px;
  font-weight: 700;
}

#prestValue:focus-visible {
  outline: none;
}

.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px 0;
}

.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 8px;
  border-radius: 15px;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--darkgreen) 0%, var(--darkgreen) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--darkgreen) 0%, var(--darkgreen) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-ms-track {
  height: 8px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--green);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--green);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--green);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

.form-input input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid var(--green);
  font-size: 16px;
  color: var(--darkgreen) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  margin: 5px auto;
  line-height: 1;
}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-input input.error {
  margin: 0;
  border: 1px solid var(--red);
  background-image: url('/simulador_assets/img/icons/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px 0 0 0;
}

.form-input input.valid {
  border: 1px solid var(--green);
  background-image: url('/simulador_assets/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px 0;
}

.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}

.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 11px;
  font-weight: 300;
}

.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--green);
}

.form-check input[type=checkbox]:checked+.checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}

#politica-link {
  color: var(--black);
  text-decoration: none;
}

#politica-link:hover {
  color: var(--orange);
  text-decoration: underline;
}

label.error,
#terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
button.last_step{
    background: transparent;
    border: transparent;
    cursor: pointer;
    text-decoration: underline;
}
.form-button {
  min-width: 100%;
  height: 55px;
  border-radius: 8px;
  padding: 0 30px;
  font-size: 24px;
  font-weight: 500;
  border: none;
  color: var(--white);
  background: var(--orange);
  transition: all 0.4s ease;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-button:hover {
  transform: scale(1.05);
  background: var(--darkgreen);
  color: var(--white);
}

.form-button img {
  width: 18px;
  aspect-ratio: 1;
  transition: all 0.4s ease;
  margin-left: 10px;
}

.form-button:hover img {
  transform: rotate(45deg);
}

.next img {
  width: 18px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 0.4s ease;
}

.next:hover img {
  transform: translateY(-50%) rotate(45deg);
}

.next {
  position: relative;
}

/* section1 */
.section1 {
  padding: 80px 0 60px 0;
  position: relative;
  min-height: 600px;
}

.spot {
  position: absolute;
}

.spot1 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 0 100px 100px 0;
  width: 100px;
  height: 285px;
  background: var(--darkgreen);
}

.spot2 {
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 100px 0 0 0;
  width: 140px;
  height: 285px;
  background: var(--green);
  z-index: 22;
}

.spot3 {
  top: 55%;
  right: 0;
  border-radius: 100px 0 0 100px;
  width: 100px;
  height: 285px;
  background: var(--darkgreen);
  z-index: 33;
}

.logos-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 33;
}

.sec1-txt {
  width: 400px;
  max-width: 100%;
  text-wrap: balance;
  margin-top: 30px;
}

.sec1-txt h3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--darkgreen);
  line-height: 1;
}

.sec1-txt h3 span {
  font-weight: 700;
  color: var(--green);
}

.logo-item {
  border-radius: 35px;
  box-shadow: 0 0 50px 0 rgba(31, 57, 80, 0.25);
  background: var(--white);
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.6s ease;
}

.logo-item:hover {
  transform: scale(1.1);
}

.logo-item img {
  width: 85%;
  margin: 0 auto;
}

.logo-item:nth-child(2) {
  width: 280px;
}

.logo-item:nth-child(3),
.logo-item:nth-child(6) {
  width: 225px;
}

.logo-item:nth-child(4) {
  margin-top: 100px;
}

.logo-item:nth-child(7) {
  width: 200px;
}

.logo-item:nth-child(7) img {
  width: 135px;
}

.logo-item:nth-child(4),
.logo-item:nth-child(5),
.logo-item:nth-child(8),
.logo-item:nth-child(9) {
  width: 175px;
}

.logo-item:nth-child(5) {
  margin-top: -80px;
}

.logo-item:nth-child(8) {
  margin-top: -50px;
}

/* section2 */
.section2 {
  padding: 60px 0;
  background: var(--lightgrey);
}

.section2 .container {
  background: var(--white);
  border-radius: 60px;
  box-shadow: 0 0 30px 0 rgba(31, 57, 80, 0.20);
  padding: 50px;
}

.section2-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 0;
}

.sec2-txt,
.vant,
.section2-content button {
  width: 32%;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sec2-txt {
  flex-direction: column;
  align-items: flex-start;
}

.sec2-txt h3 {
  font-size: 40px;
  font-weight: 500;
  color: var(--darkgreen);
  line-height: 1;
  margin: 0 0 10px 0;
}

.sec2-txt h3 span {
  font-weight: 700;
  color: var(--green);
}

.sec2-txt p {
  font-size: 20px;
  font-weight: 400;
  color: var(--darkgreen);
  line-height: 1.1;
  margin: 0;
  text-wrap: balance;
}

.vant {
  background: var(--green);
  border-radius: 20px;
  padding: 0 50px;
}

.vant img {
  height: 75px;
  margin-right: 10px;
}

.vant h6 {
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  width: 50%;
  margin: 0;
}

.section2-content button {
  background: var(--orange);
  border-radius: 20px;
  padding: 0 50px;
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.6s ease;
}

.section2-content button img {
  height: 20px;
  margin-left: 10px;
  transition: all 0.6s ease;
}

.section2-content button:hover {
  background: var(--darkgreen);
  transform: scale(1.05);
}

.section2-content button:hover img {
  transform: rotate(45deg);
}

/* section3 */
.section3 {
  padding: 60px 0;
  position: relative;
}

.spot4 {
  bottom: 60px;
  left: 0;
  border-radius: 0 100px 0 0;
  width: 200px;
  height: 285px;
  background: var(--green);
  z-index: 22;
}

.spot5 {
  top: 55%;
  right: 0;
  border-radius: 100px 0 0 100px;
  width: 100px;
  height: 285px;
  background: var(--darkgreen);
  z-index: 33;
}

.section3 .container {
  background: var(--white);
  border-radius: 60px;
  box-shadow: 0 0 30px 0 rgba(31, 57, 80, 0.20);
  overflow: hidden;
}

.sec3-title {
  text-align: center;
  width: 620px;
  max-width: 90%;
  margin: 0 auto 70px auto;
}

.sec3-title h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  color: var(--darkgreen);
  text-wrap: balance;
}

.sec3-title h3 span {
  font-weight: 700;
  color: var(--green);
}

.accordion-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 50px;
}

.accordion {
  width: 100%;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item,
.accordion-item:last-of-type {
  border-radius: 0;
  border: none;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item {
  border-bottom: 1px solid var(--green);
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--darkgreen);
  background: var(--white);
  box-shadow: none;
}

.accordion-button {
  padding: 20px;
  min-height: 65px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.accordion-button p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--darkgreen);
  margin: 0;
  max-width: 85%;
}

.accordion-button span {
  color: var(--green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  margin-right: 10px;
}

.accordion-button::after {
  background: url('/simulador_assets/img/icons/accrod_down.svg');
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
}

.accordion-button:not(.collapsed)::after {
  background: url('/simulador_assets/img/icons/accrod_up.svg');
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
}

.accordion-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--darkgreen);
  padding: 20px 30px;
}

.sec3-img {
  height: 620px;
  background: url('/simulador_assets/img/img1.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 60px;
  border: 2px solid var(--darkgreen);
}

/* footer */
.footer {
  margin: 30px 0 50px 0;
}

.footer .container {
  position: relative;
  border-radius: 60px 60px 60px 0;
  height: 300px;
  background: linear-gradient(90deg, rgba(31, 57, 80, 0.8) 0%, rgba(255, 255, 255, 0) 10%, rgba(31, 57, 80, 0) 40%, rgba(31, 57, 80, 1) 50%), url('/simulador_assets/img/footer.png');
  background-size: cover, 65%;
  background-repeat: no-repeat;
  background-position: center, -25% center;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer .container .row {
  width: 100%;
  position: relative;
  z-index: 99;
}

.footer .container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(31, 57, 80, 0.25);
  position: absolute;
  top: 0;
  left: 0;
}

.footer-txt {
  color: var(--white);
  padding: 0 80px;
}

.footer-txt h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.footer-txt h3 span {
  padding-bottom: 2px;
  border-bottom: 8px solid var(--green);
}

.footer-txt button {
  width: 240px;
  height: 60px;
  border: none;
  border-radius: 20px;
  background: var(--orange);
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  margin-top: 20px;
  transition: all 0.6s ease;
}

.footer-txt button:hover {
  transform: scale(1.1);
  background: var(--green);
}

/* message */
.message-box {
  background: var(--white);
  text-align: center;
  width: 430px;
  border-radius: 30px 30px 30px 0;
  box-shadow: 0 0 75px 0 rgba(0, 0, 0, 0.20);
  padding: 60px 30px;
  text-wrap: balance;
}

.message-box h3 {
  font-size: 34px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.message-box p {
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
  margin-top: 20px;
  color: var(--darkgreen);
}

/* thanks page */
.nav-logo {
  height: 7vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo img {
  height: 35px;
}

.thankyou {
  height: 93vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: url('/simulador_assets/img/factura.png');
  background-size: 70%;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.thankyou::before {
  content: '';
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.thankyou .container {
  position: relative;
  z-index: 99;
}

.thankyou .message-box {
  width: 685px;
  max-width: 100%;
  margin: 0 auto;
}

.thankyou .message-box img {
  height: 80px;
  margin: 40px auto;
}

.selo {
  background: var(--orange);
  width: 80%;
  height: 50px;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
  display: none;
}

#section-ads img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(65%) saturate(461%) hue-rotate(167deg) brightness(97%) contrast(92%);
}

/* Media Queries */
@media only screen and (max-width: 1640px) {
  .spot4 {
    width: 150px;
    left: -30px;
  }
}

@media only screen and (max-width: 1440px) {
  .nav-menu ul {
    gap: 0 15px;
  }

  .nav-menu ul li {
    font-size: 14px;
  }

  .header-txt h1 {
    font-size: 42px;
  }

  .header-txt h3 {
    font-size: 28px;
  }

  .header-img img {
    height: 650px;
  }

  .header::before {
    height: 170px;
  }

  #contactform,
  .message-box {
    width: 400px;
    margin-left: -50px;
    padding: 45px;
  }

  .logo-item:nth-child(2) {
    width: 265px;
  }

  .logo-item:nth-child(3),
  .logo-item:nth-child(6) {
    width: 205px;
  }

  .logo-item:nth-child(4),
  .logo-item:nth-child(5),
  .logo-item:nth-child(8),
  .logo-item:nth-child(9) {
    width: 185px;
  }

  .logo-item:nth-child(7) {
    width: 200px;
  }

  .spot2 {
    width: 120px;
  }

  .spot1,
  .spot3,
  .spot5 {
    width: 80px;
  }

  .spot4 {
    width: 150px;
    left: -5%;
  }

  .vant h6 {
    width: 80%;
  }

  .accordion-button p {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-img img {
    margin-bottom: 0;
    height: 450px;
  }

  .header-txt h1 {
    font-size: 40px;
  }

  .sec1-txt h3,
  .sec2-txt h3,
  .sec3-title h3 {
    font-size: 36px;
  }

  .sec1-txt {
    width: 300px;
  }

  .logo-item:nth-child(2) {
    width: 225px;
  }

  .logo-item:nth-child(3),
  .logo-item:nth-child(6) {
    width: 185px;
  }

  .logo-item:nth-child(4),
  .logo-item:nth-child(5),
  .logo-item:nth-child(8),
  .logo-item:nth-child(9) {
    width: 135px;
  }

  .logo-item:nth-child(7) {
    width: 150px;
  }

  .accordion-button span {
    font-size: 22px;
  }

  .accordion-button p {
    font-size: 18px;
  }

  .accordion-body {
    font-size: 15px;
    padding: 20px 15px;
  }

  .spot2 {
    width: 100px;
  }

  .spot1,
  .spot3,
  .spot5 {
    width: 70px;
  }

  .vant img {
    height: 60px;
  }

  .vant h6 {
    font-size: 18px;
  }

  .vant {
    padding: 0 40px;
  }

  .footer-txt h3 {
    font-size: 32px;
  }

  .footer .container {
    background-size: cover, 85%;
    background-position: center, -110% center;
  }

  .thankyou {
    background-size: 100%;
  }
}

@media only screen and (max-width: 1080px) {

  #contactform,
  .message-box {
    margin-left: -80px;
  }
}

@media only screen and (max-width: 991px) {
  .header::before {
    width: 60px;
    height: 120px;
  }

  .header-txt img {
    height: 60px;
    margin-bottom: 40px;
  }

  .header-txt h1 {
    font-size: 38px;
  }

  #contactform,
  .message-box {
    margin-left: 0px;
  }

  #contactform h2 {
    font-size: 34px;
  }

  #contactform h5 {
    font-size: 22px;
  }

  .message-box h3 {
    font-size: 30px;
  }

  .form-step h6 {
    font-size: 20px;
  }

  .header-img {
    display: none;
  }

  .sec1-txt {
    text-align: center;
    width: 100%;
    margin-bottom: 60px;
  }

  .logo-item:nth-child(4) {
    margin-top: 20px;
  }

  .logo-item:nth-child(2) {
    width: 180px;
    margin-top: -40px;
  }

  .logo-item:nth-child(9) {
    width: 180px;
  }

  .logo-item:nth-child(3),
  .logo-item:nth-child(6) {
    width: 140px;
  }

  .logo-item:nth-child(4),
  .logo-item:nth-child(5),
  .logo-item:nth-child(8) {
    width: 120px;
  }

  .logo-item:nth-child(5) {
    margin-top: 50px;
    width: 140px;
  }

  .logo-item:nth-child(7) {
    margin-top: -40px;
  }

  .logo-item:nth-child(8) {
    margin-top: -20px;
  }

  .section2 .container {
    padding: 40px 50px;
  }

  .sec2-txt {
    width: 100%;
    align-items: center;
    margin-bottom: 20px;
    height: unset;
    text-align: center;
  }

  .vant {
    width: 48%;
  }

  .section3 {
    padding: 50px 0 40px 0;
  }

  .sec3-title {
    margin: 0 auto 40px auto;
  }

  .section2-content button {
    width: unset;
    min-width: 200px;
    height: 60px;
    padding: 0 40px;
    margin: 20px auto 0 auto;
  }

  .accordion-outer {
    padding: 30px 40px 40px 40px;
  }

  .sec3-img {
    height: 400px;
  }

  .spot2 {
    width: 80px;
    height: 185px;
  }

  .spot1,
  .spot3,
  .spot5 {
    width: 60px;
    height: 185px;
  }

  .spot4 {
    width: 90px;
    height: 185px;
    left: 0;
  }

  .footer-txt {
    padding: 0 30px;
  }

  .footer .container {
    background-size: cover, 95%;
    background-position: center, -440% center;
  }
}

@media only screen and (max-width: 880px) {
  .header::before {
    width: 40px;
    height: 100px;
  }

  #contactform,
  .message-box {
    width: 380px;
    padding: 40px;
    margin-left: -20px;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    margin: 0;
    text-align: center;
    padding: 40px 0 60px 0;
  }

  .header::before {
    top: 0;
    width: 80px;
    height: 220px;
  }

  .header-txt {
    margin-bottom: 30px;
  }

  .header-txt img {
    margin-bottom: 30px;
  }

  #contactform,
  .message-box {
    margin: 0 auto;
  }

  .section1 {
    padding: 50px 0;
  }

  .sec1-txt {
    margin-top: 0;
  }

  .logo-item:nth-child(5) {
    margin-top: 10px;
  }

  .logo-item:nth-child(7) {
    margin-top: 30px;
  }

  .vant {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 15px 10px;
  }

  .vant img {
    margin: 0 0 5px 0;
  }

  .vant h6 {
    width: 100%;
    text-wrap: balance;
  }

  .footer .container {
    background: var(--darkgreen);
    text-align: center;
    padding: 40px 0;
    height: auto;
  }

  .thankyou {
    background: url('/simulador_assets/img/factura-m.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .thankyou .message-box img {
    height: 65px;
  }

  .thankyou .message-box h3 {
    text-wrap: balance;
    font-size: 34px;
  }

  .selo {
    font-size: 18px;
    width: 100%;
  }
}

@media only screen and (max-width: 620px) {
  .header::before {
    width: 50px;
    height: 100px;
  }

  .spot2 {
    width: 50px;
    height: 185px;
  }

  .spot1,
  .spot3,
  .spot5 {
    width: 40px;
    height: 185px;
  }

  .spot4 {
    width: 50px;
    height: 185px;
    left: 0;
  }
}

@media only screen and (max-width: 550px) {
  .header-txt h1 {
    font-size: 34px;
  }

  .header-txt h3 {
    font-size: 26px;
  }

  .sec1-txt h3,
  .sec2-txt h3,
  .sec3-title h3,
  .footer-txt h3,
  #contactform h2 {
    font-size: 30px;
  }

  .logo-item:nth-child(6) {
    width: 175px;
  }

  .logo-item:nth-child(8) {
    margin-top: 0;
  }

  .logos-grid {
    gap: 10px 20px;
  }
}

@media only screen and (max-width: 475px) {

  .sec1-txt h3,
  .sec2-txt h3,
  .sec3-title h3,
  .footer-txt h3,
  #contactform h2 {
    font-size: 28px;
  }

  .accordion-button p {
    font-size: 16px;
  }

  .accordion-body {
    font-size: 14px;
    padding: 0 20px;
  }

  .vant img {
    height: 50px;
  }

  .vant h6 {
    font-size: 15px;
  }

  #contactform,
  .message-box {
    width: 95%;
  }

  #contactform h5 {
    font-size: 18px;
  }

  .form-button {
    font-size: 20px;
  }

  .thankyou .message-box {
    padding: 30px;
  }

  .thankyou .message-box h3 {
    font-size: 26px;
  }

  .thankyou .message-box img {
    height: 55px;
  }

  .selo {
    padding: 10px 15px;
    font-size: 16px;
    line-height: 1.1;
    text-wrap: balance;
    height: auto;
  }
}

@media only screen and (max-width: 414px) {
  .vant {
    width: 100%;
    flex-direction: row;
    padding: 20px;
  }

  .vant img {
    height: auto;
    width: 40px;
    margin: 0 5px 0 0;
  }

  .section2 .container {
    padding: 40px 30px;
    border-radius: 40px;
  }

  .section3 .container,
  .sec3-img {
    border-radius: 40px;
  }

  .footer .container {
    border-radius: 40px 40px 40px 0;
  }

  .logos-grid {
    gap: 10px;
  }

  .accordion-outer {
    padding: 30px 20px 40px 20px;
  }

  .header-txt p {
    font-size: 16px;
  }

  .form-button {
    padding: 0 15px;
  }

  .form-check label,
  .radio-buton label {
    text-align: left;
  }
}

@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 32px;
  }

  .form-step h6 {
    font-size: 16px;
  }

  .sec1-txt h3,
  .sec2-txt h3,
  .sec3-title h3,
  .footer-txt h3,
  #contactform h2 {
    font-size: 26px;
  }

  #contactform,
  .message-box {
    padding: 35px 25px;
  }

  .radio-buton label {
    font-size: 15px;
  }

  .form-check label {
    font-size: 9px;
  }

  .logo-item:nth-child(6) {
    width: 120px;
  }

  .logo-item:nth-child(8) {
    margin-top: -40px;
  }

  .logo-item:nth-child(2) {
    width: 155px;
  }

  .logo-item:nth-child(9) {
    width: 120px;
  }

  .logo-item:nth-child(8) {
    margin-top: 0;
    width: 155px;
  }

  .logo-item:nth-child(6) {
    margin-top: 30px;
  }

  .logo-item:nth-child(4) {
    margin-top: 40px;
  }

  .logo-item:nth-child(7) img {
    width: 80%;
  }

  .section2-content button {
    padding: 0 20px;
    min-width: 100%;
  }

  .form-button {
    font-size: 18px;
  }
}

@media only screen and (max-width: 335px) {
  #contactform h5 {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .section2-content button img,
  .form-button img {
    width: 15px;
  }

  .section2-content button {
    font-size: 17px;
  }

  .logo-item:nth-child(3),
  .logo-item:nth-child(6) {
    width: 100px;
  }

  .logo-item:nth-child(8) {
    width: 140px;
  }

  .header::before {
    width: 20px;
    height: 100px;
  }

  .accordion-button span {
    display: none;
  }

  .accordion-button p {
    width: 95%;
    font-size: 14px;
  }

  .sec1-txt h3,
  .sec2-txt h3,
  .sec3-title h3,
  .footer-txt h3,
  #contactform h2 {
    font-size: 26px;
  }

  .vant {
    padding: 20px 15px;
  }

  .vant img {
    width: 30px;
  }

  .vant h6 {
    font-size: 14px;
  }
}