@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --gradient: linear-gradient( 180deg, #f1f1f1 18.75%, rgba(247, 247, 247, 0) 100% );
    --purple:   #e9e9e9;
    --darkblue: #2C363F;
    --aqua:   #5BC1AD;
    --white: #fff;
    --black: #000;
}

html,
body {
  margin: 0;
  padding: 0 !important;
  font-family: "Instrument 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;
}
.container {
  padding: 0;
}
::-moz-selection {
  color: var(--darkblue);
  background: var(--aqua);
}
::selection {
  color: var(--darkblue);
  background: var(--aqua);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  text-wrap: balance;
}
/* header */
.header {
  padding: 50px 0;
  background: var(--gradient);
  position: relative;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.17;
}
.header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
  width: 100%;
  height: 150px;
  z-index: 4;
}
.header .container {
  position: relative;
  z-index: 99;
}
.header .container::before {
  content: "";
  width: 300%;
  height: 300%;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black);
  z-index: -1;
  filter: blur(40px);
  opacity: 0.05;
}
.header-txt img {
  height: 60px;
  margin-bottom: 40px;
}
.header-txt h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--darkblue);
  margin: 0 0 25px 0;
}
.header-txt p {
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  color: var(--darkblue);
  line-height: 1.1;
  margin: 0 0 25px 0;
}
.header-txt h6 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  line-height: 1.1;
  text-align: center;
  background: var(--aqua);
  border-radius: 8px;
  padding: 10px 20px;
  max-width: fit-content;
}
/* form */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
}
#contactform {
  width: 380px;
  border-radius: 30px;
  background: var(--darkblue);
  text-align: center;
  padding: 45px 35px;
  text-wrap: balance;
  margin: 0 auto;
}
#contactform h6 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.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(--purple);
  border-radius: 20px;
  cursor: pointer;
  transition:
    background-color 0.3s,
    border-color 0.3s;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 20px;
  /* color: var(--white); */
  font-size: 17px;
  font-weight: 500;
  text-align: left;
}
.radio-opt-normal .radio-buton label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-buton label img {
  width: 40px;
  margin: -1px 10px 0 0;
  /* filter: brightness(0) invert(1); */
  background-color: var(--aqua);
  height: 40px;
  border-radius: 30px;
  padding: 7px;
  overflow: visible;
}

.radio-buton:hover label img {
    background-color: #1b1b1b;
    filter: invert(1);
}


.radio-opt-normal .radio-buton label img {
  height: 20px;
}
.radio-buton label:hover,
.radio-buton input[type="radio"]:checked + label {
  background: var(--aqua);
  color: var(--white);
  /* color: var(--darkblue); */
}
/* .radio-buton label:hover img,
.radio-buton input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
} */
.form-input input {
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border: 1px solid var(--darkblue);
  font-size: 16px;
  color: var(--darkblue) !important;
  font-weight: 400 !important;
  padding: 0 20px;
  -webkit-appearance: none;
  text-align: left !important;
  margin: 2px 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.error {
  margin: 0;
  border: 1px solid var(--purple);
  background-image: url("/img/icons/form/error.svg");
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
  margin: 2px 0;
}
.form-input input.valid {
  border: 1px solid var(--aqua);
  background-image: url("/img/icons/form/check.svg");
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.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(--white);
  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(--white);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--white);
}
.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(--white);
  text-decoration: none;
}
#politica-link:hover {
  color: var(--aqua);
  text-decoration: underline;
}
label.error,
#terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--purple);
  font-weight: 300;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.form-button {
  min-width: 200px;
  height: 50px;
  border-radius: 20px;
  padding: 0 30px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  color: var(--darkblue);
  background: var(--aqua);
  transition: all 0.4s ease;
  margin-top: 10px;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--white);
  color: var(--darkblue);
}
/* section1 */
.section1 {
  padding: 30px 0 0 0;
}
.sec1-txt {
  background: var(--purple);
  border-radius: 30px;
  min-height: 385px;
  padding: 30px 50px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: var(--darkblue);
}
.sec1-txt h3 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.sec1-txt h6 {
  font-size: 24px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  margin: 20px 0;
}
.sec1-txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0;
}
.sec1-img {
  width: 98%;
  height: 385px;
  background: url("/img/img1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 30px;
}
/* section2 */
.section2 {
  padding: 80px 0;
}
.vant-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px 0;
}
.vant-outer {
  width: 30%;
  padding: 30px 0;
}
.vant {
  max-width: 350px;
  margin: auto;
  width: 100%;
  height: 230px;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  padding: 30px 35px;
  color: var(--darkblue);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  transition: all 0.6s ease;
  z-index: 3;
  cursor: pointer;
}
.vant:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
}
.vant::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  background: var(--darkblue);
  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 h6,
