:root {
  --accent-blue: #3F67F2;
  --accent-pink: #D8C6FF;
  --not-black: #1F1F1F;
  --h-gradient: linear-gradient(114.58deg, #2067EF 0%, #7466F5 100%);
  --stroke-gray: #BDBCDB;
  --txt-disabled: #C5C0DB;
  --input-bg: #F7F7FD;
  --white: #ffffff;
  --purple: #605DEC;
  --purple-gray: #E3E4EF;
  --border-gray: #DBDBDB; }

._wrapper {
  background: #F1F2F6;
  overflow-x: hidden; }
  ._wrapper section {
    width: 100%;
    margin-left: auto;
    margin-right: auto; }
  ._wrapper img {
    height: auto; }
  ._wrapper .title {
    font-weight: bold; }

._section {
  margin: 12rem 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }

._flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

._d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

._centered {
  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; }

.bold {
  font-weight: bold; }

._f-20 {
  font-size: 2rem;
  line-height: 110%; }

._f-27 {
  font-size: 2.7rem;
  line-height: 110%; }

._f-38 {
  font-size: 3.8rem;
  line-height: 110%; }

._f-56 {
  font-size: 5.6rem;
  line-height: 110%; }

._container-lg {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 115rem; }

._container-xl {
  padding-left: 2rem;
  padding-right: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 134.6rem; }

._input {
  display: block;
  width: 100%;
  height: 5.6rem;
  background: var(--white);
  border: 0.1rem solid var(--border-gray);
  border-radius: 1.6rem;
  padding: 0 1.6rem;
  font-size: 1.6rem;
  line-height: 150%;
  color: var(--not-black);
  outline: none; }
  ._input::-webkit-input-placeholder {
    opacity: 0.6; }
  ._input::-moz-placeholder {
    opacity: 0.6; }
  ._input:-ms-input-placeholder {
    opacity: 0.6; }
  ._input::-ms-input-placeholder {
    opacity: 0.6; }
  ._input::placeholder {
    opacity: 0.6; }

._btn {
  width: 100%;
  height: 5.6rem;
  -webkit-box-shadow: 0px .4rem 0px #000000;
          box-shadow: 0px .4rem 0px #000000;
  border-radius: 1.6rem;
  font-size: 1.6rem;
  border: none;
  padding: 0;
  -webkit-transition: .2s linear;
  -o-transition: .2s linear;
  transition: .2s linear; }
  ._btn-no-shadow {
    -webkit-box-shadow: none;
            box-shadow: none; }
  ._btn:hover {
    -webkit-box-shadow: none;
            box-shadow: none; }
  ._btn:not([disabled]) {
    cursor: pointer; }

._button {
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.8rem 2.2rem;
  background: var(--purple);
  border-radius: 1.6rem;
  border: none;
  font-size: 1.6rem;
  line-height: 2rem;
  color: var(--white);
  cursor: pointer; }

._outline-border {
  position: relative; }
  ._outline-border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-gray);
    pointer-events: none; }

@media (max-width: 1400px) {
  ._container-xl {
    max-width: 114.6rem; } }

@media (max-width: 1200px) {
  ._container-xl {
    max-width: 94.6rem; } }

@media (max-width: 1024px) {
  ._container-lg, ._container-xl {
    max-width: 64.2rem; }
  .title {
    font-size: 4.8rem; }
  ._section {
    margin: 6rem 0; }
  ._f-20 {
    font-size: 1.8rem; }
  ._f-27 {
    font-size: 2.4rem; }
  ._f-38 {
    font-size: 3.2rem; }
  ._f-56 {
    font-size: 4.8rem; } }

@media (max-width: 767px) {
  ._container-lg, ._container-xl {
    max-width: 36.4rem; }
  .title {
    font-size: 2.8rem; }
  ._section {
    margin: 5rem 0; }
  ._f-20 {
    font-size: 1.6rem; }
  ._f-27 {
    font-size: 2rem; }
  ._f-38 {
    font-size: 2.8rem; }
  ._f-56 {
    font-size: 3.2rem; }
  ._input {
    font-size: 1.4rem; } }

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    -webkit-transition: width 0.35s ease;
    -o-transition: width 0.35s ease;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  /*--bs-modal-color: ;*/
  --bs-modal-bg: #fff;
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: 1px;
  --bs-modal-border-radius: 0.5rem;
  --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-modal-inner-border-radius: calc(0.5rem - 1px);
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: 1px;
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  /*--bs-modal-footer-bg: ;*/
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: 1px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none; }
  .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
        -ms-transform: translate(0, -50px);
            transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        -webkit-transition: none;
        -o-transition: none;
        transition: none; } }
  .modal.show .modal-dialog {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none; }
  .modal.modal-static .modal-dialog {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02); }

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2); }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2); }

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0; }

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg); }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: var(--bs-backdrop-opacity); }

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius); }
  .modal-header .btn-close {
    padding: calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);
    margin: calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto; }

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height); }

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: var(--bs-modal-padding); }

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius); }
  .modal-footer > * {
    margin: calc(var(--bs-modal-footer-gap) * .5); }

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto; }
  .modal-sm {
    --bs-modal-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px; } }

