@import url(https://fonts.googleapis.com/css?family=Manrope:200,300,regular,500,600,700,800);

@import url(https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100;

200;300;400;500;600;700&display=swap);
@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  color: #2f333a;
  line-height: 1;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Manrope", sans-serif;
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
  line-height: 1.5;
}

a {
  color: inherit;
  cursor: pointer;
}

a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

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

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]:hover,
input[type=number]:focus {
  -moz-appearance: number-input;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

body {
  font-weight: normal;
  background: #fff;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

body.lock {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

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

.wrapper.home {
  background: #f5f7ff;
}

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

.wrapper > * {
  min-width: 0;
}

.wrapper_overflow-visible {
  overflow: visible;
}

[class$=__container] {
  margin: 0 auto;
  max-width: 1340px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/*Формы*/

/*кнопки*/

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  color: #000;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 15px;
}

.button__button--blue {
  background: #3561ff;
  color: #fff;
}

/*кнопки*/

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.checkbox__label {
  cursor: pointer;
}

.checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.checkbox__checkbox--triger {
  width: 36px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:before {
  background: orange;
}

.checkbox__checkbox--triger .checkbox__input:checked + .checkbox__label:after {
  left: 19px;
}

.checkbox__checkbox--triger .checkbox__label {
  width: 36px;
  height: 20px;
}

.checkbox__checkbox--triger .checkbox__label:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #ccc;
  border-radius: 12px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--triger .checkbox__label::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 1px;
  top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2716%27 height=%2716%27 viewBox=%270 0 16 16%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Ccircle cx=%278%27 cy=%278.00009%27 r=%277.64706%27 fill=%27white%27 /%3E%3C/svg%3E");
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--checked .checkbox__input:focus + .checkbox__label:before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.checkbox__checkbox--checked .checkbox__input:checked + .checkbox__label:before {
  content: "";
  font-size: 8px;
  font-weight: 900;
  color: #fff;
  background: #4f74fa;
  padding: 8px 5px 5px 6px;
}

.checkbox__checkbox--checked .checkbox__label {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.checkbox__checkbox--checked .checkbox__label:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25px;
          flex: 0 0 25px;
  width: 25px;
  height: 25px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 8px;
}

.checkbox__checkbox--checked .checkbox__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.checkbox__checkbox--checked .checkbox__text a {
  color: #4f74fa;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

body.popup-show::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
  margin: 0 auto;
  max-width: 900px;  
}

.popup__privacy-policy .popup__close {
  position: absolute;
  right: -45px;
  top: 0px;
  z-index: 2;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  width: 100%;
  max-width: 773px;
}

.lock .popup__content {
  visibility: visible;
}

.popup__close {
  position: absolute;
  right: -45px;
  top: 0px;
  z-index: 2;
  background-color: transparent;
}

.advantages-subscription {
  position: relative;
  border-radius: 20px;
  max-width: 773px;
  background: #4f74fa;
  padding: 30px;
  color: #fff;
  position: relative;
}

.advantages-subscription__title {
  margin: 0px 0px 30px 0px;
}

@supports (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .advantages-subscription__title {
    font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px );
  }
}

@supports not (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .advantages-subscription__title {
    font-size: calc(
			28px + 0.5px * (100vw - 320) / 65.625px
		);
  }
}

.advantages-subscription__decor {
  position: absolute;
  left: 0px;
  bottom: 0px;
  pointer-events: none;
}

.advantages-subscription-item {
  position: relative;
}

.advantages-subscription-item:not(:last-child) {
  margin-bottom: 20px;
}

.advantages-subscription-item__icon {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 15px;
  height: 15px;
}

.advantages-subscription-item__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  margin: 0px 0px 10px 0px;
  padding-left: 25px;
}

.advantages-subscription-item__text {
  font-size: 12px;
  line-height: 140%;
  opacity: 0.8;
  padding-left: 25px;
}

.privacy-policy {
  position: relative;
  background: #fff;
  max-width: 773px;
  border-radius: 20px;
  padding: 30px;
}

.privacy-policy__title {
  font-weight: 400;
  line-height: 140%;
  color: #4f74fa;
  margin: 0px 0px 30px 0px;
}

@supports (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .privacy-policy__title {
    font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px );
  }
}

@supports not (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .privacy-policy__title {
    font-size: calc(
			28px + 0.5px * (100vw - 320) / 65.625px
		);
  }
}

.privacy-policy__text {
  font-size: 12px;
  line-height: 140%;
  color: #2a2c30;
  margin: 0px 0px 20px 0px;
  opacity: 0.8;
}

.privacy-policy-item:not(:last-child) {
  margin-bottom: 20px;
}

.privacy-policy-item__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #2a2c30;
  margin: 0px 0px 10px 0px;
}

.privacy-policy-item__text {
  font-size: 12px;
  line-height: 140%;
  color: #2a2c30;
  margin: 0px 0px 10px 0px;
  opacity: 0.8;
}

.privacy-policy-item ul li {
  padding-left: 10px;
  position: relative;
  font-size: 12px;
  line-height: 140%;
  color: #2a2c30;
  opacity: 0.8;
}

.privacy-policy-item ul li::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 3px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  border-radius: 50%;
  background-color: #2a2c30;
}

.spollers__title {
  width: 100%;
  cursor: default;
  text-align: left;
}

._spoller-init .spollers__title {
  cursor: pointer;
}

._spoller-init .spollers__title::before,
._spoller-init .spollers__title::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  background-color: #000;
  height: 2px;
  width: 15px;
  -webkit-transition: -webkit-transform 0.5s ease 0s;
  transition: -webkit-transform 0.5s ease 0s;
  -o-transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s;
  transition: transform 0.5s ease 0s, -webkit-transform 0.5s ease 0s;
}

._spoller-init .spollers__title::before {
  -webkit-transform: translate(-75%, -50%) rotate(40deg);
      -ms-transform: translate(-75%, -50%) rotate(40deg);
          transform: translate(-75%, -50%) rotate(40deg);
}

._spoller-init .spollers__title::after {
  -webkit-transform: translate(0, -50%) rotate(-40deg);
      -ms-transform: translate(0, -50%) rotate(-40deg);
          transform: translate(0, -50%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::before {
  -webkit-transform: translateX(-75%) rotate(-40deg);
      -ms-transform: translateX(-75%) rotate(-40deg);
          transform: translateX(-75%) rotate(-40deg);
}

._spoller-init .spollers__title._spoller-active::after {
  -webkit-transform: rotate(40deg);
      -ms-transform: rotate(40deg);
          transform: rotate(40deg);
}

.spollers {
  display: -ms-grid;
  display: grid;
  gap: 15px;
}

.faq-spollers {
  width: 100%;
}

.faq-spollers__item {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(47, 51, 58, 0.15);
}

.faq-spollers__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
  padding-top: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  text-align: left;
}

.faq-spollers__title .arrow {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq-spollers__title._spoller-active .arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq-spollers__body {
  max-width: 900px;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #2f333a;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

h1,
.h1 {
  width: 100%;
  font-family: "Manrope", sans-serif;
  color: #2a2c30;
}

@supports (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  h1,
  .h1 {
    font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px );
  }
}

@supports not (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  h1,
  .h1 {
    font-size: calc(
			28px + 0.5px * (100vw - 320) / 65.625px
		);
  }
}

h2,
.h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  color: #2f333a;
}

@supports (font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px )) {
  h2,
  .h2 {
    font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px );
  }
}

@supports not (font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px )) {
  h2,
  .h2 {
    font-size: calc(
			32px + 1.75px * (100vw - 320) / 65.625px
		);
  }
}

.header {
  padding: 30px 0px;
  position: relative;
  z-index: 100;
  font-size: 14px;
}

