@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Manrope:wght@400; 500;600;700&family=Merriweather:wght@400;700&family=Raleway:wght@500&display=swap');

@font-face {
  font-family: 'PoetsenOne';
  src: url('../fonts/PoetsenOne-Regular.woff2') format('woff2'),
    url('../fonts/PoetsenOne-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

.individual-page__line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.texting ul li {
  list-style: disc;
}

input[type='submit'] {
  cursor: pointer;
}

.psyho-page h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 2;
}

.header__lang .dropdown {
  position: relative;
  z-index: 1;
}

.header__lang .dropdown-menu {
  border: none;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  min-width: 100%;
  left: 0;
  position: absolute;
  top: calc(100% - 0.0625rem);
  /*height: 0;*/
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease 0s;
}

.header__lang.open .dropdown-menu {
  padding: 10px 0 5px 0;
  /*height: auto;*/
  max-height: 100vh;
}

.header__lang.open .header-lang__text::after {
  transform: rotate(180deg);
}

.header__lang .dropdown-menu .dropdown-item {
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 16px;
  color: #37587d;
  padding: 5px 15px;
}

.header__lang .dropdown-menu .dropdown-item:hover {
  color: #0ea3dd;
}

.header-lang__btn {
  background-color: #f4f4f4;
  border-radius: 12px;
  width: 70px;
  height: 60px;
  font-weight: 500;
  color: #1c1c1c;
  text-transform: uppercase;
  font-size: 16px;
}

.header-lang__text {
  position: relative;
  display: flex;
  align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}

.header-lang__text::after {
  background: url(../img/icons/arrow.svg) center/auto no-repeat;
  content: '';
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

/*._select-open .select__value:after {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}*/
@media (max-width: 992px) {
  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    height: 80px;
    position: relative;
  }

  .page {
    padding-top: 80px;
  }

  .aboutPage-hero__inner {
    /*margin-top: 30px !important;*/
  }

  .aboutPage-counters__list,
  .aboutPage-team__list {
    gap: 50px !important;
  }

  .aboutPage-counters,
  .aboutPage-team {
    margin-bottom: 50px !important;
  }

  .aboutPage-hero {
    margin-bottom: 10px !important;
  }

  /*.header::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: '';

  }*/

  .menu__list {
    text-align: center;
  }



  .header__inner {
    position: relative;

  }

  .logo {}

  #transfer {
    margin-top: 32px;
  }

  .menu__body {
    z-index: 100;

  }
}

.individual-page__line .breadcrumb {
  margin-bottom: 0 !important;
}

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

:active,
:focus {
  outline: 0;
}

body,
html {
  height: 100%;
  min-width: 375px;
}

body {
  color: #37587d;
  line-height: 1;
  font-family: Manrope, sans-serif;
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea {
  font-family: Manrope;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: transparent;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img,
svg {
  vertical-align: middle;
  max-width: 100%;
}

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

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: 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;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

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

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

[class*='__container'] {
  max-width: 76.875rem;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[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;
}

.select {
  min-width: 0;
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}

.select__value>* {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.select__value:after {
  content: '';
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: calc(100% - 0.0625rem);
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0 5px 0;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 12.5rem;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.select--show-top .select__options {
  top: auto;
  bottom: calc(100% - 0.0625rem);
  border: 1px solid #d9d9d9;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  padding: 5px 0 10px 0;
}

._select-tag {
  cursor: pointer;
}

.button {
  padding: 22px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #0ea3dd;
  font-weight: 300;
}

.button:hover {
  background-color: #28b6ee;
}

.button:active {
  background-color: #4ec2ef;
}

.button--light {
  color: #1c1c1c;
}

.button--light,
.button--light:active,
.button--light:hover {
  background-color: #fff;
}

.button--light:hover {
  color: #0ea3dd;
}

.button--light:active {
  color: #1483ae;
}

.section {
  padding: 75px 0 75px;
}

.section__title {
  font-family: Merriweather;
  font-size: 36px;
  font-weight: 400;
  line-height: 131%;
  font-family: Merriweather, serif;
}

.title {
  color: #1c1c1c;
  font-family: Merriweather, serif;
  font-weight: 400;
  line-height: 120%;
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.title-md {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2em;
  font-family: Merriweather, serif;
}

.title-sm {
  color: #fff;
  font-family: Merriweather, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
}

.form__input {
  padding: 21px 22px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 131%;

  width: 100%;
}

.form__input::-webkit-input-placeholder {
  color: inherit;
}

.form__input::-moz-placeholder {
  color: inherit;
}

.form__input:-ms-input-placeholder {
  color: inherit;
}

.form__input::-ms-input-placeholder {
  color: inherit;
}

.form__input::placeholder {
  color: inherit;
}

.language li {
  text-transform: uppercase;
  font-size: 16px;
  color: #1c1c1c;
}

.language li.current,
.language li:hover {
  color: #0ea3dd;
}

.logo {
  font-family: Raleway, sans-serif;
}

.logo__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 44px;
  flex: 0 0 44px;
}

.logo__text {
  color: #1c1c1c;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2px;
  font-family: 'Merriweather';
}

.logo__text span:nth-child(2) {
  color: #8f8f8f;
  font-size: 16px;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social a svg {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  fill: #37587d;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.social a:hover svg {
  fill: #0ea3dd;
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.breadcrumb {
  display: none;
  /* margin-bottom: 48px; */
  font-size: 0 !important;
  color: #fff !important;
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
  fill: rgba(55, 88, 125, 0.6);
}

.breadcrumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

.breadcrumb ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb ul li a:hover {
  color: #0ea3dd;
}

.breadcrumb ul li svg {
  vertical-align: middle;
}

.breadcrumb li:not(:last-child)::after {
  display: inline-block;
  margin: 2px 0;
  content: '';
  content: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M6.40039 12L10.4004 8L6.40039 4" stroke="rgb%2855, 88, 125%29" stroke-opacity="0.6" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  width: 16px;
  height: 16px;
}

.texting {
  margin-bottom: 75px;
}

.texting h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3em;
}

.texting h6:not(:last-child) {
  margin-bottom: 24px;
}

.texting ol,
.texting p,
.texting ul {
  font-weight: 400;
  font-size: 16px;
  padding-bottom: 20px;
  line-height: 2em;
}

.texting__text ul,
.texting__text ul li {
  list-style: disc;
}

.texting__text ol,
.texting__text ol li {
  list-style: decimal;
}

.texting ol,
.texting ul {
  padding-left: 20px;
}

.texting ol li,
.texting ul li {
  padding-left: 5px;
}

.texting a {
  margin-top: 70px;
}

.texting__sample {
  padding-top: 40px;
}

.individual-page__breadcrumbs .breadcrumb {
  margin-bottom: 24px;
}

.texta ul li:last-child {}

.texta ul:last-child {
  padding-bottom: 0;
}

.texta p:last-child {
  padding-bottom: 0;
}

.repeattext:last-child:nth-child(2n + 1) {
  padding-bottom: 0;
}

.texting ul {
  padding-bottom: 0;
}

.conrepeat {
  margin-bottom: 75px;
}

.texting~.price {
  padding-top: 100px;
}


#form4~.texting .conrepeat {
  margin-bottom: 0;
}

.conrepeat .repeattext:nth-child(even)~.price {
  padding-top: 30px;
}

.conrepeat .repeattext ul:not(:last-child) {
  padding-bottom: 20px;
}

.individual-page__reg {
  text-align: right;
}

.conrepeat+p {
  padding-bottom: 0;
  padding-top: 70px;
}

.texting>p:nth-child(1) {
  padding-top: 70px;
}

.individual-page__title {
  margin-bottom: 0;
}

.individual-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 24px;
}

.individual-page__header a {
  margin-left: auto;
}

@media (max-width: 600px) {
  .individual-page__header {
    flex-wrap: wrap;
  }
}

.individual-page__btn {
  width: 300px;
  text-align: center;
}

.contact-page {
  background-color: #273a68;
}

.contact-page .questions::before {
  display: none;
}

.contact-page .questions__inner {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}

.contact-page .questions__col {
  max-width: 532px;
  width: 100%;
}

.mobile {
  display: none;
}

.contact-frame {
  background-color: #0ea3dd;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31em;
  padding: 116px 145px;
}

.contact-frame__text {
  margin-bottom: 16px;
}

.contact-frame__social-list {
  gap: 12px;
}

.contact-frame__social-list a svg {
  fill: #fff;
  width: 24px;
  height: 24px;
}

.contact-frame__social-list a:hover svg {
  fill: #fff;
}

.contact-frame a {
  white-space: nowrap;
}

.contact-frame svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.contact-frame__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-frame__links svg {
  margin-right: 12px;
}

.enroll {
  font-weight: 400;
  max-width: 365px;
  width: 100%;
}

.enroll__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.3em;
  color: #333;
  font-family: Merriweather, sans-serif;
}

.enroll p {
  line-height: 1.5em;
  font-weight: 400;
  text-align: center;
  padding-top: 12px;
  color: #37587d;
}

.enroll form p {
  padding-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.enroll textarea {
  resize: none;
  height: 100px;
}

.enroll input,
.enroll textarea {
  background-color: rgba(23, 152, 202, 0.1);
  line-height: 1.31em;
  color: #37587d;
  padding: 21px 22px;
  width: 100%;
}

.enroll input[type='submit'] {
  padding: 22px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #0ea3dd;
  font-weight: 300;
  transition: .2s;
}

.enroll input[type='submit']:hover {
  background-color: #28b6ee;
}

.enroll input::-webkit-input-placeholder,
.enroll textarea::-webkit-input-placeholder {
  color: inherit;
}

.enroll input::-moz-placeholder,
.enroll textarea::-moz-placeholder {
  color: inherit;
}

.enroll input:-ms-input-placeholder,
.enroll textarea:-ms-input-placeholder {
  color: inherit;
}

.enroll input::-ms-input-placeholder,
.enroll textarea::-ms-input-placeholder {
  color: inherit;
}

.enroll input::placeholder,
.enroll textarea::placeholder {
  color: inherit;
}

.fancybox__content>.f-button.is-close-btn {
  width: 20px;
  height: 20px;
  top: -20px;
  right: -20px;
}

.fancybox__content>.f-button.is-close-btn svg {
  width: 9px;
  height: 9px;
}

.psychologists-page .texting {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
}

.psychologists-page .texting__links {
  padding-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.psychologists-page .texting__links a {
  margin-top: 0;
  color: #0ea3dd;
  text-decoration: underline;
}

.psychologists-page .texting__links a img {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
  margin-right: 10px;
}

.psychologists-page .texting__links a:hover {
  text-decoration: none;
}

.psychologists-page .texting form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.psychologists-page .texting form input,
.psychologists-page .texting form textarea {
  background-color: #3c4d77;
}

.psychologists-page .texting__text {
  text-overflow: -o-ellipsis-lastline;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.method__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.method__items {
  text-align: center;
  padding-top: 100px;
}

.how {
  padding-bottom: 25px;
}

.method__items-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}

.method__items-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.method-item {
  padding: 40px 30px;
  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;
  line-height: 1.5;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  background-color: #fff;
  -webkit-box-shadow: -2px 5px 19px 1px #37587d;
  box-shadow: -2px 5px 19px 1px #37587d;
}

.method-item__icon {
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}

.method-header {
  line-height: 1.5;
}

.method-header__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  max-height: 332px;
}

.method-header__title {
  font-size: 24px;
}

.method-header__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 43%;
  flex: 0 0 43%;
}

.method-header__descr p+p {
  padding-top: 20px;
}

.method-header__descr-accent {
  color: #0ea3dd;
}

.method-header b {
  font-weight: 600;
}

.method-header__text {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 50%;
  flex: 1 0 50%;
}

.psyho-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.psyho-card__img img {
  max-height: 500px;
}

.psyho-card__img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
}

.psyho-card__descr {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 24px;
  font-size: 16px;
  line-height: 1.5;
}

.psyho-card__descr b {
  font-weight: 700;
}

.psyho-page .tabs__body {
  padding-bottom: 20px;
}

.psyho-card__tabs .tabs .tabs__body-frame+.tabs__body-frame {
  margin-top: 20px;
}

.psyho-card__tabs .tabs .tabs__body-articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.psyho-card__tabs .tabs .tabs__body-articles .team-card {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 32.2%;
  flex: 1 0 32.2%;
}

.psyho-card__tabs .tabs .tabs__body-articles .team-card img {
  width: 100%;
}

.psyho-card__tabs .tabs .tabs__body-articles .team-card:hover {
  -webkit-box-shadow: 0 6px 10px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 6px 10px 0 rgba(55, 88, 125, 0.2);
}

.psyho-card__tabs .tabs .tabs__body-frame {
  -webkit-box-shadow: 0 6px 10px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 6px 10px 0 rgba(55, 88, 125, 0.2);
  border-radius: 12px;
}

.psyho-card__tabs .tabs__navigation {
  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;
  gap: 10px 30px;
  margin-bottom: 20px;
}

.psyho-card__tabs .tabs__body-frame {
  padding: 32px;
}

.psyho-card__tabs .tabs__body-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.psyho-card__tabs .tabs__title {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  font-weight: 500;
  padding: 22px 24px;
  font-size: 16px;
  color: #0ea3dd;
  border-radius: 12px;
  background: rgba(73, 149, 238, 0.1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.psyho-card__tabs .tabs__title._tab-active,
.psyho-card__tabs .tabs__title:hover {
  background-color: #28b6ee;
  color: #fff;
}

.psyho-card__tabs .tabs__title span {
  background-color: #4ec2ef;
  border-radius: 50%;
  display: inline-block;
  padding: 3px;
  color: #fff;
  font-size: 14px;
  width: 20px;
  height: 20px;
  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;
}

.psyho-card__tabs .tabs__content {
  line-height: 1.5;
}

.psyho-card__tabs .tabs__content ul {
  padding-left: 10px;
}

.psyho-card__tabs .tabs__content ul li {
  padding-left: 5px;
}

.psyho-card__tabs .tabs__content ul li::marker {
  content: '--';
}

.psyho-card__tabs .tabs__body-reviews {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  font-size: 16px;
}

.psyho-card__tabs .tabs__body-reviews .tabs__body-title {
  margin-bottom: 0;
}

.header {
  padding: 20px 24px;
  margin-bottom: 60px;
}

.header__logo {
  min-width: 104px;
}

.header__inner {
  gap: 20px;
  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;
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__social {
  gap: 16px;
  margin-right: 48px;
}

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

.header__social li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
}

.header__social svg {
  width: 24px;
  height: 24px;
}

.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  margin-right: 32px;
  white-space: nowrap;
}

.header__contacts li:hover a {
  text-decoration: underline;
}

.header__contacts li:last-child {
  color: #0ea3dd;
}

.header__contacts svg {
  width: 20px;
  height: 20px;
  fill: #37587d;
  vertical-align: middle;
}

.header__lang .select__content {
  overflow: inherit;
}

.header__lang .select__options {
  border: none;
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  -webkit-box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  margin-top: 16px;
}

.header__lang .select__option,
.header__lang .select__title {
  text-transform: uppercase;
  border: none;
  color: #1c1c1c;
  font-size: 16px;
}

.header__lang .select__option {
  text-align: center;
  font-weight: 500;
  color: #37587d;
}

.header__lang .select__option:hover {
  color: #0ea3dd;
  background-color: #fff;
}

.header__lang .select__title {
  background-color: #f4f4f4;
  border-radius: 12px;
  width: 70px;
  height: 60px;
  font-weight: 500;
  color: #1c1c1c;
}

.header__lang .select__value::after {
  background: url(../img/icons/arrow.svg) center/auto no-repeat;
}

/* .menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap
} */
.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

#menu-item-128 {
  font-weight: 600;
  color: #0ea3dd;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

@media (any-hover: hover) {
  #menu-item-128:hover:after {
    transform: rotate(-90deg) translateY(5px);
  }
}

#menu-item-128::after {
  position: relative;
  display: inline-block;
  content: url('data:image/svg+xml;charset=UTF-8,<svg fill="lightskyblue" height="12px" width="12px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 330 330" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="4"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path id="XMLID_225_" d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"></path> </g></svg>');
  width: 12px;
  height: 12px;
  transform: rotate(-90deg);
  transition: 0.2s;
}

.menu__list>li.menu-item-has-children {
  padding-right: 20px;
}

.menu__list>li.menu-item-has-children::after {
  position: absolute;
  /* left: calc(100% + 5px); */
  right: 0;
  top: 50%;

  content: url('data:image/svg+xml;charset=UTF-8,<svg fill="%37587d" height="12px" width="12px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 330 330" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path id="XMLID_225_" d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"></path> </g></svg>');
  cursor: pointer;

  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  transition: 0.3s;
}

.individual-page ul,
.individual-page ol {
  padding-left: 20px;
}

.individual-page ul li {
  list-style: disc;
  padding-left: 0;
}

.menu__list>li.menu-item-has-children {
  /* padding-bottom: 20px;
  margin-bottom: -20px; */
}

@media (any-hover: hover) {
  .menu__list>li.menu-item-has-children:hover::after {
    transform: rotateX(180deg) translateY(50%);
    content: url('data:image/svg+xml;charset=UTF-8,<svg fill="lightskyblue" height="12px" width="12px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 330 330" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path id="XMLID_225_" d="M325.607,79.393c-5.857-5.857-15.355-5.858-21.213,0.001l-139.39,139.393L25.607,79.393 c-5.857-5.857-15.355-5.858-21.213,0.001c-5.858,5.858-5.858,15.355,0,21.213l150.004,150c2.813,2.813,6.628,4.393,10.606,4.393 s7.794-1.581,10.606-4.394l149.996-150C331.465,94.749,331.465,85.251,325.607,79.393z"></path> </g></svg>');
  }
}

.menu__list>li {
  position: relative;
}

.menu__list>li svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  fill: transparent;
  stroke: #37587d;
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}

