@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
  --red: #FE646F;
  --green: #389274;
  --white: #fff;
  --black: #000;
  --lightgrey: #F9F9F9;
  --purple: #6D00FF;
  --darkpurple: #3E2555;
  --orange: #FF795A;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* header */
.header {
  padding: 50px 0;
  min-height: 700px;
  align-content: center;
  background: url('/img/bg.png');
  background-size: cover;
  background-repeat: margin;
  background-position: center;
}
.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-txt {
  width: 80%;
  position: relative;
}
.header-txt .logo {
  position: absolute;
  top: -100px;
  left: -70px;
}
.header-txt h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: var(--purple);
  margin-bottom: 20px;
}
.header-txt h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--darkpurple);
  margin: 0 0 40px 0;
  width: 455px;
  max-width: 100%;
}
.header-txt ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-txt ul li {
  position: relative;
  padding-left: 30px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  margin: 18px 0;
  color: var(--darkpurple);
}
.header-txt ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  background: url("/img/check.svg") no-repeat center;
  background-size: contain;
}
.header-img {
  width: 20%;
  min-height: 500px;
  position: relative;
}
.header-img img {
  width: 450px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
}
/* tooltip i */
#contactform .tt img {
  margin-bottom: 5px;
}
.tt:hover {
  scale: 1.1;
  filter: none;
  opacity: 1;
}
.custom-tooltip {
  --bs-tooltip-bg: var(--darkpurple);
  --bs-tooltip-opacity: 1;
  --bs-tooltip-color: var(--white);
  --bs-tooltip-padding-x: 15px;
  --bs-tooltip-max-width: 380px;
  --bs-tooltip-padding-y: 20px;
  line-height: 1.1;
  font-weight: 400;
}
.tooltip.custom-tooltip .tooltip-inner {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: .5rem;
}
/* form */
#contactform {
  width: 450px;
  margin: 0 0 0 auto;
  background: var(--white);
  box-shadow: 0 0 40px 0 rgba(62, 37, 85, 0.20);
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 45px 25px;
  position: relative;
  z-index: 99;
}
#contactform h3 {
  font-size: 25px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--darkpurple);
}
#contactform hr {
  width: 230px;
  height: 4px;
  opacity: 1;
  margin: 10px auto;
  background: var(--orange);
  border: none;
}
.form-step img {
  margin-bottom: 20px;
}
.form-step h6 {
  color: var(--darkpurple);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  text-wrap: balance;
  margin: 10px auto 20px auto;
}
#example {
  font-size: 11px;
  font-weight: 300;
  color: var(--darkpurple);
  line-height: 1.1;
  margin: -10px 0 20px 0;
}
.form-step {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.radio-buton {
  width: 45%;
}
.radio-buton input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
label.error {
  display: none;
}
.radio-buton label {
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 230px;
  max-width: 100%;
  height: 60px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-wrap: balance;
  color: var(--darkpurple);
  font-size: 16px;
  font-weight: 400;
}
.radio-buton label:hover, .radio-buton input[type="radio"]:checked + label {
  background: var(--orange);
  color: var(--white);
  border: 1px solid var(--orange);
}
.radio-buton label:hover {
  transform: scale(1.05);
}
/* slider inputs */
.value-display {
  color: var(--purple);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}
#prestValue {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
}
#prestValue:focus-visible {
  outline: none;
}
.form-slider {
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px auto 20px auto;
}
.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(--darkpurple) 0%, var(--darkpurple) var(--slider-value, 0%), var(--lightgrey) var(--slider-value, 0%), var(--lightgrey) 100%);
}
input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--darkpurple) 0%, var(--darkpurple) var(--slider-value, 0%), var(--lightgrey) var(--slider-value, 0%), var(--lightgrey) 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(--orange);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--orange);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--orange);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}
/* hidden fields */
#extra_money_div {
  margin-top: 30px;
  display: none;
}
#extra_money_div .form-control-btns {
  margin-top: 30px;
}
.form-input {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px 0;
}
.form-input input {
  width: 100%;
  height: 50px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 16px;
  color: var(--darkpurple) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
  border: 1px solid var(--orange);
}
::-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/icons/france.svg');
  background-position: 15px center;
  background-size: 20px;
  background-repeat: no-repeat;
  padding: 0 0 0 45px;
}
.form-input input.error {
  border: 1px solid var(--red);
  background-image: url('/img/icons/remove.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/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
input[name="phone"].error {
  background: url('/img/icons/france.svg'), url('/img/icons/remove.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto 0 auto;
}
input[name="phone"].valid {
  background: url('/img/icons/france.svg'), url('/img/icons/check.svg');
  background-position: 15px center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 5px auto;
}
.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(--darkpurple);
  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(--darkpurple);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--darkpurple);
}
.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(--darkpurple);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--purple);
  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-control-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  width: 100%;
  margin: 20px auto 0 auto;
}
.form-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  max-width: 100%;
  height: 50px;
  border-radius: 10px;
  line-height: 1;
  font-weight: 800;
  border: none;
  color: var(--orange);
  border: 1px solid var(--orange);
  background: var(--white);
  transition: all 0.4s ease;
}
.form-button img {
  height: 40px;
  padding: 0;
  margin: 0 0 0 2px;
}
.next {
  background: var(--orange);
}
.prev {
  transform: rotate(180deg);
  opacity: 0.5;
}
.prev img {
  margin: 0 -2px 0 0;
}
.next img {
  filter: brightness(0) invert(1);
}
.submit-button {
  width: 230px;
  max-width: 100%;
  height: 50px;
  border-radius: 50px;
  font-size: 24px;
  margin-top: 10px;
}
.form-button:hover {
  background: var(--purple);
  border: 1px solid var(--purple);
  color: var(--white);
  opacity: 1;
}
.form-button:hover img {
  filter: brightness(0) invert(1);
}
/* google */
.google {
  background: var(--darkpurple);
  color: var(--white);
  padding: 20px 0;
}
.google-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.google-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.1;
}
/* section 1 */
.section1 {
  text-align: center;
  padding: 60px 0 80px 0;
}
.title {
  margin-bottom: 50px;
}
.title h3 {
  color: var(--darkpurple);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  text-wrap: balance;
  margin: 0 auto;
  width: 420px;
  max-width: 100%;
}
.vant-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vant {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  width: 370px;
  max-width: 30%;
  background: var(--white);
  transition: all 0.4s ease;
  padding: 20px 0px 20px 20px;
  cursor: pointer;
}
.vant:hover {
  transform: scale(1.05);
  border-radius: 20px;
  box-shadow: 0 0 40px 0 rgba(62, 37, 85, 0.20);
}
.vant img {
  height: 80px;
  margin-right: 20px;
  transition: all 0.4s ease;
}
.vant h6 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--purple);
  text-wrap: balance;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}