.header__wrapper {
  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;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.header__logo {
  width: 138px;
  height: 20px;
}

.header__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.header__sing-up {
  border-radius: 15px;
  padding: 12px 32px;
  max-width: 165px;
  min-height: 53px;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__sing-up.blue {
  border: 1px solid #3561ff;
  display: none;
  margin-left: 0px;
}

.header__create {
  border-radius: 15px;
  padding: 12px 32px;
  max-width: 165px;
  min-height: 53px;
}

.menu {
  position: relative;
}

.menu__decor {
  position: absolute;
  width: 240px;
  height: 336px;
  bottom: 0px;
  right: 0;
  display: none;
}

.menu-open .menu__decor {
  display: block;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}

.menu__link {
  color: #2f333a;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.menu__link._active {
  color: #3561ff;
}

.icon-menu {
  display: none;
}

.top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-top: 30px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(47, 51, 58, 0.15);
}

.top-footer__text {
  max-width: 90px;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  color: #2f333a;
}

.top-footer__messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.bottom-footer {
  padding: 20px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 5px;
}

.bottom-footer p:nth-child(2) {
  margin-left: auto;
}

.first-section {
  position: relative;
  padding: 100px 0px;
}

.first-section__circle-1 {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 551px;
  height: 574px;
}

.first-section__circle-2 {
  position: absolute;
  right: 0px;
  top: -100px;
  width: 551px;
  height: 574px;
}

.first-section__tarif-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0px;
  top: 17%;
  z-index: 3;
}

.first-section__tarif-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0px;
  top: 35%;
  z-index: 3;
}

.first-section__wrap {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 820px;
  width: 100%;
  margin: 0 auto;
}

.first-section__title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  text-align: center;
  color: #2f333a;
}

@supports (font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px )) {
  .first-section__title {
    font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px );
  }
}

@supports not (font-size: clamp( 32px , 23.4666666667px  +  2.6666666667vw , 60px )) {
  .first-section__title {
    font-size: calc(
			32px + 1.75px * (100vw - 320) / 65.625px
		);
  }
}

.first-section__button {
  padding: 12px 32px;
  min-height: 53px;
  margin-bottom: 40px;
}

.first-section__main-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 837px;
  max-height: 594px;
}

.first-section__main-image .tablet {
  display: none;
}

.first-section__main-image .mobile {
  display: none;
}

.first-section__main-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.tarif-right__item1 {
  -webkit-transform: translate(30%, -50%);
      -ms-transform: translate(30%, -50%);
          transform: translate(30%, -50%);
}

.tarif-left__item1 {
  -webkit-transform: translate(30%, 50%);
      -ms-transform: translate(30%, 50%);
          transform: translate(30%, 50%);
}

.second-section {
  min-height: 600px;
  padding: 85px 0px 487px 0px;
}

.second-section__decore {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.second-section__dcore1 {
  position: absolute;
  bottom: -100px;
  left: 0px;
  width: 80px;
  height: 80px;
}

.second-section__dcore2 {
  position: absolute;
  bottom: 70px;
  left: -130px;
  width: 45px;
  height: 45px;
}

.second-section__dcore3 {
  position: absolute;
  bottom: 140px;
  left: -70px;
}

.second-section__dcore4 {
  position: absolute;
  bottom: -200px;
  left: 350px;
}

.second-section__dcore5 {
  position: absolute;
  bottom: -272px;
  left: 552px;
  width: 120px;
  height: 120px;
}

.second-section__dcore6 {
  position: absolute;
  top: -150px;
  right: -79px;
}

.second-section__dcore7 {
  position: absolute;
  bottom: -150px;
  right: -79px;
}

.second-section__dcore8 {
  position: absolute;
  top: 0px;
  right: -200px;
}

.second-section__wrap {
  position: relative;
  max-width: 948px;
  width: 100%;
  margin: 0 auto;
}

.second-section__title {
  position: relative;
  z-index: 5;
}

.case-studies {
  padding-bottom: 200px;
}

.case-studies__container {
  position: relative;
}

.case-studies__decore {
  position: absolute;
  width: 615px;
  height: 599px;
  bottom: -60%;
  right: 0%;
}

.case-studies__wrap {
  position: relative;
  z-index: 2;
}

.case-studies__title {
  margin: 0px 0px 20px 0px;
  text-align: center;
}

.case-studies__text {
  max-width: 600px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: #2f333a;
  margin: 0px auto 80px auto;
}

.case-studies__slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  border-radius: 20px;
  max-width: 330px !important;
  max-height: 280px !important;
  background-color: #fff;
}

.case-studies-item {
  width: 100%;
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
}

.case-studies-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.faq {
  padding-bottom: 200px;
}

.faq__title {
  margin: 0px 0px 80px 0px;
}

