@import url('https://fonts.googleapis.com/css2?family=Poppins: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 {
  --greyblue: #EEF3FF;
  --lightblue: #78C0E0;
  --blue: #3772FF;
  --darkblue: #284280;
  --white: #fff;
  --black: #353531;
  --red: #FE646F;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  color: var(--black);
  overflow-x: hidden !important;
}

a:hover {
  color: #000000;
}

::-moz-selection {
  color: var(--white);
  background: var(--darkblue);
}

::selection {
  color: var(--white);
  background: var(--darkblue);
}

/* general */
.title h3 {
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
  text-wrap: balance;
}

/* nav */
.nav {
  padding: 30px 0;
  background: var(--white);
}

.nav-logo img {
  height: 60px;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 40px;
}

.nav-menu ul li img {
  height: 10px;
  margin-left: 5px;
}

.nav-menu ul li {
  font-size: 16px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.5s ease;
  color: var(--black);
}

.nav-menu ul li:hover {
  border-bottom: 2px solid var(--lightblue);
}

.nav-menu ul li:last-child {
  border: none;
}

.nav-menu ul li:last-child:hover {
  transform: scale(1.1);
}

.nav-menu ul li:last-child img {
  height: 30px;
  margin: 0;
}

/* google */
.google-review {
  padding: 15px 0;
  background: var(--darkblue);
}

.google-img {
  text-align: left;
}

.google-img img {
  height: 25px;
}

.google-txt {
  text-align: right;
}

.google-txt p {
  margin: 0 auto 0 0;
  font-size: 12px;
  font-weight: 400;
  color: var(--white);
}

/* header */
.header {
  padding: 60px 0;
  background: var(--greyblue);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.steps {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 15px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
}

.steps p img {
  margin-left: 5px;
}

.header-txt h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin: 30px 0 40px 0;
}

.header-txt h2 span {
  font-size: 20px;
}

.header-txt h2 span.under {
  font-size: 35px;
  position: relative;
  z-index: 10;
}

.header-txt h2 span.under::before {
  content: '';
  background: var(--blue);
  height: 6px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 2px;
  z-index: -1;
}

.header-list h6 img {
  width: 26px;
  margin-right: 10px;
}

.header-list h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.header-img img {
  width: 375px;
}

/* form */
#contactform {
  margin: 0 0 0 auto;
  width: 400px;
  padding: 32px;
  border-radius: 20px;
  background: var(--white);
}

.form-step {
  width: 100%;
  text-align: center;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
}

.form-step.active {
  display: flex;
  opacity: 1;
  animation-name: fadeInUp;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

#contactform h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  position: relative;
  z-index: 10;
  text-wrap: balance;
}

#contactform hr {
  width: 83%;
  height: 2px;
  opacity: 1;
  border: none;
  background: var(--blue);
  margin: -2px 0 25px 0;
}

#contactform h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--blue);
  text-wrap: balance;
  margin: 0 0 10px 0;
}

.follow-up h6 {
  margin-bottom: 10px;
}

.follow-up p {
  font-size: 14px;
  cursor: pointer;
  text-wrap: balance;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  line-height: 1;
  margin-bottom: 5px;
}

.follow-up b {
  text-decoration: underline;
}

#additionalPerson {
  margin-top: 15px;
}

#additionalPerson .row {
  align-items: center;
  justify-content: space-between;
}

#additionalPerson h6 {
  width: 100%;
  text-align: center;
}

#additionalPerson button {
  background: transparent;
  width: 30px;
  height: 30px;
  border: 1px solid var(--green);
  padding: 2px;
  border-radius: 6px;
}

.radio-buton input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-buton label {
  background: var(--greyblue);
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 20px;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  margin: 12px auto 0 auto;
}

.radio-buton label:hover,
.radio-buton input[type="radio"]:checked+label {
  background: var(--blue);
  color: var(--white);
}

/* sliders */
.value-display {
  margin-bottom: 10px;
  border-bottom: 2px solid var(--lightblue);
  display: flex;
  justify-content: center;
  align-items: center;
}

.value-display img {
  margin-left: 10px;
}

#prestValue {
  font-size: 34px;
  font-weight: 700;
}

#prestValue:focus-visible {
  outline: none;
}

.form-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px 0;
}