.vant p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--darkpurple);
  transition: all 0.4s ease;
  margin: 0;
}
.vant:hover img {
  transform: scale(0.9);
}
/* message */
.message-box {
  width: 450px;
  margin: 0 0 0 auto;
  background: var(--white);
  box-shadow: 0 0 40px 0 rgba(62, 37, 85, 0.20);
  border-radius: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 45px 30px;
  position: relative;
  z-index: 99;
  text-wrap: balance;
}
.message-box h3 {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--purple);
}
.message-box p {
  font-size: 18px;
  line-height: 1.2;
  margin: 10px auto 0 auto;
}
/* Adstrategy */
#section-ads {
  background: rgba(109, 0, 255, 0.05);
  text-align: center;
  padding: 30px 0;
}
#section-ads img {
  filter: brightness(0) saturate(100%) invert(16%) sepia(24%) saturate(1618%) hue-rotate(229deg) brightness(92%) contrast(94%);
}
/* Media Queries */
@media only screen and (max-width: 1500px) {
  .header-txt .logo {
    left: 0;
  }
}
@media only screen and (max-width: 1440px) {
  .header-txt .logo {
    left: 0;
  }
  .header-img img {
    width: 380px;
    right: -70px;
  }
  #contactform {
    width: 420px;
    margin: 0 auto;
    left: -50px;
    padding: 30px 25px 40px 25px;
  }
  #contactform h3 {
    text-wrap: balance;
  }
  .vant p {
    font-size: 14px;
  }
  .vant img {
    height: 70px;
  }
}
@media only screen and (max-width: 1200px) {
  .header-txt h1 {
    font-size: 30px;
    max-width: 70%;
  }
  .header-txt ul {
    max-width: 60%;
  }
  #contactform {
    width: 400px;
    left: -80px;
  }
  .vant img {
    height: 60px;
  }
  .vant h6 {
    font-size: 20px;
  }
  .vant p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 1080px) {
  #contactform {
    width: 390px;
    left: -90px;
  }
}
@media only screen and (max-width: 991px) {
  .header-img {
    display: none;
  }
  .header-txt {
    width: 100%;
  }
  #contactform {
    width: 420px;
    left: 0;
  }
  .header-txt h1, .header-txt ul {
    max-width: 100%;
  }
  .header-txt .logo {
    position: unset;
    margin-bottom: 40px;
    height: 45px;
  }
  .google-info img {
    width: 260px;
  }
  .google-info p {
    font-size: 11px;
  }
  .vant {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .vant img {
    margin: 0 auto 20px auto;
  }
}
@media only screen and (max-width: 880px) {
  #contactform {
    width: 380px;
  }
}
@media only screen and (max-width: 850px) {
  #contactform {
    width: 380px;
    left: -20px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
  }
  .header-txt .logo {
    height: 40px;
    margin-bottom: 30px;
  }
  .header-txt h1 {
    width: 100%;
    font-size: 36px;
  }
  #contactform {
    width: 100%;
    left: 0px;
  }
  .header-txt-mobile {
    margin-top: 50px;
    text-align: left;
  }
  .header-txt-mobile ul {
    max-width: 80%;
    margin: 0 auto;
  }
  .google-info {
    flex-direction: column;
    gap: 10px 0;
    text-align: center;
  }
  .google-info img {
    width: 300px;
    margin: 0 auto;
  }
  .vant-row {
    flex-direction: column;
    gap: 30px 0;
  }
  .vant {
    max-width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  #contactform {
    width: 95%;
  }
  #contactform hr {
    max-width: 80%;
  }
  .header-txt h1 {
    font-size: 30px;
  }
  .header-txt-mobile ul li {
    font-size: 14px;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h1, .title h3 {
    font-size: 28px;
  }
  .header-txt-mobile ul {
    max-width: 75%;
  }
  .header-txt-mobile ul li {
    font-size: 14px;
  }
  .form-step h6 {
    text-wrap: unset;
  }
  .google-info p {
    text-wrap: balance;
  }
  .vant {
    max-width: 90%;
  }
}
@media only screen and (max-width: 435px) {
  .header-txt h1 {
    font-size: 30px;
    text-wrap: balance;
  }
  .google-info {
    gap: 20px 0;
  }
  .google-info img {
    width: 260px;
    margin: 0 auto;
  }
  .vant p {
    font-size: 14px;
    text-wrap: balance;
  }
  .vant h6 {
    font-size: 24px;
    text-wrap: balance;
  }
  #example {
    text-wrap: balance;
  }
}
@media only screen and (max-width: 390px) {
  .radio-buton label {
    font-size: 13px;
  }
  .form-step h6 {
    font-size: 16px;
  }
  .header-txt-mobile ul {
    max-width: 90%;
  }
  .title {
    margin-bottom: 30px;
  }
  .header-txt-mobile ul li {
    font-size: 12px;
  }
  .form-control-btns {
    padding: 0;
  }
}
@media only screen and (max-width: 350px) {
  .form-input, .radio-buton {
    width: 100%;
  }
  .radio-buton label {
    height: 45px;
  }
  .header-txt h1 {
    font-size: 26px;
  }
  .title h3 {
    font-size: 24px;
  }
  .form-check {
    text-align: left;
  }
  .form-check label {
    font-size: 10px;
  }
}
@media only screen and (max-width: 350px) {
  .form-check label {
    font-size: 9px;
  }
}