.main-form {
  position: relative;
  border-radius: 20px;
  background: -o-linear-gradient(225deg, #486ced 0%, #3561ff 100%);
  background: linear-gradient(225deg, #486ced 0%, #3561ff 100%);
  padding: 30px 30px 40px 30px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.main-form__container {
  position: relative;
}

.main-form__decore {
  position: absolute;
  width: 1280px;
  height: 304px;
  top: -20px;
  left: 0;
}

.main-form__decore svg {
  width: 1180px;
  height: 304px;
}

.main-form__title {
  font-weight: 700;
  font-size: 60px;
  line-height: 120%;
  color: #fff;
  margin: 0px 0px 20px 0px;
}

.main-form__text {
  font-weight: 300;
  font-size: 14px;
  color: #fff;
  margin: 0px 0px 70px 0px;
  max-width: 320px;
  width: 100%;
}

.main-form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.main-form__line {
  position: relative;
}

.main-form__line.erorr .main-form__erorr-message {
  display: block;
}

.main-form__input {
  min-width: 340px;
  padding: 16px 0px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  background-color: transparent;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.main-form__input::-webkit-input-placeholder {
  color: #fff;
}

.main-form__input::-moz-placeholder {
  color: #fff;
}

.main-form__input:-ms-input-placeholder {
  color: #fff;
}

.main-form__input::-ms-input-placeholder {
  color: #fff;
}

.main-form__input::placeholder {
  color: #fff;
}

.main-form__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #fff;
  border-radius: 15px;
  padding: 12px 32px;
  max-width: 147px;
  min-height: 53px;
  font-size: 14px;
  color: #fff;
}

.main-form__erorr-message {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 0;
  color: red;
  font-size: 12px;
}

.decore-tablet {
  display: none;
}

.decore-mobile {
  display: none;
}

.phone-main-form {
  position: absolute;
  right: 30px;
  top: -320px;
}

.phone-main-form__item1 {
  width: 149px;
  height: 192px;
  -webkit-transform: translate(15%, 90%);
      -ms-transform: translate(15%, 90%);
          transform: translate(15%, 90%);
}

.phone-main-form__intem2 {
  width: 149px;
  height: 192px;
  -webkit-transform: translate(190%, -120%);
      -ms-transform: translate(190%, -120%);
          transform: translate(190%, -120%);
}

.our-plans {
  padding-bottom: 200px;
  position: relative;
}

.our-plans__crug {
  position: absolute;
  left: 0px;
  top: 0px;
}

.our-plans__title {
  margin: 0px 0px 80px 0px;
}

.our-plans__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.our-plans__col {
  width: 31.333%;
}

.our-plans-item {
  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;
  position: relative;
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  min-height: 508px;
  -webkit-box-shadow: 0 5px 40px 0 rgba(20, 67, 206, 0.05);
          box-shadow: 0 5px 40px 0 rgba(20, 67, 206, 0.05);
  background: #fff;
  padding: 80px 30px 30px 30px;
}

.our-plans-item.blue {
  min-height: 579px;
  -webkit-box-shadow: 0 5px 40px 0 rgba(20, 67, 206, 0.05);
          box-shadow: 0 5px 40px 0 rgba(20, 67, 206, 0.05);
  background: -o-linear-gradient(225deg, #486ced 0%, #3561ff 100%);
  background: linear-gradient(225deg, #486ced 0%, #3561ff 100%);
}

.our-plans-item.blue .our-plans-item__title {
  color: #fff;
}

.our-plans-item.blue .our-plans-item__item {
  color: #fff;
}

.our-plans-item.blue .our-plans-item__item::after {
  content: "";
  background-color: #fff;
}

.our-plans-item.blue .our-plans-item-buttons__button-1 {
  background: rgba(245, 247, 255, 0.25);
}

.our-plans-item.blue .our-plans-item-buttons__blue {
  background: rgba(245, 247, 255, 0);
  color: #fff;
  -webkit-box-shadow: 0 0px 0px 0 rgba(20, 67, 206, 0);
          box-shadow: 0 0px 0px 0 rgba(20, 67, 206, 0);
}

.our-plans-item.blue .our-plans-item-buttons__transparent {
  border: 1px solid #fff;
  color: #fff;
}

.our-plans-item.blue .our-plans-item-buttons__empty {
  color: #fff;
}

.our-plans-item.blue .our-plans-item-buttons__empty span {
  color: #fff;
}

.our-plans-item__decor {
  position: absolute;
  right: 0px;
  top: 0px;
  pointer-events: none;
}

.our-plans-item__icon {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -50px;
  left: 30px;
}

.our-plans-item__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  margin: 0px 0px 20px 0px;
}

.our-plans-item__list {
  margin: 0px 0px 20px 0px;
}

.our-plans-item__item {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  padding-left: 15px;
}

.our-plans-item__item:not(:last-child) {
  margin-bottom: 10px;
}

.our-plans-item__item::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background-color: #3561ff;
}

.our-plans-item-buttons {
  margin-top: auto;
}

.our-plans-item-buttons__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: auto 0px 20px 0px;
}

.our-plans-item-buttons__button-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  min-height: 53px;
  background: #f5f7ff;
  border-radius: 20px;
}

.our-plans-item-buttons__white {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  padding: 16px 30px;
  background: #f5f7ff;
  color: #3561ff;
}

.our-plans-item-buttons__blue {
  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: 100%;
  border-radius: 20px;
  padding: 16px 30px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(20, 67, 206, 0.35);
          box-shadow: 0 10px 30px 0 rgba(20, 67, 206, 0.35);
  background: #3561ff;
  color: #fff;
  font-size: 18px;
  text-align: center;
  color: #fff;
}

.our-plans-item-buttons__button-2 {
  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;
  width: 100%;
}

.our-plans-item-buttons__transparent {
  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;
  border: 1px solid #3561ff;
  border-radius: 15px;
  padding: 12px 32px;
  min-height: 53px;
  background-color: transparent;
  font-size: 14px;
  color: #3561ff;
}

.our-plans-item-buttons__empty {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  border-radius: 15px;
  padding: 12px 32px;
  min-height: 53px;
  background-color: transparent;
}

.our-plans-item-buttons__empty span {
  font-weight: 700;
  color: #3561ff;
  display: block;
}

.analytics {
  padding-bottom: 200px;
}

.analytics-tab {
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;  
}

.analytics-tab.active-tab {
  height: auto;
  width: auto;
  overflow: visible;
  opacity: 1;
}

.analytics__unique-block {
  display: none;
}

.analytics__title {
  margin-bottom: 20px;
}

.analytics__title span {
  color: #3561ff;
}

.analytics__text {
  max-width: 760px;
  text-align: center;
  width: 100%;
  margin: 0px auto 80px auto;
  font-size: 14px;
}

.analytics__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.analytics__row::-webkit-scrollbar {
  display: none;
}

.analytics__col {
  width: 23%;
}

.analytics__col.width-50 {
  width: 48%;
}

.analytics__col.translate {
  -webkit-transform: translate(0, -20%);
      -ms-transform: translate(0, -20%);
          transform: translate(0, -20%);
}

.analytics-item {
  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;
  border-radius: 20px;
  min-height: 380px;
  padding: 30px 30px 60px 30px;
  -webkit-box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
          box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
  background: #fff;
}

.analytics-item__title {
  font-weight: 700;
  font-size: 22px;
  line-height: 120%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.analytics-item__text {
  font-size: 14px;
  margin: 0px 0px 60px 0px;
}

.analytics-item__img {
  width: 120px;
  height: 120px;
  margin-top: auto;
}

.analytics-item__img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.analytics-item-channel-reach {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 20px;
  -webkit-box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
          box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
  background: -o-linear-gradient(224deg, #ffca81 0%, #f45d08 100%);
  background: linear-gradient(226deg, #ffca81 0%, #f45d08 100%);
  min-height: 472px;
}

.analytics-item-channel-reach__decor {
  position: absolute;
  right: 0px;
  top: 0px;
}

.analytics-item-channel-reach__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin: 0px 0px 20px 0px;
}

.analytics-item-channel-reach__text {
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.analytics-item-channel-reach__img {
  width: 560px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.analytics-item-channel-reach__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.analytics-item-download {
  position: relative;
  -webkit-box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
          box-shadow: 0 4px 20px 0 rgba(20, 67, 206, 0.05);
  background: #2fb778;
  min-height: 472px;
  border-radius: 20px;
  padding: 40px;
  -webkit-transform: translate(0, -20%);
      -ms-transform: translate(0, -20%);
          transform: translate(0, -20%);
}

.analytics-item-download__decor {
  position: absolute;
  left: 0px;
  top: 0px;
}

.analytics-item-download__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  text-align: center;
  color: #fff;
  margin: 0px 0px 20px 0px;
}

.analytics-item-download__text {
  max-width: 300px;
  width: 100%;
  font-size: 14px;
  text-align: center;
  color: #fff;
  margin: 0px auto 60px auto;
}

.analytics-item-download__img {
  width: 252px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.analytics-item-download__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.personal-office {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 150px;
}

.personal-office__wrap {
  max-width: 1070px;
  width: 100%;
  margin-left: 50px;
  padding: 30px 15px 0px 15px;
}

.header-internal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px 0px 20px 0px;
  padding: 30px 0px;
}

.header-internal__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
  width: 100%;
}

.header-internal__alert {
  position: relative;
}

.header-internal__alert .round {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 4px;
  height: 4px;
  background-color: #ff5446;
  border-radius: 50%;
  display: none;
}

.header-internal__alert .round._active {
  display: block;
}

.header-internal__user .text {
  font-size: 12px;
  display: none;
}

.header-internal__user .icon {
  width: 34px;
  height: 34px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.header-internal__user .icon img {
  height: 19px;
  width: 19px;
}

.notifications {
  position: absolute;
  bottom: -440px;
  right: 40px;
  padding: 20px;
  border-radius: 20px;
  max-width: 248px;
  background-color: #fff;
  z-index: 5;
  display: none;
}

.notifications._active {
  display: block;
}

.notifications__wrap-title {
  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: 0px 0px 10px 0px;
}

.notifications__box-item {
  height: 345px;
  overflow: auto;
}

.notifications__box-item::-webkit-scrollbar {
  display: none;
}

.notifications__title {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #2f333a;
}

.notifications__item {
  padding: 10px 0px;
  border-bottom: 1px solid rgba(131, 141, 159, 0.15);
}

.notifications__sub-title {
  font-size: 10px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 5px 0px;
}

.notifications__text {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.search-header-internal {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.search-header-internal._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-header-internal._active .search-header-internal__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-header-internal._active .search-header-internal__line .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.search-header-internal._active .icon {
  display: none;
}

.search-header-internal__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  display: none;
}

.search-header-internal__input {
  font-size: 12px;
  line-height: 140%;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.search-header-internal__input::-webkit-input-placeholder {
  color: #2f333a;
  opacity: 0.8;
}

.search-header-internal__input::-moz-placeholder {
  color: #2f333a;
  opacity: 0.8;
}

.search-header-internal__input:-ms-input-placeholder {
  color: #2f333a;
  opacity: 0.8;
}

.search-header-internal__input::-ms-input-placeholder {
  color: #2f333a;
  opacity: 0.8;
}

.search-header-internal__input::placeholder {
  color: #2f333a;
  opacity: 0.8;
}

.search-header-internal-result__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.search-header-internal-result__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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.search-header-internal-result__box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.item-result {
  -webkit-box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
          box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
  background: #fff;
  border-radius: 10px;
  max-width: 485px;
  width: 100%;
  min-height: 54px;
  padding: 10px 20px;
}

.item-result__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.item-result__icon {
  width: 34px;
  height: 34px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.item-result__icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-result__channel-text {
  font-size: 12px;
  line-height: 140%;
  color: #2f333a;
}

.item-result__channel-text1 {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
}

.item-result__open-channel {
  font-size: 12px;
  line-height: 140%;
  text-align: right;
  color: #3561ff;
  width: 110px;
}

.sidebar {
  max-width: 250px;
  width: 100%;
  padding: 30px 30px 30px 0px;
  position: relative;
}

.sidebar__close-mobile-menu {
  display: none;
  position: absolute;
  right: 30px;
  top: 30px;
}

.sidebar__logo {
  margin: 0px 0px 25px 30px;
  position: relative;
  width: 138px;
  height: 20px;
}

.sidebar__logo img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrap-channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 25px 30px;
}

.wrap-channel__text {
  font-size: 12px;
  line-height: 140%;
}

.wrap-channel__text span {
  display: block;
}

.wrap-channel__text .text {
  color: #2f333a;
}

.wrap-channel__text .text1 {
  color: #838d9f;
}

.sidebar-menu {
  margin: 0px 0px 30px 0px;
}

.sidebar-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.sidebar-menu__item {
  position: relative;
  padding-left: 35px;
}

.sidebar-menu__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  font-size: 14px;
  color: #838d9f;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar-menu__link::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 12px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width=%2712%27 height=%2740%27 viewBox=%270 0 12 40%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M-9.80545 38.4145C-22.8162 42.3743 -26.5403 28.7507 -26.776 21.4439C-30.3116 -1.8906 -8.39124 -4.01192 5.7509 8.0089C19.893 20.0297 6.458 33.4647 -9.80545 38.4145Z%27 fill=%27%233561FF%27 /%3E%3C/svg%3E");
  display: none;
}

.sidebar-menu__link._active {
  color: #3561ff;
}

.sidebar-menu__link._active::before {
  content: "";
  display: block;
}

.sidebar-menu__link.border-bottom {
  padding-bottom: 20px;
  border-bottom: solid 1px rgba(131, 141, 159, 0.15);
}

.sidebar-menu__link span {
  display: block;
}

.sidebar-question {
  margin: 0px 0px 0px 30px;
}

.sidebar-question__img {
  position: relative;
  width: 183px;
  height: 125px;
  margin: 0px 0px 10px 0px;
}

.sidebar-question__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidebar-question__title {
  font-size: 14px;
  color: #2f333a;
  margin: 0px 0px 5px 0px;
}

.sidebar-question__text {
  font-size: 12px;
  color: #838d9f;
  opacity: 0.8;
}

.sidebar-question__text a {
  color: #3561ff;
}

.substract-subscription {
  position: relative;
  border-radius: 20px;
  padding: 20px;
  max-width: 773px;
  width: 100%;
  min-height: 268px;
  background: #4f74fa;
  color: #fff;
  overflow: hidden;
  margin: 0px 0px 40px 0px;
}

.substract-subscription__image {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 427px;
  height: 280px;
  pointer-events: none;
}

.substract-subscription__image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.substract-subscription__deor {
  position: absolute;
  top: 0px;
  right: 0px;
  pointer-events: none;
}

.substract-subscription__deor span {
  width: 100%;
}

.substract-subscription__deor span img {
  width: 500px;
}

.substract-subscription__deor span:nth-child(2) {
  display: none;
}

.substract-subscription__tetle {
  font-size: 18px;
  line-height: 140%;
  margin: 0px 0px 10px 0px;
}

.substract-subscription__text {
  max-width: 330px;
  width: 100%;
  font-size: 12px;
  line-height: 140%;
  margin: 0px 0px 20px 0px;
}

.substract-subscription__advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  margin: 0px 0px 40px 0px;
}

.substract-subscription__advantages li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 12px;
  line-height: 140%;
  opacity: 0.8;
}

.substract-subscription__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.substract-subscription__buttons .btn1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 8px 10px;
  min-width: 70px;
  min-height: 30px;
  background: #fff;
  color: #4f74fa;
}

.substract-subscription__buttons .btn2 {
  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;
  padding: 8px 10px;
  min-width: 70px;
  min-height: 30px;
  font-size: 12px;
  line-height: 140%;
}

.table {
  max-width: 773px;
  width: 100%;
  margin: 0px 0px 40px 0px;
}

.table__box-grid {
  overflow: auto;
}

.table__box-grid::-webkit-scrollbar {
  display: none;
}

.table__title-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 90px 90px 90px 90px;
  grid-template-columns: 1fr 90px 90px 90px 90px;
  opacity: 0.8;
  margin: 0px 0px 10px 0px;
}

.table__title {
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  overflow: auto;
  min-width: 150px;
}

.table__wrap-item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 90px 90px 90px 90px;
  grid-template-columns: 1fr 90px 90px 90px 90px;
  opacity: 0.8;
  padding: 10px 0px 10px 0px;
  border-bottom: 1px solid rgba(131, 141, 159, 0.15);
}

