@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --red: #FE646F;
  --green: #389274;
  --white: #fff;
  --black: #252526;
  --gold: #BEAF87;
  --gradient: linear-gradient(94deg, #E9E9E9 4.24%, #DDD 97.66%);
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  color: var(--black);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* general */
button {
  min-width: 190px;
  height: 50px;
  border-radius: 50px;
  border: none;
  padding: 0 25px;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  transition: all 0.6s ease;
}
.title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  margin: 0 auto 30px auto;
}
.title span {
  color: var(--gold);
}
/* navbar */
.nav {
  position: fixed;
  margin-top: 20px;
  z-index: 999;
  width: 100%;
}
.nav .container {
  background: var(--black);
  border-radius: 60px;
  padding: 12px 20px;
  color: var(--white);
  transition: all 0.6s ease;
}
.logo img {
  padding-left: 15px;
}
.nav-menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
}
.nav-menu ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 40px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-menu ul li {
  cursor: pointer;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  position: relative;
  transition: color 0.6s ease;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.6s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--gold);
}
.nav-menu button {
  background: var(--gold);
}
.nav-menu button:hover {
  background: var(--white);
}
.nav .container.scrolling {
  transform: scale(0.9);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(3px) saturate(180%);
}
.nav .container.scrolling img {
  filter: brightness(0) invert(1);
}
/* header */
.header {
  padding: 60px 0 0 0;
  text-align: center;
  margin-top: 80px;
}
.header-content h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 1;
  width: 765px;
  max-width: 100%;
  margin: 0 auto;
}
.header-content h1 span {
  color: var(--gold);
}
.header-content h6 {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.header-img {
  width: 100%;
  position: relative;
  margin-top: 70px;
}
.widget {
  border-radius: 20px;
  border: 0.5px solid var(--black);
  background: var(--gradient);
  min-width: 185px;
  height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
  position: absolute;
  animation: float 10s ease-in-out infinite;
  transition: all 0.6s ease;
}
.widget img {
  height: 30px !important;
}
.widget p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}
#widget1 {
  max-width: 235px;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  animation-delay: 0s;
}
#widget2 {
  max-width: 260px;
  top: 1%;
  right: 18%;
  animation-delay: -2s;
}
#widget3 {
  max-width: 185px;
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}
@keyframes float {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.header-img img {
  height: 380px;
}
/* form */
.form-box {
  padding-bottom: 30px;
}
.progression-bar{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  max-width: 90%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.progress-step {
  width: 23%;
  height: 10px;
  border-radius: 50px;
  background: rgba(37, 37, 38, 0.20);
  transition: all 0.6s ease;
}
.progress-step.progress-active {
  width: 48%;
  background: var(--gold);
}
#contactform {
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 385px;
  padding: 30px;
  position: relative;
}
.time-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  right: 70px;
  bottom: 20px;
}
.time-box h3 {
  font-size: 16px;
  font-weight: 400;
  max-width: 100%;
  line-height: 1.1;
  margin: 0;
  color: var(--black);
}
.time-box svg {
  scale: 0.75;
  animation: upDown 4s ease-in-out infinite;
}
.loader-circle, .loader-pointer, .loader-line {
  fill: none;
  stroke-width: 1.4px;
  stroke: var(--black);
}
.loader-center {
  fill: var(--black);
}
.loader-pointer {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 10s linear infinite;
  -moz-animation: spin 10s linear infinite;
  -webkit-animation: spin 10s linear infinite;
}
.loader-line {
  -webkit-transform-origin: bottom center;
  -moz-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  animation: spin 60s linear infinite;
  -moz-animation: spin 60s linear infinite;
  -webkit-animation: spin 60s linear infinite;
}
@-moz-keyframes spin {
  from { -moz-transform: rotate(0deg);-moz-transform-origin: 50% 50%; }
  to { -moz-transform: rotate(360deg);-moz-transform-origin: 50% 50%; }
}
@-webkit-keyframes spin {
  from { -webkit-transform: rotate(0deg);-webkit-transform-origin: 50% 50%; }
  to { -webkit-transform: rotate(360deg);-webkit-transform-origin: 50% 50%; }
}
@keyframes spin {
  from {transform:rotate(0deg);transform-origin: 50% 50%;}
  to {transform:rotate(360deg);transform-origin: 50% 50%;}
}
.form-step h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 15px;
}
.form-step p {
  font-size: 14px;
}
.form-step {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 15px;
  margin: 20px auto;
}
.radio-button {
  width: 48%;
}
.radio-opt-small .radio-button {
  width: 31%;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--black);
  cursor: pointer;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  gap: 0 15px;
  transition: all 0.4s ease;
}
.radio-button label span {
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--black);
  transition: all 0.4s ease;
}
.radio-button label:hover, .radio-button input[type="radio"]:checked + label {
  background: var(--black);
  color: var(--white);
}
.radio-button label:hover span, .radio-button input[type="radio"]:checked + label span{
  background: var(--white);
}
.form-input {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  width: 95%;
  margin: 20px auto 0 auto;
}
.form-input div {
  width: 48%;
}
.form-input input, .form-input select {
  width: 100%;
  height: 60px;
  border-radius: 20px;
  border: 1px solid var(--black);
  font-size: 16px;
  color: var(--black) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
  background: var(--white);
}
.form-input input:focus-visible, .form-input select: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="telefone"] {
  background-image: url('/img/icons/portugal.svg');
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error, .form-input select.error {
  border: 1px solid var(--red);
  background-image: url('/img/icons/error.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-input input.valid, .form-input select.valid{
  border: 1px solid var(--green);
  background-image: url('/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
input[name="telefone"].error {
  background: url('/img/icons/portugal.svg'), url('/img/icons/error.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
input[name="telefone"].valid {
  background: url('/img/icons/portugal.svg'), url('/img/icons/check.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 15px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--black);
  font-size: 12px;
  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(--gold);
  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(--gold);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.form-button:hover {
  background: var(--black);
  color: var(--white);
}
/* section 1 */
.section1 {
  padding: 60px 0;
  text-align: center;
}
.user-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  margin-bottom: 20px;
}
.user-info img {
  height: 45px;
}
.user-info p {
  margin: 0;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
}
.section1 .slick-list {
  padding: 0 !important;
  margin-top: 60px;
}
.review {
  max-width: 98%;
  height: 430px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 10px;
  border: 0.5px solid #252526;
  background-size: cover !important;
  background-position: top center !important;
  background-repeat: no-repeat !important;
  overflow: hidden;
  transform: scale(0.85);
  transition: all 0.6s ease;
  position: relative;
}
.review::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgba(37, 37, 38, 0.10);
  position: absolute;
  top: 0;
  left: 0;
}
.review-outer.slick-center .review {
  transform: scale(1.0);
}
.review1 {
  background: url('/img/reviews/review1.png');
}
.review2 {
  background: url('/img/reviews/review2.png');
}
.review3 {
  background: url('/img/reviews/review3.png');
}
.review4 {
  background: url('/img/reviews/review4.png');
}
.review-info {
  background: linear-gradient(180deg, rgba(37, 37, 38, 0.07) 0%, rgba(37, 37, 38, 0.70) 100%);
  backdrop-filter: blur(2px);
  padding: 20px 25px;
  color: var(--white);
  text-align: left;
}
.review-info p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}
.review-info h5 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.review-info h6 {
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
  margin: 5px 0 0 0;
}
.custom-dots {
  margin-top: 15px;
}
.custom-dots ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding: 0 20px;
  min-width: 180px;
  height: 45px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.6s ease;
}
.custom-dots ul li button {
  display: none;
}
.custom-dots ul li {
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
  border-radius: 20px;
  background: rgba(37, 37, 38, 0.20);
  transition: all 0.6s ease;
}
.custom-dots .slick-active {
  background: var(--gold);
}
/* section 2 */
.section2 {
  text-align: center;
  padding: 50px 0;
  min-height: 375px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.section2 h3 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  width: 775px;
  max-width: 100%;
  margin: 0 auto 30px auto;
}
.section2 h3 span {
  color: var(--gold);
}
.section2::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  background: url('/img/sec2.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.1;
}
.section2 .container {
  position: relative;
  z-index: 33;
}
.section2 button {
  background: var(--gold);
}
.section2 button:hover {
  background: var(--black);
  color: var(--white);
}
/* section 3 */
.section3 {
  text-align: center;
  padding: 50px 0;
}
.section3 h3 {
  margin: 0 auto 15px auto;
}
.section3 h6 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
}
.vant-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0 20px;
  margin-top: 50px;
}
.vant-grid .vant-box {
  width: 30%;
}
.vant-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
.vant {
  border-radius: 20px;
  border: 0.5px solid var(--black);
  background: var(--gradient);
  width: 100%;
  height: 48%;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  transition: all 0.6s ease;
  cursor: pointer;
}
.vant:hover {
  box-shadow: 0 0 10px 5px rgba(190, 175, 135, 0.3);
  transform: scale(1.05);
}
.vant img {
  margin-bottom: 20px;
}
.vant h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  width: 260px;
  max-width: 100%;
}
.vant-persona {
  min-height: 460px;
  border-radius: 20px;
  border: 0.5px solid #252526;
  background: url('/img/vant.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.section3 button {
  margin-top: 40px;
  background: var(--gold);
}
.section3 button:hover {
  background: var(--black);
  color: var(--white);
}
/* section 4 */
.section4 {
  padding: 60px 0;
}
.sec4-persona {
  width: 420px;
  height: 535px;
  border-radius: 20px;
  border: 0.5px solid #252526;
  background: url('/img/sec4.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
}
.sec4-content {
  padding-left: 30px;
}
.sec4-content h6 {
  font-size: 18px;
  line-height: 1.1;
  width: 90%;
  max-width: 100%;
  margin-bottom: 40px;
}
.sec4-content h6 span {
  font-weight: 700;
  color: var(--gold);
}
.bullet {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 85%;
  height: 65px;
  border-radius: 60px;
  gap: 0 15px;
  background: var(--gradient);
  border: 0.5px solid var(--black);
  padding: 0 10px;
  margin: 15px 0;
  transition: all 0.6s ease;
  cursor: pointer;
}
.bullet:hover {
  box-shadow: 0 0 10px 5px rgba(190, 175, 135, 0.3);
  transform: scale(1.05);
}
.bullet p {
  margin: 0;
  line-height: 1;
  font-size: 18px;
}
/* footer */
.footer {
  background: var(--black);
  text-align: center;
  border-radius: 60px 60px 0 0;
  padding-bottom: 80px;
  margin-top: 80px;
}
.footer .title {
  color: var(--white);
  margin-top: 40px;
  margin-bottom: 40px;
}
/*.footer img {
  margin-top: -50px;
}*/
.footer img {
  margin-top: -80px;
  width: 320px;
}
.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
}
.controls button {
  width: 250px;
}
.controls button:nth-child(1) {
  padding: 0 30px;
  background: var(--white);
  border: 1px solid var(--white);
}
.controls button:nth-child(1):hover, .controls button:nth-child(2):hover {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
}
.controls button:nth-child(2) {
  padding: 0 30px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
}
/* Messageas */
.message-box {
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0 0 30px 5px rgba(0, 0, 0, 0.15);
  width: 85%;
  max-width: 100%;
  margin: 0 auto;
  min-height: 280px;
  padding: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-wrap: balance;
}
.message-box h3 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.message-box h3 span {
  color: var(--gold);
}
.message-box p {
  font-size: 18px;
  width: 75%;
  max-width: 100%;
}
.message-box p span {
  font-weight: 700;
}
/*.message-box img {
  height: 60px;
  margin-top: 20px;
}*/
.message-box img {
  width: 230px;
  margin: 20px 0 10px 0;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1440px) {
  #widget1 {
    top: 50%;
    left: 5%;
  }
  #widget3 {
    bottom: 20%;
    right: 10%;
  } 
  .radio-button label {
    padding: 0 15px;
    font-size: 14px;
  }
  .bullet {
    width: 90%;
  }
  .bullet p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-content h6 {
    font-size: 18px;
  }
  #contactform, .message-box  {
    width: 95%;
  }
  .radio-button label {
    text-align: left;
  }
  .title {
    font-size: 40px;
    text-wrap: balance;
  }
  .section1 .title {
    width: 775px;
    max-width: 100%;
  }
  .vant {
    padding: 25px;
  }
  .vant h6 {
    font-size: 20px;
  }
  .sec4-persona {
    width: 100%;
  }
  .sec4-content h6 {
    width: 100%;
    font-size: 16px;
  }
  .section4 .title {
    font-size: 36px;
  }
  .time-box {
    right: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .nav .container {
    max-width: 95%;
  }
  button {
    font-size: 20px;
  }
  .header {
    text-wrap: balance;
  }
  .header-content h1 {
    font-size: 45px;
  }
  .title {
    font-size: 36px;
  }
  #widget1 {
    top: 50%;
    left: -10%;
  }
  #widget2 {
    top: 0%;
    right: 5%;
  }
  #widget3 {
    bottom: 20%;
    right: -10%;
  } 
  #contactform, .message-box  {
    width: 100%;
  }
  .section1 .container {
    max-width: 90%;
  }
  .section3 h6, .section3 h6 {
    font-size: 20px;
    text-wrap: balance;
  }
  .section4 .title {
    font-size: 32px;
  }
  .sec4-content h6 {
    text-wrap: balance;
  }
  button {
    padding: 0 15px;
    min-width: 100px;
  }
  .nav-menu ul li {
    font-size: 16px;
  }
  .nav-menu ul, .nav-menu {
    gap: 0 30px;
  }
}
@media only screen and (max-width: 850px) {
  .nav-menu ul li {
    font-size: 14px;
  }
  .nav-menu ul, .nav-menu {
    gap: 0 25px;
  }
  button {
    height: 45px;
  }
  .section2 h3 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .nav-menu ul{
    display: none;
  }
  .container {
    max-width: 90%;
  }
  #widget1 {
    left: 0%;
  }
  #widget2 {
    right: 8%;
  }
  #widget3 {
    right: 0%;
    max-width: 160px;
    min-width: auto;
  }
  .widget p {
    font-size: 14px;
  }
  .widget img {
    height: 22px !important;
  }
  .review-slider {
    position: relative;
    width: 150%;
    left: 50%;
    transform: translateX(-50%);
  }
  .section1 {
    padding: 60px 0 0 0;
  }
  .section4 {
    text-align: center;
  }
  .sec4-persona {
    width: 80%;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto 40px auto;
  }
  .bullet {
    width: 380px;
    margin: 15px auto;
  }
  .sec4-content {
    padding: 0;
  }
}
@media only screen and (max-width: 660px) {
  .vant-persona {
    display: none;
  }
  .vant-grid .vant-box {
    width: 48%;
  }
   .time-box {
    right: 50px;
  }
}
@media only screen and (max-width: 500px) {
  .widget {
    display: none;
  }
  .header-img {
    margin-top: 30px;
  }
  .radio-button, .radio-opt-small .radio-button, .form-input div {
    width: 100%;
  }
  .form-step h3 {
    font-size: 22px;
  }
  .user-info p {
    font-size: 14px;
  }
  .title {
    font-size: 32px;
  }
  .logo img {
    height: 18px;
  }
  .review-slider {
    width: 180%;
  }
  .controls {
    gap: 0 10px ;
  }
  .controls button {
    font-size: 16px;
  }
  /*.footer img {
    height: 68px;
    margin-top: -35px;
  }*/
  .footer img {
    margin-top: -80px;
    width: 250px;
  }
  .radio-button label {
    gap: 0 8px;
  }
  .radio-button label span {
    width: 14px;
    height: 14px;
  }
   .time-box {
    right: 30px;
  }
  #contactform {
    padding: 30px 25px 60px 25px;
  }
  .time-box {
    transform: scale(0.9);
    bottom: 10px;
  }
  .bullet {
    width: 100%;
  }
  .bullet img {
    height: 40px;
  }
  .bullet {
    height: 55px;
  }
  .bullet p {
    font-size: 14px;
  }
  .header-img img {
    width: 80%;
    margin: 0 auto;
    height: auto;
  }
}
@media only screen and (max-width: 475px) {
  .header {
    margin-top: 70px;
  }
  .header-content h1 {
    font-size: 38px;
  }
  .radio-button label, .form-input input, .form-input select {
    height: 55px;
  }
  .form-step h3 {
    font-size: 20px;
    text-wrap: balance;
  }
  .progression-bar {
    gap: 0 10px;
    margin-bottom: 20px;
  }
  .logo img {
    padding: 5px;
    height: 25px;
  }
  .section2 h3 {
    font-size: 34px;
  }
  .review-slider {
    width: 250%;
  }
  .section3 h6, .section3 h6 {
    font-size: 18px;
  }
  .vant {
    flex-direction: row;
    align-items: center;
  }
  .vant img {
    height: 40px;
    margin: 0 15px 0 0;
  }
  .vant-grid .vant-box {
    width: 100%;
  }
  .vant-grid {
    flex-wrap: wrap;
    gap: 8px 0;
  }
  .controls {
    flex-direction: column;
    gap: 20px 0;
  }
  .section1 .slick-list {
    margin-top: 20px;
  }
  .title {
    font-size: 30px;
  }
  .section4 {
    padding: 40px 0;
  }
  .vant-grid {
    margin-top: 25px;
  }
  .message-box h3 {
    font-size: 38px;
  }
  .message-box p {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .review-slider {
    width: 100%;
  }
  .nav .container {
    padding: 10px;
  }
  .logo img {
    height: 22px;
  }
  .nav button {
    font-size: 16px;
  }
  .header-content h1 {
    font-size: 34px;
  }
  .radio-opt {
    gap: 15px 0;
  }
  #contactform {
    padding: 30px 15px 50px 15px;
  }
  .form-step h3 {
    font-size: 17px;
  }
  .form-step p {
    margin: 0px;
  }
  .user-info {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .user-info img {
    margin-top: 20px;
    height: 60px;
  }
  .user-info p {
    font-size: 16px;
  }
  .form-button {
    width: 90%;
    height: 50px;
  }
}
@media only screen and (max-width: 375px) {
  .header-content h1 {
    font-size: 30px;
  }
  .header-content h6 {
    font-size: 15px;
  }
  .title, .section2 h3 {
    font-size: 28px;
  }
  .section2 {
    min-height: 300px;
  }
  .section2::before {
    background-size: 120%;
  }
  .section3 {
    padding: 0 0 50px 0;
  }
  .bullet {
    text-align: left;
  }
  .bullet {
    width: 250px;
    max-width: 100%;
  }
  .vant {
    padding: 20px 15px;
  }
  .section3 h6, .section3 h6 {
    font-size: 16px;
  }
  .message-box h3 {
    font-size: 30px;
  }
  .message-box p {
    font-size: 16px;
  }
  /*.message-box img {
    height: 45px;
  }*/
  .message-box img {
    width: 180px;
  }
}
@media only screen and (max-width: 335px) {
  .header-content h1 {
    font-size: 28px;
  }
  .form-box {
    padding: 0 0 30px 0;
  }
  .title {
    font-size: 24px;
  }
  .footer img {
    width: 220px;
    margin-top: -60px;
  }
  .footer {
    padding-bottom: 40px;
    margin-top: 40px;
  }
  .review {
    height: 350px;
  }
  .review-info p {
    font-size: 12px;
  }
  .message-box p {
    font-size: 16px;
  }
  .nav button {
    padding: 0 10px;
    font-size: 15px;
    height: 40px;
  }
}