:root {
  --uni-sys-typeset-body-font-size: 14px;
  --uni-sys-typeset-body-line-height: 1.5;
  --uni-sys-typeset-body-font-weight: 400;
  --uni-sys-typeset-body-font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

body,
html {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

:root {
  --uni-sys-typeset-body-font-size: 14px;
  --uni-sys-typeset-body-line-height: 1.5;
  --uni-sys-typeset-body-font-weight: 400;
  --uni-sys-typeset-body-font-family: -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol";
}

body,
html {
  min-height: 100%;
  margin: 0;
  padding: 0;
}

.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#26374a;
  border-color: #26374a 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;
  box-sizing: initial;
  position: relative;
}

.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: #26374a 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: #26374a;
}

@keyframes pulsing {
  100% {
    box-shadow: transparent 0 0 0 10px;
  }
}

.lander-form-header,
.lander-form-field .lander-submit {
  font-weight: 700;
  background: #26374a;
  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;
  font-size: 16px;
  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;
  right: 15px;
  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;
}

.progress-autologin {
  position: relative;
  height: 10px;
  width: 230px;
  border: 5px solid#26374a;
  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%;
  }
}

.dtpcnt {
  opacity: 0;
}

.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#26374a;
  border-color: #26374a 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;
  box-sizing: initial;
  position: relative;
}

.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: #26374a 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: #26374a;
}

@keyframes pulsing {
  100% {
    box-shadow: transparent 0 0 0 10px;
  }
}

.lander-form-header,
.lander-form-field .lander-submit {
  font-weight: 700;
  background: #26374a;
  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;
  font-size: 16px;
  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;
  right: 15px;
  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;
}

.progress-autologin {
  position: relative;
  height: 10px;
  width: 230px;
  border: 5px solid#26374a;
  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%;
  }
}

.dtpcnt {
  opacity: 0;
}

<!-- стили для увеличения фото -- > .slider1 {
  width: 1780px;
  max-width: unset;
}

.arrows.arrows-slider1 {
  width: 1180px;
  max-width: calc(100vw - 236px);
  margin-right: auto;
  left: 0;
  right: unset;
}

@media (max-width: 785px) {
  .arrows.arrows-slider1 {
    max-width: calc(100vw - 60px);
    left: 0;
  }
}

h2,
.form__title,
.testimonials__title,
.steps__title,
.slider1__caption,
.hero__title {
  color: #333;
  font-weight: 500;
}

.section-testimonials .swiper-slide .card p,
.launch__text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
}

.form__title {
  font-weight: 500;
}

.hero__title {
  font-weight: 500;
}

.section-launch {
  background-color: #26374a;
}

.show .slideshow-container {
  border-radius: 0;
}