.table__item {
  font-size: 10px;
  line-height: 140%;
  color: #2f333a;
  opacity: 0.8;
  margin: 0px 0px 10px 0px;
  min-width: 150px;
}

.table__item:nth-child(1) {
  font-size: 12px;
  line-height: 140%;
  color: #3561ff;
}

.form-office__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 19px 0px;
}

.form-office__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.form-office__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid rgba(131, 141, 159, 0.15);
  border-radius: 15px;
  padding: 12px 20px;
  width: 332px;
  height: 53px;
}

.form-office__line.erorr {
  border: 1px solid red;
}

.form-office__input {
  width: 100%;
  height: 100%;
  font-size: 14px;
  background-color: transparent;
}

.form-office__input::-webkit-input-placeholder {
  font-size: 14px;
  color: #838d9f;
}

.form-office__input::-moz-placeholder {
  font-size: 14px;
  color: #838d9f;
}

.form-office__input:-ms-input-placeholder {
  font-size: 14px;
  color: #838d9f;
}

.form-office__input::-ms-input-placeholder {
  font-size: 14px;
  color: #838d9f;
}

.form-office__input::placeholder {
  font-size: 14px;
  color: #838d9f;
}

.form-office__submit {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 15px;
  padding: 12px 32px;
  width: 137px;
  height: 53px;
  background: #4f74fa;
  font-size: 14px;
  color: #fff;
}

.box-calendar {
  position: relative;
}

.calendar-button {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 10px;
  padding: 10px;
  min-width: 188px;
  height: 40px;
  background: #fff;
  padding: 10px 15px;
}

.calendar-button .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;
}

.calendar-button .date {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
}

:root {
  --calendar-bg-color: #fff;
  --calendar-font-color: #262829;
  --weekdays-border-bottom-color: #404040;
  --calendar-date-hover-color: #505050;
  --calendar-current-date-color: #fff;
  --calendar-today-color: red;
  --calendar-today-innerborder-color: transparent;
  --calendar-nextprev-bg-color: transparent;
  --next-prev-arrow-color: #fff;
  --calendar-border-radius: 16px;
  --calendar-prevnext-date-color: #484848;
}

