body {
  height: 100%;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
  height: 100%;
}

img {
  max-width: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.container {
  max-width: 1432px;
  margin: 0 auto;
  padding: 0 24px;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*,
* ::before,
* ::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: none;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select,
option {
  outline: none;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-radius: none;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

body {
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  font-size: 16px;
  color: #000;
  /* scrollbar-gutter: stable; */
  padding-top: 68px;
}

.hidden {
  display: none;
}

.section {
  margin-bottom: 100px;
}

.section--gray {
  background-color: #f2f0ee;
}

.button {
  -webkit-box-shadow: 3px 3px 0 0 #833487;
          box-shadow: 3px 3px 0 0 #833487;
  background: #b855bd;
  color: #fff;
  padding: 15px 24px;
  text-transform: uppercase;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 77px;
}
.title--center {
  text-align: center;
}

.title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 62px;
}
.title-box .title {
  max-width: 676px;
  margin-bottom: 0;
}

.title__text {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
  max-width: 472px;
  border-left: 4px #b855bd solid;
  padding-left: 34px;
  margin-left: 150px;
}
.title__text span {
  color: #b855bd;
}

.input {
  padding: 14px 20px 16px 20px;
  background-color: #fff;
  display: block;
  width: 100%;
  margin-bottom: 16px;
  color: #000;
}
.input::-webkit-input-placeholder {
  color: #76767a;
  opacity: 1;
}
.input::-moz-placeholder {
  color: #76767a;
  opacity: 1;
}
.input:-ms-input-placeholder {
  color: #76767a;
  opacity: 1;
}
.input::-ms-input-placeholder {
  color: #76767a;
  opacity: 1;
}
.input::placeholder {
  color: #76767a;
  opacity: 1;
}

.select {
  margin-bottom: 34px;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.select--current {
  padding: 14px 20px 16px 20px;
  display: block;
  position: relative;
  background-color: #5a4b58;
}
.select--current::before {
  position: absolute;
  content: "";
  background-image: url(../img/arrow-select.svg);
  width: 16px;
  height: 16px;
  right: 20px;
  top: 17px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.select--active .select--current::before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.select__list {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: 53px;
  background-color: #5a4b58;
  z-index: 3;
  display: none;
  padding-bottom: 8px;
}
.select__item {
  padding: 11px 12px 11px 20px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}
.select__item::before {
  position: absolute;
  content: "";
  background-image: url(../img/select-check.svg);
  width: 16px;
  height: 16px;
  right: 14px;
  top: 14px;
  display: none;
}
.select__item--active::before {
  display: block;
}
.select--active .select__list {
  display: block;
}

.link {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.link path,
.link rect {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer__tg rect {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer__wa rect {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.button:hover {
  -webkit-transform: translate(3px, 3px);
      -ms-transform: translate(3px, 3px);
          transform: translate(3px, 3px);
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media (hover: hover) {
  .link:hover {
    color: #b855bd;
  }
  .link-path:hover path {
    fill: #b855bd;
  }
  .link-posts:hover path {
    stroke: #b855bd;
  }
  .link-posts:hover rect {
    fill: #b855bd;
  }
  .profit-dropdown__top-icon:hover {
    background-color: #b855bd;
  }
  .rates__tab--active:hover {
    background-color: #b855bd;
  }
  .header__connect:hover {
    background-color: #b855bd;
  }
  .footer__tg:hover rect {
    fill: #27a6e5;
  }
  .footer__wa:hover rect {
    fill: #48c95f;
  }
  .select__item:hover {
    background-color: #B855BD;
  }
  .form-video__play:hover path:last-child {
    fill: #833487;
  }
  .details__item-help:hover svg circle{
    stroke: #B855BD;
  }
  .details__item-help:hover svg path{
    fill: #B855BD;
  }
  .details__item-help:hover .details__item-help__text{
    display: block;
  }
}
@keyframes show-help {
  from {
    transform: translateY(-10px);
  }

  to {
    transform: translateY(0px);
  }
}
.header {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
}
.header--index {
  z-index: 20;
  width: 100%;
}
.header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
}
.header__buttons {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__connect {
  background-color: #73326e;
  padding: 10px 24px 12px 24px;
  color: #fff;
  margin-right: 24px;
  font-weight: 500;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.header__enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__burger {
  max-height: 44px;
  margin-left: 24px;
  display: none;
}

.logo {
  max-height: 44px;
  position: relative;
  margin-right: 64px;
}
.logo::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 36px;
  background-color: #d9d9d9;
  top: 50%;
  right: -32px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 32px;
}

.promo .container {
  position: relative;
}
.promo__bg {
  position: absolute;
  right: -103px;
  top: 0;
}
.promo-box {
  position: relative;
  z-index: 2;
  padding-top: 74px;
  padding-bottom: 98px;
  max-width: 794px;
}
.promo__title {
  font-size: 44px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 12px;
  max-width: 707px;
}
.promo__text {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 24px;
}
.promo__notice {
  margin-top: 32px;
  color: #3f3f3f;
}

.header-menu {
  position: absolute;
  -webkit-box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 24px;
  top: 68px;
  right: 0;
  height: 100dvh;
  z-index: 10;
  width: 301px;
  display: none;
  -webkit-transform: translateX(500px);
      -ms-transform: translateX(500px);
          transform: translateX(500px);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-menu--active {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
.header-menu__enter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}
.header-menu .header-menu__enter {
  margin-bottom: 24px;
}
.header-menu .nav {
  display: block !important;
  border-top: 1px solid #e5e5eb;
  border-bottom: 1px solid #e5e5eb;
  padding-top: 24px;
  margin-bottom: 24px;
}
.header-menu .nav__item {
  display: block;
  width: 100%;
  margin-bottom: 24px;
}
.header-menu__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  margin-bottom: 16px;
  font-weight: 700;
}
.header-menu__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
}
.header-menu__socials svg {
  width: 44px;
  height: 44px;
}
.header-menu__connect {
  width: 100%;
  padding: 10px 24px 12px 24px;
  margin-top: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #73326e;
}

.posts-content {
  display: -ms-grid;
  display: grid;
  gap: 32px;
  -ms-grid-columns: 1fr 1fr 1fr;
  /* -ms-grid-columns: (1fr)[3]; */
  grid-template-columns: repeat(3, 1fr);
}

.posts__item {
  border: 1px solid #e5e5eb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.posts__item-text {
  padding: 24px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.posts__item-text h3 {
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
}
.posts__item-text p {
  color: #3f3f3f;
}
.posts__item-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 6px;
  color: #3f3f3f;
  margin-top: auto;
  padding-top: 24px;
  font-size: 14px;
  line-height: 20px;
}

.for__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 64px;
}
.for__item-text {
  max-width: 660px;
}
.for__item > img {
  margin-right: 64px;
}
.for__item-text h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}
.for__item-text li {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
}
.for__item-text li::before {
  position: absolute;
  content: "";
  background-image: url(../img/check.svg);
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}
.for__item:nth-child(2n+2) > img {
  margin-left: 64px;
  margin-right: 0;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.profit {
  padding: 100px 0;
}
.profit-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.profit__item {
  background-color: #fff;
  padding: 32px 32px 16px 32px;
  position: relative;
  max-width: 440px;
  width: 100%;
  height: auto;
}
.profit__item-count {
  position: absolute;
  top: 20px;
  right: 22px;
  font-size: 18px;
  line-height: 26px;
  color: #96969a;
}
.profit__item-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
}
.profit__item > img {
  margin: 24px 0;
}
.profit-dropdown {
  border-top: 1px solid #e5e5eb;
  padding: 18px 0px;
}
.profit-dropdown__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 500;
  cursor: pointer;
}
.profit-dropdown__top-icon {
  background-color: #73326e;
  padding: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.profit-dropdown__text {
  padding-left: 16px;
  color: #3f3f3f;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
.profit-dropdown__text p {
  margin-top: 16px;
}
.profit-dropdown__top-icon svg {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.profit-dropdown__top--active svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.rates .title {
  margin-bottom: 16px;
}
.rates__subtitle {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
}
.rates__tabs {
  background-color: #f5f5f7;
  border-radius: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3px;
  max-width: 294px;
  margin: 0 auto;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.rates__tab {
  font-size: 20px;
  line-height: 28px;
  padding: 12px 32px 14px 32px;
  border-radius: 100px;
  cursor: pointer;
}
.rates__tab--active {
  background-color: #73326e;
  color: #fff;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.rates__sale {
  position: absolute;
  right: -224px;
  top: -2px;
  color: #96969a;
  font-weight: 500;
}
.rates__sale p {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.rates__sale img {
  position: absolute;
  left: -75px;
  top: 22px;
}
.rates-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 32px;
  margin-top: 40px;
}
.rates__item {
  border-bottom: 1px solid #e5e5eb;
  border-left: 1px solid #e5e5eb;
  border-right: 1px solid #e5e5eb;
  width: 100%;
  max-width: 322px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.rates__item-titlebox {
  background-color: #73326e;
  padding: 16px 0;
  text-align: center;
  color: #fff;
}
.rates__item-titlebox h3 {
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 2px;
}
.rates__item-titlebox p {
  font-size: 14px;
  line-height: 20px;
  max-width: 290px;
  margin: 0 auto;
}
.rates__item-infobox-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 24px 24px 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #e5e5eb;
  padding-bottom: 12px;
}
.rates__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.rates__item-details {
  margin: 0 24px 28px 24px;
}
.rates__item-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.rates__item--selected .rates__item-titlebox {
  background-color: #b855bd;
}
.rates__item-button {
  margin: auto 20px 24px 20px;
  max-width: 274px;
  display: block;
}
.rates__link {
  color: #73326e;
  text-align: center;
  font-size: 18px;
  line-height: 16px;
  font-weight: 500;
  margin: 32px auto 0 auto;
  display: block;
  text-transform: uppercase;
  max-width: 330px;
}

.rates__tabs:has(.rates__tab--active.rates__tab--year) .rates__sale {
  color: #b855bd;
}

.form {
  color: #fff;
}
.form-content {
  padding: 72px 80px 80px 80px;
  background-color: #3d2e3b;
}
.form .title {
  margin-bottom: 15px;
}
.form__subtitle {
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 30px;
  font-weight: 600;
}
.form-box form {
  max-width: 548px;
}
.form__submit-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.form__notice {
  font-size: 12px;
  line-height: 16px;
  opacity: 0.7;
  margin-left: 24px;
}
.form__notice a {
  text-decoration: underline;
}
.form-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form-video {
  margin-left: 20px;
}
.form-video__preview {
  position: relative;
}
.form-video__preview img {
  -webkit-box-shadow: 6px 6px 0 0 #73326e;
          box-shadow: 6px 6px 0 0 #73326e;
}
.form-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.form-video__play svg {
  width: 72px;
  height: 72px;
}
.form-video__play svg path:last-child {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.form-video__view {
  max-width: 580px;
  -webkit-box-shadow: 6px 6px 0 0 #73326e;
          box-shadow: 6px 6px 0 0 #73326e;
  display: none;
}

.contacts {
  margin-bottom: 120px;
}
.contacts-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.contacts-info {
  max-width: 412px;
  width: 100%;
  margin-right: 60px;
}
.contacts-info .title {
  margin-bottom: 40px;
}
.contacts-info__item {
  padding-bottom: 25px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e5e5eb;
}
.contacts-info__item p:first-child {
  color: #76767a;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contacts-info__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}

.wrapper--blur {
  overflow-y: hidden;
}
.wrapper--blur::before {
  position: fixed;
  content: "";
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 8;
}
.wrapper--blur body {
  overflow-y: hidden;
}

.form-modal {
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  width: 100%;
  max-width: 620px;
  z-index: 10;
  height: 100dvh;
  padding: 80px 60px;
  -webkit-transform: translateX(200%);
      -ms-transform: translateX(200%);
          transform: translateX(200%);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow-y: auto;
}
.form-modal--active {
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
.form-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.form-modal .input {
  border: 1px solid #e5e5eb;
}
.form-modal .select--current {
  border: 1px solid #e5e5eb;
  background-color: #f5f5f7;
}
.form-modal .select--current::before {
  background-image: url(../img/arrow-select-black.svg);
}
.form-modal .select__list {
  background-color: #f5f5f7;
}
.form-modal .title {
  margin-bottom: 12px;
}
.form-modal .form__submit-box {
  display: block;
}
.form-modal .form__notice {
  margin-left: 0;
  margin-top: 24px;
}
.form-modal .form__subtitle {
  margin-bottom: 24px;
}
.form-modal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid #e5e5eb;
  margin-top: 40px;
}
.form-modal__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 12px;
}

.thankyou {
  position: absolute;
  width: 100%;
  max-width: 540px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  padding: 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;
  text-align: center;
  display: none;
}
.thankyou__close {
  position: absolute;
  top: 0;
  right: -44px;
}
.thankyou__text {
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer {
  padding: 32px 0;
}
.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid #e5e5eb;
  margin-bottom: 24px;
}
.footer__socials {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
}
.footer__socials > a {
  max-height: 48px;
}
.footer-bot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #76767a;
}
.footer-bot p:last-child {
  text-decoration: underline;
}

.breadcrumbs {
  margin-top: 16px;
  margin-bottom: 48px;
}
.breadcrumbs-content {
  display: flex;
  align-items: center;
  color: #76767A;
  font-size: 14px;
  line-height: 20px;
  gap: 0 4px;
}

.details {
  padding-bottom: 120px;
}

.details__rates {
  display: flex;
  justify-content: flex-end;
  gap: 0 16px;
  max-width: 1064px;
  margin-left: 320px;
}
.details__rate {
  font-size: 20px;
  line-height: 28px;
  padding: 16px 0;
  text-align: center;
  background-color: #73326E;
  width: 100%;
  max-width: 248px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}
.details__rate--free {
  background-color: #B855BD;
}
.details__item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #E5E5EB;
}

.details__item--submenu {
  border-bottom: 1px solid #E5E5EB;
}
.details__item-submenu-content {
  display: flex;
  align-items: stretch;
}
.details__item-submenu-title {
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px 0;
  width: 100%;
}
.details__item-submenu-title h3{
  font-size: 14px;
  line-height: 20px;
  max-width: 255px;
  padding-left: 16px;
}
.details__item-submenu-inner {
  display: flex;
  align-items: stretch;
}
.details__item-submenu-content .details__item-characteristic__count{
  padding: 0;
}
.details__item-title {
  max-width: 320px;
  display: flex;
  align-items: center;
  padding: 0 20px 20px 0;
  width: 100%;
}
.details__item-title h3{
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  width: 100%;
}

.details__item-help {
  position: relative;
  height: 20px;
  margin-left: auto;
  padding-left: 12px;
  padding-top: 10px;
}

.details__item-help svg{
  cursor: pointer;
}

.details__item-help svg circle, .details__item-help svg path{
  transition: 0.3s;
}

.details__item-help__text {
  z-index: 5;
  position: absolute;
  right: -11px;
  top: 46px;
  font-size: 14px;
  line-height: 20px;
  padding: 16px 28px 16px 20px;
  background-color: #fff;
  box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.12);
  width: 312px;
  display: none;
  animation: show-help 0.2s ease-in forwards;
}
.details__item-help__text::before {
  content: '';
  position: absolute;
  right: 6px;
  top: -30px;
  border: 16px solid transparent;
  border-bottom: 21px solid #fff;
  cursor: pointer;
 }
.details__item-help__close {
  position: absolute;
  cursor: pointer;
  top: 12px;
  right: 12px;
  display: none;
}
.details__item-characteristic {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  width: 100%;
  gap: 0 16px;
}
.details__item-characteristic__count {
  text-align: center;
  padding: 20px 0;
  background-color: #F5F5F7;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  width: 100%;
  max-width: 248px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.details__item-characteristic__count:nth-child(1){
  background-color: rgba(184, 85, 189, 0.05);
}
.details__item-characteristic__count p:nth-child(1){
  display: none;
}
.details__item-characteristic__count--green {
  color: #73A003;
}
.details__item-arrow {
  display: none;
}
.details__item-title--submenu {
  display: flex;
  align-items: center;
  max-width: 320px;
  padding: 0 20px 20px 0;
  width: 100%;
}
.details__item-title--submenu h3{
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  position: relative;
  z-index: 2;
  padding-top: 20px;
  width: 100%;
}
.details__item--inprocess {
  color: #76767A !important;
}
.details__item--inprocess .details__item-help{
  margin-left: 0;
}
.details__item-text--inprocess {
  font-size: 13px;
  line-height: 16px;
  color: #fff !important;
  background-color: #96969A;
  padding: 5px 12px 7px 12px;
  white-space: nowrap;
  margin-left: auto;
  border-radius: 20px;
}
.details__item-help--active .details__item-help__text {
  display: block;
}
.details__item-characteristic__count p:nth-child(2) {
  max-width: 200px;
  font-weight: 500;
}

.details__item-help--active svg circle{
  stroke: #B855BD;
}
.details__item-help--active svg path{
  fill: #B855BD;
}
.details .rates__item-button {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
}
.documents {
  padding-bottom: 120px;
}
.documents__list {
  max-width: 780px;
  margin: 0 auto;
  border-top: 1px solid #e5e5eb;
}
.documents-item {
  padding: 15px 0;
  border-bottom: 1px solid #e5e5eb;
}
.documents-item__content p {
  font-size: 18px;
  line-height: 28px;
  color: #b855bd;
}
.documents-item__content {
  font-size: 12px;
  line-height: 18px;
}
@media (max-width: 1400px) {
  .for__item > img {
    margin-right: 24px;
    max-width: 348px;
  }
  .for__item:nth-child(2n+2) > img {
    margin-left: 24px;
  }
  .rates-content {
    gap: 24px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 1300px) {
  .form-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .form-box form {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    margin-top: 24px;
  }
  .form-video {
    margin-left: 0;
  }
  .form-video__preview {
    max-width: 720px;
    margin: 0 auto;
  }
  .form-video__preview img {
    width: 100%;
  }
  .form__notice {
    max-width: 404px;
  }
  .form__submit-box {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .form-content {
    padding: 32px 40px 40px 40px;
  }
  .form-video__view {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }
}
@media (max-width: 1080px) {
  .section {
    margin-bottom: 48px;
  }
  .title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  .title__text {
    margin-left: 0;
    margin-top: 24px;
    font-size: 20px;
    line-height: 28px;
    padding-left: 24px;
    max-width: 100%;
  }
  .title-box {
    margin-bottom: 40px;
    display: block;
  }
  .header .nav {
    display: none;
  }
  .header .logo::before {
    display: none;
  }
  .header__burger {
    display: block;
  }
  .header-menu {
    display: block;
  }
  .header-menu__enter {
    display: none;
  }
  .header-menu .header-menu__enter {
    display: flex;
  }
  .header-menu__connect {
    display: none;
  }
  .promo__title {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 8px;
  }
  .promo__text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 16px;
  }
  .promo__notice {
    margin-top: 24px;
  }
  .promo__bg {
    right: 0;
  }
  .promo-box {
    padding: 32px 0;
    max-width: 400px;
  }
  .posts-content {
    display: block;
  }
  .posts__item {
    margin-bottom: 24px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .posts__item-text {
    padding: 20px 22px 24px 24px;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .posts__item-text h3 {
    margin-bottom: 8px;
  }
  .posts__item-more {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .posts__item > img {
    max-height: 208px;
    margin: auto 0;
  }
  .for__item-text h3 {
    line-height: 28px;
  }
  .for__item-text li {
    font-size: 16px;
    line-height: 22px;
  }
  .profit {
    padding: 64px 0;
  }
  .profit-content {
    display: block;
  }
  .profit__item {
    width: 100%;
    margin-bottom: 24px;
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .profit__item-title {
    position: absolute;
    top: 32px;
    left: 32px;
    max-width: 376px;
    font-size: 20px;
    line-height: 28px;
  }
  .profit__item > img {
    max-width: 264px;
    height: 100%;
    margin-top: 44px;
  }
  .profit-dropdown-box {
    margin-top: 44px;
    margin-left: 24px;
  }
  .rates .title {
    margin-bottom: 12px;
  }
  .rates__subtitle {
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 24px;
  }
  .rates__tab {
    font-size: 18px;
    line-height: 26px;
  }
  .rates__link {
    margin-top: 24px;
    font-size: 16px;
    line-height: 22px;
  }
  .form__subtitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 24px;
  }
  .form .title {
    margin-bottom: 12px;
  }
  .form__notice {
    max-width: 363px;
  }
  .contacts-content {
    display: block;
  }
  .contacts-info {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 24px;
  }
  .contacts-info__item {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
  .contacts-info .title {
    margin-bottom: 24px;
  }
  .contacts__map {
    height: 500px;
  }
  .details {
    padding-bottom: 60px;
  }
  .details__rates {
    display: none;
  }
  .details__item {
    display: block;
    padding-bottom: 20px;
  }
  .details__item-title {
    max-width: 100%;
    justify-content: start;
    padding-right: 0;
    padding-bottom: 0;
    position: relative;
  }
  .details__item-title h3{
    padding-left: 32px;
  }
  .details__item-help {
    margin-left: auto;
    padding-left: 20px;
  }
  .details__item .details__item-characteristic {
    display: block;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
  }
  .details__item-submenu {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    -o-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
  }
  .details__item-characteristic__count {
    background-color: transparent;
    padding: 0;
    margin-bottom: 10px;
    padding-left: 32px;
    text-align: left;
    justify-content: start;
  }
  .details__item-characteristic__count:nth-child(1) {
    background-color: transparent;
    padding-top: 12px;
  }
  .details__item-characteristic__count:last-child {
    margin-bottom: 0;
  }
  .details__item-characteristic__count p:nth-child(1) {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 800;
    color: #73326E;
    width: 102px;
    margin-right: 34px;
    text-transform: uppercase;
  }
  .details__item-characteristic__count:nth-child(1) p:nth-child(1) {
    color: #B855BD;
  }
  .details__item-title h3 {
    font-weight: 600;
  }
  .details__item-arrow {
    display: block;
    margin-right: 8px;
    transform: rotate(0deg);
    transition: 0.2s;
    position: absolute;
    left: 0;
    top: 20px;
  }
  .details__item-title--active .details__item-arrow {
    transform: rotate(180deg);
  }
  .details__item-submenu-inner--active .details__item-arrow {
    transform: rotate(180deg);
  }
  .details__item-title--submenu {
    justify-content: start;
    max-width: 100%;
    padding-right: 0;
    position: relative;
  }
  .details__item-title--submenu h3{
    padding-left: 32px;
  }
  .details__item--submenu .details__item-characteristic {
    display: none;
  }
  .details__item-submenu .details__item-characteristic {
    display: block;
  }
  .details__item-submenu-content {
    display: block;
    margin-left: 32px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #E5E5EB;
  }
  .details__item-submenu-content:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .details__item-submenu-title {
    padding: 0;
    max-width: 100%;
  }
  .details__item-submenu-title h3{
    padding-left: 0;
    max-width: 500px;
  }
  .details__item-help__close {
    display: block;
  }
  .breadcrumbs {
    margin-bottom: 32px;
  }
}
@media (max-width: 860px) {
  .footer .nav {
    display: none;
  }
  .footer .logo::before {
    display: none;
  }
}
@media (max-width: 750px) {
  .section {
    margin-bottom: 24px;
  }
  .breadcrumbs {
    margin-bottom: 16px;
  }
  .button {
    font-size: 14px;
    line-height: 20px;
  }
  .container {
    max-width: 1420px;
    padding: 0 18px;
  }
  .title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 16px;
  }
  .title__text {
    margin-top: 16px;
    font-size: 16px;
    line-height: 22px;
    padding-left: 16px;
  }
  .title-box {
    margin-bottom: 24px;
  }
  .input {
    padding: 10px 16px 12px 16px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
  .select {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 20px;
  }
  .select--current {
    padding: 10px 42px 12px 16px;
  }
  .select--current::before {
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .select__list {
    top: 100% ;
  }
  .header__enter {
    display: none;
  }
  .header__connect {
    display: none;
  }
  .header .logo {
    margin-right: 10px;
  }
  .header-menu__enter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header-menu__connect {
    display: block;
  }
  .posts-content {
    gap: 16px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    /* -ms-grid-columns: (1fr)[2]; */
    grid-template-columns: repeat(2, 1fr);
  }
  .posts__item {
    display: block;
    max-width: 324px;
    margin: 0 auto 16px auto;
  }
  .posts__item-text {
    padding: 16px 20px 20px 20px;
  }
  .posts__item-text h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .posts__item-text p {
    font-size: 14px;
    line-height: 20px;
  }
  .posts__item-more {
    padding-top: 20px;
  }
  .for__item {
    display: block;
  }
  .for__item > img {
    margin: 0 auto 12px auto;
    display: block;
    max-width: 480px;
    width: 100%;
  }
  .for__item:nth-child(2n+2) > img {
    margin: 0 auto 12px auto;
  }
  .for__item-text {
    max-width: 480px;
    margin: 0 auto;
  }
  .for__item-text h3 {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 12px;
  }
  .for__item-text li {
    font-size: 14px;
    line-height: 20px;
    padding-left: 28px;
  }
  .for__item-text li::before {
    width: 20px;
    height: 20px;
    top: -3px;
  }
  .profit {
    padding: 24px 0;
  }
  .profit__item {
    display: block;
    padding: 20px;
    margin-bottom: 16px;
  }
  .profit__item-count {
    font-size: 14px;
    line-height: 20px;
    top: 16px;
    right: 16px;
  }
  .profit__item > img {
    margin: 16px auto;
    display: block;
    width: 100%;
  }
  .profit__item-title {
    position: static;
    font-size: 16px;
    line-height: 22px;
  }
  .profit-dropdown {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .profit-dropdown-box {
    margin: 0;
  }
  .profit-dropdown__top {
    font-size: 14px;
    line-height: 20px;
  }
  .profit-dropdown__top-icon {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
  .profit-dropdown__text {
    font-size: 14px;
    line-height: 20px;
    padding-left: 8px;
  }
  .profit-dropdown__text p {
    margin-top: 8px;
  }
  .rates__sale img {
    display: none;
  }
  .rates__sale {
    bottom: -32px;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    text-align: center;
  }
  .rates-content {
    margin-top: 52px;
    gap: 16px;
  }
  .rates__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .rates .title {
    margin-bottom: 8px;
  }
  .rates__tabs {
    max-width: 263px;
  }
  .rates__tab {
    padding: 12px 28px 14px 28px;
  }
  .rates__item-info {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 10px;
  }
  .rates__item-detail {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .rates__item-details {
    margin-bottom: 16px;
  }
  .rates__item-infobox-inner {
    margin-bottom: 16px;
    padding-bottom: 8px;
  }
  .rates__link {
    font-size: 14px;
    line-height: 20px;
    margin-top: 16px;
  }
  .form-content {
    padding: 16px 20px 20px 20px;
  }
  .form__submit-box {
    display: block;
  }
  .form__submit {
    display: block;
    width: 100%;
  }
  .form__notice {
    margin-left: 0;
    margin-top: 12px;
  }
  .form-box form {
    margin-top: 16px;
  }
  .form-video__preview img {
    -webkit-box-shadow: 3px 3px 0 0 #73326e;
            box-shadow: 3px 3px 0 0 #73326e;
  }
  .form-video__view {
    -webkit-box-shadow: 3px 3px 0 0 #73326e;
            box-shadow: 3px 3px 0 0 #73326e;
  }
  .form__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .form-video__play svg {
    width: 48px;
    height: 48px;
  }
  .contacts {
    margin-bottom: 32px;
  }
  .contacts-info {
    margin-bottom: 16px;
  }
  .contacts-info__item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    font-size: 14px;
    line-height: 20px;
  }
  .contacts-info .title {
    margin-bottom: 16px;
  }
  .contacts-info__item p:first-child {
    margin-bottom: 4px;
  }
  .contacts-info__socials svg {
    width: 44px;
    height: 44px;
  }
  .contacts__map {
    height: 300px;
  }
  .form-modal {
    max-width: 360px;
    padding: 32px 18px;
  }
  .form-modal .title {
    margin-bottom: 12px;
  }
  .form-modal .form__subtitle {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
  .form-modal-box {
    display: block;
    padding-top: 24px;
    margin-top: 24px;
  }
  .form-modal__close svg {
    width: 32px;
    height: 32px;
  }
  .thankyou {
    max-width: 324px;
    padding: 24px 32px;
  }
  .thankyou__close {
    right: 0;
    top: -35px;
  }
  .thankyou__close svg {
    width: 32px;
    height: 32px;
  }
  .thankyou__text {
    font-size: 18px;
    line-height: 26px;
  }
}
@media (max-width: 680px) {
  .promo .container {
    padding: 0;
  }
  .promo__title {
    font-size: 22px;
    line-height: 30px;
  }
  .promo__text {
    font-size: 16px;
    line-height: 22px;
  }
  .promo__notice {
    margin-top: 16px;
    font-size: 14px;
    line-height: 20px;
  }
  .promo__bg {
    position: relative;
    display: block;
  }
  .promo-content {
    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;
  }
  .promo-box {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 100%;
    padding: 20px 18px 24px 18px;
  }
  .promo__button {
    width: 100%;
  }
}
@media (max-width: 550px) {
  .posts-content {
    display: block;
  }
  .footer {
    padding: 24px 0;
  }
  .footer-top {
    padding-bottom: 24px;
    margin-bottom: 16px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer .logo {
    margin-right: 12px;
  }
  .footer__socials svg {
    width: 44px;
    height: 44px;
  }
  .footer__socials a {
    max-height: 44px;
  }
  .footer-bot {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 8px 0;
  }
}