@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --neonblue: #22F1EB;
  --red: #FE646F;
  --green: #02BC7D;
  --grey: #686969;
  --white: #fff;
  --black: #030406;
  --gradient1: linear-gradient(91deg, #424344 35%, #030406 100%);
  --gradient2: linear-gradient(140deg, #424344 30%, #030406 100%);
  --box-shadow: 0 0 20px 10px rgba(52, 248, 253, 0.30);
}

html, body {
  margin: 0;
  padding: 0 !important;
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  background: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}
body {
  overflow-x: hidden !important;
}
::-moz-selection {
  color: var(--black);
  background: var(--neonblue);
}
::selection {
  color: var(--black);
  background: var(--neonblue);
}
a:hover {
  color: #000000;
}
/* section animations */
section, section .row {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.in-view, section .row.in-view {
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
/* default */
.cta {
  min-width: 100px;
  height: 40px;
  padding: 0 30px;
  border-radius: 50px;
  background: var(--neonblue);
  color: var(--black);
  border: none;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.6s ease;
}
.cta:hover {
  transform: scale(1.1);
  box-shadow: var(--box-shadow);
}
.claim {
  width: 200px;
  height: 45px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  border-radius: 50px;
  border: 1px solid var(--grey);
  box-shadow: var(--box-shadow);
  align-content: center;
  margin-bottom: 40px;
  animation: pulseGlow 4s infinite ease-in-out;
}
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 20px 10px rgba(52, 248, 253, 0.3);
  }
  50% {
    box-shadow: 0 0 22px 11px rgba(52, 248, 253, 0.4);
  }
}
.title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}
.subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  margin: 10px 0 30px 0;
}
.steps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 10px;
  height: 60px;
  border-radius: 50px;
  border: 1px solid var(--grey);
  background: var(--gradient2);
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.6s ease;
  text-align: left;
}
.steps:hover {
  transform: scale(1.02);
}
.steps span {
  background: var(--neonblue);
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50px;
  text-align: center;
  align-content: center;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  margin-right: 15px;
}
.steps p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
/* navbar */
.nav {
  padding: 40px 0;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav-logo img {
  height: 30px;
}
.nav .container {
  transition: all 0.6s ease;
}
.scrolling {
  transform: scale(0.9);
  padding: 10px 20px;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px) saturate(180%);
  background: rgba(0, 0, 0, 0.50);
  transition: box-shadow 0.4s ease, filter 0.4s ease;
  box-shadow: rgba(31, 38, 135, 0.2) 0px 8px 32px, rgba(255, 255, 255, 0.3) 0px 4px 20px inset;
}
.nav .container.scrolling .nav-logo img {
  height: 25px;
  padding-left: 10px;
  margin-top: 2px;
}
.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 50px;
  color: var(--white);
}
.nav-menu ul li {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--neonblue);
  transition: all 0.3s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--neonblue);
}
.nav-menu ul li:last-of-type:hover::after {
  content: unset;
}
/* header */
.header {
  padding: 120px 0 50px 0;
  text-align: center;
}
.header .container-fluid {
  max-width: 95%;
  margin: 0 auto;
  padding: 40px 60px 0 60px;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
}
.header-content {
  color: var(--black);
  margin-bottom: 55px;
}
.header-content h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}
.header-content hr {
  width: 300px;
  height: 2px;
  opacity: 1;
  border: none;
  background: var(--black);
  margin: 15px auto;
}
.header-content h3 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 30px;
}
.promo {
  width: 300px;
  height: 55px;
  margin: 0 auto;
  align-content: center;
  color: #030406;
  font-size: 28px;
  font-weight: 700;
}
/* form */
.form-outer {
  background: var(--black);
  border-radius: 40px 40px 0 0;
  padding: 20px 20px 0 20px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  box-shadow: 0 0 30px 10px rgba(52, 248, 253, 0.25);
  animation: pulseGlow2 4s infinite ease-in-out;
}
@keyframes pulseGlow2 {
  0%, 100% {
    box-shadow: 0 0 30px 10px rgba(52, 248, 253, 0.25);
  }
  50% {
    box-shadow: 0 0 30px 12px rgba(52, 248, 253, 0.5);
  }
}
.form-progress {
  width: 25%;
  padding: 30px 0 20px 0;
  position: relative;
  right: -10px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
.current-form-step {
  width: 95%;
  height: 40px;
  border-radius: 15px 0 0 15px;
  align-content: center;
  border: 1px solid transparent;
  background: transparent;
  text-align: center;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.30);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.4s ease;
}
.current-form-step.visited {
  color: var(--white);
}
.current-form-step.active {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}
.current-form-step.active::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 30px;
  height: 50px;
  background: var(--neonblue);
  opacity: 0.30;
  filter: blur(10px);
  transition: all 0.4s ease;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.form-step, .form-step .row {
  width: 100%;
}
#contactform{
  width: 75%;
  min-height: 410px;
  margin: 0;
  background: var(--white);
  border-radius: 30px 30px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 99;
  color: var(--black);
}
#contactform h3 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  text-wrap: balance;
}
#contactform h6 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin: 15px auto 0 auto;
}
.radio-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}
.radio-buton {
  width: 100%;
  margin: 8px 0;
}
.smaller-radio {
  gap: 5px 15px;
  margin: 0;
}
.smaller-radio .radio-buton {
  width: 48%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.6s ease;
  width: 100%;
  max-width: 330px;
  height: 50px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}