.slider {
  width: 100% !important;
  margin: 10px 0 !important;
  height: auto !important;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  margin: 10px 0;
  height: 8px;
  border-radius: 15px;
  background: transparent;
}

input[type=range]::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-moz-range-track {
  height: 8px;
  border-radius: 15px;
  background: linear-gradient(to right, var(--lightblue) 0%, var(--lightblue) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) var(--slider-value, 0%), rgba(224, 224, 224, 0.80) 100%);
}

input[type=range]::-ms-track {
  height: 8px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: transparent;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

input[type=range]::-ms-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background: var(--blue);
  border: none;
  cursor: pointer;
  margin-top: -8px;
}

.form-input input {
  width: 100%;
  height: 50px;
  border-radius: 20px;
  border: 2px solid var(--greyblue);
  font-size: 16px;
  color: var(--darkblue) !important;
  font-weight: 400 !important;
  padding: 0 20px 0 50px;
  -webkit-appearance: none;
  text-align: left !important;
  margin: 5px auto;
  line-height: 1;
}

.form-input input:focus-visible {
  outline: none !important;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}

::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-input input {
  --icon: url('/metis_assets/img/icons/person_add.svg');
  --icon-error: url('/metis_assets/img/icons/error.svg');
  --icon-valid: url('/metis_assets/img/icons/check.svg');
  background-image: var(--icon);
  background-position: 5% center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.form-input input.error {
  border-color: var(--red);
  background-image: var(--icon), var(--icon-error);
  background-position: 5% center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.form-input input.valid {
  border-color: var(--blue);
  background-image: var(--icon), var(--icon-valid);
  background-position: 5% center, 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}

.form-check {
  text-align: center;
  padding: 0;
  margin: 5px 0 0 0;
}

.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(--blue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--blue);
}

.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;
  font-weight: 700;
}

#politica-link:hover {
  color: var(--blue);
  text-decoration: underline;
}

.form-button {
  margin-top: 20px;
  background: var(--lightblue);
  min-width: 45%;
  max-width: 100%;
  height: 60px;
  border-radius: 20px;
  padding: 0 30px;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  transition: all 0.6s ease;
}

.form-button:hover {
  transform: scale(1.1);
  color: var(--white);
  background: var(--darkblue);
}

button.last_step {
  background: transparent;
  border: transparent;
  cursor: pointer;
  text-decoration: underline;
}

.double_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.prev {
  margin-right: 20px;
  padding: 0 20px;
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
}

.prev img {
  margin: 0 10px 0 0;
  transition: all 0.6s ease;
}

.prev:hover img {
  filter: brightness(0) invert(1);
}

label.error,
#terms-error {
  width: 100%;
  text-align: center;
  font-size: 11px;
  color: var(--red);
  font-weight: 300;
  padding: 0;
  line-height: 1;
  display: none;
}

/* section1 */
.section1 {
  padding: 70px 0;
  text-align: center;
}

.section1 .title h3 {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  text-wrap: unset;
}

.block-steps {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
}

.block {
  width: 230px;
  height: 180px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 20px;
  border: 2px solid var(--blue);
  background: var(--greyblue);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.block.visible,
.block.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  cursor: pointer;
}

.block1.visible {
  transition-delay: 0.2s;
}

.block2.visible {
  transition-delay: 0.6s;
}

.block3.visible {
  transition-delay: 1s;
}

.block:hover {
  transform: translateX(0) scale(1.1);
  transition: transform 0.3s ease;
}

.block p {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}

.block h6 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--blue);
  margin: 20px 0 0 0;
}

.block2 {
  border: 2px solid var(--lightblue);
  background: var(--lightblue);
}

.block2 p,
.block2 h6,
.block3 p {
  filter: brightness(0) invert(1);
}

.block3 {
  border: 2px solid var(--blue);
  background: var(--blue);
}

.block3 p {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}

.block h5 {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0 0 0;
  color: var(--white);
}

/* section2 */
.section2 {
  text-align: center;
  padding: 40px 0;
}

.partner-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.partner-slider::before,
.partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 70px;
  z-index: 4;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
}

.partner-outer img {
  max-width: 80%;
  margin: 0 auto;
}

/* section3 */
.section3 {
  padding: 60px 0;
}