.vant:hover p {
  color: #fff;
}
.vant-icon {
  width: 90px;
  aspect-ratio: 1;
  background: var(--darkblue);
  border-radius: 30px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.vant h3 {
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  max-width: 80%;
  margin: 0;
  min-height: 45px;
  text-wrap: balance;
}
.vant h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 30px 0 10px 0;
  max-width: 805%;
}
.vant p {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 400;
  margin: 0;
}
/* section3 */
.section3 {
  padding: 4px 0;
}
.sec3-video {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  height: 100%;
}
.sec3-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec3-txt {
  background: var(--purple);
  border-radius: 30px;
  padding: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  color: var(--darkblue);
}
.sec3-txt h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 20px;
}
.bullet {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
}
.bullet img {
  width: 45px;
  margin-right: 20px;
  filter: brightness(0) saturate(100%) invert(15%) sepia(7%) saturate(7411%) hue-rotate(192deg) brightness(96%) contrast(103%);
}
.bullet-txt h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 10px 0;
}
.bullet-txt p {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}
/* footer */
.footer {
  padding: 120px 0 0 0;
}
.footer .container {
  background: var(--darkblue);
  border-radius: 30px;
  padding: 30px 0;
}
.footer-img {
  text-align: center;
}
.footer-img img {
  margin-top: -70px;
  margin-bottom: -30px;
  max-width: 100%;
}
.footer-txt {
  text-align: right;
  padding-right: 60px;
  color: var(--white);
  text-wrap: balance;
}
.footer-txt h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.footer-txt p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 20px 0;
}
.footer-txt button {
  width: 250px;
  height: 50px;
  border-radius: 20px;
  background: var(--aqua);
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: white;
  transition: all 0.6s ease;
}
.footer-txt button:hover {
  background: var(--purple);
  transform: scale(1.1);
  color:var(--darkblue);
}
/* message */
.message-box {
  color: var(--white);
}
.message-box h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1;
}
.message-box h5 {
  font-size: 20px;
  line-height: 1.1;
  margin: 10px 0 25px 0;
}
.message-box p {
  font-size: 16px;
  line-height: 1.1;
  margin: 25px 0 0 0;
}
.message-box img {
  max-width: 80%;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  margin: 0 auto; 
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (max-width: 1400px) {
  .header-txt h3 {
    font-size: 34px;
  }
  .sec1-txt h6 {
    font-size: 20px;
  }
  .sec1-txt p,
  .vant h6 {
    font-size: 16px;
  }
  .bullet-txt p {
    font-size: 14px;
  }
  .footer-txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1400px) {
  .header-txt h3 {
    font-size: 34px;
    text-wrap: balance;
  }
  .header-txt p {
    font-size: 16px;
  }
  .header-txt h6 {
    font-size: 17px;
  }
  .sec1-txt h6 {
    font-size: 18px;
  }
  .vant h3 {
    font-size: 17px;
  }
  .sec1-txt p,
  .vant h6 {
    font-size: 15px;
  }
  .bullet-txt p,
  .vant p {
    font-size: 12px;
  }
  .bullet-txt h6 {
    text-wrap: balance;
  }
  .sec3-txt h3 {
    font-size: 26px;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
  .footer-img img {
    max-width: 120%;
  }
  .footer-txt p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .header-txt h6 {
    text-wrap: balance;
    line-height: 1.1;
    font-size: 17px;
  }
  .sec1-txt h3 {
    font-size: 32px;
  }
  .sec1-txt h6 {
    font-size: 16px;
  }
  .sec3-video {
    height: 400px;
  }
  .sec3-txt {
    z-index: 33;
    position: relative;
    margin-top: -50px;
  }
  .footer {
    padding: 80px 0 0 0;
  }
  .footer .container {
    padding: 40px 0 0 0;
  }
  .footer .row {
    flex-direction: column-reverse;
  }
  .footer-txt {
    text-align: center;
    padding: 0 40px;
  }
  .footer-img img {
    padding-top: 50px;
    max-width: 450px;
    margin: 0 auto;
  }
  .footer-txt h3 {
    font-size: 36px;
  }
  .footer-txt p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    text-align: center;
  }
  .header-txt {
    margin-bottom: 40px;
  }
  .header-txt h3 {
    font-size: 40px;
  }
  .header-txt p {
    font-size: 18px;
    text-wrap: balance;
  }
  .header-txt h6 {
    font-size: 20px;
    margin: auto;
  }
  .section1 {
    text-align: center;
  }
  .section1 .row {
    flex-direction: column-reverse;
  }
  .sec1-txt {
    z-index: 33;
    position: relative;
    margin-top: -50px;
    min-height: auto;
    padding: 50px 60px;
    align-items: center;
  }
  .sec1-txt h3 {
    font-size: 36px;
  }
  .sec1-img {
    width: 100%;
    height: 400px;
  }
  .section2 {
    padding: 40px 0;
  }
  .vant {
    width: 80%;
    height: 220px;
    margin: 0 auto;
  }
  .vant-slider .slick-track {
    padding: 30px 0;
  }
  .sec3-txt {
    padding: 50px 40px;
  }
  .sec3-txt h3 {
    text-align: center;
  }
  .footer {
    padding: 60px 0 0 0;
  }
}
@media only screen and (max-width: 550px) {
  .container {
    max-width: 90%;
    margin: 0 auto;
  }
  .footer-img img {
    max-width: 95%;
  }
}
@media only screen and (max-width: 475px) {
  .header-txt h3,
  .footer-txt h3 {
    font-size: 32px;
  }
  .header-txt p {
    font-size: 16px;
  }
  .header-txt img {
    height: 50px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 414px) {
  #contactform {
    width: 95%;
    padding: 30px;
  }
  #contactform h6 {
    font-size: 20px;
  }
  .sec1-txt {
    padding: 45px 30px;
  }
  .vant {
    width: 95%;
  }
  .vant h3 {
    font-size: 16px;
  }
  .bullet-txt p,
  .vant p {
    font-size: 11px;
  }
  .sec1-txt p,
  .vant h6 {
    font-size: 14px;
  }
  .sec3-txt h3 {
    font-size: 24px;
  }
  .vant-icon {
    width: 70px;
    border-radius: 20px;
  }
  .vant {
    border-radius: 20px;
  }
  .vant-icon img {
    max-width: 60%;
  }
}
@media only screen and (max-width: 375px) {
  #contactform {
    padding: 30px 20px;
  }
  .header-txt p {
    font-size: 14px;
  }
  .bullet {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .bullet img {
    width: 60px;
    margin: 0 0 30px 0;
  }
  .sec3-txt {
    padding: 40px 10px;
  }
  .header-txt h3 {
    font-size: 30px;
  }
  .radio-buton label {
    font-size: 15px;
  }
  .footer-txt button {
    width: 100%;
  }
  .footer-txt h3 {
    font-size: 28px;
  }
  .footer-txt {
    padding: 0 15px;
  }
  .message-box h3 {
    font-size: 26px;
  }
  .message-box h5 {
    font-size: 18px;
  }
  .message-box p {
    font-size: 14px;
  }
  .message-box img {
    max-width: 90%;
  }
}
