@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --lightgreen: #ECF4F1;
  --lightorange: #FFF8EC;
  --green: #478D78;
  --orange: #FF780E;
  --blue: #0A6E94;
  --white: #fff;
  --black: #2B333B;
  --grey: #D9D9D9;
  --gradient: linear-gradient(0deg,rgba(236, 244, 241, 1) 0%, rgba(255, 255, 255, 1) 50%);
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Work Sans", 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;
}
/* default */
.container-fluid {
  max-width: 90%;
  margin: 0 auto;
}
.title h3 {
  font-size: 45px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.title p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--black);
}
/* navbar */
.nav {
  background: var(--green);
  text-align: center;
  color: var(--white);
  padding: 10px 0;
  border-radius: 0 0 30px 30px;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-inner h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.nav-inner h6 b {
  font-style: italic;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.6s ease;
}
.nav-inner h6 b:hover {
  text-decoration: underline;
}
.nav-inner img {
  margin-right: 5px;
}
/* header */
.header {
  margin-top: 40px;
  padding: 60px 0;
}
.header-content {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}
.header-txt img {
  margin-bottom: 70px;
}
.selo {
  border-radius: 50px;
  background: var(--lightgreen);
  width: 350px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;
  cursor: pointer;
  transition: all 0.6s ease;
}
.selo h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--green);
  margin: 0;
  line-height: 1;
}
.selo:hover {
  background: var(--lightorange);
  transform: scale(1.1);
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
}
.selo:hover h6 {
  color: var(--orange);
}
.header-txt h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--green);
  text-wrap: balance;
}
.header-txt h3 {
  color: var(--black);
  font-size: 30px;
  font-weight: 400;
  text-wrap: balance;
  line-height: 1.1;
  margin: 55px 0 0 0;
}
.header-img  {
  position: relative;
}
.header-img svg {
  position: absolute;
  top: 10%;
  left: -25%;
  transition: all 0.6s ease;
  cursor: pointer;
}
.header-img svg .selo-color {
  transition: all 0.6s ease;
}
.header-img svg:hover .selo-color {
  fill: var(--green);
}
.header-img svg:hover {
  transform: scale(1.1);
}
.header-img img {
  height: 570px;
  margin: 0 -40px;
}
/* form */
#contactform {
  width: 350px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  border: 1px solid var(--grey);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 40px 40px 40px;
  position: relative;
  z-index: 99;
}
.form-step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 20px;
}
.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(--grey);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
}
.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(--lightgreen);
  border: 1px solid var(--green);
  color: var(--green);
}
.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 8px;
  border: 1px solid var(--grey);
  font-size: 16px;
  color: var(--darkblue) !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);
}
input[name="phone"] {
  background-image: url('/img/france.svg');
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error {
  margin: 0;
  border: 1px solid var(--orange);
  background-image: url('/img/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('/img/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px 0;
}
input[name="phone"].error {
  background: url('/img/france.svg'), url('/img/error.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px 0 0 0;
}
input[name="phone"].valid {
  background: url('/img/france.svg'), url('/img/check.svg');
  background-position: 15px center, 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(--orange);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-button {
  min-width: 100%;
  height: 45px;
  border-radius: 8px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  color: var(--white);
  background: var(--orange);
  transition: all 0.4s ease;
  margin-top: 15px;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--green);
  color: var(--white);
}
.next {
  font-size: 20px;
}
/* section1 */
.section1 {
  padding: 80px 0;
  background: var(--gradient);
}
.section1 .title {
  text-wrap: balance;
}
.section1 .title h3 {
  margin: 0 0 40px 0;
}
.vant-outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.vant:nth-child(odd) {
  margin-top: -100px;
}
.vant {
  position: relative;
  width: 48%;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--grey);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}
.vant:hover {
  transform: scale(1.1);
}
.vant::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  background: var(--green);
  border-radius: 50%;
  transform: translate(50%, 50%);
  transition: all 0.8s ease;
  z-index: 0;
}
.vant:hover::before {
  width: 300%;
  height: 300%;
}
.vant * {
  position: relative;
  z-index: 1;
}
.vant:hover h3, .vant:hover p {
  color: #fff;
}
.vant-icon {
  width: 80px;
  aspect-ratio: 1;
  background: var(--lightgreen);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.8s ease;
}
.vant:hover .vant-icon {
  background: var(--white);
}
.vant-icon img {
  height: 40px;
}
.vant h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  margin: 20px 0;
  transition: all 0.8s ease;
}
.vant p {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  transition: all 0.8s ease;
}
/* section2 */
.section2 {
  padding: 80px 0;
}
.comparison {
  width: 650px;
  height: 650px;
  overflow: hidden;
  margin: 0 auto 0 0;
  border-radius: 20px;
  position: relative;
  z-index: 33;
}
.comparison figure {
  background-image: url('/img/personas/persona1/after.png');
  background-size: cover;
  font-size: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.comparison figure > img {
  width: 100%;
}
.comparison figure .divisor {
  background-image: url('/img/personas/persona1/before.png');
  background-size: cover;
  position: absolute;
  width: 50%;
  box-shadow: 0 5px 10px -2px rgba(0,0,0,0.3);
  border-right: 4px solid var(--white);
  overflow: hidden;
  bottom: 0;
  height: 100%;
}
.comparison figure,
.comparison figure .divisor {
  transition: background-image 0.4s ease-in-out;
}
.comparison input[type="range"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  background-color: transparent;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 44;
}
.comparison input[type="range"]:focus {
  outline: none;
}
.comparison input[type="range"]:active {
  outline: none;
}
.comparison input[type="range"]::-moz-range-track {
  -moz-appearance: none;
  height: 15px;
  width: 95%;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  outline: none;
}
.comparison input[type="range"]::active {
  border: none;
  outline: none;
}
.slider-button {
  width: 105px;
  aspect-ratio: 1;
  background: url('/img/arrows.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-left: -2px;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  opacity: 0;
  width: 105px;
  height: 400px;
}
.slider::-moz-range-thumb {
  -webkit-appearance: none;
  opacity: 0;
  width: 105px;
  height: 400px;
}
.section2 .title p {
  max-width: 65%;
  margin: 30px 0 0 0;
}
.review-slider {
  margin-top: 60px;
}
.review {
  width: 510px;
  max-width: 95%;
  min-height: 255px;
  border-radius: 20px;
  border: 1px solid var(--grey);
  background: var(--white);
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
.stars {
  height: 25px;
  margin-bottom: 20px;
}
.review p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.review hr {
  border: none;
  background: var(--grey);
  width: 100%;
  height: 1px;
  opacity: 1;
  margin: 20px 0;
}
.persona {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--green);
}
.persona img {
  height: 45px;
  margin-right: 20px;
}
.persona h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.persona h6 {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 20px 0 0 0;
  list-style: none;
  gap: 15px;
  width: 510px;
  max-width: 90%;
}
.slick-dots li {
  background: var(--grey);
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50px;
  cursor: pointer;
}
.slick-dots .slick-active {
  background: var(--green);
}
.slick-dots li button {
  display: none;
}
.sec2-button {
  text-align: center;
  margin-top: 50px;
}
.sec2-button button {
  width: 350px;
  height: 60px;
  background: var(--orange);
  border-radius: 10px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  transition: all 0.4s ease;
}
.sec2-button button:hover {
  background: var(--green);
  transform: scale(1.1);
}
/* section3 */
.section3 {
  padding: 20px 0 80px 0;
  background: var(--gradient);
}
.section3 .title {
  text-align: center;
  text-wrap: balance;
  margin-bottom: 30px;
}
.section3 .title h3 {
  margin-bottom: 15px;
}
.steps-box {
  width: 90%;
  height: 320px;
  border-radius: 20px;
  border: 1px solid var(--grey);
  background: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s ease;
}
.step-slider .slick-slide {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}
.step-slider .slick-track {
  padding: 20px 0;
}
.step-slider .slick-list {
  overflow: unset !important;
}
.steps-box:hover {
  transform: scale(1.04);
}
.number {
  min-width: 40px;
  height: 100%;
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  transition: all 0.6s ease;
}
.steps-box:hover .number {
  background: var(--orange);
}
.steps-txt {
  padding: 20px;
  text-align: center;
}
.steps-icon {
  width: 80px;
  aspect-ratio: 1;
  background: var(--lightgreen);
  padding: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
  margin: 0 auto;
}
.steps-box:hover .steps-icon {
  background: var(--orange);
}
.steps-icon img {
  height: 40px;
  transition: all 0.6s ease;
}
.steps-box:hover .steps-icon img {
  filter: brightness(0) invert(1);
}
.steps-txt h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--green);
  margin: 20px 0 15px 0;
  text-wrap: balance;
}
.steps-box:hover .steps-txt h3 {
  color: var(--orange);
  transition: all 0.6s ease;
}
.steps-txt p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
/* section4 */
.section4 {
  padding: 60px 0;
}
.sec4-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  background: url('/img/sec4-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.sec4-txt {
  padding: 0 50px;
}
.sec4-txt .title {
  margin-bottom: 40px;
}
.sec4-txt .title h3 {
  margin-bottom: 30px;
}
.sec4-txt .title p {
  max-width: 95%;
}
.bullet {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.bullet-icon img {
  height: 85px;
}
.bullet-txt {
  margin: 20px 0 20px 20px;
  max-width: 70%;
}
.bullet-txt h3 {
  font-size: 25px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.bullet:nth-of-type(2) .bullet-txt h3 {
  color: var(--green);
}
.bullet:nth-of-type(3) .bullet-txt h3 {
  color: var(--blue);
}
.bullet:nth-of-type(4) .bullet-txt h3 {
  color: var(--orange);
}
.bullet-txt p {
  color: var(--black);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.bullet-values {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.value-box {
  border-radius: 10px;
  border: 1px solid var(--grey);
  background: var(--white);
  padding: 15px 20px;
  text-align: center;
  min-width: 25%;
  cursor: pointer;
  transition: all 0.6s ease;
}
.value-box:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
}
.value-box p {
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.1;
  margin: 0;
}
.value-box h6 {
  font-size: 35px;
  font-weight: 700;
  margin: 10px 0 0 0;
  line-height: 1;
}
.bullet-values .value-box:nth-of-type(1) h6 {
  color: var(--green);
}
.bullet-values .value-box:nth-of-type(2) h6 {
  color: var(--orange);
}
.bullet-values .value-box:nth-of-type(3) h6 {
  color: var(--blue);
}
/* section5 */
.section5 {
  text-align: center;
  padding: 40px 0 60px 0;
}
.section5 .title {
  margin-bottom: 30px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: none;
  margin: 15px 0;
}
.accordion-button {
  border-radius: 20px !important;
  border: 1px solid var(--grey);
  height: 60px;
  padding: 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
}
.accordion-button::after {
  background: url('/img/down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 26px;
  height: 15px;
}
.accordion-button:not(.collapsed)::after {
  background: url('/img/down.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 26px;
  height: 15px;
  transform: rotate(180deg);
}
.accordion-button:not(.collapsed) {
  background: var(--lightgreen);
  color: var(--green);
  border: 1px solid var(--green);
}
.accordion-body {
  max-width: 95%;
  text-align: left;
  font-size: 18px;
  line-height: 1.1;
  color: var(--black);
}
/* footer */
.footer {
  padding: 70px 0;
  background: var(--green);
  position: relative;
}
.footer-txt h3 {
  font-size: 45px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}
.footer-cta button {
  width: 485px;
  height: 70px;
  background: var(--white);
  border-radius: 10px;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--green);
  border: none;
  transition: all 0.6s ease;
}
.footer-cta button:hover {
  transform: scale(1.1);
}
.footer-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 33;
}
.footer-img img {
  height: 500px;
}
/* Pop-up form */
.blur-overlay section {
  filter: blur(8px);
  transition: filter 0.3s ease;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup-content {
  width: 700px;
  max-width: 95%;
  border-radius: 30px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: url(/img/popup-img.png);
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: 110% center;
}
.popup-content::before {
  content: '';
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.popup-img {
  width: 55%;
  min-height: 445px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 80px;
  text-wrap: balance;
}
.popup-img h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.popup-form {
  width: 45%;
  padding: 30px;
  background: var(--white);
  min-height: 445px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
}
.popup-img, .popup-form {
  position: relative;z
  z-index: 44;
}
.close-btn {
  position: absolute;
  background: var(--green);
  top: 10px;
  right: 15px;
  font-size: 24px;
  width: 30px;
  aspect-ratio: 1;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: var(--white);
  line-height: 1;
  transition: all 0.6s ease;
  z-index: 99;
}
.close-btn:hover {
  background: var(--orange);
  transform: scale(1.1);
}
/* Messages */
.message-box {
  width: 350px;
  margin: 0 0 0 auto;
  background: var(--white);
  border-radius: 30px;
  border: 1px solid var(--grey);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 40px 40px 40px;
  position: relative;
  z-index: 99;
  text-wrap: balance;
}
.message-box h3 {
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.message-box p {
  margin: 20px auto 0 auto;
  line-height: 1.1;
  font-size: 18px;
  color: var(--black);
}
.message-box img {
  max-width: 90%;
  margin: 20px auto 0 auto;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1780px) {
  .comparison {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .container-fluid {
    max-width: 95%;
  }
  .footer-img img {
    height: 400px;
  }
}
@media only screen and (max-width: 1600px) {
  .header-txt h1 {
    font-size: 38px;
  }
  .header-txt h3 {
    font-size: 28px;
  }
  .selo {
    width: 320px;
  }
  .selo h6 {
    font-size: 14px;
  }
  .title p {
    font-size: 20px;
  }
  .sec4-txt .title p {
    max-width: 100%;
  }
  .footer-img img {
    height: 350px;
  }
}
@media only screen and (max-width: 1550px) {
  .value-box p {
    font-size: 15px;
  }
  .header-img svg {
    width: 180px;
    top: -5%;
    left: -10%;
  }
  .vant h3 {
    font-size: 22px;
  }
  .vant {
    padding: 25px 15px;
  }
  .vant p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1420px) {
  .header-img svg {
    width: 170px;
    top: -5%;
    left: -10%;
  }
  .header-img img {
    margin: 0 -20px;
  }
  .steps-txt h3 {
    font-size: 22px;
  }
  .steps-txt p {
    font-size: 16px;
  }
  .title h3 {
    font-size: 38px;
  }
  .footer-txt h3 {
    font-size: 40px;
  }
  .footer-img img {
    height: 330px;
  }
  .value-box {
    padding: 15px;
  }
  .value-box p {
    font-size: 12px;
  }
  .footer-img {
    right: -5%;
  }
  .footer-img img {
    height: 300px;
  }
}
@media only screen and (max-width: 1220px) {
  .header-txt h3 {
    font-size: 22px;
    margin: 35px 0 0 0;
  }
  .vant {
    width: 46%;
    padding: 20px 15px;
  }
  .vant h3 {
    font-size: 17px;
  }
  .vant p {
    font-size: 13px;
  }
  .review p {
    font-size: 14px;
  }
  .steps-txt h3 {
    font-size: 18px;
  }
  .steps-txt p {
    font-size: 14px;
  }
  .title h3 {
    font-size: 32px;
  }
  .sec4-txt .title p {
    font-size: 17px;
  }
  .bullet-txt p {
    font-size: 16px;
  }
  .value-box {
    padding: 20px 10px;
  }
  .value-box h6 {
    font-size: 30px;
  }
  .value-box p {
    font-size: 13px;
  }
  .footer-cta button {
    width: 380px;
    font-size: 20px;
  }
  .footer-img img {
    height: 300px;
  }
  .value-box {
    padding: 12px 10px;
  }
  .value-box p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 1080px) {
  .nav-inner h6 {
    font-size: 12px;
  }
  .header-txt h1 {
    font-size: 36px;
  }
  .header-img img {
    margin: 0 0 0 -50px;
    height: 500px;
  }
  .header-img svg {
    width: 145px;
  }
  #contactform, .message-box {
    width: 320px;
    padding: 30px 30px 40px 30px;
  }
  .title h3 {
    font-size: 28px;
  }
  .title p {
    font-size: 15px;
  }
  .bullet-values {
    flex-wrap: wrap;
    gap: 10px;
  }
  .value-box {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 45%;
  }
  .value-box:nth-of-type(1) {
    width: 100%;
  }
  .value-box h6 {
    font-size: 22px;
    margin: 0 0 0 10px;
  }
  .steps-box {
    height: 300px;
  }
  .bullet-txt h3 {
    font-size: 20px;
  }
  .accordion-body {
    font-size: 16px;
  }
  .footer-cta button {
    width: 350px;
    font-size: 18px;
  }
  .footer-img img {
    height: 280px;
  }
  .footer-txt h3 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 991px) {
  .header-img img {
    display: none;
  }
  .header-img {
    width: 300px;
    aspect-ratio: 1/2;
  }
  .vant {
    width: 100%;
    margin: 0 auto;
    transform: scale(0.9);
  }
  .vant:nth-child(odd) {
    margin: 0;
  }
  .vant-outer {
    display: unset;
  }
  .vant:hover {
    transform: scale(1.0);
  }
  .step-slider .slick-list {
    overflow: hidden !important;
  }
  .steps-box {
    margin: 0 auto;
  }
  .section1 .slick-dots, .section3 .slick-dots {
    margin: 20px auto 0 auto;
  }
  .footer-img img {
    display: none;
  }
  .title p {
    font-size: 17px;
  }
  .section2 .title p {
    max-width: 100%;
  }
  .nav .container {
    max-width: 95%;
  }
  .section4 .row {
    flex-direction: column-reverse;
  }
  .bullet-values {
    width: 70%;
    margin: 40px auto 20px auto;
  }
  .sec4-img {
    margin-top: 30px;
  }
  .nav-inner h6 {
    font-size: 10px;
  }
  .section4 .title {
    text-align: center;
    text-wrap: balance;
  }
  .value-box {
    padding: 15px;
    min-width: 48%;
  }
  .value-box p {
    font-size: 16px;
  }
  .value-box h6 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 880px) {
  .header-img svg {
    top: -25%;
    left: -80%;
    width: 120px;
  }
  #contactform, .message-box {
    margin-left: -50px;
  }
  .value-box {
    min-width: 49%;
  }
  .bullet-values {
    width: 80%;
    gap: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
    margin-top: 20px;
  }
  .header-txt img {
    margin-bottom: 0px;
    height: 70px;
  }
  .header-txt h1 {
    margin: 20px auto 10px auto;
  }
  .header-txt h3 {
    max-width: 75%;
    text-wrap: balance;
    margin: 30px auto 40px auto;
  }
  .header-img {
    aspect-ratio: unset;
  }
  .header-img img {
    display: flex;
    margin: 0 auto;
    height: auto;
    width: 380px;
  }
  .header-img svg {
    top: 5%;
    left: -20%;
    width: 200px;
  }
  .selo {
    margin: 0 auto;
  }
  #contactform, .message-box {
    width: 420px;
    margin: 30px auto 40px auto;
  }
  .steps-box {
    width: 70%;
  }
  .bullet-values {
    margin: 40px auto 70px auto;
  }
  .sec4-img {
    width: 80%;
    margin: 0 auto;
  }
  .footer {
    text-align: center;
    padding: 40px 0;
  }
  .footer-txt h3 {
    font-size: 40px;
    margin-bottom: 30px;
  }
  .nav-inner h6 {
    font-size: 12px;
    max-width: 70%;
    text-align: left;
  }
  .title h3 {
    font-size: 32px;
  }
  .title p {
    font-size: 20px;
  }
  .section1 {
    padding: 0px 0 60px 0;
    text-align: center;
  }
  .section1 .title h3 {
    margin: 0 auto 20px auto;
  }
  .section1 .title p {
    margin-bottom: 30px;
  }
  .vant {
    margin: 0 auto;
    max-width: 80%;
  }
  .vant:nth-child(odd), .vant-icon {
    margin: 0 auto;
  }
  .section2 .title {
    text-align: center;
  }
  .slick-dots {
    margin: 20px auto 0 auto;
  }
  .review {
    margin: 0 auto;
  }
  .comparison {
    margin-top: 40px;
  }
  .popup-content {
    flex-direction: column;
    flex-direction: column-reverse;
    background-position: center 150%;
  }
  .popup-form {
    width: 100%;
  }
  .popup-img {
    width: 100%;
    min-height: auto;
    padding: 30px;
  }
}
@media only screen and (max-width: 620px) {
  .value-box {
    min-width: 48%;
  }
  .value-box h6 {
    font-size: 22px;
  }
  .value-box p {
    font-size: 13px;
  }
  .bullet-values {
    gap: 10px 5px;
  }
}
@media only screen and (max-width: 550px) {
  .nav-inner h6 {
    max-width: 80%;
    margin-left: 10px;
  }
  .header-img img {
    width: 320px;
  }
  .header-img svg {
    width: 180px;
  }
  .steps-box {
    width: 90%;
  }
  .bullet-values {
    width: 95%;
  }
  .footer-txt h3 {
    font-size: 32px;
  }
  .section2 .title p {
    text-wrap: balance;
  }
  .accordion {
    width: 95%;
    margin: 0 auto;
  }
  .accordion-button {
    font-size: 16px;
  }
  .slick-dots li {
    width: 18px;
  }
  .value-box {
    min-width: 46%;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt img {
    height: 70px;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-img svg {
    width: 150px;
    left: -15%;
  }
  .header-img {
    aspect-ratio: unset;
  }
  #contactform, .message-box {
    width: 100%;
  }
  .bullet-values {
    width: 100%;
  }
  .value-box {
    min-width: 48%;
    padding: 15px 5px;
  }
}
@media only screen and (max-width: 414px) {
  .footer-txt h3 {
    font-size: 30px;
  }
  .header-txt h1 {
    font-size: 27px;
  }
  .footer-cta button {
    width: 100%;
  }
  .value-box {
    min-width: 46%;
    height: 60px;
    padding: 0 20px;
    margin: 0 auto;
    flex-direction: column;
  }
  .nav-inner h6 {
    max-width: 90%;
    font-size: 10px;
  }
  .sec2-button button {
    width: 100%;
    font-size: 15px;
  }
  .sec4-txt {
    padding: 0;
  }
  .bullet-txt p {
    text-wrap: balance;
  }
  .form-check label {
    font-size: 10px;
  }
  .form-button {
    font-size: 16px;
  }
  .popup-content {
    background-position: center 110%;
  }
}
@media only screen and (max-width: 375px) {
  .header-img svg {
    width: 110px;
    left: 0%;
  }
  .header-txt h1 {
    font-size: 26px;
  }
  .header-txt h3 {
    font-size: 17px;
  }
  .header-img img {
    width: 100%;
  }
  .selo {
    width: 100%;
    height: 55px;
  }
  .selo h6 {
    font-size: 14px;
  }
  .title p {
    font-size: 18px;
  }
  .vant h3 {
    font-size: 20px;
    text-wrap: balance;
  }
  .review {
    padding: 25px;
    min-height: 230px;
  }
  .persona h5 {
    font-size: 18px;
  }
  .review p {
    font-size: 12px;
  }
  .section2 {
    padding: 60px 0 40px 0;
  }
  .value-box {
    min-width: 100%;
  }
  .section4 {
    padding: 40px 0;
  }
  .bullet {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .bullet-txt {
    max-width: 100%;
    text-align: center;
    margin: 30px auto;
  }
  .form-button {
    font-size: 14px;
  }
}
@media only screen and (max-width: 335px) {
  .nav-inner h6 {
    max-width: 100%;
    font-size: 9px;
  }
  .accordion-button {
    font-size: 14px;
  }
  .accordion-body {
    font-size: 12px;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
  .footer-cta button {
    font-size: 16px;
  }
  .title h3 {
    font-size: 28px;
  }
  .steps-icon {
    width: 65px;
  }
  .steps-icon img {
    height: 30px;
  }
  .steps-box {
    width: 100%;
  }
  .form-button {
    font-size: 13px;
  }
}