.calendar {
  font-family: "IBM Plex Sans", sans-serif;
  position: absolute;
  max-width: 400px;
  /*change as per your design need */
  min-width: 320px;
  background: var(--calendar-bg-color);
  color: var(--calendar-font-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  font-weight: normal;
  border-radius: var(--calendar-border-radius);
  z-index: 99;
  display: none;
}

.calendar.open {
  display: block;
}

.calendar-inner {
  padding: 10px 10px;
}

.calendar .calendar-inner .calendar-body {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[7];
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar .calendar-inner .calendar-body div {
  padding: 4px;
  min-height: 30px;
  line-height: 30px;
  border: 1px solid transparent;
  margin: 10px 2px 0px;
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7) {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div:nth-child(-n+7):hover {
  border: 1px solid transparent;
  border-bottom: 1px solid var(--weekdays-border-bottom-color);
}

.calendar .calendar-inner .calendar-body div > a {
  color: var(--calendar-font-color);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.calendar .calendar-inner .calendar-body div:hover {
  border: 1px solid var(--calendar-date-hover-color);
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body div.empty-dates:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-controls {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.calendar .calendar-inner .calendar-today-date {
  display: -ms-grid;
  display: grid;
  text-align: center;
  cursor: pointer;
  margin: 3px 0px;
  background: var(--calendar-current-date-color);
  padding: 8px 0px;
  border-radius: 10px;
  width: 80%;
  margin: auto;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 100px;
  -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;
}

.calendar .calendar-inner .calendar-controls .calendar-next {
  text-align: right;
}

.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-year-label,
.calendar .calendar-inner .calendar-controls .calendar-year-month .calendar-month-label {
  font-weight: 500;
  font-size: 20px;
}

.calendar .calendar-inner .calendar-body .calendar-today {
  background: var(--calendar-today-color);
  border-radius: 4px;
}

.calendar .calendar-inner .calendar-body .calendar-today:hover {
  border: 1px solid transparent;
}

.calendar .calendar-inner .calendar-body .calendar-today a {
  outline: 2px solid var(--calendar-today-innerborder-color);
}

.calendar .calendar-inner .calendar-controls .calendar-next a,
.calendar .calendar-inner .calendar-controls .calendar-prev a {
  color: var(--calendar-font-color);
  font-family: arial, consolas, sans-serif;
  font-size: 26px;
  text-decoration: none;
  padding: 4px 12px;
  display: inline-block;
  background: var(--calendar-nextprev-bg-color);
  margin: 10px 0 10px 0;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg {
  height: 20px;
  width: 20px;
}

.calendar .calendar-inner .calendar-controls .calendar-next a svg path,
.calendar .calendar-inner .calendar-controls .calendar-prev a svg path {
  fill: #000;
}

.calendar .calendar-inner .calendar-body .prev-dates,
.calendar .calendar-inner .calendar-body .next-dates {
  color: var(--calendar-prevnext-date-color);
}

.calendar .calendar-inner .calendar-body .prev-dates:hover,
.calendar .calendar-inner .calendar-body .next-dates:hover {
  border: 1px solid transparent;
  pointer-events: none;
}

.feedback-form {
  max-width: 562px;
  width: 100%;
}

.feedback-form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin: 0px 0px 10px 0px;
}

.feedback-form__line {
  border: 1px solid rgba(131, 141, 159, 0.15);
  border-radius: 15px;
  width: 100%;
  height: 100%;
  height: 53px;
}

.feedback-form__line.error {
  border: 1px solid red;
}

.feedback-form__input {
  font-size: 14px;
  width: 100%;
  height: 100%;
  padding: 17px 20px;
  background-color: transparent;
}

.feedback-form__input::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__input::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__input:-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__input::-ms-input-placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__input::placeholder {
  font-weight: 400;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__textarea {
  resize: none;
  display: block;
  border: 1px solid rgba(131, 141, 159, 0.15);
  border-radius: 15px;
  padding: 17px 20px;
  max-width: 562px;
  width: 100%;
  height: 167px;
  background-color: transparent;
  margin: 0px 0px 20px 0px;
  font-size: 14px;
  color: #838d9f;
}

.feedback-form__button {
  border-radius: 15px;
  padding: 12px 32px;
  max-width: 136px;
  width: 100%;
}

.general-data {
  margin: 0px 0px 40px 0px;
}

.general-data__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.general-data-grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 1fr 130px 130px 130px;
  grid-template-columns: 1fr 1fr 130px 130px 130px;
  gap: 20px;
  overflow: auto;
}

.general-data-grid.column-2 {
  max-width: 490px;
  width: 100%;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}

.general-data-grid.column-3 {
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
}

.general-data-grid::-webkit-scrollbar {
  display: none;
}

.general-data-grid__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.general-data-grid__wrap-text {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.general-data-grid__wrap-text::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #4f74fa;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.general-data-grid__text {
  font-weight: 600;
  font-size: 12px;
  line-height: 140%;
  color: #2a2c30;
}

.general-data-grid__text1 {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
}

.resume {
  margin: 0px 0px 40px 0px;
}

.resume__container {
  padding: 0px;
}

.resume__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: inherit;
      align-content: inherit;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 20px;
}

.resume__col {
  width: 100%;
}

.resume__col:nth-child(2) {
  width: 49%;
}

.resume__col:nth-child(3) {
  width: 49%;
}

.resume-item {
  display: block;
  position: relative;
  color: #fff;
  padding: 20px;
  border-radius: 20px;
  min-height: 213px;
  width: 100%;
}

.resume-item__color-blue {
  background: #4f74fa;
  min-width: 516px;
}

.resume-item__color-blue .resume-item__img {
  width: 152px;
  height: 254px;
  position: absolute;
  right: 100px;
  bottom: 0px;
}

.resume-item__color-green {
  background: #2fb778;
  min-width: 247px;
}

.resume-item__color-pink {
  background: #ff72c0;
}

.resume-item__decor {
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 3;
}

.resume-item__decor .decore-mobile {
  display: none;
}

.resume-item__arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
}

.resume-item__deor-arrow {
  position: absolute;
  right: -5px;
  top: 0px;
}

.resume-item__title {
  max-width: 200px;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  margin: 0px 0px 10px 0px;
}

.resume-item__title span {
  display: block;
}

.resume-item__text {
  max-width: 200px;
  width: 100%;
  font-size: 12px;
  line-height: 140%;
  opacity: 0.8;
}

.resume-item__img {
  position: absolute;
  right: 30px;
  bottom: 0px;
  width: 120px;
  height: auto;
}

.active-participants {
  margin: 0px 0px 20px 0px;
}

.active-participants__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}

.active-participants__col {
  width: 33.333%;
}

.active-participants-item {
  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;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  position: relative;
  border-radius: 20px;
  padding: 20px 10px;
  min-height: 170px;
  color: #fff;
}

.active-participants-item__color-blue {
  background: -o-linear-gradient(224deg, #6d92f5 0%, #4f74fa 100%);
  background: linear-gradient(226deg, #6d92f5 0%, #4f74fa 100%);
}

.active-participants-item__color-pink {
  background: -o-linear-gradient(225deg, #ff72c0 0%, #f590de 100%);
  background: linear-gradient(225deg, #ff72c0 0%, #f590de 100%);
}

.active-participants-item__color-yellow {
  background: -o-linear-gradient(46deg, #ffbf00 0%, #ffbf00 100%);
  background: linear-gradient(44deg, #ffbf00 0%, #ffbf00 100%);
}

.active-participants-item__decor {
  position: absolute;
  right: 0px;
  top: 0px;
}

.active-participants-item__deor-arrow {
  position: absolute;
  right: -5px;
  top: 0px;
  z-index: 2;
}

.active-participants-item__arrow {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 3;
}

.active-participants-item__wrap-content {
  text-align: center;
}

.active-participants-item__wrap-content span {
  display: block;
}

.active-participants-item__wrap-content span:nth-child(1) {
  font-size: 36px;
  text-align: center;
}

.active-participants-item__wrap-content span:nth-child(2) {
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  opacity: 0.8;
}

.audience {
  max-width: 600px;
  width: 100%;
}

.most-active__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.most-active__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.most-active-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
          box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
  background: #fff;
  border-radius: 10px;
  width: 100%;
  min-height: 54px;
  padding: 10px 20px;
}

.most-active-item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.most-active-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.most-active-item__icon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.most-active-item__message {
  margin-left: auto;
}

.most-active-item .text {
  display: block;
  font-size: 12px;
  line-height: 140%;
  color: #2f333a;
}

.most-active-item .text1 {
  display: block;
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.most-active-item .link {
  font-size: 12px;
  line-height: 140%;
  color: #3561ff;
}

.animated-progress {
  max-width: 485px;
  height: 30px;
  border-radius: 5px;
  margin: 20px 10px;
  background: rgba(255, 201, 38, 0.15);
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.animated-progress .text {
  position: relative;
  top: 7px;
  left: 15px;
  z-index: 10;
  font-size: 12px;
  line-height: 140%;
  color: #2f333a;
}

.animated-progress .result {
  position: absolute;
  right: 20px;
  top: 7px;
  font-size: 12px;
  line-height: 140%;
  text-align: right;
  color: #2f333a;
}

.animated-progress span {
  height: 100%;
  display: block;
  width: 0;
  color: #2f333a;
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
}

.progress-yellow span {
  background: #ffc926;
  border-radius: 10px;
}

.prime-time__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 10px 0px;
}

.prime-time__text {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  margin: 0px 0px 20px 0px;
  opacity: 0.8;
}

.prime-time__acquisitions {
  margin: 0px 0px 10px 0px;
}

.myut {
  margin: 0px 0px 40px 0px;
}

.myut__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 10px 0px;
}

.myut__text {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  margin: 0px 0px 20px 0px;
  opacity: 0.8;
}

.myut__wrap-statistics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px 0px 25px 0px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
}

.myut__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.myut__buttons a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.myut__buttons .text {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #fff;
}

.myut__color-red {
  background: #ff5446;
}

.myut__color-green {
  background: #2fb778;
}

.myut__box-notificationes-activas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.myut__notificationes-activas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.myut__notificationes-activas .text-green {
  color: #2fb778;
}

.myut__notificationes-activas .text-red {
  color: #ff5446;
}

.myut__notificationes-activas .text {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.source-traffic__schedule {
  margin: 0px 0px 40px 0px;
}

.source-traffic__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 10px 0px;
}

.source-traffic__text {
  margin: 0px 0px 20px 0px;
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
}

.source-traffic__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.source-traffic__buttons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 10px;
  padding: 8px 10px;
  min-height: 30px;
}

.source-traffic__button-color-blue {
  background: #4f74fa;
}

.source-traffic__button-color-pink {
  background: #ff72c0;
}

.source-traffic__button-color-violet {
  background: #8a4ce6;
}

.source-traffic__button-color-green {
  background: #2fb778;
}

.source-traffic__button-color-yellow {
  background: #ffbf00;
}

.source-traffic__button-color-red {
  background: #ff5446;
}

.source-traffic__button-color-black {
  background: #2a2c30;
}

.source-traffic .text {
  font-size: 10px;
  line-height: 140%;
  color: #fff;
}

.analytics1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
  width: 100%;
}

.analytics1__increase-audience {
  max-width: 490px;
  width: 100%;
}

.analytics1__content-coverage {
  max-width: 490px;
  width: 100%;
}

.analytics1__number-reactions {
  max-width: 490px;
  width: 100%;
}

.analytics1__comments {
  max-width: 490px;
  width: 100%;
}

.analytics1__reposts {
  max-width: 490px;
  width: 100%;
}

.analytics1__voting {
  max-width: 490px;
  width: 100%;
}

.analytics1__clicks-on-links {
  max-width: 490px;
  width: 100%;
}

.analytics1__distribution-of-reactions {
  max-width: 490px;
  width: 100%;
}

.analytics1__publications {
  max-width: 490px;
  width: 100%;
}

.analytics1-item {
  position: relative;
}

.analytics1-item__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.analytics1-item__data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin: 0px 0px 20px 0px;
}

.analytics1-item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.analytics1-item__text span {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.analytics1-item__text.emoji {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.analytics1-item__text.emoji span {
  color: #2a2c30;
  font-weight: 600;
}

.analytics1-item__text span.emoji-item {
  font-size: 16px;
}

.analytics1-item__text .color-green {
  color: #2fb778;
}

.analytics1-item__text .color-red {
  color: #ff5446;
}

.analytics1-item__text .color-red1 {
  color: #ff72c0;
}

.analytics1-item__text .color-black {
  color: #2f333a;
  font-weight: 600;
}

.analytics1-item__text .color-blue {
  color: #4f74fa;
}

.analytics1-item__text .color-violet {
  color: #ff72c0;
}

.analytics1-item__text .color-yellow {
  color: #ffbf00;
}

.analytics1-item__contetn {
  background: #4f74fa;
  border-radius: 20px;
  max-width: 485px;
  min-height: 151px;
  position: relative;
  padding: 20px;
}

.analytics1-item__block1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin: 0px 0px 10px 0px;
}

.analytics1-item__text1 span {
  font-size: 12px;
  line-height: 140%;
  color: #fff;
  display: block;
  opacity: 0.8;
}

.analytics1-item__text1 span:nth-child(1) {
  font-weight: 600;
}

.analytics1-item__text1 span:nth-child(2) {
  font-weight: 400;
}

.analytics1-item__block2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 140%;
  color: #f9f9fd;
  text-align: center;
}

@supports (font-size: clamp( 28px , 21.9047619048px  +  1.9047619048vw , 48px )) {
  .analytics1-item__block2 {
    font-size: clamp( 28px , 21.9047619048px  +  1.9047619048vw , 48px );
  }
}

@supports not (font-size: clamp( 28px , 21.9047619048px  +  1.9047619048vw , 48px )) {
  .analytics1-item__block2 {
    font-size: calc(
			28px + 1.25px * (100vw - 320) / 65.625px
		);
  }
}

.analytics1-item__decor {
  position: absolute;
  right: 0px;
  bottom: 0px;
  pointer-events: none;
  z-index: 2;
}

.mention {
  margin: 0px 0px 40px 0px;
}

.mention__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.mention__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.mention__blokc1 {
  width: 100%;
}

.mention__blokc2 {
  width: 100%;
}

.mention__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin: 0px 0px 20px 0px;
}

.mention__text {
  font-size: 12px;
  line-height: 140%;
  opacity: 0.8;
}

.mention__text span {
  display: block;
  color: #838d9f;
}

.mention__text .color-blue {
  font-weight: 600;
  color: #4f74fa;
}

.mention__text .color-black {
  font-weight: 600;
  color: #2a2c30;
}

.mention__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.mention-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
          box-shadow: 0 10px 30px 0 rgba(131, 141, 159, 0.05);
  background: #fff;
  width: 100%;
  min-height: 54px;
  border-radius: 10px;
  padding: 10px 20px;
}

.mention-item__channel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.mention-item__channel-num span {
  display: block;
}

.mention-item__channel-num span:nth-child(1) {
  font-size: 12px;
  line-height: 140%;
  color: #2f333a;
}

.mention-item__channel-num span:nth-child(2) {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
}

.mention-item__repost span {
  display: block;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: right;
  opacity: 0.8;
}

.mention-item__repost span:nth-child(1) {
  color: #3561ff;
}

.mention-item__repost span:nth-child(2) {
  color: #838d9f;
}

.dynamics-reposts {
  margin: 0px 0px 40px 0px;
}

.dynamics-reposts__dynamics-reposts {
  max-width: 490px;
  width: 100%;
}

.dynamics-reposts__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.dynamics-reposts__buutons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  margin: 0px 0px 10px 0px;
}

.dynamics-reposts__buutons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  border-radius: 10px;
  padding: 8px 10px;
}

