@import url("./intlTelInput.css");

:root{
    --mainColor: #0a169c;
    --text: #fff;
    --input-color: #000;
    --valid-input-color: #000;
}


/* === lander spinners & form overlays === */

  .lds-dual-ring,
  .lds-ellipsis {
    display: inline-block;
  }
  .animated-check,
  .lds-dual-ring,
  .lds-ellipsis {
    height: 80px;
    width: 80px;
  }
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #dd2a30;
    border-color: #dd2a30 transparent;
    animation: 1.2s linear infinite lds-dual-ring;
  }
  @keyframes lds-dual-ring {
    0%   { transform: rotate(0); }
    100% { transform: rotate(360deg); }
  }
  .lds-ellipsis { position: relative; }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:first-child  { left: 8px;  animation: 0.6s infinite lds-ellipsis1; }
  .lds-ellipsis div:nth-child(2) { left: 8px;  animation: 0.6s infinite lds-ellipsis2; }
  .lds-ellipsis div:nth-child(3) { left: 32px; animation: 0.6s infinite lds-ellipsis2; }
  .lds-ellipsis div:nth-child(4) { left: 56px; animation: 0.6s infinite lds-ellipsis3; }
  @keyframes lds-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } }
  @keyframes lds-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } }
  @keyframes lds-ellipsis2 { 0% { transform: translate(0,0); } 100% { transform: translate(24px,0); } }
  .animated-check path {
    fill: none;
    stroke: white;
    stroke-width: 4;
    stroke-dasharray: 23;
    stroke-dashoffset: 23;
    animation: 2s linear forwards draw;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  .lander-form-wrapper {
    margin: 0 auto;
    max-width: 700px;
    width: 100%;
    border: 0;
    border-radius: 6px;
  }
  .lander-form-header {
    font-size: 30px;
    margin: 0;
    padding: 30px 20px;
    letter-spacing: 1px;
    text-align: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
  }
  .lander-form {
    padding: 30px 30px 20px;
    position: relative;
  }
  .lander-form .lander-form-loading-overlay,
  .lander-form .lander-form-success-overlay { display: none; }
  .lander-form.lander-form-loading .lander-form-loading-overlay,
  .lander-form.lander-form-success .lander-form-success-overlay {
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.5);
    height: 100%;
    position: absolute;
    left: 0; top: 0;
    z-index: 1000;
  }
  .lander-form-loading-overlay .lds-dual-ring {
    position: absolute;
    left: 50%; top: 50%;
    margin-top: -80px; margin-left: -40px;
  }
  .lander-form-success-overlay .animated-check-wrapper {
    position: absolute;
    left: 50%; top: 50%;
    margin-top: -45px; margin-left: -120px;
  }
  .lander-form-field {
    margin-bottom: 15px;
    width: 100%;
    box-sizing: initial;
    position: relative;
  }
  .lander-form-field label { display: block; }
  .lander-form-field input {
    color: #000;
    font-size: 16px;
    line-height: 42px;
    box-sizing: border-box !important;
    margin: 0 !important;
    font-weight: 400;
    transition: 0.3s;
    display: block;
    width: 100%;
    height: 50px !important;
    background-color: #fff;
    border: 1px solid #ced4da;
    padding: 10px;
    outline: 0;
    position: relative;
  }
  .lander-phone-input {
    padding-left: 110px !important;
    padding-right: 6px !important;
  }
  .lander-form-wrapper,
  .lander-form-field .lander-submit {
    box-shadow: 0 4px 20.9px 3.1px rgb(13 13 13 / 43%);
  }
  .lander-form-field .lander-submit {
    box-shadow: #dd2a30 0 0 0 0;
    animation: 2s ease 0s infinite normal none running pulsing;
  }
  .lander-form-steps {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 25px;
  }
  .lander-form-steps .lander-form-step {
    border-radius: 5px;
    background: #e7e7e7;
    height: 7px;
    width: 100%;
    margin-left: 5px;
    margin-right: 5px;
  }
  .lander-form-steps .lander-form-step.lander-form-step-active { background: #dd2a30; }
  @keyframes pulsing { 100% { box-shadow: transparent 0 0 0 10px; } }
  .lander-form-header,
  .lander-form-field .lander-submit {
    font-weight: 700;
    background: #dd2a30;
    text-transform: uppercase;
    color: #fff;
  }
  .lander-form-field .lander-submit {
    margin: 15px auto 0 !important;
    display: block;
    font-size: 20px;
    position: relative;
    padding: 0;
    width: 90%;
    min-height: 60px;
    cursor: pointer;
    white-space: normal;
    border: none;
    transition: 50ms ease-out;
  }
  .lander-form-field .lander-submit:hover { font-size: 24px; }
  .lander-form-field span.error {
    background: #dc3545;
    padding: 3px 7px;
    color: #fff;
    box-sizing: initial;
    top: 50%;
    position: absolute;
    width: auto;
    right: 37px;
    z-index: 100;
    font-size: 14px;
    line-height: 1.5;
    height: 24px;
    margin-top: -15px;
    font-weight: 400;
    display: none !important;
    cursor: pointer;
  }
  .lander-form-field span.error.tooltip-error { display: block !important; }
  .lander-form-field-validation-ok span.error.tooltip-error { display: none !important; }
  .lander-form-field input.error { /*border-color: #dc3545;*/ }
  .lander-form-field-validation-icon::after {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    line-height: 1;
    font-size: 20px;
  }
  .lander-form-field-validation-icon {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    width: 20px; height: 20px;
    box-sizing: initial;
    font-size: 20px;
    line-height: 1;
  }
  .lander-form-field-validation.lander-form-field-validation-ok input { outline: 2px solid #198754; }
  .lander-form-field-validation.lander-form-field-validation-ok .lander-form-field-validation-icon:after {
    display: block;
    content: "\\f058";
    color: #198754;
  }
  .lander-form-field-validation-error input { outline: 2px solid #dc3545; }
  .lander-form-field-validation.lander-form-field-validation-error .lander-form-field-validation-icon:after {
    content: "\\f06a";
    color: #dc3545;
    cursor: pointer;
  }
  .lander-form-field .iti {
    width: 100%;
    box-sizing: border-box;
    position: relative;
  }
  .iti__country-name,
  .iti__dial-code { font-size: 16px; }
  .lander-form-field .iti .iti__country-container,
  .lander-form-field .iti .iti__flag-container {
    padding: 0 !important;
    margin: 0 !important;
    position: absolute !important;
    top: 0 !important; bottom: 0 !important; left: 0 !important;
    right: auto !important;
    height: 100% !important;
    display: flex !important;
    align-items: stretch !important;
    box-sizing: border-box;
    z-index: 2;
    border-radius: 20px 0 0 20px;
    overflow: hidden;
  }
  .lander-form-field .iti--show-selected-dial-code .iti__selected-country {
    flex: 1 1 auto;
    align-self: stretch;
    width: 100%;
    min-height: 100%; height: 100%;
    margin: 0 !important;
    padding-top: 0 !important; padding-bottom: 0 !important;
    border-radius: 0;
    box-sizing: border-box;
 
  }
  /* .progress-autologin {
    position: relative;
    height: 10px; width: 230px;
    border: 5px solid #dd2a30;
    border-radius: 6px;
    box-sizing: initial;
  }
  .progress-autologin .color {
    position: absolute;
    background-color: #fff;
    width: 100%; height: 10px;
    border-radius: 0;
    animation: 10s ease-in progress-autologin;
    box-sizing: initial;
  }
  @keyframes progress-autologin {
    0%   { width: 0%; }
    25%  { width: 50%; }
    50%  { width: 75%; }
    75%  { width: 85%; }
    100% { width: 100%; }
  }
  body .pushwoosh-subscription-widget_show { display: none !important; }

/* === lander utilities === */
  /* .dtpcnt { opacity: 0; }
  .hide { display: none !important; font-size: 22px !important; } */ */
  .lander-form-field .iti .lander-phone-input.lander-form-send.iti__tel-input#phone {
    padding-left: 100px !important;
  }
  .iti__selected-dial-code { color: #555 !important; font-size: 18px !important; }
  @media (max-width: 768px) {
    .iti__selected-dial-code { font-size: 14px !important; }
    /* .hide { font-size: 22px !important; } */
  }
  input.error-input { border: 2px solid red !important; }

/* === main page styles (orig/style.css) === */
/* ===== inlined from style.css ===== */
/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("orig/XRXV3I6Li01BKofIOOaBTMnFcQIG.woff2") format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("orig/XRXV3I6Li01BKofIMeaBTMnFcQIG.woff2") format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("orig/XRXV3I6Li01BKofIOuaBTMnFcQIG.woff2") format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("orig/XRXV3I6Li01BKofIO-aBTMnFcQIG.woff2") format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("orig/XRXV3I6Li01BKofINeaBTMnFcQ.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/* .reg-title { margin-top: 150px; }
.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  column-gap: 0.75rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo__text {
  font-size: 23px;
  color: #4d4d50;
  font-weight: 700;
  white-space: nowrap;
  font-family: Nunito, sans-serif;
}


.header__logo { margin-left: 20px; max-width: 250px; }
.hero {
  height: 100%;
  width: 100%;
  background: url("coins.webp") -30px -100px, url("pattern.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 150px;
  padding-bottom: 270px;
}
.hero__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.hero__big-col { width: 60%; }
.hero__header {
  color: #fff;
  display: inline-block;
  text-align: left;
  font-family: tt firs neue;
  font-size: 157px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
.hero__header-decor {
  position: absolute;
  z-index: -1;
  bottom: 25%;
  right: 12%;
  word-spacing: -15px;
}
.hero__header-decor::before {
  content: " ";
  display: inline-block;
  position: absolute;
  width: 870px;
  height: 500px;
  background-image: url("wallet.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  top: -365px;
  left: -175px;
}
.hero__col {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  padding-top: 70px;
}
.hero__comment-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 100px;
}
.hero__comment-block {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1.5fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  width: 35%;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  border: 2px solid #fff;
}
.hero__comment-img img { width: 100%; }
.hero__comment-text-block {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 25px;
  font-weight: 300;
  padding: 20px;
  border-radius: 0 0 50px 50px;
}
.hero__comment-title-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.hero__comment-title-block hr { width: 100%; height: 1px; background: #fff; margin: 20px 0; }
.hero__comment-title { font-size: 35px; font-weight: 700; }


.screen-block { padding: 0 40px; margin-bottom: 30px; }
.screen-block__wrapper {
  background: url("") no-repeat;
  background-size: 100%;
  padding: 130px 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  top: -120px;
}
.screen-block__text {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.1;
  width: 45%;
}
.screen-block__exchange-rates {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  width: 50%;
}
.screen-block__first-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
.screen-block__second-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}
.screen-block__rates-block {
  border-radius: 20px;
  background: #333;
  padding: 30px 20px;
  max-width: 365px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.screen-block__currency { color: #fff; font-family: Nunito, sans-serif; font-size: 30px; font-style: normal; font-weight: 500; line-height: 1.1; }
.screen-block__number {
  color: #beed8f;
  font-family: Nunito, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.screen-block__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #333;
  font-family: Nunito, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  background: #beed8f;
  border-radius: 50%;
}
.screen-block__icon--purple { background: #b79cfe; }

.description__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.description__title {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 45px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.1;
  text-transform: capitalize;
  text-align: center;
}
.description__subtitle {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}
.review-block {
  padding: 60px;
  padding-top: 6.2vw;
  height: 540px;
  width: 39.4vw;
  background: url("dialog.webp");
  background-size: contain;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}
.review-block__avatar {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
  display: flex;
  -webkit-aspect-ratio: 1/1;
  -moz-aspect-ratio: 1/1;
  -o-aspect-ratio: 1/1;
  aspect-ratio: 1/1;
}
.review-block__avatar img {
  width: 100%;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.14);
  object-fit: cover;
}
.review-block__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}
.review-block__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.review-block__text {
  color: #fff;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  text-transform: uppercase;
}
.advantages {
  background: url("pattern.webp");
  background-repeat: no-repeat;
  padding: 200px;
  padding-top: 300px;
  padding-bottom: 30px;
  background-size: cover;
  position: relative;
}
.advantages__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-bottom: 80px;
}
.advantages__card {
  border-radius: 40px;
  border: 1px solid #fff;
  background: rgba(217, 217, 217, 0.46);
  max-width: 420px;
  width: 100%;
  color: #000;
  font-family: Nunito, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  overflow: hidden;
  text-transform: uppercase;
}
.advantages__card-wrapper {
  background: -o-linear-gradient(75deg, #d9d9d9 0%, rgba(217, 217, 217, 0.46) 100%);
  background: linear-gradient(15deg, #d9d9d9 0%, rgba(217, 217, 217, 0.46) 100%);
  padding: 30px;
  height: 100%;
  border-radius: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advantages__card-icon {
  border-radius: 20px;
  background: #2f2f2f;
  max-width: 135px;
  padding: 20px;
  display: inline-block;
  margin-bottom: 20px;
}
.advantages__text-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.advantages__card-title {
  font-weight: 700;
  margin-bottom: 30px;
  display: block;
  height: 3.1em;
}
.advantages__text-block { margin-top: 100px; margin-left: 200px; width: 35%; }
.advantages__title { color: #fff; font-size: 35px; font-style: normal; font-weight: 700; margin-bottom: 60px; }
.advantages__text { color: #fff; font-size: 25px; font-style: normal; font-weight: 500; margin-top: 40px; }
.advantages__decor-left { position: absolute; bottom: -90px; z-index: 3; left: 0; }
.advantages__decor-right { position: absolute; bottom: 38%; right: 0; }
.advantages__decor-bottom { position: absolute; bottom: -50px; right: 10%; }
.advantages__decor-bottom img { width: 90%; }
.advantages__decor-coins { position: absolute; bottom: -70px; right: 2%; z-index: 3; }
.advantages__decor-coins img { width: 90%; }
.crypto-exchanges { background: #fff; position: relative; z-index: 2; }
.crypto-exchanges__list {
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.crypto-exchanges__list img { max-width: 80px; }
.connect {
  padding: 75px 0;
  background: none no-repeat;
  background-position: 0% 20%;
  background-size: cover;
}
.connect-title {
  display: block;
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 100px;
}
.connect__comments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 75px;
}
.connect__comment-block {
  border-radius: 40px;
  background: #fff;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1130px;
  width: 100%;
  height: 100%;
}
.connect__comment-avatar {
  border-radius: 50%;
  border: 3px solid #61b4ff;
  max-width: 114px;
  width: 100%;
  -webkit-aspect-ratio: 1/1;
  -moz-aspect-ratio: 1/1;
  -o-aspect-ratio: 1/1;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.connect__comment-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin-left: 130px;
}
.connect__comment-title {
  color: #155ea0;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 15px;
}
.connect__comment-text {
  color: #5a5a5a;
  font-size: 23px;
  font-style: normal;
  font-weight: 500;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 20px;
}
.connect__comment-btns {
  color: #61b4ff;
  font-size: 25px;
  font-style: normal;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.connect__comment-like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.connect__comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.connect__comment::before {
  content: " ";
  display: inline-block;
  width: 38px;
  height: 38px;
  background: url("comment.webp");
  margin-right: 5px;
}
.connect__comment-like::before {
  content: " ";
  display: inline-block;
  width: 35px;
  height: 35px;
  background: url("like.webp");
  margin-right: 5px;
}
.footer { flex: 0 0 auto; }
.footer__upper-block { background-color: #fff; padding: 70px 0; }
.footer__link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.footer__link {
  color: #3b4034;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}
.footer__link:hover { border-color: #3b4034; }
.footer__tagline { color: #3b4034; font-size: 36px; font-style: normal; font-weight: 600; }
.footer__lover-block { background: 0 0; padding: 30px; }
.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.footer__copyright { color: #fff; font-size: 23px; font-style: normal; font-weight: 500; }
.footer__logo {
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.chat-slider--mobile { display: none; }
.green-text { color: #beed8f; }
.another-font { font-family: tt firs neue; }
.gallery { width: 100%; position: relative; top: 64px; }
.gallery-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 540px;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
}
.gallery-item {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 0;
}
.gallery-item-1 {
  left: 16.5%;
  opacity: 0.95;
  z-index: 3;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: translateX(-50%) scale(0.85);
  -ms-transform: translateX(-50%) scale(0.85);
  transform: translateX(-50%) scale(0.85);
}
.gallery-item-2 {
  opacity: 0.98;
  z-index: 4;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
}
.gallery-item-3 {
  left: 83.5%;
  opacity: 0.95;
  z-index: 3;
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-transform: translateX(-50%) scale(0.85);
  -ms-transform: translateX(-50%) scale(0.85);
  transform: translateX(-50%) scale(0.85);
}
.gallery-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 25px 0;
  height: 100px;
  position: absolute;
  z-index: 3;
  bottom: -180px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.gallery-controls button {
  background: -o-linear-gradient(305deg, rgba(51, 51, 51, 1) 0%, rgba(98, 98, 98, 1) 100%);
  background: linear-gradient(145deg, rgba(51, 51, 51, 1) 0%, rgba(98, 98, 98, 1) 100%);
  border: 0;
  cursor: pointer;
  margin: 0 5px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  text-transform: capitalize;
}
.gallery-controls button::after {
  content: " ";
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: -o-linear-gradient(305deg, rgba(63, 43, 115, 1) 0%, rgba(110, 63, 230, 1) 100%);
  background: linear-gradient(145deg, rgba(63, 43, 115, 1) 0%, rgba(110, 63, 230, 1) 100%);
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.gallery-controls button:hover::after, .gallery-controls button:active::after {
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.gallery-controls button:focus { outline: none; }
.gallery-controls-prev { position: relative; }
.gallery-controls-prev::before {
  content: " ";
  display: inline-block;
  height: 5px;
  background-image: url("left-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  z-index: 4;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}
.gallery-controls-next { position: relative; }
.gallery-controls-next::before {
  content: " ";
  display: inline-block;
  height: 5px;
  background-image: url("right-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  z-index: 4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.gallery-nav {
  bottom: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: absolute;
  width: 100%;
}
.gallery-nav li { background: #ccc; border-radius: 50%; height: 10px; margin: 0 16px; width: 10px; }
.gallery-nav li.gallery-item-selected { background: #555; }
.gallery-item { width: 38.4vw; }
.gallery-controls { bottom: -10vw; }
.advantages { padding-top: 15vw; }
span.small_h1 { font-size: 0.7em; }
.modal-before { width: 100%; max-width: 600px; min-width: 350px; border-radius: 20px; }
.modal-before__inner {
  display: none;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  padding: 20px;
  gap: 15px;
}
.modal-before__inner h2 { font-size: 24px; font-weight: 500; }
.modal-before__inner h2 > span { color: #6039c2; }
.modal-before__inner p { margin-top: 0; font-size: 18px; }
.modal-before__check svg { border: 2px solid #6039c2; border-radius: 50%; }
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  padding: 0;
  transition: opacity 0.4s, visibility 0.4s;
  display: grid;
  align-items: center;
  justify-content: center;
  border: none;
  font-family: Nunito, sans-serif;
}
.modal__inner {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  margin-inline: 10px;
  z-index: 9999;
  transform: scale(0);
  transition: transform 0.8s;
  min-width: 350px;
  box-shadow: 0 0 20px 0 #00000014;
  background: #fff;
}
.modal.show { visibility: visible; opacity: 1; }
.modal__content { max-width: 600px; padding: 20px; }
.modal__content h2 {
  font-size: 26px;
  margin: 20px 20px 16px;
  color: #1e1e1e;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.modal__content h2 > span { color: #6039c2; display: block; }
.modal__img {
  background-image: url("modal-pass.webp");
  border-radius: 20px 20px 0 0;
  background-size: cover;
  background-position: center 15%;
  width: 100%;
  height: 270px;
}
.modal-button {
  width: 100%;
  min-height: 60px;
  font-size: 19px;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}
.no-button, .yes-button {
  border-radius: 12px;
  border: 1px solid #6039c2;
  color: #6039c2;
  background-color: transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.no-button:hover, .yes-button:hover {
  color: #fff;
  background: #6039c2;
  border: 1px solid #6039c2;
}
.modal__content-button { display: flex; flex-direction: column; gap: 10px; }
.modal.show .modal__inner { transform: scale(1); }
@media (max-width: 769px) { .modal__img { height: 259px; } }
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #6039c2;
  animation: loading 1.5s infinite;
}
.dot:nth-child(1) { animation-delay: 0s; }
.dot:nth-child(2) { animation-delay: 0.3s; }
.dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes loading {
  0%, 80%, 100% { transform: scale(1); }
  40% { transform: scale(1.5); }
}
.clickable { cursor: pointer; } */
#form {
  max-width: 450px;
  width: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 20px;
}
#form .lander-form { padding: 0; width: 100%; }
.lander-form-wrapper { box-shadow: none !important; }
.lander-form-header { display: none; }
.lander-form-field.lander-form-field-validation.lander-steps-mode input {
  border: none;
  box-shadow: none;
  text-align: left;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  padding: 20px 15px;
  width: 100%;
  line-height: 24px;
  box-sizing: border-box;
  height: auto !important;
  border-radius: 20px;
  border: 2px solid #6565;
}
#form .lander-form-field input { color: #555; }
.lander-form-field.lander-form-field-validation.lander-steps-mode input::placeholder {
  color: #555;
  opacity: 0.7;
}
.lander-form-field.lander-steps-mode .lander-submit {
  margin-top: 20px;
  border-radius: 20px;
  background: linear-gradient(143deg, #b6ff6f 0%, #beed8f 100%) !important;
  color: #1e1e1e !important;
  text-align: center;
  font-size: 22px !important;
  font-style: normal;
  font-weight: 600;
  height: 70px !important;
  text-transform: capitalize !important;
  line-height: 1.5 !important;
  width: 100% !important;
  /*padding: 12px !important;*/
  border: 0 solid #e5e7eb !important;
  min-height: 70px !important ;
  z-index: 1 !important;
  box-shadow: #b6ff6f 0 0 0 0;
}
.iti__flag-container { height: 100% !important; }
.iti__flag-container .iti__country-list { z-index: 10000 !important; }
@media (max-width: 768px) {
  .lander-form-field.lander-form-field-validation.lander-steps-mode input { font-size: 14px; }
}
/* .link { color: #b6ff6f !important; }
.link--secondary { color: #0f6fcf !important; text-decoration: underline !important; }
.link:hover { text-decoration: underline !important; } */
.lander-form-errors {
  margin: 5px 0 10px;
  padding: 0 5px;
}

.lander-form-errors > div {
  all: unset;
  display: block;
}

.lander-form-errors > div:not(:first-child) {
  display: none !important;
}

label.error,
.lander-form-errors label.error,
.lander-form-field label.error,
.phone + label.error {
  all: unset !important;
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ff4040 !important;
  text-align: left !important;
  font-family: Nunito, sans-serif !important;
  line-height: 1.2 !important;
}

.lander-form-field span.error,
.lander-form-field span.error.tooltip-error,
.lander-form-field .lander-form-field-validation-icon {
  display: none !important;
}

input.error,
input.valid,
input.error-input,
.lander-form-field input.error,
.lander-form-field-validation-error input,
.lander-form-field-validation.lander-form-field-validation-ok input,
.lander-form-field-validation.lander-form-field-validation-error input {
  background: transparent !important;
  outline: 0 !important;
  color: #555 !important;
}

input.error::placeholder,
input.valid::placeholder {
  color: #555 !important;
  opacity: 0.7 !important;
}


/* === form-feedback widget === */
#form-feedback {
    border-radius: 39px;
    max-width: 560px;
    margin: 0 auto;
    font-family: Arial;
    box-shadow: 0px 0px 5px #0000007d;
}

.form-feedback-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 0 40px 40px;
    box-sizing: border-box;
}

.form-feedback-title {
    text-align: center;
    padding: 30px 15px;
    font-size: 30px;
    background: #fff;
    color: var(--text);
    text-transform: uppercase;
    margin: 30px 0;
    line-height: 1.2;
    letter-spacing: 2px;
}
@media(max-width: 767px){
    .form-feedback-title {
        font-size: 24px;
    }
}

#form-feedback input {
    font-size: 16px;
    margin-bottom: 16px;
    width: 100%;
    padding: 12px 15px;
    box-sizing: border-box;
    border: 1px solid var(--mainColor);
    border-radius: 4px;
    color: var(--input-color);
    line-height: 1;
    background: #f7f7f7;
    box-shadow: 3px 3px 6px #00000030;
    font-family: Arial;
    background: #fff;
}
#form-feedback input:focus{
    outline: 1px solid var(--mainColor);
}

.form-feedback-btn {
    background: var(--mainColor);
    color: var(--text);
    width: 80%;
    margin: auto;
    display: flex;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
    font-family: Arial;
    letter-spacing: 1px;
    box-shadow: 3px 3px 6px #00000030;
    text-align: center;
    justify-content: center;
}

input.error {
    margin-bottom: 5px!important;
    background: #ff000020!important;
    position: relative;
    color: var(--valid-input-color)!important;
}

input.error::placeholder{
    color: #000;
}

label.error {
    font-family: Arial;
    color: red;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.phone + label.error{
    margin: 5px 0 0!important;
}



.iti--separate-dial-code {
    padding: 0!important;
    max-width: 100%;
    width: 100%;
    margin-bottom: 16px;
}
.iti__selected-country{
    padding-right: 13px;
    background: #e1e1e1!important;
    border-left: 2px solid #6565;
    border-top: 2px solid #6565;
    border-radius: 20px 0px 0px 20px;


}
.iti__selected-dial-code{
    color: #000;
}

.iti__country-container {
    pointer-events: none;
    max-height: 66px;
}
.iti {
    width: 100%;
    margin-bottom: 20px;
}
.iti__arrow {
    display: none;
}

@media print {
  body {
    display: none !important;
  }
}