.section3 .title h3 {
  text-align: center;
  width: 630px;
  max-width: 100%;
  margin: 0 auto 60px auto;
  text-wrap: unset;
}

.section3 .container {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 0 15px 0 #97B6FF;
}

.accordion-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 50px;
}

.accordion {
  width: 100%;
}

.accordion-item:first-of-type,
.accordion-item:first-of-type>.accordion-header .accordion-button,
.accordion-item,
.accordion-item:last-of-type {
  border-radius: 0;
  border: none;
}

.accordion-item:first-of-type,
.accordion-item:last-of-type,
.accordion-item {
  border-bottom: 3px solid var(--greyblue);
}

.accordion-button:not(.collapsed),
.accordion-button:focus {
  color: var(--blue);
  background: var(--white);
  box-shadow: none;
}

.accordion-button {
  padding: 20px 0;
  min-height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.accordion-button p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
  max-width: 70%;
}

.accordion-button span {
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  margin-right: 20px;
}

.accordion-button:not(.collapsed) p,
.accordion-button:focus p {
  font-size: 20px;
  font-weight: 700;
}

.accordion-button::after {
  background: url('/metis_assets/img/icons/arrow_up.svg');
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
}

.accordion-button:not(.collapsed)::after {
  background: url('/metis_assets/img/icons/arrow_up.svg');
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
}

.accordion-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  padding: 10px 40px;
}

.accordion-body p {
  margin: 10px 0;
}

.sec3-img {
  height: 545px;
  background: url('/metis_assets/img/img2.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* footer */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('/metis_assets/img/footer.png');
  background-size: 60%;
  background-position: right center;
  margin-top: 30px;
}

.footer-content {
  position: relative;
  min-height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-content::before {
  content: '';
  background: url('/metis_assets/img/footer2.svg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: 900px;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0%;
}

.footer-txt {
  position: relative;
  z-index: 33;
}

.footer-txt h3 {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
}

.footer-txt button {
  background: var(--white);
  width: 290px;
  height: 60px;
  border: none;
  border-radius: 50px;
  font-size: 24px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 30px;
  transition: all 0.6s ease;
}

.footer-txt button:hover {
  transform: scale(1.1);
  color: var(--white);
  background: var(--darkblue);
}

/* disclaimer */
.disclaimer {
  padding: 30px 0;
  text-align: center;
}

.disclaimer p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
}

/* Adstrategy */
#section-ads {
  display: none;
  text-align: center;
  padding: 30px 0;
}

/* Media Queries */
@media only screen and (max-width: 1400px) {
  .header-txt h2 {
    font-size: 36px;
    text-wrap: balance;
  }

  .header-list h6 {
    font-size: 14px;
  }

  .title h3 {
    font-size: 32px;
  }

  .footer-content::before {
    width: 755px;
  }
}

@media only screen and (max-width: 1200px) {
  .header-img img {
    width: 330px;
    margin-right: -70px;
  }

  .block {
    width: 28%;
  }

  .block-steps img {
    width: 30px;
  }

  .footer-content::before {
    width: 720px;
  }
}

@media only screen and (max-width: 1080px) {
  #contactform {
    padding: 40px 30px;
    width: 380px;
    margin: 0 auto 0 -50px;
  }

  .header-img img {
    width: 300px;
    margin-right: -40px;
  }

  .footer-content::before {
    width: 680px;
    height: 300px;
  }

  .footer-content {
    min-height: 300px;
  }
}

@media only screen and (max-width: 991px) {
  .nav-menu ul {
    gap: 0 20px;
  }

  .header-img {
    display: none;
  }

  .header-txt h2 {
    max-width: 90%;
  }

  #contactform {
    padding: 40px 20px;
    width: 370px;
    margin: 0 auto 0 -70px;
  }

  .block h5 {
    font-size: 35px;
  }

  .block p {
    font-size: 16px;
  }

  .google-img img {
    width: 100%;
  }

  .title h3 {
    font-size: 30px;
    text-wrap: balance;
  }

  .section3 .title h3 {
    width: 60%;
  }

  .sec3-img {
    width: 100%;
    height: 350px;
  }

  .accordion {
    padding: 40px 0;
  }

  .footer {
    background-size: 80%;
  }

  .footer-content::before {
    width: 620px;
    height: 100%;
    left: -20%;
  }

  .footer-content {
    min-height: 280px;
  }
}