.dynamics-reposts__buutons .text {
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: #fff;
}

.dynamics-reposts__buutons .color-pink {
  background: #ff72c0;
}

.dynamics-reposts__buutons .color-blue {
  background: #4f74fa;
}

.mention-cite-chat__title {
  font-size: 18px;
  line-height: 140%;
  color: #2f333a;
  margin: 0px 0px 20px 0px;
}

.mention-cite-chat__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin: 0px 0px 20px 0px;
}

.mention-cite-chat__sub-title {
  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-size: 12px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
  margin: 0px 0px 10px 0px;
}

.mention-cite-chat__buttons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 10px;
  padding: 4px 10px;
  min-height: 22px;
  font-size: 10px;
  line-height: 140%;
  min-width: 100px;
}

.mention-cite-chat__buttons .dotted {
  border: 1px dashed #4f74fa;
  color: #4f74fa;
}

.mention-cite-chat__buttons .color-blue {
  background: #4f74fa;
  color: #fff;
}

.mention-cite-chat__buttons .grey {
  opacity: 0.5;
  border: 1px solid #838d9f;
  color: #838d9f;
}

.cite-chat-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.publications {
  max-width: 490px;
  width: 100%;
}

.publications__buttons {
  margin: 0px 0px 20px 0px;
}

.publications__buttons a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  line-height: 140%;
  padding: 8px 10px;
  border-radius: 10px;
}

.publications__buttons .color-blue {
  color: #fff;
  background: #4f74fa;
}

.publications__buttons .dotted {
  border: 1px dashed #4f74fa;
  color: #4f74fa;
}

.publications__video {
  position: relative;
  border-radius: 20px;
  max-width: 490px;
  width: 100%;
  height: 270px;
  overflow: hidden;
  margin: 0px 0px 20px 0px;
}

.publications__video .play {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
}

.publications__video img,
.publications__video video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.publications__text {
  font-size: 12px;
  line-height: 140%;
  color: #838d9f;
  margin: 0px 0px 20px 0px;
}

.publications__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(131, 141, 159, 0.15);
  margin: 0px 0px 20px 0px;
}

.publications__icons-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.publications__icons-item.margin-legt {
  margin-left: auto;
}

.publications__icons-item .text {
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.publications-table {
  margin-top: 40px;
}

.publications-table__box {
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  padding: 50px 0px;
}

.publications-table__name {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(6, 130px) 260px;
}

.publications-table__name-item {
  width: 100%;
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  padding: 10px;
}

.publications-table__box-item {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-auto-columns: 130px;
  grid-auto-flow: column;
  border-radius: 5px;
}

.publications-table__box-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -15px;
  left: 0;
  background: rgba(131, 141, 159, 0.15);
}

.publications-table__box-item:hover {
  background: #e8ecfb;
}

.publications-table__item {
  padding: 10px;
}

.publications-table__item span {
  display: block;
}

.publications-table__item .color-blue {
  font-size: 12px;
  line-height: 140%;
  color: #3561ff;
}