.lightbox-img {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.prev__slider1:hover,
.next__slider1:hover,
.left:hover,
.right:hover {
  background: #e4e4e4;
}

.lightbox-img::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  width: 50px;
  height: 50px;
  background-image: url("../images/lupa.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.page-footer .wrapper {
  background: #26374a url("../images/footer-bg.webp") no-repeat bottom;
}

.prev__slider1,
.next__slider1,
.left,
.right {
  padding: 16px 12px;
}

@media (min-width: 768px) {
  .page-footer .wrapper {
    background: #26374a url("../images/footer-bg.webp") no-repeat right bottom;
    background-size: 474px;
    padding-bottom: 39px;
  }

  .section-testimonials .swiper-slide .card p,
  .launch__text {
    font-size: 16px;
  }

  .prev__slider1,
  .next__slider1,
  .left,
  .right {
    padding: 16px 12px;
    background-color: transparent;
    opacity: 1;
  }
}

.register {
  border-radius: 0;
}

.form__title {
  text-wrap: balance;
}

.card__ava {
  width: 80px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section-form .container > div {
    display: flex;
    justify-content: flex-end;
    margin-right: 31px;
  }

  .topNavigationSearch .searchSubmit {
    background-color: rgba(38, 55, 74, 1);
  }

  .topNavigationSearch .quickSearch {
    opacity: 0.5;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
  }

  .register__title {
    font-weight: 500;
  }

  .section-form .register {
    padding: 32px;
    margin: 0;
    translate: 0 -23px;
  }

  .section-form {
    background-color: #fff;
    padding: 60px 0 10px;
    background-position: center 150px;
    padding-bottom: 237px;
  }
}

@media (min-width: 1024px) {
  .section-form {
    background-position: center 150px;
  }
}

@media (min-width: 1280px) {
  .testimonials {
    max-width: 1180px;
  }
}

@media (min-width: 1440px) {
  .section-form {
    background-position: center 150px;
  }

  .section-testimonials .swiper-slide .card p {
    max-width: 100%;
  }
}

.custom-dropdown-wrapper {
  position: relative;
  width: 100%;
}

.custom-dropdown-selected {
  padding-right: 32px !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
  height: auto;
  box-sizing: border-box;
  font-size: 17px !important;
}

.custom-dropdown-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 14px;
  color: #555;
  line-height: 1;
  height: 1em;
  display: flex;
  align-items: center;
}

.custom-dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 8px;
  border: 1px solid #ccc;
  margin-top: 4px;
  max-height: 160px;
  overflow-y: auto;
  display: none;
  z-index: 100;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  padding: 0;
  list-style: none;
}

.custom-dropdown-list::-webkit-scrollbar {
  width: 4px;
}

.custom-dropdown-list::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ddd;
}

.custom-dropdown-option {
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.custom-dropdown-option:hover {
  background: #f2f2f2;
}

.custom-dropdown-option {
  padding: 12px;
  cursor: pointer;
  transition: background 0.2s ease;

  color: #222222;
  font-size: 16px;
  font-weight: 400;
  font-family: inherit;
}

input.custom-dropdown-selected::placeholder {
  font-size: 14px !important;
}

@media (max-width: 1200px) {
  input.custom-dropdown-selected::placeholder {
    font-size: 13px !important;
  }

  .custom-dropdown-selected {
    font-size: 13px !important;
  }
}

@media (max-width: 991px) {
  input.custom-dropdown-selected::placeholder {
    font-size: 12px !important;
  }

  .custom-dropdown-selected {
    font-size: 12px !important;
  }
}

.register {
  border-radius: 12px;
}

.aio-sdk-form {
  --aio-sdk-form-padding: 0;

  --aio-sdk-input-bg: #fff;
  --aio-sdk-input-font-size: 16px;
  --aio-sdk-input-border: none;
  --aio-sdk-input-border-radius: none;
  --aio-sdk-input-padding: 17px 40px;

  --aio-sdk-submit-bg: linear-gradient(90deg, #a91b1f 0%, #e52228 100%);
  --aio-sdk-submit-padding: 12px;
  --aio-sdk-submit-border: none;
  --aio-sdk-submit-font-size: 17px;
}

.aio-sdk-form .aio-sdk-input-container {
  margin-bottom: 12px;
}

.aio-sdk-form .aio-sdk-input {
  background-color: #fff;
  border: 1px solid #dddddd;
  padding: 18px 20px;
  color: rgba(51, 51, 51, 0.5);

  font-family: Lato;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  font-family: "Lato", san-serif;
}

.aio-sdk-form input {
  transition: background-color 0.3s ease;
}

.aio-sdk-form input[type="submit"] {
  background: #284162 !important;
  padding: 20px;
  text-transform: unset;
  font-weight: 500;
  font-family: "Lato", san-serif;
}

.aio-sdk-form input[type="submit"]:hover {
  background: #26374a !important;
}

/* .aio-sdk-input-container input[data-value="Join Now"] {
  background-color: #90171a;
} */
.arrows-mobile img {
  width: 8px;
  height: 14px;
}