.radio-info {
  width: 85%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.radio-info img {
  width: 30px;
  margin-right: 10px;
  transition: all 0.6s ease;
}
.radio-info p {
  color: var(--black);
  font-size: 20px;
  font-weight: 300;
  line-height: 0.9;
  margin: 0;
  transition: all 0.6s ease;
}
.radio-label span {
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 50%;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  color: var(--white);
  background: var(--black);
}
.radio-buton label:hover .radio-info img, .radio-buton input[type="radio"]:checked + label .radio-info img {
  filter: brightness(0) invert();
}
.radio-buton label:hover .radio-info p, .radio-buton input[type="radio"]:checked + label p {
  color: var(--white);
}
.form-input {
  margin: 5px 0;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input {
  background: var(--white);
  border: 1px solid var(--black);
  border-radius: 15px;
  width: 100%;
  max-width: 330px;
  height: 50px;
  margin: 5px auto;
  padding: 0 15px;
  font-size: 16px;
  color: var(--black) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  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 {
  border: 1px solid var(--red);
  background-image: url('/img/form/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
.form-input input.valid {
  border: 1px solid var(--green);
  background-image: url('/img/form/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
.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: 400;
}
.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(--black);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--black);
}
.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(--neonblue);
  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;
}
.form-button {
  width: 230px;
  max-width: 100%;
  height: 50px;
  border-radius: 50px;
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  border: none;
  color: var(--black);
  background: var(--neonblue);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--black);
  color: var(--white);
}
/* section1 */
.section1 {
  padding: 50px 0;
  color: var(--white);
}
.section1-img {
  text-align: center;
}
.section1-img img {
  height: 532px;
}
.section1 h3 {
  margin-bottom: 30px;
}
.section1 .steps {
  max-width: 535px;
}
/* section2 */
.section2 {
  padding: 50px 0;
  text-align: center;
  color: var(--white);
}
.section2 .claim {
  margin: 0 auto 40px auto;
}
.vant-outer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
  margin-top: 40px;
}
.vant-box {
  width: 230px;
  min-height: 250px;
  aspect-ratio: 1;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--grey);
  background: var(--gradient2);
  text-align: left;
  transition: all 0.6s ease;
  cursor: pointer;
}
.vant-box:hover {
  transform: scale(1.03);
  box-shadow: var(--box-shadow);
}
.vant-icon {
  background: var(--neonblue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  align-content: center;
  margin-bottom: 20px;
}
.vant-box h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 15px 0;
}
.vant-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
/* section3 */
.section3 {
  padding: 50px 0;
  color: var(--white);
}
.section3-img-outer {
  text-align: right;
  padding-right: 0;
}
.section3-img {
  margin: 0 0 0 auto;
  width: 400px;
  height: 580px;
  border-radius: 30px;
  background: url('/img/img2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section3 .steps {
  max-width: 445px;
}
.section3 .steps img {
  height: 25px;
}
/* section4 */
.section4 {
  text-align: center;
  padding: 50px 0;
  color: var(--white);
  position: relative;
  z-index: 33;
}
.section4 .claim {
  margin: 0 auto 40px auto;
}
.accordion {
  margin-top: 40px;
}
.accordion-item {
  background: transparent !important;
  border: none !important;
  margin: 15px auto;
}
.accordion-button {
  border: 1px solid var(--grey) !important;
  background: var(--gradient1) !important;
  border-radius: 50px !important;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  padding: 0 25px;
  height: 60px;
  justify-content: space-between;
}
.accordion-button:not(.collapsed), .accordion-button:focus  {
  color: var(--white);
  box-shadow: none;
}
.accordion-button::after {
  background: url('/img/icons/plus.svg');
  background-size: 30px;
  width: 30px;
  height: 30px;
}
.accordion-button:not(.collapsed)::after {
  background: url('/img/icons/minus.svg');
  background-size: 30px;
  width: 30px;
  height: 30px;
}
.accordion-body {
  padding: 20px 30px;
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
  font-weight: 300;
  text-align: left;
  max-width: 95%;
}
/* footer */
.footer {
  padding: 50px 0 60px 0;
  text-align: center;
  color: var(--white);
  position: relative;
}
.footer::before {
  content: '';
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: var(--neonblue);
  opacity: 0.25;
  filter: blur(100px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.footer .container {
  position: relative;
  z-index: 33;
}
.footer .cta {
  width: 260px;
  height: 60px;
  font-size: 30px;
  margin-top: 40px;
}
/* ty message */
.message-box {
  width: 100%;
  min-height: 410px;
  margin: 0;
  background: var(--white);
  border-radius: 30px 30px 0 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px;
  position: relative;
  z-index: 99;
  color: var(--black);
  text-wrap: balance;
}
.message-box h3 {
  font-size: 60px;
  line-height: 1;
  font-weight: 700;
}
.message-box p {
  font-size: 20px;
  line-height: 1;
  margin: 15px auto 0 auto;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
#section-ads img {
  filter: brightness(0) invert(1);
}
/* Media Queries */
@media only screen and (min-width: 1820px) {
  .header .container-fluid {
    max-width: 1600px;
  }
}
@media only screen and (max-width: 1640px) {
  .form-progress {
    width: 25%;
  }
}
@media only screen and (max-width: 1440px) {
  .title {
    font-size: 40px;
  }
  .section3-img {
    height: 550px;
    width: 100%;
  }
  .smaller-radio {
    gap: 5px 12px;
  }
}
@media only screen and (max-width: 1300px) {
  #contactform {
    width: 70%;
  }
  .form-progress {
    width: 30%;
  }
  .current-form-step {
    font-size: 17px;
  }
  .smaller-radio .radio-buton {
    width: 46%;
  }
  .radio-info img {
    width: 20px;
  }
  .radio-info p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-content h1 {
    font-size: 60px;
  }
  #contactform h3 {
    font-size: 35px;
  }
  #contactform h6 {
    font-size: 28px;
  }
  .radio-label span {
    min-width: 16px;
    min-height: 16px;
    width: auto;
    height: auto;
  }
  .smaller-radio {
    gap: 5px;
  }
  .radio-info img {
    width: 20px;
  }
  .steps p, .subtitle {
    font-size: 17px;
  }
  .accordion-button {
    font-size: 18px;
  }
  .title {
    font-size: 32px;
  }
  .smaller-radio .radio-buton {
    width: 48%;
  }
  .radio-buton label {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 1080px) {
  .header-content h1 {
    font-size: 50px;
  }
  .radio-label span {
    width: 15px;
    height: 15px;
  }
  .radio-info p {
    font-size: 15px;
  }
  .radio-info {
    width: 95%;
  }
  #contactform h3 {
    font-size: 30px;
    text-wrap: unset;
  }
  #contactform h6 {
    font-size: 24px;
  }
  .smaller-radio {
    gap: 0;
  }
  .smaller-radio .radio-buton {
    width: 100%;
  }
  .current-form-step {
    width: 100%;
    font-size: 16px;
  }
  .vant-outer {
    gap: 0 15px;
  }
}
@media only screen and (max-width: 991px) {
  .nav .container {
    max-width: 90%;
  }
  .nav-menu ul {
    gap: 0 30px;
  }
  .nav-menu ul li {
    font-size: 13px;
  }
  .nav-logo img {
    height: 28px;
  }
  .nav-menu ul li {
    font-size: 16px;
  }
  .section1-img img {
    width: 100%;
    height: auto;
  }
  .vant-box {
    width: 210px;
  }
  .vant-box h6 {
    font-size: 18px;
  }
  .vant-box p {
    font-size: 13px;
  }
  .section3-img {
    height: 500px;
  }
  .form-progress {
    display: none;
  }
  #contactform {
    width: 100%;
  }
  .radio-info p {
    font-size: 16px;
  }
  .radio-label span {
    min-width: 15px;
    min-height: 15px;
  }
  .radio-info img {
    width: 18px;
  }
  .smaller-radio .radio-buton {
    width: 48%;
  }
  .vant-outer {
    flex-wrap: wrap;
    gap: 15px;
  }
  .vant-box {
    width: 240px;
  }
}
@media only screen and (max-width: 880px) {
  .nav-menu ul li {
    display: none;
  }
  .nav-menu ul li:last-of-type {
    display: flex;
  }
  .nav-menu ul li::after {
    display: none;
  }
  .nav .container {
    max-width: 80%;
  }
  .radio-info {
    max-width: 90%;
  }
  .form-step .col-md-6:last-of-type {
    padding: 0;
  }
}
@media only screen and (max-width: 768px) {
  .header-content h1 {
    font-size: 45px;
  }
  .section1 .row {
    flex-direction: column-reverse;
  }
  .claim {
    margin: 0 auto 40px auto;
  }
  .section1, .section3 {
    text-align: center;
  }
  .section1-img img {
    width: 300px;
    margin: 30px auto 0 auto;
  }
  .vant-box {
    width: 47%;
  }
  .steps {
    margin: 15px auto;
  }
  .section3-img {
    width: 80%;
    height: auto;
    margin: 30px auto 0 auto;
    aspect-ratio: 1;
  }
  .accordion-button::after {
    margin-left: 20px;
  }
  .radio-opt {
    margin-top: 30px;
  }
  .form-input {
    margin: 30px 0 5px 0;
  }
  .message-box h3 {
    font-size: 45px;
  }
  .message-box p {
    font-size: 17px;
  }
}
@media only screen and (max-width: 580px) {
  .nav-logo img {
    height: 23px;
  } 
  .nav .container.scrolling .nav-logo img {
    height: 19px;
  }
  .header-content h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 500px) {
  .header .container-fluid {
    padding: 40px 30px 0 30px;
  }
  .header-content h3 {
    text-wrap: balance;
  }
}
@media only screen and (max-width: 475px) {
  .nav-logo img {
    height: 20px;
  } 
  .nav .container.scrolling .nav-logo img {
    height: 18px;
  }
  .nav .container {
    max-width: 95%;
  }
  .header-content h1 {
    font-size: 36px;
  }
  .title {
    font-size: 28px;
  }
  .steps {
    width: 90%;
    margin: 15px auto;
  }
  .vant-box {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    min-height: auto;
    aspect-ratio: unset;
    padding: 20px;
    margin: 0 auto;
  }
  .vant-icon {
    margin-right: 20px;
    margin-bottom: 0;
  }
  .vant-box h6 {
    width: 75%;
    margin: 0;
  }
  .vant-box p {
    width: 100%;
    margin-top: 20px;
  }
  #contactform {
    padding: 30px 10px;
  }
  .radio-info p {
    font-size: 16px;
  }
  .accordion-body {
    font-size: 14px;
  }
  .message-box {
    padding: 30px 15px 0 15px;
  }
  .message-box h3 {
    font-size: 35px;
  }
  .message-box p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 435px) {
  .header-content h1 {
    font-size: 32px;
  }
  .header-content h3 {
    font-size: 18px;
  }
  .radio-info img {
    display: none;
  }
  #contactform h3 {
    font-size: 26px;
  }
  .steps span {
    font-size: 22px;
    min-width: 35px;
    min-height: 35px;
  }
}
@media only screen and (max-width: 390px) {
  .header {
    padding: 100px 0 50px 0;
  }
  .header-content h1 {
    font-size: 28px;
  }
  .promo, .header-content hr{
    width: 100%;
  }
  .promo {
    font-size: 24px;
  }
  .nav .cta {
    padding: 0 15px;
  }
  .steps p, .subtitle {
    font-size: 15px;
    text-wrap: balance;
  }
  .accordion-button {
    font-size: 16px;
  }
  .accordion-button::after, .accordion-button:not(.collapsed)::after {
    width: 20px;
    height: 20px;
    margin-left: 15px;
    background-size: contain;
  }
  .accordion-body {
    font-size: 13px;
  }
  .title {
    font-size: 26px;
  }
  .vant-icon {
    width: 40px;
    height: 40px;
  }
  .vant-icon img {
    width: 25px;
    margin: 0 auto;
  }
  .footer::before {
    width: 290px;
    height: 290px;
  }
  .section1-img img {
    width: 80%;
  }
  .radio-info {
    max-width: 85%;
  }
}
@media only screen and (max-width: 350px) {
  .nav-menu ul li:last-of-type {
    display: none;
  }
  .nav-logo {
    width: 100%;
    text-align: center;
  }
  .nav .container {
    max-width: 70%;
  }
  .header .container-fluid {
    padding: 40px 10px 0 10px;
    border-radius: 30px;
  }
  .form-outer {
    border-radius: 30px 30px 0 0;
  }
  #contactform {
    border-radius: 20px 20px 0 0;
  }
  .vant-box {
    text-align: center;
    justify-content: center;
    text-wrap: balance;
  }
  .vant-icon {
    margin: 0 auto 20px auto;
  }
  .vant-box h6 {
    width: 100%;
  }
  .accordion-button {
    font-size: 14px;
    height: 50px;
    padding: 0 13px;
  }
  .accordion-button::after, .accordion-button:not(.collapsed)::after {
    margin-left: 10px;
  }
  .title {
    font-size: 24px;
  }
}