.publications-table__item .color-grey {
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.publications-table__item .text {
  font-size: 10px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
}

.publications-table__item .color-grey-dark {
  font-size: 10px;
  line-height: 140%;
  color: #2a2c30;
}

.publications-table__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.section-entr__wrap {
  padding: 100px 0px 0px 0px;
}

.section-entr__log {
  max-width: 150px;
  width: 100%;
  margin: 0px auto 60px auto;
  display: none;
}

.enter {
  position: relative;
  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;
}

.enter__image {
  width: 688px;
  position: relative;
  height: 577px;
}

.enter__image .table {
  display: none;
}

.enter__image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.enter__decor-icon {
  position: absolute;
  width: 430px;
  height: 710px;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.enter__bg {
  position: absolute;
  bottom: 0;
  left: 0;
}

.enter-form {
  max-width: 600px;
  width: 100%;
  padding-bottom: 150px;
}

.enter-form__title {
  color: #2a2c30;
  margin: 0px 0px 40px 0px;
}

@supports (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .enter-form__title {
    font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px );
  }
}

@supports not (font-size: clamp( 28px , 25.5619047619px  +  0.7619047619vw , 36px )) {
  .enter-form__title {
    font-size: calc(
			28px + 0.5px * (100vw - 320) / 65.625px
		);
  }
}

.enter-form__title.сonfirmation {
  margin: 0px 0px 20px 0px;
}

.enter-form__sub-title {
  font-size: 14px;
  line-height: 140%;
  color: #838d9f;
  margin: 0px 0px 10px 0px;
}

.enter-form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
  margin: 0px 0px 10px 0px;
}

.enter-form__inputs.registration {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.enter-form__inputs.registration .enter-form__line {
  width: 49%;
  flex-wrap: wrap;
}

.enter-form__line {
  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;
  border: 1px solid rgba(131, 141, 159, 0.15);
  border-radius: 15px;
  padding: 12px 20px;
  width: 100%;
  min-height: 53px;
}

.enter-form__line.сonfirmation {
  max-width: 280px;
  width: 100%;
  margin: 0px 0px 20px 0px;
}

.enter-form__line.error {
  border: 1px solid red;
}

.enter-form__input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  font-size: 14px;
}

.enter-form__input::-webkit-input-placeholder {
  color: #838d9f;
}

.enter-form__input::-moz-placeholder {
  color: #838d9f;
}

.enter-form__input:-ms-input-placeholder {
  color: #838d9f;
}

.enter-form__input::-ms-input-placeholder {
  color: #838d9f;
}

.enter-form__input::placeholder {
  color: #838d9f;
}

.enter-form__text1 {
  display: block;
  font-size: 14px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
  margin: 0px 0px 20px 0px;
}

.enter-form__text1 span {
  color: #4f74fa;
}

.enter-form__buttons a,
 .enter-form__buttons button {
  border-radius: 15px;
  padding: 12px 32px;
  min-width: 182px;
  min-height: 53px;
}

.enter-form__buttons-text {
  font-size: 14px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
  margin: 0px 0px 20px 0px;
}

.enter-form__buttons-text span {
  color: #4f74fa;
}

.enter-form-services__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #838d9f;
  opacity: 0.8;
  margin: 0px 0px 10px 0px;
}

.enter-form-services__text.сonfirmation {
  max-width: 400px;
  width: 100%;
  margin: 0px 0px 40px 0px;
}

.enter-form-services__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0px 0px 40px 0px;
}

.enter-form-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border: 1px solid rgba(131, 141, 159, 0.15);
  border-radius: 15px;
  padding: 10px 20px;
  max-width: 127px;
  min-height: 53px;
}

.enter-form-services__item .text {
  font-size: 14px;
  color: #2f333a;
}