@media only screen and (max-width: 880px) {
  #contactform {
    margin: 0 auto 0 -100px;
  }
}

@media only screen and (max-width: 768px) {

  .header,
  .google-review,
  .google-txt p,
  .footer-txt {
    text-align: center;
  }

  .header {
    padding: 30px 0;
  }

  .steps {
    justify-content: center;
  }

  .nav {
    padding: 20px 0;
  }

  .nav-logo {
    text-align: center;
  }

  .nav-logo img {
    height: 40px;
  }

  .nav-menu {
    display: none;
  }

  .google-txt p {
    margin: 10px auto 0 auto;
  }

  .header-txt h2 {
    font-size: 32px;
    max-width: 80%;
    margin: 20px auto 30px auto;
  }

  #contactform {
    width: 420px;
    margin: 10px auto 40px auto;
    padding: 40px;
  }

  .section1 .title h3,
  .section3 .title h3 {
    width: 80%;
  }

  .block-steps {
    flex-direction: column;
    gap: 20px 0;
  }

  .block {
    width: 300px;
  }

  .block-steps img {
    width: 40px;
    transform: rotate(90deg);
  }

  .footer {
    background: url('/metis_assets/img/footer2.svg'), url('/metis_assets/img/footer.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .footer-content::before {
    content: unset;
  }

  .footer-txt h3 br {
    display: none;
  }

  .disclaimer p {
    max-width: 90%;
    margin: 0 auto;
  }

  .section3 .container {
    max-width: 90%;
    margin: 0 auto;
  }

  .accordion-outer {
    padding: 0 40px;
  }

  .footer-txt h3 {
    font-size: 36px;
  }
}

@media only screen and (max-width: 550px) {
  .google-txt {
    display: none;
  }

  .header-txt h2 {
    max-width: 90%;
  }

  .block p {
    font-size: 18px;
  }
}

@media only screen and (max-width: 475px) {
  .header-txt h2 {
    max-width: 100%;
    font-size: 30px;
  }

  .header-txt h2 span.under {
    font-size: 30px;
  }

  .section1 .title h3,
  .section3 .title h3 {
    width: 100%;
    font-size: 28px;
  }

  #contactform {
    width: 100%;
  }

  .accordion-button p {
    font-size: 14px;
    width: 80%;
  }

  .accordion-button span {
    font-size: 16px;
    margin-right: 10px;
  }

  .accordion-body {
    font-size: 13px;
  }

  .accordion-button:not(.collapsed) p,
  .accordion-button:focus p {
    font-size: 16px;
  }

  .accordion-body {
    padding: 10px 15px;
  }

  .footer-txt h3 {
    font-size: 32px;
  }
}

@media only screen and (max-width: 414px) {
  .form-check {
    margin: 10px 0 0 0;
    text-align: left;
  }

  .form-check label {
    text-wrap: balance;
  }

  .disclaimer p {
    font-size: 12px;
  }

  .footer-txt h3 {
    font-size: 30px;
  }

  #contactform {
    padding: 30px;
  }

  #contactform h2 {
    font-size: 19px;
  }

  #contactform h3 {
    font-size: 16px;
  }

  .header-list {
    padding: 0 30px;
  }

  .header-list h6 {
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  .section1 .title h3,
  .section3 .title h3 {
    font-size: 26px;
  }
}

@media only screen and (max-width: 375px) {
  .header {
    padding: 20px 0 30px 0;
  }

  .steps {
    display: none;
  }

  #contactform {
    padding: 30px 20px;
  }

  .google-img {
    text-align: center;
  }

  .google-img img {
    max-width: 90%;
    margin: 0 auto;
  }

  .block {
    width: 90%;
    margin: 0 auto;
  }

  .section2 {
    padding: 20px 0;
  }

  .accordion-button::after {
    background-size: 15px;
    width: 15px;
  }

  .accordion-button:not(.collapsed)::after {
    background-size: 15px;
    width: 15px;
  }

  .accordion-button p {
    width: 95%;
  }

  .footer-txt h3 {
    font-size: 27px;
  }
}

@media only screen and (max-width: 335px) {
  #contactform h2 {
    font-size: 18px;
  }

  .disclaimer p {
    font-size: 10px;
  }

  .footer-txt button {
    width: 100%;
  }
}