.menu__sub-list {
  position: absolute;
  top: 100%;
  padding-top: 42px;
  z-index: 2;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.sub-menu {
  position: absolute;
  top: 100%;
  padding-top: 42px;
  z-index: 20;
  -webkit-transform: translateY(10%);
  -ms-transform: translateY(10%);
  transform: translateY(10%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #fff;
  -webkit-box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .conrepeat .repeattext {
    /* margin-bottom: 50px; */
    padding: 70px 0;
    /* margin-bottom: 50px; */
  }

  .conrepeat .repeattext:first-child {
    padding-top: 70px;
  }

  .conrepeat .repeattext:last-child {}

  .conrepeat .repeattext strong {
    font-size: 20px;
  }

  .conrepeat .repeattext {
    /* align-items: center; */
    display: flex;
    gap: 60px;
  }

  .conrepeat .repeattext .imaga {
    max-height: 400px;
    flex: 0 0 47.5%;
    box-shadow: -2px 5px 11px 1px #37587d;
  }

  .conrepeat .repeattext .imaga img {
    max-height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .conrepeat .repeattext:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.container-bg {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

.aboutPage-hero {
  /* margin-bottom: 143px; */
  margin-bottom: 80px;
}

.aboutPage-hero__inner {
  /* padding-top: 155px; */
  position: relative;
  /* min-height: 737px; */
  display: flex;
  flex-direction: column;
  min-height: 555px;
  /* padding: 155px 96px; */
  gap: 30px;
}

.aboutPage__col {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.aboutPage-hero__inner::before {
  position: absolute;
  left: -96px;
  /* top: -60px; */
  height: calc(100% - 20px);
  width: 80%;
  content: '';
  background-color: #0ea3dd;
  z-index: 1;
}

.aboutPage-team__link {
  color: #273a68;
  font-weight: 700;
}

.aboutPage-team__link:hover {
  text-decoration: underline;
}

.aboutPage-hero__textBlock {
  /* color: #666; */
  /* font-size: 18px; */
  line-height: 150%;
  background-color: #fff;
  /* position: absolute; */
  padding: 24px;
}

.aboutPage-hero__textBlock p:not(:last-child) {
  margin-bottom: 16px;
}

.aboutPage-hero__textBlock--right {
  padding: 24px 24px 60px;
  /* padding: 24px ; */
  right: 0;
  top: 0;
  max-width: 650px;
}

.aboutPage-hero__textBlock--left {
  /* padding: 90px 100px 100px 90px; */
  padding: 24px 24px 0;
  max-width: 490px;
  bottom: 0;
  left: 0;

  /* } */
}

.aboutPage-hero__textBlock--left::before {
  position: absolute;
  right: 100%;
  top: 0;
  height: 100%;
  width: 100%;
  content: '';
  background-color: #fff;
}

.aboutPage-hero__img {
  /* position: absolute; */
  right: 0;
  height: 350px;
  bottom: 0;
}

.aboutPage-hero__img img {
  max-height: 100%;
}

.aboutPage-hero__title {
  color: #fff;
  padding-top: 30px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -48px;
  top: 15px;
  /* font-size: 60px; */
  /* font-style: normal; */
  /* font-weight: 700; */
  /* line-height: 100%; */
  /* font-family: Merriweather; */
}

.aboutPage-team__inner {
  /* padding-top: 119px; */
}

.aboutPage-team {
  margin-bottom: 80px;
}

.aboutPage-counters {
  margin-bottom: 5px;
}

.aboutPage-counters__list {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.aboutPage-counters__list .aboutPage-counter:nth-child(2) {
  margin-bottom: 30px;
}

.aboutPage-counters__list .aboutPage-counter:nth-child(3) {
  margin-bottom: 60px;
}

.aboutPage-counter__num {
  color: #0ea3dd;
  font-size: 36px;
  font-weight: 700;
}

.aboutPage-counter__text {
  color: #000;
  font-size: 18px;
}

.aboutPage-counter__title {
  color: #000;
  font-size: 30px;
  margin-top: 16px;
}

.aboutPage-counter--last .aboutPage-counter__num {
  font-size: 60px;
}

.aboutPage-counter--last .aboutPage-counter__title {
  font-size: 34px;
}

.aboutPage-team__title {
  color: #273a68;
  /* font-family: Merriweather; */
  /* font-size: 60px; */
  /* font-weight: 700; */
  /* margin-bottom: 99px; */
  margin-bottom: 80px;
}

.about-team {
  max-width: 450px;
}

.aboutPage-team__col {
  flex: 0 0 50%;
}

.about-team__img {
  position: relative;
  /* left: 102px; */
  /* height: 606px; */
}

.about-team__img img {
  width: 100%;
}

.aboutPage-team__body {
  /*display: flex;
	gap: 40px;
	justify-content: center;*/
}

.about-team__img img {
  height: 100%;
  object-fit: cover;
}

.about-team__body {
  /* padding-top: 56px; */
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-team__text {
  /* color: #666; */
  /* font-family: Manrope; */
  /* font-size: 18px; */
  font-size: 16px;
  line-height: 150%;
  /* 27px */
}

.about-team__social {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-team__social li {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.about-team__social svg {
  width: 25px;
  transition: 0.3s;
  height: 25px;
  fill: #37587d;
}

.about-team__social svg:hover {
  fill: #0ea3dd;
  transform: scale(1.2);
}

.about-team__title {
  color: #1d1d1d;
  font-family: Merriweather;
  font-size: 32px;
  /* font-size: 18px; */
  /* font-weight: 700; */
  line-height: 130%;
  letter-spacing: -0.01em;
}

.aboutPage-team__text {
  /* color: #666; */
  /* font-size: 18px; */
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  /* 27px */
  margin-bottom: 60px;
}

.aboutPage-team__text p:not(:last-child) {
  margin-bottom: 16px;
}

.aboutPage-team__list {
  /*display: flex;
	flex-direction: column;
	gap: 60px;*/
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
}

.aboutPage-team__list>li {
  position: relative;
}

.aboutPage-team__list>li:nth-child(2) {
  order: -1;
}

.aboutPage-team__list>li:nth-child(2),
.aboutPage-team__list>li:nth-child(3),
.aboutPage-team__list>li:nth-child(5) {
  margin-left: auto;
}

.aboutPage-team__list>li:nth-child(4),
.aboutPage-team__list>li:nth-child(6) {
  top: -415px;
}


.aboutPage-team__text {}

.aboutPage-team__col {
  position: relative;
}

.aboutPage-team__list--left {
  /* left: 102px; */
  align-items: flex-end;
}

.about-team__img {
  position: relative;
}

.about-team__img::before {
  position: absolute;
  content: '';
  background-color: #0ea3dd;
  width: 100%;
  z-index: -1;
  height: 250px;
}

.aboutPage-team__list li:nth-child(2)>.about-team__img::before {
  bottom: 22px;
  left: -102px;
}

.aboutPage-team__list li:nth-child(5)>.about-team__img::before {
  top: -13px;
  left: -13px;
}

.aboutPage-team__list li:nth-child(3)>.about-team__img::before {
  bottom: -17px;
  left: -17px;
}

.aboutPage-team__list li:nth-child(4)>.about-team__img::before {
  bottom: -18px;
  right: -13px;
}

.aboutPage-team__list li:nth-child(6)>.about-team__img::before {
  bottom: 35px;
  right: -102px;
}

/* .aboutPage-team__list--right .about-team:nth-child(3) > .about-team__img::before {
  top: -13px;
  left: -13px;
} */
.aboutPage-team__right {
  /* right: 102px; */
  display: none;
}

.aboutPage-team__list--right {}

.she-hero {
  /* margin-bottom: 130px; */
  margin-bottom: 80px;
}

.she-hero li {
  list-style: disc;
}

#form4~.texting {
  /*margin-bottom: 0;*/
}

.she-hero ul {
  list-style: disc;
  max-width: 590px;
  /* color: #666; */
  /* font-family: Manrope; */
  /* font-size: 18px; */
  line-height: 150%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 10px;
}

.she-hero__inner {
  position: relative;
  /* padding-top: 160px; */
}

.she-hero__inner::before {
  position: absolute;
  left: -96px;
  top: 0;
  content: '';
  height: 250px;
  width: 90%;
  background-color: #0ea3dd;
  z-index: -1;
}

.she-hero__img {
  position: relative;
}

.she-hero__img::after {
  position: absolute;
  width: 100%;
  height: 320px;
  background-color: #0ea3dd;
  content: '';
  right: -160px;
  bottom: -30px;
  z-index: -1;
}

.she-hero__top {
  padding-top: 30px;
}

.she-hero__bottom,
.she-hero__top {
  display: flex;
  /* justify-content: space-between; */
  margin-bottom: 80px;
  gap: 30px;
}

.she-hero__top ul {
  padding-left: 20px;
  /* flex: 0 0 590px; */
}

.she-hero__top-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.she-hero__title {
  color: #fff;
  /* font-family: Merriweather; */
  /* font-size: 60px; */
  /* font-weight: 700; */
  /* margin-bottom: 80px; */
  /* padding-top: 30px; */
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -60px;
}

.she-mission {
  /* padding-top: 125px; */
  margin-bottom: 100px;
}

.she-mission__title {
  color: #273a68;
  /* font-family: Merriweather; */
  /* font-size: 60px; */
  /* font-style: normal; */
  font-weight: 700;
  line-height: 100%;
  /* 60px */
  margin-bottom: 80px;
}

.she-mission__row {
  display: flex;
  gap: 26px;
  align-items: center;
}

.she-mission__img {
  flex: 0 0 50%;
  position: relative;
}

.she-mission__img::before {
  position: absolute;
  width: 70%;
  height: 320px;
  background-color: #0ea3dd;
  content: '';
  left: -41px;
  bottom: -20px;
  z-index: -1;
}

.she-mission__text {
  /* color: #666; */
  /* font-family: Manrope; */
  font-size: 30px;
  line-height: 150%;
  /* 48px */
}

.title-bg {
  font-family: Merriweather;
  font-size: 60px;
  font-weight: 700;
}

.she-cert {
  /* padding-top: 155px; */
  margin-bottom: 25px;
}

.she-cert__container {}

.she-cert__inner {}

.she-cert__img {
  text-align: center;
  margin-bottom: 80px;
}

.she-cert__btn {
  text-align: center;
}

.problem {
  margin-bottom: 5px;
}

.problem__container {}

.problem__title {
  position: relative;
  display: inline-block;
  /* color: #0ea3dd; */
  padding-bottom: 10px;
  margin-bottom: 80px;
}

.problem__title::after {
  position: absolute;
  top: 100%;
  right: 0;
  height: 4px;
  background-color: #0ea3dd;
  width: 617px;
  content: '';
}

.problem__title::before {
  position: absolute;
  top: 25%;
  left: -57px;
  height: 205px;
  background-color: #0ea3dd;
  width: 2px;
  content: '';
}

.title-bg {}

.problem__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 60px 10px;
}

.problem-item {
  width: 282px;
}

.problem-item:hover .problem-item__img img {
  transform: scale(1.1);
}

.problem-item:hover .problem-item__title {
  border-bottom-color: #273a68;
}

.problem-item__img {
  position: relative;
}

.problem-item__img::before {
  top: -10px;
  content: '';
  position: absolute;
  z-index: -1;
  background-color: #0ea3dd;
  border-radius: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 172px;
  height: 82px;
}

.problem-item__img img {
  transition: 0.3s;
  border-radius: 20px;
}

.problem-item__body {
  padding: 30px 5px;
}

.problem-item__title {
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  padding-bottom: 5px;
  color: #273a68;
  text-align: center;
  font-family: Merriweather;
  font-size: 24px;
  font-weight: 700;
}

.certificate {
  margin-bottom: 20px;
}

.certificate__container {}

.certificate__top {
  margin-bottom: 80px;
}

.certificate-top {}

.certificate-top__row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.certificate-top__content {
  max-width: 510px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.certificate-top__title {
  margin-bottom: 0;
  line-height: 1.5;
}

.title-bg {}

.certificate-top__text {
  /* color: #000; */
  /* font-family: Manrope; */
  /* font-size: 24px; */
  /* font-weight: 500; */
  line-height: 150%;
}

.certificate-top__btn .button {
  width: 384px;
  text-align: center;
}

.certificate-top__img {}

.certificate__how {
  margin-bottom: 80px;
}

.certificate-how {}

.certificate-how__title {
  color: #273a68;
  text-align: center;
  /* font-family: Merriweather; */
  /* font-size: 36px; */
  /* font-weight: 700; */
  margin-bottom: 64px;
}

.certificate-how__list {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.certificate-how-item {
  max-width: 384px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  flex: 0 0 31.333%;
}

.certificate-how-item__num {
  color: #fafafa;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 36px */
  width: 78px;
  height: 78px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0ea3dd;
}

.certificate-how-item__title {
  /* color: #212121; */
  /* font-family: Merriweather; */
  font-size: 24px;
  /* color: #1c1c1c; */
  color: #273a68;
  /* font-weight: 700; */
}

.certificate-how-item__text {
  /* color: #000; */
  /* font-family: Manrope; */
  /* font-size: 18px; */
  line-height: 1.5;
  /* font-weight: 400; */
}

.certificate__coupon {
  /* margin-bottom: 101px; */
  margin-bottom: 80px;
}

.certificate-coupon {}

.certificate-coupon__title {
  color: #273a68;
  text-align: center;
  /* font-family: Merriweather; */
  /* font-size: 36px; */
  /* font-style: normal; */
  /* font-weight: 700; */
  /* line-height: 100%; */
  /* 36px */
  /* margin-bottom: 40px; */
  margin-bottom: 64px;
}

.certificate-coupon__btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

.certificate-coupon__btns .certificate-coupon__session {
  flex: 0 0 31.333%;
}

.certificate-coupon__session {
  height: 76px;
  max-width: 384px;
  color: #273a68;
  text-align: center;
  font-family: Merriweather;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 24px */
  border-radius: 10px;
  /* border: 1px solid rgba(14, 163, 221, 0.00); */
  background-color: #fff;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  background: radial-gradient(circle at 100% 100%,
      #ffffff 0,
      #ffffff 9px,
      transparent 9px) 0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 9px, transparent 9px) 100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 9px, transparent 9px) 0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 9px, transparent 9px) 100% 100%/10px 10px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 2px) calc(100% - 20px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 20px) calc(100% - 2px) no-repeat,
    linear-gradient(transparent 0%, #0ea3dd 100%);
}

.certificate-coupon__session:hover {
  background: radial-gradient(circle at 100% 100%,
      #e8f5fa 0,
      #e8f5fa 9px,
      transparent 9px) 0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #e8f5fa 0, #e8f5fa 9px, transparent 9px) 100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #e8f5fa 0, #e8f5fa 9px, transparent 9px) 0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #e8f5fa 0, #e8f5fa 9px, transparent 9px) 100% 100%/10px 10px no-repeat,
    linear-gradient(#e8f5fa, #e8f5fa) 50% 50% / calc(100% - 2px) calc(100% - 20px) no-repeat,
    linear-gradient(#e8f5fa, #e8f5fa) 50% 50% / calc(100% - 20px) calc(100% - 2px) no-repeat,
    linear-gradient(transparent 0%, #0ea3dd 100%);
}

.certificate-coupon__list {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}

.certificate-coupon-item {
  flex: 0 0 31.333%;
  border-radius: 10px;
  /* border: 2px solid rgba(14, 163, 221, 0.00); */
  background: #fff;
  box-shadow: 0px 0px 59px 21px rgba(23, 152, 202, 0.1);
  min-height: 389px;
  padding: 40px 22px;
  max-width: 384px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  background: radial-gradient(circle at 100% 100%,
      #ffffff 0,
      #ffffff 8px,
      transparent 8px) 0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px) 100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px) 0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100% 100%/10px 10px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 4px) calc(100% - 20px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 20px) calc(100% - 4px) no-repeat,
    linear-gradient(transparent 0%, #0ea3dd 100%);
}

.certificate-coupon-item__title {
  color: #1c1c1c;
  text-align: center;
  /* font-family: Manrope; */
  font-size: 30px;
  /* font-style: normal; */
  /* font-weight: 700; */
  line-height: 100%;
  /* 28px */
  margin-bottom: 30px;
}

.certificate-coupon-item__title--img {
  color: #0ea3dd;
  text-align: center;
  font-family: Manrope;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
  /* 36px */
}

.certificate-coupon-item__text {
  margin-bottom: 30px;
}

.certificate-coupon-item__btn a {
  min-width: 282px;
}

.certificate-coupon-item__text {
  /* color: #273A68; */
  text-align: center;
  /* font-family: Manrope; */
  /* font-size: 18px; */
  /* font-style: normal; */
  /* font-weight: 500; */
  line-height: 150%;
  /* 18px */
}

.certificate__care {
  margin: 0 auto 5px;
}

.certificate-care {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  max-width: 990px;
  border-radius: 10px;
  /* border: 2px solid rgba(14, 163, 221, 0.00); */
  background: #fff;
  box-shadow: 0px 0px 59px 21px rgba(23, 152, 202, 0.1);
  padding: 50px;
  background: radial-gradient(circle at 100% 100%,
      #ffffff 0,
      #ffffff 8px,
      transparent 8px) 0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px) 100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px) 0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100% 100%/10px 10px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 4px) calc(100% - 20px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 20px) calc(100% - 4px) no-repeat,
    linear-gradient(transparent 0%, #0ea3dd 100%);
}

.certificate-care__title {
  color: #273a68;
  text-align: center;
  /* font-family: Merriweather; */
  font-size: 24px;
  /* font-style: normal; */
  /* font-weight: 400; */
  line-height: 100%;
  /* 24px */
  /* margin-bottom: 50px; */
  /* 28px */
}

.certificate-care__text {
  /* color: #273A68; */
  text-align: center;
  /* font-family: Manrope; */
  /* font-size: 18px; */
  /* font-style: normal; */
  /* font-weight: 500; */
  line-height: 150%;
  /* 18px */
  /* margin-bottom: 30px; */
}

.certificate-care__btn a {
  width: 232px;
}

@media (max-width: 992px) {
  .sub-menu {
    height: auto;
    max-height: 0;
    transform: none !important;
    overflow: hidden;
    position: relative;
    padding: 0;
    top: 0;
  }

  .how__list li:nth-child(odd) .how-item {
    flex-direction: column;
  }

  .sub-menu.active {
    padding-top: 15px;
    font-size: 14px;
    max-height: 100vh;
  }

  .menu-item {
    padding-right: 0 !important;
  }

  .menu-item-has-children::after,
  .menu-item-has-children {
    transition: 0 !important;
  }

  .menu-item-has-children::after {
    top: 0 !important;
    transition: 0 !important;
  }

  .menu-item-has-children.active::after {
    transform: rotate(180deg) translateY(0) !important;
  }
}

.sub-menu.active,
.menu__sub-list.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  position: relative;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.menu__sub-list ul {
  background: #fff;
  -webkit-box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  box-shadow: 0 16px 21px 0 rgba(55, 88, 125, 0.2);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.sub-menu li {
  color: #1c1c1c;
  font-weight: 400;
}

.sub-menu li:hover {
  color: #37587d;
}

.menu__sub-list ul li:last-child {
  font-weight: 600;
  color: #0ea3dd;
}

.menu__sub-list ul li:last-child svg {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  stroke: #0ea3dd;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.menu__sub-list ul li:last-child:hover svg {
  -webkit-transform: rotate(-90deg) translateY(5px);
  -ms-transform: rotate(-90deg) translateY(5px);
  transform: rotate(-90deg) translateY(5px);
}

.header--dark {
  margin-bottom: 0;
  background-color: #273a68;
}

.header--dark .logo__text {
  color: #fff;
}

.header--dark .logo__text span:nth-child(2) {
  color: #fff;
}

.header--dark .header__social a svg {
  fill: #fff;
}

.icon-menu {
  display: none;
}

.footer {
  padding: 32px 0;
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
  justify-items: center;
}

.footer__central,
.footer__contacts,
.footer__social {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.3333%;
  flex: 0 0 33.3333%;
}

.footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

.footer__logo .logo__text {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer__copyright {
  text-align: center;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}

.footer__contacts a:hover {
  text-decoration: underline;
}

.footer__contacts svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  vertical-align: middle;
  fill: #37587d;
}

.footer__social {
  gap: 12px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer__social svg {
  width: 32px;
  height: 32px;
}

.footer--dark {
  background: #254372;
  color: #fff;
}

.footer--dark svg {
  fill: #fff;
}

.footer--dark .language li {
  color: #fff;
}

.footer--dark .language li.current,
.footer--dark .language li:hover {
  color: #0ea3dd;
}

.footer--dark .logo {
  color: #fff;
}

.footer--dark .logo span {
  color: #fff;
}

.footer--dark .social svg {
  fill: #fff;
}

.hero {
  position: relative;
}

.hero::after,
.hero::before {
  position: absolute;
  content: '';
}

.hero::before {
  left: 13px;
  bottom: 115px;
  width: 146px;
  height: 146px;
  background: url(../img/bg-decor.svg) center/auto no-repeat;
}

.hero::after {
  position: absolute;
  height: 95px;
  left: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  /* background-color: #1489b7 */
}

.hero__title {
  color: #1c1c1c;
  font-family: Merriweather, serif;
  font-weight: 400;
  line-height: 120%;
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.about-team__social li img {}

.about-team__social li:hover img {
  filter: invert(49%) sepia(62%) saturate(4342%) hue-rotate(169deg) brightness(104%) contrast(89%);
  transform: scale(1.2);
}

.hero__title span {
  position: absolute;
  -webkit-transform: translateY(-50%) rotate(-7.647deg);
  -ms-transform: translateY(-50%) rotate(-7.647deg);
  transform: translateY(-50%) rotate(-7.647deg);
  color: #1489b7;
  font-family: Caveat, cursive;
  right: 0;
  top: 50%;
}

.hero__sub-title {
  font-family: Merriweather, serif;
  color: #0ea3dd;
  margin-bottom: 32px;
}

.hero__descr {
  font-size: 16px;
  line-height: 1.5em;
  margin-bottom: 32px;
}

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.hero__images {
  padding-top: 118px;
  min-width: 421px;
}

.hero__images .hero__img:nth-child(2) {
  top: 0;
  position: absolute;
  z-index: -1;
  right: 0;
}

.hero__content {
  max-width: 588px;
  padding-top: 28px;
}

.guarantee {
  overflow: hidden;
  color: #37587d;
  /* background-color: #1489b7; */
  /* padding: 25px 0 132px; */
  /* padding: 0 0 80px; */
  position: relative;
  /* margin-bottom: 150px */
}

.wraps {
  z-index: -2;
  background-color: #fafcff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.guarantee__title {
  /* color: #333; */
  color: #273a68;
  line-height: 131%;
  /* max-width: 600px; */
  /* padding-top: 140px; */
  padding-top: 100px;
  /* padding-bottom: 8px; */
  font-weight: 400;
  /* 50px */
  position: relative;
}

.guarantee__title span {
  border-bottom: 1px solid #273a68;
  padding-bottom: 4px;
  display: inline-block;
}

/* .guarantee__title::after {
  position: absolute;
  content: '';
  height: 2px;
  width: 257px;
  background-color: #273A68;
  left: 0;
  top: 100%;
} */

.guarantee__title span {
  font-weight: 700;
}

.guarantee::after {
  position: absolute;
  content: '';
  right: 25px;
  top: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  width: 146px;
  height: 146px;
  background: url(../img/bg-decor.svg) center/auto no-repeat;
  mix-blend-mode: screen;
}

.guarantee__items {
  /* padding: 80px 0; */
  /* display: -ms-grid; */
  /* display: grid; */
  /* gap: 48px 20px; */
  /* -ms-grid-columns: (1fr)[5]; */
  /* grid-template-columns: repeat(5, 1fr); */
  /* height: 710px; */
  height: 450px;
  margin-bottom: 80px;
  /* margin-bottom: 200px; */
  position: relative;
}

.help__inner {
  /* display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; */
  /* display: flex;
  flex-wrap: wrap;
  gap: 30px */
}

.help__title {
  /* color: #333; */
  color: #273a68;
  line-height: 131%;
  margin-bottom: 64px;
}

.help__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.help__list {
  /* display: -ms-grid; */
  display: grid;
  /* -ms-grid-columns: (1fr)[2]; */
  /* grid-template-columns: repeat(3, 1fr); */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}

.help__list li {
  flex: 0 0 calc(33.333% - 20px);
  /* max-width: 335px; */
  font-weight: 700;
  padding: 20px;
  background: rgba(23, 152, 202, 0.1);
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  height: 86px;
  gap: 20px;
  font-size: 16px;
  line-height: 130%;
  border-radius: 30px;
  border: 2px solid rgba(46, 99, 206, 0.4);
  background: #fafafa;
  box-shadow: 0px 4px 18px 1px rgba(46, 99, 206, 0.1);
  text-align: center;
}

.help {
  padding-top: 100px;
  position: relative;
}

.help::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/drop.png') bottom center/contain no-repeat;
  z-index: -1;
  content: '';
}

.help__list li:nth-child(2),
.help__list li:nth-child(8),
.help__list li:nth-child(11),
.help__list li:nth-child(5) {
  margin-bottom: 40px;
}

.help__list li:nth-child(12),
.help__list li:nth-child(6),
.help__list li:nth-child(9),
.help__list li:nth-child(3) {
  margin-bottom: 80px;
}

/* .help__list li::before {
  position: relative;
  display: inline-block;
  content: "";
  height: 20px;
  width: 20px;
  background: url(../img/icons/success.svg) center/auto no-repeat
} */

.how__title {
  text-align: center;
  /* color: #333; */
  color: #273a68;
  margin-bottom: 64px;
  /* margin-bottom: 48px; */
  /* margin-bottom: 200px; */
  /* color: #2E63CE; */
  /* font-size: 50px; */
  /* font-weight: 500; */
  /* line-height: 100%; */
  text-align: left;
  /* max-width: 610px; */
  /* font-weight: 800; */
}

.psyPage-top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* display: flex; */
  gap: 24px;
}

.psyPage {
  /* color: #666; */
  /* font-family: Manrope; */
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
}

.psyPage .title {
  color: #273a68;
}

.psyPage__container {}

.psyPage__top {}

.psyPage-top {}

.psyPage-top__head {
  margin-bottom: 50px;
}

.psyPage-top__text {}

.psyPage-top__textAcent {}

.psyPage__requirements {
  /* padding-top: 80px; */
  /* margin-bottom: 250px; */
  margin-bottom: 100px;
}

.psyPage-requirements {
  display: none;
}

.psyPage__title {
  /* margin-bottom: 30px; */
}

.psyTitle {
  color: #273a68;
  font-family: Merriweather;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  /* 60px */
  max-width: 900px;
}

.psyPage__subText {
  margin-bottom: 50px;
}

.psySubText {}

.psyText:not(:last-child) {
  margin-bottom: 50px;
}

.psyText h2 {
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  /* color: #273A68; */
  color: #37587d;
  margin-bottom: 25px;
  max-width: 690px;
  /* font-size: 24px; */
  /* font-weight: 400; */
  line-height: 1.2em;
  font-size: 20px;
  /* font-family: Merriweather, serif; */
}

.psyText .button {
  line-height: 1;
}

.psyText .button+.button {
  margin-left: 24px;
}

.psyPage__conditions {
  margin-bottom: 100px;
}

.psyPage-conditions {}

.psyPage-conditions__title {
  font-size: 36px;
  /* margin-bottom: 30px; */
  font-family: Merriweather, serif;
}

.label-block {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0ea3dd;
  margin-bottom: 0;
  height: 100%;
}

.psyPage-conditions__subText {}

.psyPage__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  margin-bottom: 100px;
}

.psyPageItem {}

.psyPageItem__title {
  /* color: #0EA3DD; */
  /* font-family: Merriweather, serif; */
  /* font-size: 24px; */
  font-size: 20px;
  /* font-style: normal; */
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  color: #0ea3dd;
  /* color: #273A68; */
  /* color: #37587D; */
  margin-bottom: 6px;
  max-width: 480px;
}

.psyPageItem__text {
  /* font-weight: 400; */
  /* line-height: 2em; */
}

.psyPage__howGet {
  margin-bottom: 100px;
}

.psy-howGet {}

.psy-howGet__title {
  margin-bottom: 30px;
}

.psy-howGet__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  /* max-width: 80%; */
}

.psyPageText,
.psyPage__learn,
.psyPage__howGet,
.psyPage__conditions,
.psyPage__requirements {
  /* max-width: 80%; */
}

.howGetItem {}

.psytitle {
  font-size: 36px;
  font-family: Merriweather, serif;
  line-height: 1.5em;
}

.howGetItem__title {
  /* color: #37587D; */
  color: #0ea3dd;
  /* font-family: Manrope; */
  /* font-size: 32px; */
  /* font-style: normal; */
  font-weight: 700;
  /* line-height: 150%; */
  /* 48px */
  /* margin-bottom: 10px; */
  /* color: #273A68; */
  /* margin-bottom: 16px; */
  max-width: 690px;
  /* font-size: 24px; */

  font-size: 20px;
  /* font-weight: 400; */
  line-height: 1.2em;
  /* font-family: Merriweather, serif; */
}

.howGetItem__text {}

.psyPage__learn {}

.psyLearn {}

.psyLearn__title {
  margin-bottom: 30px;
}

.psyLearn__subText {
  margin-bottom: 30px;
}

.psyLearn__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 100px;
}

.psyLearnItem {}

.psyLearnItem__title {
  font-weight: 700;
  /* 48px */
  color: #37587d;
  /* margin-bottom: 10px; */
  /* margin-bottom: 16px; */
  font-size: 20px;
  color: #0ea3dd;
  line-height: 1.5em;
}

.psyLearnItem__text {}

.psyPageText {}

.psyPage__form {
  /* padding-top: 80px; */
}

.psyForm__title {
  color: #2b2b2b;
  text-align: center;
  font-family: Manrope;
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
  /* 48px */
  margin-bottom: 40px;
  color: #37587d;
  margin-bottom: 16px;
  font-size: 20px;
  /* font-weight: 400; */
  /* line-height: 1.2em; */
  /* font-family: Merriweather, serif; */
}

.psyForm__text {
  margin-bottom: 200px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.psyForm form>p {
  text-align: center;
  display: block;
  width: 100%;
}

.psyForm form,
.psyForm__form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.psyForm__item {}

.psyForm__btn {
  line-height: 1;
  margin: 0 auto;
  width: 280px;
}

.psyFormItem label {
  /* color: #4B5967; */
  /* font-family: Manrope; */
  font-size: 16px;
  /* font-style: normal; */
  /* font-weight: 700; */
  line-height: 150%;
  /* 24px */
}

.psyFormItem {
  max-width: 385px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 0 0 calc(50% - 30px);
}

.psyFormItem input {
  padding: 20px;
  width: 100%;
  background-color: #f7fafc;
  line-height: 131%;
}

.psyFormItem input::placeholder {
  color: #dcdcdc;
}

.guarantee--mod {
  color: #fff;
  background-color: #1489b7;
  padding: 80px 0;
  position: relative;
  margin-top: 100px;
  margin-bottom: 100px;
}

.accordion-container {
  color: #fff;
}

.ac .ac-trigger:focus,
.ac .ac-trigger {
  padding: 22px 24px;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.ac {
  border-radius: 8px;
  overflow: hidden;
}

.ac .ac-trigger::after {
  content: '';
  border: 7px solid transparent;
  border-top: 7px solid #fff;
  border-bottom: none;
  transition: 0.3s;
  right: 24px;
}

.ac.is-active>.ac-header .ac-trigger::after {
  content: '';
  transform: rotateX(180deg);
}

.ac-header {
  background-color: #1489b7;
}

.ac .ac-panel .ac-text {
  color: #fff !important;
}

.ac-panel {
  background-color: #1489b7;
  /* padding: 0 24px 22px; */
}

.guarantee--mod .guarantee::after {
  position: absolute;
  content: '';
  right: 25px;
  top: 0;
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
  width: 146px;
  height: 146px;
  background: url(../img/bg-decor.svg) center/auto no-repeat;
  mix-blend-mode: screen;
}

.guarantee--mod .guarantee__items {
  /* padding: 80px 0; */
  display: -ms-grid;
  display: grid;
  gap: 48px 20px;
  margin-bottom: 0;
  -ms-grid-columns: (1fr) [5];
  grid-template-columns: repeat(5, 1fr);
  height: auto;
}

.guarantee--mod .guarantee__title {
  margin-bottom: 64px;
  color: #fff;
  padding-top: 0;
}

.guarantee--mod .guarantee-item {
  font-weight: 400;
  max-width: 195px;
  position: static;
  display: block;
  transform: none !important;
}

.guarantee--mod .guarantee-item__img {
  position: relative;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.guarantee--mod .guarantee-item__img::after {
  position: absolute;
  height: 1px;
  width: 31px;
  background-color: #fff;
  left: 0;
  top: 100%;
  content: '';
}

.guarantee--mod .guarantee-item img {
  width: 48px;
  height: 48px;
}

.guarantee--mod .guarantee-item__title {
  font-size: 16px;
  line-height: 1.3em;
  font-family: Merriweather, serif;
  margin-bottom: 16px;
  text-align: left;
  font-weight: 400;
  width: 100%;
}

.guarantee--mod .guarantee-item__descr p {
  line-height: 1.5em;
  color: #bce5f4;
  font-size: 14px !important;
  text-align: left;
}

.psyPage {}

.psyPage__container {}

.psyPage__top {
  /* margin-bottom: 300px; */
  /*margin-bottom: 100px;*/
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.psyPage-top {}

.psyPage-top__label {
  /* width: 40%; */
  /* height: 100px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* color: #FFF !important; */
  /* font-family: Merriweather; */
  /* font-size: 60px; */
  /* font-style: normal; */
  /* font-weight: 700; */
  /* line-height: 100%; */
  /* background-color: #0EA3DD; */
  /* float: left; */
  /* width: 100%; */
  /* min-height: 110px; */
  /* width: 500px; */
  /* margin-bottom: 0; */
  /* margin-right: 30px; */
  /* 60px */
  text-align: center;
}

.psyPage-top__text {
  /* color: #666; */
  /* font-family: Manrope; */
  /* font-size: 24px; */
  /* line-height: 150%; */
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 24px; */
  /* 36px */
  line-height: 2em;
}

.psyPage-top__text p:not(:last-child) {
  margin-bottom: 20px;
}

.psyPage-top__textAcent {
  text-align: center;
  /* color: #666; */
  /* font-family: Manrope; */
  /* font-size: 28px; */
  font-weight: 600;
  line-height: 150%;
  /* 45px */
}

.psyPage-top__textAcent b {
  font-size: 20px;
  font-weight: 700 !important;
}

.psyPage-top__btn {
  height: fit-content;
  width: fit-content;
}

.button {}

.how__title span {
  font-weight: 700;
}

.how__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* gap: 130px */
  gap: 50px;
  position: relative;
}

.how__list::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: auto;
  height: 100%;
  width: 2500px;
  background: url('../img/ellipse.png') center/contain no-repeat;
  right: 0;
  top: 50%;
  content: '';
  transform: translate(50%, -50%);
}

.how__list li:nth-child(odd) .how-item .how-item__content {
  margin-left: 10%;
}

.how__list li:nth-child(odd) .how-item__img {
  width: 100%;
}

.how__list li:nth-child(even) .how-item .how-item__content {
  margin-right: 10%;
}

.how__list li:nth-child(even) .how-item__img {
  text-align: right;
  width: 100%;
}

.how__list li:nth-child(even) .how-item__title {
  order: -1;
}

.how-item__descr:not(:last-child) {
  margin-bottom: 16px;
}

.how__list li:nth-child(odd) .how-item__descr,
.how__list li:nth-child(odd) .how-item__title {
  padding-right: 16px;
}

.how-item__btn {
  line-height: 1;
}

.how__list li:nth-child(odd) .how-item__btns {
  grid-column: 2;
  /*padding: 0px 50px 30px 0;*/
  /*padding: 0px 0px 30px 0;*/
  white-space: nowrap;
  margin-top: 16px;
  /*width: 245px;*/

}

.how-item__descr {
  /*padding-bottom: 30px;*/
}

.how__list li:nth-child(odd) .how-item__btns .how-item__btn {
  max-height: 60px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.how__list li:nth-child(even) .how-item__descr,
.how__list li:nth-child(even) .how-item__title {
  padding-left: 16px;
  padding-right: 16px;
}

.price__title {
  color: #273a68;
  margin-bottom: 64px;
}

.price__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price__items .price-item:nth-child(2) {
  transform: translateY(10px) !important;
  background-color: #fff;
}

.price__items .price-item:nth-child(2) .price-item__btn {}

.ac-text {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.feedback {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 100px !important;
}

.feedback__title {
  text-align: center;
  color: #1c1c1c;
  margin-bottom: 48px;
}

.questions {
  background-color: #273a68;
  position: relative;
  padding-bottom: 80px;
}

.questions::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 150px;
  background-color: #fff;
  content: '';
  width: 100%;
}

.questions__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  column-gap: 20px;
}

.questions__form {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 588px;
  flex: 0 1 588px;
}

.guarantee-item {
  font-weight: 400;
  max-width: 250px;
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.guarantee__container {}

.guarantee .guarantee-item::after {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 2px solid rgba(46, 99, 206, 0.05);
  transform: translate(-50%, -50%);
  content: '';
}

.guarantee-item:nth-child(1) {
  top: 64px;
  left: 0;
}

.guarantee-item:nth-child(2) {
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
}

.guarantee-item:nth-child(3) {
  bottom: 70px;
  right: 0;
}

.guarantee-item:nth-child(4) {
  left: 200px;
  bottom: 0;
}

.guarantee-item:nth-child(5) {
  right: 100px;
  top: 0;
}

.guarantee-item:nth-child(1)::after,
.guarantee-item:nth-child(2)::after,
.guarantee-item:nth-child(3)::after {
  width: 154px;
  height: 154px;
}

.guarantee-item:nth-child(4)::after,
.guarantee-item:nth-child(5)::after {
  width: 230px;
  height: 230px;
}

.guarantee-item__img {
  position: relative;
  margin-bottom: 24px;
}

.guarantee-item__img::after {
  position: absolute;
  height: 1px;
  width: 31px;
  background-color: #fff;
  left: 0;
  top: 100%;
  content: '';
}

.guarantee-item__img {
  max-width: 100px;
}

.guarantee-item__img img {
  max-width: 75%;
}

.guarantee-item__title {
  font-size: 16px;
  line-height: 1.3em;
  font-family: Merriweather, serif;
  margin-bottom: 16px;
}

.guarantee-item__descr {
  line-height: 1.5em;
  color: #bce5f4;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
  color: rgb(55, 88, 125);
}

.guarantee-form {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.guarantee-form::before {
  position: absolute;
  content: '';
  right: 80px;
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
  width: 998px;
  height: 998px;
  border-radius: 50%;
  background-color: #fff;
}

.guarantee-form::after {
  position: absolute;
  content: '';
  right: 0;
  bottom: 150%;
  z-index: -1;
  transform: translateX(50%);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fff;
}

.guarantee-form__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 32px 0;
}

.guarantee-form__text {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  max-width: 630px;
  margin-bottom: 32px;
}

.guarantee-form__item>p {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [4];
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  font-size: 0;
  line-height: 0;
}

input[type='submit'] {
  cursor: pointer;
}

.guarantee-form input {
  max-width: 228px;
}

.guarantee-form__title {
  margin-bottom: 32px;
}

.guarantee-form__img {
  height: 340px;
  text-align: center;
}

.guarantee-form__img img {
  max-height: 100%;
}

.guarantee-form__input {
  padding: 21px 22px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 131%;
}

.guarantee-form__input::-webkit-input-placeholder {
  color: inherit;
}

.guarantee-form__input::-moz-placeholder {
  color: inherit;
}

.guarantee-form__input:-ms-input-placeholder {
  color: inherit;
}

.guarantee-form__input::-ms-input-placeholder {
  color: inherit;
}

.guarantee-form__input::placeholder {
  color: inherit;
}

.how-item {
  display: flex;
  padding: 10px 0;
  align-items: center;
  position: relative;
  justify-content: center;
}

.psyPage-requirements,
.psyPage-conditions {
  padding-top: 100px;
}

.psyPage-requirements {
  margin-bottom: 0;
}

.how-item__content {
  z-index: 1;
  display: grid;
  grid-template: auto auto / 1fr 1fr;
  width: 500px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 10px 0px rgba(46, 99, 206, 0.25);
  backdrop-filter: blur(2px);
  min-height: 250px;
  position: relative;
  padding: 10px 0;
}

.how-item__counter {
  margin-bottom: 32px;
  color: #1489b7;
  font-family: Merriweather, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 131%;
  text-align: center;
  align-self: center;
  grid-row: span 3;
  color: #fff;
  text-align: center;
  font-family: PoetsenOne;
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.how-item__title {
  font-family: Merriweather, serif;
  font-size: 20px;
  color: #273a68;
  font-weight: 400;
  line-height: 130%;
  margin-bottom: 16px;
  margin-top: auto;
}

.how-item__descr {
  line-height: 1.5em;
}

.how-item__descr,
.how-item__title {}

.how-item__descr ol li {
  list-style-type: decimal;
}

.how-item__descr ul li {
  list-style-type: disc;
}

.how-item__img {
  /* height: 585px; */
  height: 320px;
  position: absolute;
}

.how-item__img img {
  object-fit: cover;
  object-position: center;
  max-height: 100%;
}

.price-item {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -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: flex-start;*/
  padding: 32px;
  background-color: rgba(14, 163, 221, 0.1);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  position: relative;
  background: #e9f0fd;
  box-shadow: 0px 10px 10px 0px rgba(83, 96, 125, 0.15);
  cursor: pointer;
}

.price-item a,
.price-item .button {
  width: 282px;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  /* font-weight: 500 !important; */
  /* font-family: Manrope !important; */
  padding: 22px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #0ea3dd;
  font-weight: 300;
}

.price-item a:hover {
  background-color: #28b6ee;
}

.price {
  padding-bottom: 0 !important;
  /*padding-top: 0;*/
  padding-top: 100px;
}

.psyPage__container {
  margin-bottom: 25px;
}

.texting--price {
  margin-bottom: 25px !important;
}

.price-item {
  border-radius: 10px;
  /* border: 2px solid rgba(14, 163, 221, 0.00); */
  background: #fff;
  box-shadow: 0px 0px 59px 21px rgba(23, 152, 202, 0.1);
  background: radial-gradient(circle at 100% 100%,
      #ffffff 0,
      #ffffff 8px,
      transparent 8px) 0% 0%/10px 10px no-repeat,
    radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 8px, transparent 8px) 100% 0%/10px 10px no-repeat,
    radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 8px, transparent 8px) 0% 100%/10px 10px no-repeat,
    radial-gradient(circle at 0 0, #ffffff 0, #ffffff 8px, transparent 8px) 100% 100%/10px 10px no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 4px) calc(100% - 20px) no-repeat,
    linear-gradient(#ffffff, #ffffff) 50% 50% / calc(100% - 20px) calc(100% - 4px) no-repeat,
    linear-gradient(transparent 0%, #0ea3dd 100%);
}

.price-item__title {
  text-align: left;
  /* font-weight: 600; */
  /* font-size: 22px; */
  margin-bottom: 32px;
  color: #2e63ce;
  /* font-family: Coco Sharp Variable; */
  font-size: 30px;
  font-weight: 900;
  /* line-height: normal; */
}

.price-item__title {
  color: rgb(55, 88, 125);
  font-size: 22px;
  font-weight: 600;
  font-family: Manrope;
}

.btn-price {
  text-transform: uppercase;
  width: 100%;
  display: block;
  text-align: center;
  width: 282px;
  margin: 0 auto;
  padding: 22px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #0ea3dd;
  /* font-weight: 500 !important; */
}

.price-item dl {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.price-item dt {
  margin-bottom: 12px;
  color: #37587d;
  /* color: #1c1c1c; */
  font-size: 16px;
  font-weight: 700;
}

.price-item dt {
  font-size: 16px;
  font-weight: 700;
}

.price-item dd {
  /* color: #0ea3dd; */
  /* font-size: 18px; */
  margin-bottom: 24px;
  color: #5987ec;
  /* font-family: Manrope; */
  font-size: 18px;
  /* font-style: normal; */
  font-weight: 700;
  line-height: 100%;
  /* 18px */
}

.price__items .price-item:nth-child(2) {
  transform: none !important;
}

.price-item dd {
  color: #0ea3dd;
  font-size: 18px;
  font-weight: 400;
  font-family: Manrope;
}

.price-item__btn {
  /* border-radius: 50px; */
  /* border: 1px solid #5987EC; */
  /* background: #F6F8FE; */
  /* color: #2E63CE; */
  /* transition: .3s; */
}

.price-item:hover {
  /* color: #fff; */
  /* background: #0ea3dd; */
  /* -webkit-box-shadow: 0 4px 43px 0 rgba(0, 0, 0, .1); */
  /* box-shadow: 0 4px 43px 0 rgba(0, 0, 0, .1) */
  /* background-color: #fff; */
  /* transform: translateY(10px) !important; */
}

.price-item:hover dd {
  /* color: #fff */
}

.price-item:hover .price-item__btn {
  /* background-color: #5987EC; */
  /* color: #1c1c1c */
  /* color: #fff; */
}

.feedback__slider {
  padding: 20px 0;
  margin: -20px 0;
}

.feedback-slide {
  background-color: rgba(14, 163, 221, 0.1);
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  color: 14px;
  line-height: 1.5em;
  max-width: 384px;
  border-radius: 30px;
  border: 1px solid #d6d6d6;
  background: #fff;
  box-shadow: 0px 10px 10px 0px #2e63ce40;
}

.feedback-slide__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}

.questions-form__title {
  color: #fff;
  margin-bottom: 48px;
}

.contact-page .questions-form__item,
.questions-form__item>p {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.questions__form form p {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [2];
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-page .questions-form textarea {
  height: 135px;
  resize: none;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/4/3;
}

/* .texta ul li:nth-child(even)::before, */
.conrepeat .repeattext:nth-child(even)::after {
  position: absolute;
  content: '';
  /* background-color: #f4f4f4; */
  z-index: -1;
  background-color: #fbfafa;
  height: 100%;
  width: 100vw;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.conrepeat .repeattext:nth-child(even) {
  position: relative;
  background-color: #fbfafa;
}

/* .questions-form__item input {
  max-width: 282px;
} */
.questions-form form p textarea,
.questions-form__item textarea {
  height: 135px;
  resize: none;
  width: 100%;
}

.questions-form form>p span:nth-child(5),
.questions-form__item>p span:nth-child(5) {
  /* height: 135px;
  resize: none; */
  display: block;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 3/1/4/3;
}

.service-page__title {
  margin-bottom: 24px;
}

.service-page__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr) [3];
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  padding-bottom: 40px;
}

.service-item {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  min-height: 384px;
  color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  overflow: inherit;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.service-item__label {
  max-width: 282px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px;
  background-color: rgba(14, 163, 221, 0.8);
}

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

.service-item:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}

.service-item:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/2/4;
}

.service-item:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
}

.service-item:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/4/4;
}

.service-item:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 3/2/4/3;
}

.service-item:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 3/1/4/2;
}

.team__cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 75px;
}

.team-card {
  background-color: rgba(14, 163, 221, 0.1);
  display: flex;
  flex-direction: column;
}

.team-card__btns {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: auto;
}

.team-card__btn {
  width: 100%;
}

.team-card__img {
  height: 330px;
  overflow: hidden;
}

.team-card__img:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.komanda-ops {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  height: 100%;
}

.komanda-ops a {
  color: #273a68;
  font-weight: 700;
}

.komanda-ops a:hover {
  text-decoration: underline;
}

.team-card__img img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 330px;
}

.team-card__body {
  flex: 1;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.team-card__title {
  font-size: 16px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 16px;
}

.team-card__title a:hover {
  text-decoration: underline;
}

.team-card__ways {
  margin-bottom: 24px;
}

.team-card__descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.team-card__descr p span {
  color: #1c1c1c;
}

.team-card__btn {
  text-align: center;
}

.swiper {
  overflow: hidden;
}

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

.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(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

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

.glsr-label-email,
.glsr-field-text,
.glsr-field-rating .select__body {
  display: none;
}

.glsr-form-wrap {
  margin-top: 30px;
  color: #fff;
  /*background-color: #273a68;*/
  padding: 80px 0;
  position: relative;
}

.psyho-page .team__container .glsr-default form.glsr-form input.glsr-input,
.glsr-default form.glsr-form textarea.glsr-textarea#site-reviews-content-glsr_5a94eb4c {
  padding: 21px 22px !important;

}

.glsr-form-wrap textarea,
.glsr-form-wrap input {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-family: Manrope, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 131% !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background-color: rgba(23, 152, 202, 0.1) !important;
  line-height: 1.31em;
  color: #37587d !important;
}

.glsr-form-wrap textarea {
  height: 135px !important;
  resize: none !important;
}

.glsr-default form.glsr-form .glsr-toggle label,
.glsr-default form.glsr-form label.glsr-label {
  font-size: 16px !important;
  color: #0ea3dd;
}

.glsr-default form.glsr-form {
  gap: 24px !important;
}

.glsr-form-wrap textarea::placeholder,
.glsr-form-wrap input::placeholder {
  color: inherit;
}

.glsr-review-form {
  position: relative;
  z-index: 1;
}

.glsr-form-wrap::after {
  /*background-color: #273a68;*/
  position: absolute;
  content: '';
  left: 50%;
  height: 100%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
}

.glsr-ltr .glsr-button {
  padding: 18px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #1c1c1c;
  /*background-color: #fff;*/
  font-weight: 300;
  padding: 22px 24px;
  border-radius: 12px;
  font-size: 16px;
  color: #fff;
  background-color: #0ea3dd;
  font-weight: 300;
}

.glsr {
  font-size: 16px !important;
}

.glsr-ltr .glsr-button:hover {
  /*color: #0ea3dd;*/
  background-color: #28b6ee;
}

.glsr-form-wrap {
  padding: 0 !important;
  margin: 0 !important;
}

.tabs__body {
  padding-bottom: 0 !important;
}

.tabs__content {
  padding: 10px 0;
}

@media (min-width: 992px) {
  .questions-form__item input {
    max-width: 282px;
  }
}

.psyPage-conditions__title {
  margin-bottom: 30px;
}

@media (min-width: 47.99875em) {
  .desktop {
    display: block;
  }

  .method-header__descr {
    font-size: 16px;
  }

  .method-header__descr-accent {
    font-size: 16px;
  }

  .header--dark .header__contacts {
    color: #fff;
  }

  .header--dark .header__contacts svg {
    fill: #fff;
  }

  .header--dark .select__title {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .header--dark .select__value::after {
    -webkit-filter: brightness(4);
    filter: brightness(4);
  }
}

@media (min-width: 61.99875em) {
  .header--dark .menu {
    color: #fff;
  }

  .header--dark .menu svg {
    stroke: #fff;
  }
}

@media (min-width: 76.875em) {
  .title {
    font-size: 3rem;
  }

  .method-header__title {
    font-size: 1.5rem;
  }

  .header__logo {
    height: 3.0625rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__title span {
    font-size: 2.25rem;
  }

  .hero__sub-title {
    font-size: 2.25rem;
  }

  .hero__images .hero__img:nth-child(1) {
    max-width: 26.3125rem;
  }

  .hero__images .hero__img:nth-child(2) {
    max-width: 37.4375rem;
  }

  .how__list {
    gap: 8.125rem;
  }
}

@media (max-width: 1366px) {
  .problem__title {
    padding-left: 25px;
  }

  .problem__title:before {
    left: 0;
  }

  .problem__title::after {
    right: auto;
    left: -30px;
  }
}

@media (max-width: 1200px) {
  .aboutPage-hero__textBlock {
    /*position: static;*/
    /*max-width: none !important;*/
    /*padding-bottom: 0;*/
  }

  .price-item {
    padding: 16px;
  }

  .price-item>p {
    width: 100%;
  }

  .price-item a,
  .price-item .button {
    width: 100%;
  }

  .problem__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .aboutPage-team__list {
    padding: 0 10px;
  }

  .about-team__img {
    height: 500px;
  }

  .how-item__content {
    min-height: auto;
    width: 70%;
  }

  .aboutPage-hero__inner {
    /*display: flex;
		padding-top: 50px;

		flex-direction: column;
		gap: 30px;*/
  }

  .aboutPage-hero {
    /*margin-bottom: 50px;*/
  }

  .aboutPage-hero__title {}

  .aboutPage-hero__textBlock--left {
    /*order: 1;*/
  }

  .aboutPage-hero__img {
    position: static;
    text-align: right;
  }

  .how-item__counter {
    font-size: 150px;
  }

  .how-item__img {
    width: 70%;
  }

  .how__list li:nth-child(odd) .how-item__content {
    /* grid-template: auto auto / 40% 60%; */
  }

  .how__list li:nth-child(even) .how-item__content {
    /* grid-template: auto auto / 60% 40%; */
  }

  .how__list li:nth-child(even) .how-item__img {
    /*margin-left: 40%;*/
  }

  .how__list li:nth-child(odd) .how-item__img {
    /*margin-right: 40%;*/
  }

  .how__list li:nth-child(odd) .how-item__descr,
  .how__list li:nth-child(odd) .how-item__title {
    padding-top: 20px;
    padding-left: 10px;
  }

  .how__list li:nth-child(even) .how-item__descr,
  .how__list li:nth-child(even) .how-item__title {
    padding-left: 10px;
    padding-top: 20px;
  }

  .how-item__img img {
    max-height: 100%;
    height: 100%;
    width: 50%;
  }

  .how__list {
    gap: 250px !important;
  }
}

@media (max-width: 1100px) {
  .contact-frame {
    padding: 100px;
  }

  .certificate-coupon-item__btn a {
    min-width: auto;
    width: 100%;
  }

  .aboutPage-team {
    margin-bottom: 100px;
  }

  .certificate-top__title {
    font-size: 32px;
  }

  .certificate-top__text {
    font-size: 18px;
  }

  .certificate-top__text {
    margin-bottom: 30px;
  }

  .certificate-care {
    padding: 25px;
  }

  .certificate__how,
  .certificate__coupon,
  .certificate__care,
  .certificate__top {
    margin-bottom: 50px;
  }

  .certificate-how__title,
  .certificate-coupon__title {
    margin-bottom: 30px;
    font-size: 32px;
  }

  .certificate-how-item__text {
    font-size: 16px;
  }

  .certificate-how-item__title {
    font-size: 24px;
  }

  .aboutPage-counter--last .aboutPage-counter__num,
  .aboutPage-counter__num {
    font-size: 50px;
  }

  .certificate-care__text {
    font-size: 16px;
  }

  .certificate-coupon-item__title,
  .aboutPage-counter__title {
    margin-top: 20px;
  }

  .aboutPage-counter--last .aboutPage-counter__title,
  .aboutPage-counter__title {
    font-size: 28px;
  }

  .questions-form__item span {
    display: inline-block;
  }

  .questions-form__item input {
    max-width: 252px;
  }
}

@media (max-width: 992px) {
  .aboutPage__col {
    flex-direction: column;
  }

  .guarantee--mod .guarantee__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero__content {
    max-width: none;
  }

  .certificate-coupon-item {
    padding: 20px 10px;
    min-height: auto;
  }

  .aboutPage-hero__img {
    height: auto;
  }

  .aboutPage-hero__textBlock--right {
    max-width: none;
  }

  .certificate-coupon__btns {
    margin-bottom: 30px;
  }

  .aboutPage-hero__inner .aboutPage__col:nth-child(2) {
    flex-direction: column-reverse;
  }

  .questions-form__item input {
    max-width: none;
    width: 100%;
  }

  .certificate-coupon-item__text {
    font-size: 16px;
  }

  .problem__title {
    margin-bottom: 50px;
  }

  .problem__items {
    gap: 50px 10px;
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutPage-hero__textBlock {
    font-size: 16px;
  }

  .aboutPage-hero__inner::before {
    width: 100%;
    left: 0;
  }

  .psyPage-top__label {
    height: 80px;
    width: 50%;
  }

  .psyPage-top__label {
    font-size: 40px;
  }

  .psyPage {}

  .psyPage p {
    font-size: 16px;
    line-height: 1.2;
  }

  .psyPage-top__head {
    margin-bottom: 20px;
  }

  .psyPage__form {
    padding-top: 50px;
  }

  .psyForm__title {
    margin-bottom: 16px;
  }

  .psyForm__form,
  .psyForm__text,
  .psyLearn__list,
  .psyLearn__subText,
  .psyPage__howGet,
  .psy-howGet__title,
  .psyPage__list,
  .psyPage__requirements,
  .psyPage__conditions,
  .psyPage__requirements,
  .psyPage__subText,
  .psyPage__top {
    margin-bottom: 50px;
  }

  .psyLearnItem__title,
  .howGetItem__title,
  .psyPageItem__title,
  .psyText h2 {
    /* font-size: 24px; */
    font-size: 20px;
  }

  .psy-howGet__list,
  .psyPage__list {
    gap: 20px;
  }

  .psyTitle {
    font-size: 34px;
  }

  .psyPage-top__text p:not(:last-child) {
    margin-bottom: 10px;
  }

  .how__title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .how-item__title {
    font-size: 24px;
  }

  .how__list li:nth-child(even) .how-item__img {
    margin: 0 auto;
  }

  .how-item__content {
    width: 100%;
  }

  .how-item__descr {
    font-size: 16px;
    padding-top: 0;
  }

  .how-item__counter {
    font-size: 100px;
    margin-bottom: 0;
  }

  .how__list li:nth-child(even) .how-item {
    flex-direction: column !important;
  }

  .how__list {
    gap: 0 !important;
  }

  .how-item {
    padding: 25px 0;
  }

  .how-item__img {
    position: static;
    margin: 0 auto;
  }

  .how-item__counter {
    color: #0ea3dd;
  }

  .how__list {
    flex-direction: column;
    gap: 20px !important;
  }

  .guarantee {
    margin-bottom: 0 !important;
  }

  .guarantee__items {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    padding-top: 30px;
    gap: 20px;
    margin-bottom: 50px;
    justify-items: center;
  }

  .guarantee-form {
    transform: none !important;
    padding: 20px 0 !important;
  }

  .guarantee-form__btn,
  .guarantee-form__text {
    font-size: 16px;
  }

  .guarantee-form__btn {
    /*height: 50px;*/
  }

  .guarantee-item__img img {
    max-height: 100%;
  }

  .guarantee-item__img {
    height: 80px;
  }

  .guarantee-item {
    position: static !important;
    transform: none !important;
  }

  .guarantee-item::after {
    display: none;
  }

  .guarantee-item__descr {
    font-size: 16px;
  }

  .she-hero__inner {
    padding-top: 20px;
  }

  .she-mission__title,
  .she-hero__title {
    font-size: 32px;
  }

  .she-hero__title {
    margin-bottom: 50px;
  }

  .she-hero__bottom ul,
  .she-hero ul {
    font-size: 16px;
    line-height: 1.2;
    padding-left: 20px;
  }

  .she-cert__img,
  .she-mission__title {
    margin-bottom: 20px;
  }

  .she-hero__inner::before {
    /*height: 100px;*/
  }

  .she-hero__img {
    flex: 0 0 30%;
  }

  .she-mission__text {
    font-size: 18px;
  }

  .she-cert,
  .she-mission {
    padding-top: 0;
    margin-bottom: 50px;
  }

  .she-hero,
  .she-hero__bottom,
  .she-hero__top {
    margin-bottom: 50px;
  }
}

/*@media (max-width: 767.98px) {*/
@media(max-width:992px) {
  .aboutPage-team__list--left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .aboutPage-team__list>li {
    margin-left: 0 !important;
  }

  .aboutPage-team__list>li:nth-child(4),
  .aboutPage-team__list>li:nth-child(6) {
    top: 0;
    margin-left: 0;
  }

  .how-item {
    padding: 0;
  }

  .psyForm form,
  .psyForm__form {
    flex-direction: column;
  }

  .psyForm form .wpcf7-response-output {
    display: none;
  }

  .contact-frame__text {
    text-align: center;
  }

  .contact-frame__social-list {
    justify-content: center;
  }

  .contact-frame__social-list,
  .contact-frame__links {
    align-items: center;
    text-align: center;
  }

  .contact-page {
    margin-top: 30px;
  }

  .guarantee__title {
    margin-bottom: 40px !important;
  }

  .guarantee--mod {
    margin: 40px 0;
    padding: 40px 0;
  }

  /*.guarantee--mod .guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }*/
  .guarantee--mod .guarantee-item__img {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .guarantee--mod .guarantee__items {
    padding-top: 0;
    gap: 20px;
  }

  .guarantee--mod .guarantee-item__img::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ac .ac-trigger:focus,
  .ac .ac-trigger {
    padding: 10px 45px 10px 10px;

  }

  .ac-text {
    padding: 10px;
  }

  .certificate-top__title,
  .method__title,
  .team__container {
    padding-top: 28px;
  }

  .certificate-how-item__title {
    font-size: 20px;
  }

  .method__items {
    padding-top: 50px;
  }

  .psyho-page .price__items .price-item:nth-child(3) {
    top: -30px;
  }

  .accordion__container {
    margin-bottom: 50px;
  }

  .guarantee--mod .guarantee-item__descr p,
  .guarantee--mod .guarantee-item__title {
    text-align: center;
    padding-bottom: 0;
  }

  /*.guarantee--mod .guarantee-item__img img,
  .guarantee--mod .guarantee-item__img {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
  }*/
  .certificate-coupon__list .certificate-coupon-item,
  .certificate-coupon__btns .certificate-coupon__session {
    position: relative;
  }



  .certificate-coupon__btns .certificate-coupon__session:nth-child(2) {
    top: 350px;
  }

  .menu__list>li.menu-item-has-children::after {
    transition: 0;
  }

  .certificate .certificate-coupon__btns .certificate-coupon__session:nth-child(2) {
    top: 280px;
  }

  .certificate-coupon__list .certificate-coupon-item {
    /*top: -106px;*/
    top: -130px;
  }

  .certificate-coupon__btns .certificate-coupon__session:nth-child(3) {
    top: 700px;
  }

  .certificate .certificate-coupon__btns .certificate-coupon__session:nth-child(3) {
    top: 585px;
  }

  .certificate .certificate-coupon__list .certificate-coupon-item:nth-child(3) {
    top: -70px;
  }

  .certificate-coupon {
    margin-bottom: 30px;
  }

  .price__items .price-item {
    position: relative;
  }

  .she-hero__img {
    order: -1;
    height: 490px;
    flex: none;
  }

  .problem__title {
    padding-top: 28px;
  }

  .she-hero__img img {
    max-height: 100%;
  }

  .she-hero__inner::before {
    display: none;
  }

  .individual-page__header {
    padding-top: 28px;
  }

  .she-hero__top-left {
    position: absolute;
    top: 377px;
  }

  .texting {
    margin-bottom: 0;
  }

  .texting~.price {
    margin-top: 0;
    padding-top: 50px;
  }

  .she-hero__title {
    background-color: #0ea3dd;
    left: 0;
    height: 165px;
  }

  .she-hero__bottom {
    padding-top: 380px;
  }

  .she-hero__bottom>ul {
    padding-left: 0;
  }

  .price__items .price-item:nth-child(1) {
    /*top: -150px;*/
    top: -160px;
  }

  .price__items .price-item:nth-child(2) {
    /*top: -80px;*/
    top: -95px;
  }

  .price__items .price-item:nth-child(5) {
    /*top: -14px;*/
    top: -30px;
  }

  .individual-page .price__items .price-item:nth-child(2) {
    top: -30px;
  }

  .individual-page .price__items .price-item:nth-child(3) {
    top: -95px;
  }

  .certificate-coupon__session {
    max-width: none;
  }

  /*.certificate-coupon-item,*/
  .price-item {
    height: 326px;
  }

  .feedback {
    padding-top: 30px !important;
  }

  .how__list li:nth-child(even) .how-item__title {
    margin-bottom: 16px !important;
  }

  .questions__form form p {
    display: flex;
    flex-direction: column;
  }

  .aboutPage-team__list>li:nth-child(2) {
    order: inherit;
  }

  .header {
    margin-bottom: 0;
  }

  .button {
    /*padding: 10px;*/
  }

  .how-item__content {
    border-radius: 12px;
  }

  .psyPage__list {
    grid-template-columns: auto;
  }

  .psytitle {
    font-size: 24px;
  }

  .how-item__title {
    font-size: 20px;
  }

  .how-item__descr {
    padding-top: 0 !important;
  }

  .certificate-top__content {
    gap: 10px;
  }

  .how-item__btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .psyPage-top {
    grid-template-columns: auto;
    justify-items: center;
  }

  .repeattext:not(:last-child) {
    margin-bottom: 30px;
  }

  .imaga {
    margin-bottom: 20px;
  }

  .texting>p:nth-child(1) {
    padding-top: 30px;
    padding-top: 0;
    margin-top: 30px;
  }

  .psyPage h1 {
    padding-top: 28px;
  }

  .psyPage-requirements,
  .psyPage-conditions {
    padding-top: 0;
  }

  .psyPage-conditions__title {
    padding-top: 30px;
  }

  .team__title {
    /*padding-top: 28px;*/
  }



  .individual-page__line {
    margin-bottom: 30px;
  }

  .aboutPage-hero__inner {
    padding-top: 20px;
  }

  .help__list {
    flex-direction: column;
    gap: 20px !important;
  }

  .help__list li {
    height: auto;
    flex: 1;
    margin-bottom: 0 !important;
  }

  .she-mission__row,
  .she-hero__bottom,
  .she-hero__top {
    flex-direction: column;
  }

  .she-mission__text {
    font-size: 16px;
  }

  .she-mission__img::before {
    height: 150px;
  }

  .certificate-top__btn .button {
    width: 100%;
  }

  .certificate-how-item {
    gap: 15px;
  }

  .certificate-top__text {
    font-size: 16px;
  }

  .certificate-coupon__list,
  .certificate-how__list {
    flex-direction: column;
  }

  .certificate-coupon__btns {
    flex-direction: column;
  }

  .certificate-coupon__session {
    /* height: 50px; */
    width: 100%;
    flex: 1 !important;
    padding: 12px;
    font-size: 18px;
  }

  .certificate-how-item__num {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .certificate-top__title,
  .certificate-top__text {
    margin-bottom: 20px;
  }

  .certificate-top__row {
    flex-direction: column;
  }

  .problem__title {
    font-size: 34px;
  }

  .problem__items {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }


  .problem__title::after {
    height: 4px;
    width: 120%;
  }

  .problem-item__body {
    padding: 20px 5px;
  }

  .problem-item {
    width: auto;
  }

  .problem-item__img {
    text-align: center;
  }

  .about-team__img {
    height: 350px;
  }

  .aboutPage-team__list {
    gap: 40px;
  }

  .about-team__body {
    padding-top: 20px;
  }

  .aboutPage-team__title,
  .aboutPage-hero__title {
    font-size: 34px;
  }

  .about-team__title {
    font-size: 24px;
  }

  .aboutPage-team__text p:not(:last-child) {
    margin-bottom: 10px;
  }

  .aboutPage-counters__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .aboutPage-counter__text,
  .aboutPage-team__text,
  .about-team__text {
    font-size: 16px;
  }

  .aboutPage-counter__title {
    font-size: 24px;
    margin-top: 10px;
  }

  .aboutPage-counters__list .aboutPage-counter:nth-child(2),
  .aboutPage-counters__list .aboutPage-counter:nth-child(3) {
    margin-bottom: 0;
  }

  .aboutPage-counters {
    margin-bottom: 40px;
  }

  .aboutPage-team {
    margin-bottom: 40px;
  }

  .certificate-coupon__list .certificate-coupon-item:nth-child(1) {
    top: -165px;
  }

  .aboutPage-team__text,
  .aboutPage-team__title {
    margin-bottom: 20px;
  }

  .aboutPage-team__body {
    flex-direction: column;
  }

  .aboutPage-hero__textBlock {
    padding: 10px 0;
  }

  .aboutPage-hero__textBlock p:not(:last-child) {
    margin-bottom: 10px;
  }

  .aboutPage-team__inner {
    padding-top: 20px;
  }

  .psyPage-top__label {
    margin-right: 0;
    width: 100%;
    /*margin-bottom: 15px;*/
    margin-bottom: 0;
    font-size: 34px;
    height: 50px;
    height: auto;
  }

  .psyPage__form {
    padding-top: 20px;
  }

  .psyTitle {
    font-size: 24px;
  }

  .guarantee-form__img {
    display: none;
  }

  .psyFormItem {
    /*flex: 1;*/
    max-width: none;
  }

  .psyFormItem input {
    padding: 10px 15px;
  }

  .psyText:not(:last-child),
  .psyForm__form,
  .psyForm__text,
  .psyLearn__list,
  .psyLearn__subText,
  .psyPage__howGet,
  .psy-howGet__title,
  .psyPage__list,
  .psyPage__requirements,
  .psyPage__conditions,
  .psyPage__requirements,
  .psyPage__subText,
  .psyPage__top {
    margin-bottom: 20px;
  }

  .psyLearnItem__title,
  .howGetItem__title,
  .psyPageItem__title,
  .psyText h2 {
    font-size: 18px;
  }

  .how-item__img {
    height: auto;
  }

  .guarantee-form__inner {
    display: block;
    text-align: center;
  }

  .how__list li:nth-child(even) .how-item__content {
    grid-template: auto auto / 60% 40%;
  }

  .how__list li:nth-child(odd) .how-item__content {
    grid-template: auto auto / 40% 60%;
  }

  .guarantee-form__btn {
    width: 230px;
    margin: 0 auto;
  }

  .guarantee {
    padding-bottom: 70px;
  }

  .certificate-how__list {
    align-items: center;
  }

  .certificate-coupon__list .certificate-coupon-item {
    max-width: none;
  }

  .certificate-coupon__list .certificate-coupon-item {
    height: 288px;
    flex: none;
  }
}

@media(max-width:767.98px) {
  .problem__items {
    gap: 30px;
    grid-template-columns: auto;
  }
}

@media (max-width: 576px) {
  .psyForm__title {
    font-size: 24px;
  }

  .guarantee--mod .guarantee__items {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutPage-team__list>li:nth-child(4),
  .aboutPage-team__list>li:nth-child(6) {
    top: 0;
  }

  .aboutPage-team__list--left {
    display: flex;
    flex-direction: column;
  }

  .guarantee__items {
    /*grid-template-columns: auto;*/
  }

  .psyForm__form {
    flex-direction: column;
  }

  .psyText .button {
    width: 100%;
  }

  .psyPage__list {
    grid-template-columns: auto;
  }

  .psyText .button+.button {
    margin-left: 0;
    margin-top: 20px;
  }

  .how-item__counter {
    font-size: 80px;
  }

  .how__list li:nth-child(even) .how-item__content {
    grid-template: auto auto / 70% 30%;
  }

  .how-item__title {
    padding-right: 0 !important;
  }

  .how__list li:nth-child(odd) .how-item__content {
    grid-template: auto auto / 30% 70%;
  }

  .how__list li:nth-child(odd) .how-item__descr,
  .how__list li:nth-child(odd) .how-item__title {
    padding-right: 10px;
  }

  .how__list li:nth-child(odd) .how-item__descr,
  .how__list li:nth-child(odd) .how-item__title {
    padding-top: 10px;
  }

  .how__list li:nth-child(even) .how-item__descr,
  .how__list li:nth-child(even) .how-item__title {
    padding-right: 0;
    padding-top: 10px;
    margin-bottom: 0;
  }

  .how__list li:nth-child(odd) .how-item__descr,
  .how__list li:nth-child(even) .how-item__descr {
    padding-bottom: 10px;
  }
}

/*@media (max-width: 61.99875em) {*/
@media(max-width:992px) {
  .psychologists-page .texting form {
    width: 100%;
  }

  .guarantee__items {
    height: auto;
  }

  .how-item__img img {
    width: 100%;
  }

  .guarantee-item {
    justify-content: flex-start;
  }

  .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: flex-start;
    gap: 36px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 15px;
  }

  .how__list li:nth-child(odd) .how-item .how-item__content {
    margin-left: 0;
  }

  .how__list li:nth-child(even) .how-item .how-item__content {
    margin-right: 0;
  }

  .menu__list li {
    width: 100%;
  }

  .menu__list {
    white-space: normal;
  }

  .sub-menu,
  .menu__sub-list {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-top: 0;
  }

  .sub-menu,
  .menu__sub-list ul {
    -webkit-box-shadow: none;
    box-shadow: none;
    white-space: normal;
  }

  .icon-menu {
    z-index: 15;
    display: block;
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    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;
  }

  .icon-menu span,
  .icon-menu::after,
  .icon-menu::before {
    content: '';
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    width: 18px;
    height: 0.125rem;
    background-color: #000;
  }

  .icon-menu::before {
    top: 4px;
  }

  .icon-menu::after {
    bottom: 4px;
    left: calc(50% + 2px);
    width: 14px;
  }

  .icon-menu span {
    top: calc(50% - 0.0625rem);
  }

  .menu-open .icon-menu span {
    width: 0;
  }

  .menu-open body,
  .menu-open html {
    touch-action: none;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: none;
    height: 100vh;
  }

  .menu-open .icon-menu::before {
    top: calc(50% - 0.0625rem);
    -webkit-transform: translateX(-40%) rotate(-45deg);
    -ms-transform: translateX(-40%) rotate(-45deg);
    transform: translateX(-40%) rotate(-45deg);
  }

  .menu-open .icon-menu::after {
    bottom: calc(50% - 0.0625rem);
    -webkit-transform: translateX(-50%) rotate(45deg);
    -ms-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
    width: 18px;
  }

  .contact-page .questions {
    margin: -1px 0;
  }

  .contact-page .questions__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    position: inherit;
  }

  .contact-page .questions__form {
    width: 100%;
  }

  .contact-page .questions__col {
    max-width: none;
  }

  .contact-page .questions-form__title {
    text-align: center;
  }

  .title-md {
    font-size: 24px;
  }

  .menu-open body {
    position: relative;
  }

  .menu-open body::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.8;
    background: #0d142c;
  }

  .menu-open .menu__body {
    overflow-y: auto;
    padding: 13px 32px 24px 24px;
    height: 100vh;
    right: 0;
    width: 100%;
  }

  .header-lang__btn {
    height: 40px;
  }

  .page {
    /*padding-top: 85px;*/
  }

  .guarantee__title {
    padding-top: 50px;
  }

  .how-item {
    gap: 0;
  }

  .how-item__content {
    border-radius: 0 0 12px 12px;
  }

  .menu {
    z-index: 1;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .menu__body {
    z-index: 10;
    position: fixed;
    right: -100%;
    top: 0;
    background-color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;



  }

  .menu__list li {

    text-align: center;
  }

  .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: flex-start;
    gap: 36px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 15px;
  }

  .children,
  .menu__sub-list ul {
    gap: 20px;
    padding: 32px 0 5px;
    font-size: 14px;
  }

  .hero::before {
    right: 15px;
    width: 66px;
    height: 66px;
    left: auto;
    background-size: contain;
    bottom: 50px;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .hero::after {
    height: 40px;
  }

  .hero__title {
    margin-bottom: 12px;
  }

  .hero__sub-title {
    margin-bottom: 20px;
  }

  .hero__descr {
    font-size: 14px;
  }

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

  .hero__images {
    padding-top: 90px;
    padding-left: 15px;
    position: relative;
    margin-left: -15px;
  }

  .hero__images .hero__img:nth-child(2) {
    top: 34px;
  }

  .individual-page__breadcrumbs {
    display: none;
  }

  .guarantee {
    margin-bottom: 400px;
  }

  .guarantee::after {
    display: none;
  }

  .individual-page__line {
    justify-content: flex-start;
  }

  .guarantee__items {
    /*display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;*/
  }

  .guarantee-form {
    padding: 32px 24px;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    top: calc(100% - 35px);
    position: static;
  }

  .guarantee-form__title {
    font-size: 20px;
  }

  .guarantee-form__item>p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .feedback-slide {
    max-width: none;
  }

  .questions::before {
    display: none;
  }

  .questions__img {
    display: none;
  }

  .questions__form {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 61.99875em) and (any-hover: none) {
  .icon-menu {
    cursor: default;
  }
}

/*@media (max-width: 47.99875em) {*/
@media(max-width:992px) {
  .mobile {
    display: block;
  }

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

  .method__items-wrapper {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .method-header {
    line-height: 1.2;
  }

  .method-header__text {
    gap: 20px;
  }

  .psyho-card__img {
    text-align: center;
  }

  .psyho-card__descr {
    font-size: 14px;
    gap: 10px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }

  .psyho-card__tabs .tabs .tabs__body-articles .team-card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }

  .psyho-card__tabs .tabs__navigation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .psyho-card__tabs .tabs__title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    width: 100%;
  }

  .team__cards {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }

  .team-card__img {
    text-align: center;
  }

  .breadcrumb {
    margin-bottom: 32px;
  }

  .texting {
    margin-bottom: 30px;
  }

  .social.desktop {
    display: none;
  }

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

  .footer__top {
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
  }

  .footer__central {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .contact-page .questions-form__item,
  .questions-form__item>p {
    gap: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .questions-form__title {
    font-size: 24px;
    margin-bottom: 32px;
  }

  .section {
    padding: 30px 0;
    margin-top: 30px;
  }

  .section__title {
    font-size: 24px;
  }

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

  .help__title {
    margin-bottom: 32px;
    text-align: center;
  }

  .help__images {
    text-align: center;
  }

  .help__images .help__img:nth-child(2) {
    display: none;
  }

  .help__list {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    justify-items: center;
  }

  .help__list li {
    width: 100%;
  }

  .how__title {
    margin-bottom: 40px;
  }

  .header__lang {
    margin-bottom: 34px;
  }

  .header__lang .select__options {
    width: 70px;
    margin-top: 8px;
    min-width: auto;
  }

  .header__lang .select__option,
  .header__lang .select__title {
    font-size: 14px;
  }

  .header__lang .select__title {
    height: 40px;
  }

  .header__contacts {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 24px;
    margin-right: 0;
    justify-content: center;
  }

  .header__social {
    justify-content: center;
    margin-right: 0;
  }

  .menu__list>li.menu-item-has-children::after {
    right: 30%;
    top: 8px !important;
  }

  .mobile-mail,
  .header__contacts li {
    text-align: center;
    width: 100%;
  }

  .sub-menu {
    gap: 36px;
  }

  .sub-menu.active {
    padding-top: 36px;

  }

  .sub-menu li {
    font-size: 16px;
  }

  #menu-item-128 {
    justify-content: center;
  }

  .header__social.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
  }

  .mobile-mail {
    color: #37587d;
    margin-bottom: 40px;
  }

  .mobile-mail svg {
    margin-right: 4px;
    width: 20px;
    height: 20px;
    fill: #37587d;
  }

  .how__list li:nth-child(even) .how-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

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

  .how-item__img {
    /*margin-bottom: 24px;*/
    margin-bottom: 0;
  }

  .how-item__title {
    margin-bottom: 16px;
  }

  .price-item {
    padding: 24px 16px;
  }

  .price-item__title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .price__title {
    margin-bottom: 40px;
  }

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

@media (max-width: 29.99875em) {
  .texting .button {
    width: 100%;
  }

  .contact-frame {
    padding: 15px;
  }
}

@media (max-width: 23.4375em) {
  .title {
    font-size: 2rem;
  }

  .method-header__title {
    font-size: 1.125rem;
  }

  .header__logo {
    height: 1.75rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .hero__title span {
    font-size: 1.5rem;
  }

  .hero__sub-title {
    font-size: 1.25rem;
  }

  .hero__images .hero__img:nth-child(1) {
    max-width: 12.5625rem;
  }

  .hero__images .hero__img:nth-child(2) {
    max-width: 18.0625rem;
  }

  .how__list {
    /*gap: 4rem;*/
    gap: 20px !important;
  }
}

@media (min-width: 23.4375em) and (max-width: 76.875em) {
  @supports (font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem)) {
    .title {
      font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem);
    }
  }

  @supports not (font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem)) {
    .title {
      font-size: calc(2rem + 1 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (font-size: clamp(1.125rem, 0.9605263158rem + 0.701754386vw, 1.5rem)) {
    .method-header__title {
      font-size: clamp(1.125rem, 0.9605263158rem + 0.701754386vw, 1.5rem);
    }
  }

  @supports not (font-size: clamp(1.125rem, 0.9605263158rem + 0.701754386vw, 1.5rem)) {
    .method-header__title {
      font-size: calc(1.125rem + 0.375 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (height: clamp(1.75rem, 1.1743421053rem + 2.4561403509vw, 3.0625rem)) {
    .header__logo {
      height: clamp(1.75rem, 1.1743421053rem + 2.4561403509vw, 3.0625rem);
    }
  }

  @supports not (height: clamp(1.75rem, 1.1743421053rem + 2.4561403509vw, 3.0625rem)) {
    .header__logo {
      height: calc(1.75rem + 1.3125 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem)) {
    .hero__title {
      font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem);
    }
  }

  @supports not (font-size: clamp(2rem, 1.5614035088rem + 1.8713450292vw, 3rem)) {
    .hero__title {
      font-size: calc(2rem + 1 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (font-size: clamp(1.5rem, 1.1710526316rem + 1.4035087719vw, 2.25rem)) {
    .hero__title span {
      font-size: clamp(1.5rem, 1.1710526316rem + 1.4035087719vw, 2.25rem);
    }
  }

  @supports not (font-size: clamp(1.5rem, 1.1710526316rem + 1.4035087719vw, 2.25rem)) {
    .hero__title span {
      font-size: calc(1.5rem + 0.75 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (font-size: clamp(1.25rem, 0.8114035088rem + 1.8713450292vw, 2.25rem)) {
    .hero__sub-title {
      font-size: clamp(1.25rem, 0.8114035088rem + 1.8713450292vw, 2.25rem);
    }
  }

  @supports not (font-size: clamp(1.25rem, 0.8114035088rem + 1.8713450292vw, 2.25rem)) {
    .hero__sub-title {
      font-size: calc(1.25rem + 1 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (max-width: clamp(12.5625rem, 6.5317982456rem + 25.730994152vw, 26.3125rem)) {
    .hero__images .hero__img:nth-child(1) {
      max-width: clamp(12.5625rem,
          6.5317982456rem + 25.730994152vw,
          26.3125rem);
    }
  }

  @supports not (max-width: clamp(12.5625rem, 6.5317982456rem + 25.730994152vw, 26.3125rem)) {
    .hero__images .hero__img:nth-child(1) {
      max-width: calc(12.5625rem + 13.75 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (max-width: clamp(18.0625rem, 9.5646929825rem + 36.2573099415vw, 37.4375rem)) {
    .hero__images .hero__img:nth-child(2) {
      max-width: clamp(18.0625rem,
          9.5646929825rem + 36.2573099415vw,
          37.4375rem);
    }
  }

  @supports not (max-width: clamp(18.0625rem, 9.5646929825rem + 36.2573099415vw, 37.4375rem)) {
    .hero__images .hero__img:nth-child(2) {
      max-width: calc(18.0625rem + 19.375 * (100vw - 23.4375rem) / 53.4375);
    }
  }

  @supports (gap: clamp(4rem, 2.1907894737rem + 7.7192982456vw, 8.125rem)) {
    .how__list {
      gap: clamp(4rem, 2.1907894737rem + 7.7192982456vw, 8.125rem);
    }
  }

  @supports not (gap: clamp(4rem, 2.1907894737rem + 7.7192982456vw, 8.125rem)) {
    .how__list {
      gap: calc(4rem + 4.125 * (100vw - 23.4375rem) / 53.4375);
    }
  }
}

.sub-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (any-hover: hover) {
  .select__option:hover {
    background: #d9d9d9;
  }

  .menu__list>li>a:hover {
    color: #0ea3dd;
  }

  .menu__list>li:hover svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    stroke: #0ea3dd;
  }

  .menu__list>li:hover .sub-menu,
  .menu__list>li:hover .menu__sub-list,
  .sub-menu.active,
  .menu__list>li:hover.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .service-item:hover {
    -webkit-box-shadow: -2px 5px 19px 1px #37587d;
    box-shadow: -2px 5px 19px 1px #37587d;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    z-index: 2;
  }
}