.tul-bar {
  position: fixed;
  bottom: 0px;
  width: 100%;
  height: 70px;
  z-index: 110;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.tul-bar._up {
  bottom: 0px;
}

.tul-bar._down {
  bottom: -100px;
}

.tul-bar__wrapper {
  -webkit-box-shadow: 0 0 30px 0 rgba(95, 99, 104, 0.1);
          box-shadow: 0 0 30px 0 rgba(95, 99, 104, 0.1);
  background: #fff;
  min-height: 70px;
  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;
  padding: 19px 25px;
}

.tul-bar__wrapper .sidebar-menu {
  margin-bottom: 0px;
}

.tul-bar__wrapper .sidebar-menu__list {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.tul-bar__wrapper .sidebar-menu__item {
  padding-left: 0px;
}

.tul-bar__wrapper .sidebar-menu__link {
  padding: 0px;
}

.tul-bar__wrapper .sidebar-menu__link::before {
  content: "";
  display: none;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  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;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  -o-transition-property: transform, opacity, height;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/**
 * Swiper 9.4.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 13, 2023
 */

@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper,
swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
       -o-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide,
swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
swiper-container:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.invalid-feedback {
  color: red;
  font-size: 12px;
  flex-basis: 100%;
  margin-left: 10px;
  text-align: left;
}

.enter-form__line-single-item {
  flex-basis: 100%;
}

@media (max-width: 1439px) {
  .our-plans__col {
    width: 48%;
  }

  .our-plans-item.blue {
    min-height: 508px;
  }

  .analytics__col {
    width: 48%;
  }

  .analytics__col.width-50 {
    width: 100%;
  }

  .analytics__col.translate {
    -webkit-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }

  .analytics-item-download {
    -webkit-transform: translate(0, 0%);
        -ms-transform: translate(0, 0%);
            transform: translate(0, 0%);
  }
}

@media (max-width: 1390px) {
  .main-form__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .main-form__button {
    margin-top: 20px;
  }
}

@media (max-width: 1370px) {
  [class$=__container] {
    max-width: 970px;
    padding: 0px 30px;
  }

  .personal-office__wrap {
    margin-left: 0px;
  }

  .resume__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .resume-item__color-blue {
    min-width: 100%;
  }

  .enter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }

  .enter-form {
    padding-bottom: 100px;
  }

  .enter-form__line.сonfirmation {
    max-width: 100%;
  }

  .enter-form__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .enter-form__buttons a,
  .enter-form__buttons button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }

  .enter-form-services__text.сonfirmation {
    max-width: 100%;
    width: 100%;
    margin: 0 auto 40px auto;
  }

  .enter-form-services__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 1320px) {
  .first-section__tarif-left {
    top: 10%;
  }
}

@media (max-width: 991.98px) {
  [class$=__container] {
    max-width: 750px;
  }

  .popup__privacy-policy .popup__close {
    right: 15px;
    top: 15px;
  }

  .popup__close {
    right: 15px;
    top: 15px;
  }

  .popup__privacy-policy .popup__close svg path {
    fill: black;
  }  

  .advantages-subscription {
    padding: 20px;
  }

  .header__wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .header__user {
    margin-left: auto;
  }

  .header__sing-up {
    display: none;
  }

  .header__sing-up.blue {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu__body {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0px;
    border-radius: 20px 20px 0 0;
    -webkit-box-shadow: 0 2px 30px 0 rgba(20, 67, 206, 0.15);
            box-shadow: 0 2px 30px 0 rgba(20, 67, 206, 0.15);
    background: #fdfdfe;
    z-index: 100;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .menu-open .menu__body {
    right: 0%;
  }

  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding: 30px 20px 0px 30px;
  }

  .menu__link {
    font-weight: 700;
    font-size: 22px;
  }

  .icon-menu {
    display: block;
  }

  .icon-menu .close {
    position: absolute;
    right: -100%;
    top: 30px;
    z-index: 101;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .menu-open .icon-menu .close {
    display: block;
    right: 30px;
  }

  .first-section__tarif-right {
    top: 43%;
    left: -5%;
  }

  .first-section__tarif-left {
    top: auto;
    bottom: 20%;
    right: -3%;
  }

  .first-section__main-image {
    max-height: 800px;
  }

  .first-section__main-image .dectop {
    display: none;
  }

  .first-section__main-image .tablet {
    display: block;
  }

  .first-section__main-image {
    max-width: 514px;
    width: 100%;
  }

  .second-section__dcore2 {
    bottom: 280px;
    left: -70px;
  }

  .second-section__dcore4 {
    bottom: -200px;
    left: 100px;
  }

  .second-section__dcore5 {
    left: 240px;
  }

  .second-section__dcore7 {
    right: 100px;
  }

  .second-section__dcore8 {
    right: -80px;
  }

  .second-section__wrap {
    max-width: 580px;
    width: 100%;
  }

  .main-form__decore {
    left: 430px;
    top: 60px;
  }

  .main-form__decore svg {
    width: auto;
    height: auto;
  }

  .main-form__title {
    font-size: 48px;
  }

  .decore-dectop {
    display: none;
  }

  .decore-tablet {
    display: block;
  }

  .phone-main-form {
    right: -100px;
    top: -290px;
  }

  .phone-main-form__item1 {
    -webkit-transform: translate(5%, 190%);
        -ms-transform: translate(5%, 190%);
            transform: translate(5%, 190%);
  }

  .phone-main-form__intem2 {
    -webkit-transform: translate(120%, -100%);
        -ms-transform: translate(120%, -100%);
            transform: translate(120%, -100%);
  }

  .our-plans__col {
    width: 100%;
  }

  .our-plans-item {
    min-width: 100%;
  }

  .our-plans-item-buttons__transparent {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
  }

  .our-plans-item-buttons__empty {
    width: 100%;
  }

  .personal-office {
    padding-bottom: 75px;
  }

  .header-internal {
    padding: 0px;
    row-gap: 30px;
    max-width: 688px;
    width: 100%;
  }

  .sidebar {
    max-width: 80px;
    padding: 30px 0px 30px 0px;
  }

  .sidebar__logo {
    margin: 0px 0px 25px 20px;
    display: none;
  }

  .wrap-channel {
    margin: 0px 0px 25px 20px;
  }

  .wrap-channel__text {
    display: none;
  }

  .sidebar-menu__item {
    padding-left: 20px;
  }

  .sidebar-menu__link .text {
    display: none;
  }

  .sidebar-question {
    display: none;
  }

  .resume__container {
    padding: 0px 60px 0px 0px;
  }

  .resume-item__decor .decore-dectop {
    display: none;
  }

  .resume-item__decor .decore-mobile {
    display: block;
  }

  .active-participants {
    padding-right: 60px;
  }

  .section-entr__wrap {
    padding: 30px 0px 0px 0px;
  }

  .enter__image .dectop {
    display: none;
  }

  .enter__image .table {
    display: block;
  }
}

@media (max-width: 767.98px) {
  [class$=__container] {
    max-width: none;
    padding: 0 15px;
  }

  .privacy-policy {
    padding: 20px;
  }

  .header__user {
    margin-top: 150px;
    padding-left: 30px;
  }

  .header__sing-up {
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .top-footer {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 20px;
  }

  .bottom-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .bottom-footer p:nth-child(1) {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }

  .bottom-footer p:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 0px;
  }

  .bottom-footer p:nth-child(3) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .first-section {
    padding: 30px 0px;
  }

  .first-section__tarif-right {
    top: 23%;
    left: -45%;
  }

  .first-section__tarif-left {
    right: -30px;
    bottom: 0%;
  }

  .first-section__main-image .tablet {
    display: none;
  }

  .first-section__main-image .mobile {
    display: block;
  }

  .second-section {
    padding: 285px 0px 380px 0px;
  }

  .second-section__dcore2 {
    left: -10px;
  }

  .second-section__dcore3 {
    left: -30px;
  }

  .second-section__dcore7 {
    right: 30px;
  }

  .second-section__dcore8 {
    top: -100px;
    right: 50px;
  }

  .case-studies {
    padding-bottom: 150px;
  }

  .case-studies__decore {
    bottom: -10%;
    right: -70%;
  }

  .case-studies__text {
    margin: 0px 0px 20px 0px;
  }

  .case-studies__slide {
    max-width: 300px !important;
    min-height: 340px !important;
  }

  .case-studies-item {
    min-height: 340px;
  }

  .faq {
    padding-bottom: 60px;
  }

  .faq__title {
    margin: 0px 0px 40px 0px;
  }

  .main-form {
    min-height: 789px;
    padding: 15px;
  }

  .main-form__decore {
    left: 0px;
    top: 0px;
  }

  .main-form__title {
    font-weight: 700;
  }

  .main-form__input {
    min-width: 100%;
  }

  .decore-tablet {
    display: none;
  }

  .decore-mobile {
    display: block;
  }

  .phone-main-form {
    width: 250px;
    height: 300px;
    right: 50px;
    top: auto;
    bottom: -110px;
  }

  .phone-main-form__item1 {
    -webkit-transform: translate(-35%, 100%);
        -ms-transform: translate(-35%, 100%);
            transform: translate(-35%, 100%);
  }

  .our-plans {
    padding-bottom: 150px;
  }

  .our-plans-item.blue .our-plans-item-buttons__button-1 {
    background-color: transparent;
  }

  .our-plans-item.blue .our-plans-item-buttons__blue {
    background: rgba(245, 247, 255, 0.25);
  }

  .our-plans-item-buttons__button-1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
    background-color: transparent;
  }

  .our-plans-item-buttons__button-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .analytics {
    padding-bottom: 150px;
  }

  .analytics__unique-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    margin: 0px 0px 20px 0px;
  }

  .analytics__row {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: auto;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }

  .analytics__col {
    width: 300px;
    min-height: 340px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .analytics__col.width-50 {
    display: none;
  }

  .analytics-item-channel-reach {
    min-height: 400px;
  }

  .analytics-item-channel-reach__img {
    width: 460px;
  }

  .analytics-item-download {
    min-height: 400px;
  }

  .analytics-item-download__title {
    font-size: 22px;
  }

  .personal-office {
    padding-bottom: 50px;
  }

  .personal-office__wrap {
    padding: 20px 15px 0px 15px;
  }

  .header-internal {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }

  .header-internal__actions {
    width: 100%;
  }

  .header-internal__search {
    margin-left: auto;
  }

  .notifications {
    right: 0px;
  }

  .sidebar {
    max-width: 100%;
    width: 100%;
  }

  .sidebar {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100;
    left: -100%;
    background-color: #fff;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .menu-open .sidebar {
    left: 0%;
  }

  .sidebar__close-mobile-menu {
    display: block;
    z-index: 101;
  }

  .sidebar__logo {
    display: block;
  }

  .sidebar-menu__item {
    padding-left: 30px;
  }

  .sidebar-menu__link .text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .sidebar-question {
    display: block;
  }

  .sidebar-question__img {
    width: 312px;
    height: 195px;
  }

  .substract-subscription {
    min-height: 540px;
  }

  .substract-subscription__image {
    top: auto;
    bottom: 0px;
  }

  .substract-subscription__deor {
    top: 100px;
  }

  .substract-subscription__deor span:nth-child(1) {
    display: none;
  }

  .substract-subscription__deor span:nth-child(2) {
    display: block;
  }

  .feedback-form__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .resume__container {
    padding: 0px;
  }

  .resume__col:nth-child(2) {
    width: 100%;
  }

  .resume__col:nth-child(3) {
    width: 100%;
  }

  .resume-item__color-blue {
    min-height: 320px;
  }

  .active-participants {
    padding-right: 0px;
  }

  .active-participants__col {
    width: 48%;
  }

  .most-active-item {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    padding: 10px 10px;
  }

  .myut__wrap-statistics {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .mention__content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .publications__icons {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }

  .publications__icons-item {
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }

  .section-entr__log {
    display: block;
  }

  .enter__image {
    max-width: 615px;
    width: 100%;
  }

  .enter__image {
    display: none;
  }

  .enter-form {
    padding-bottom: 20px;
  }

  .enter-form__inputs.registration {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .enter-form__inputs.registration .enter-form__line {
    width: 100%;
  }

  .enter-form-services__box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 10px;
  }

  .tul-bar {
    display: block;
  }
}

@media (max-width: 478.98px) {
  .analytics-item-channel-reach__img {
    max-width: 258px;
    width: 100%;
  }

  .active-participants__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (any-hover: hover) {
  .button:hover {
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
  }

  .menu__link:hover {
    color: #3561ff;
  }

  .item-result__open-channel:hover {
    text-decoration: underline;
  }

  .sidebar-menu__link:hover {
    color: #3561ff;
  }

  .sidebar-menu__link:hover::before {
    content: "";
    display: block;
  }

  .substract-subscription__buttons .btn2:hover {
    text-decoration: underline;
  }

  .general-data-grid__wrap-text:hover::after {
    content: "";
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }

  .general-data-grid__wrap-text:hover .general-data-grid__text {
    color: #4f74fa;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .general-data-grid__wrap-text:hover .general-data-grid__text1 {
    color: #4f74fa;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .most-active-item .link:hover {
    text-decoration: underline;
  }
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.look-calendar {
  position: relative;
}