@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px; } }

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0; }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0; }
  .modal-fullscreen .modal-header,
  .modal-fullscreen .modal-footer {
    border-radius: 0; }
  .modal-fullscreen .modal-body {
    overflow-y: auto; }

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-header,
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-header,
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-header,
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-header,
    .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto; } }

@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-header,
    .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto; } }

.modal-dialog {
  max-width: 32.4rem;
  margin-left: auto;
  margin-right: auto; }

.modal-content {
  position: relative;
  border-radius: 3.4rem;
  padding: 8rem 7rem; }

.modal-close {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #F1F2F6;
  top: 2.8rem;
  right: 2.8rem;
  position: absolute; }

.modal-subscription__title {
  font-size: 3.2rem;
  line-height: 110%;
  margin-bottom: 2rem; }
  .modal-subscription__title span {
    color: var(--purple); }
    .modal-subscription__title span span {
      margin-left: 0.6rem;
      position: relative;
      display: inline-block;
      width: 3.8rem; }
      .modal-subscription__title span span img {
        position: absolute;
        width: 3.8rem;
        height: 3.8rem;
        top: -2.6rem; }

.modal-subscription__txt {
  font-size: 2rem;
  line-height: 160%;
  margin-bottom: 2rem;
  max-width: 61rem; }

.modal-subscription__form {
  width: 26rem;
  min-height: 17.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }

.modal-subscription__img {
  position: absolute;
  bottom: 0;
  right: 4.4rem;
  width: 35.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  .modal-subscription__img img {
    width: 100%; }

.modal-subscription-form {
  padding-top: 1rem;
  width: 100%; }
  .modal-subscription-form__input {
    margin-bottom: 1rem;
    border-color: var(--purple);
    color: var(--purple); }
  .modal-subscription-form__btn {
    margin-bottom: 1.4rem;
    width: 100%; }
  .modal-subscription-form__txt {
    font-size: 1.4rem;
    line-height: 1.6rem;
    opacity: 0.6; }
    .modal-subscription-form__txt a {
      text-decoration: underline; }
      .modal-subscription-form__txt a:hover {
        text-decoration: none; }

.modal-subscription-success {
  font-size: 1.8rem;
  line-height: 120%;
  color: var(--purple);
  width: 100%;
  margin: auto;
  display: none; }
  .modal-subscription-success__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .modal-subscription-success__img {
    width: 6.4rem;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .modal-subscription-success__info {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 1.6rem; }

@media (max-width: 1400px) {
  .modal-content {
    padding: 6rem 7rem; }
  .modal-subscription__img {
    width: 34.6rem;
    right: 3.4rem; } }

@media (max-width: 1024px) {
  .modal-content {
    padding: 5rem 4rem;
    overflow: hidden; }
  .modal-subscription__title {
    font-size: 2.8rem; }
    .modal-subscription__title span span {
      width: 2.6rem; }
      .modal-subscription__title span span img {
        width: 2.6rem;
        height: 2.6rem;
        top: -2rem; }
  .modal-subscription__txt {
    font-size: 1.6rem;
    margin-bottom: 2rem; }
  .modal-subscription__img {
    width: 29rem;
    right: -6.6rem; } }

@media (max-width: 767px) {
  .modal-content {
    padding: 3rem 3rem 17rem; }
  .modal-close {
    top: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem; }
    .modal-close img {
      width: 1.2rem; }
  .modal-subscription__title {
    font-size: 2rem;
    margin-bottom: 1.4rem;
    max-width: 24.4rem; }
  .modal-subscription__txt {
    font-size: 1.4rem;
    margin-bottom: 1.4rem; }
  .modal-subscription__form {
    width: 100%; }
  .modal-subscription__img {
    width: 21.4rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto; } }

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 56.6rem; } }

@media (min-width: 1025px) {
  .modal-dialog {
    max-width: 74.4rem; } }

@media (min-width: 1201px) {
  .modal-dialog {
    max-width: 76rem; } }

@media (min-width: 1401px) {
  .modal-dialog {
    max-width: 80rem; } }

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  display: none;
  margin: 20px auto;
  font-size: 4px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

.border {
  border-left: 1.1em solid var(--purple) !important;
}

@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}