@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
}

@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

@media screen and (min-width: 1920px) {
  body {
    font-size: 16px;
  }
}

ul {
  list-style: none;
}

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

.wrapper {
  display: -ms-grid;
  display: grid;
  min-height: 100vh;
  -ms-grid-rows: auto 1fr auto;
  grid-template-rows: auto 1fr auto;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
}

a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}


:root {
  --black: #414148;
  --blue: #565acf;
  --dark-blue: #1f2278;
  --orange: #f17732;
  --light-gery: #eeeefa;
  --white: #fff;
  --main-active: var(--blue);
  --secondary-active: var(--orange);
  --text: var(--black);
  --text-decorate: var(--dark-blue);
  --text-invert: var(--white);
}

.advice {
  position: relative;
  padding: 15px;
  font-style: italic;
  color: #1f2278;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
}

.advice__title {
  margin-bottom: 20px;
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .advice__text {
    max-width: 55%;
  }
}

.advice__footer p {
  width: 50%;
  margin-bottom: 0.25rem;
}

.advice__image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 150px;
  height: 140px;
  border-bottom-right-radius: 8px;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .advice__image {
    width: 350px;
    height: 330px;
  }
}

.breadcrumbs {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 24px;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1;
  color: var(--text-invert);
  background-color: #565acf;
  box-shadow: 0 1.78275px 8.91374px rgba(86, 90, 207, 0.3);
  border-radius: 8px;
}

@media screen and (min-width: 1920px) {
  .breadcrumbs {
    font-size: 18px;
  }
}

.breadcrumbs__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.breadcrumbs__link svg {
  display: block;
  margin-right: 8px;
  margin-bottom: 4px;
}

.breadcrumbs__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumbs__item::after {
  content: url("../images/slash.svg");
  line-height: 1;
  margin-left: 8px;
}

.breadcrumbs__item:last-child::after {
  display: none;
}

.breadcrumbs__item+.breadcrumbs__item {
  margin-left: 10px;
}

.button {
  height: 65px;
  padding: 0 10px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-invert);
  background-color: var(--main-active);
  border-radius: 2px solid var(--main-active);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

@media (min-width: 395px) {
  .button {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .button {
    height: 50px;
    font-size: 15px;
  }
}

.button_rounded {
  border-radius: 8px;
}

.button_smaller {
  height: 60px;
}

.button_small {
  width: 50px;
  height: 50px;
}

.button_smallest {
  width: 40px;
  height: 40px;
}

.button_prime:hover {
  color: #1f2278;
  background-color: #fff;
  border-color: var(--main-active);
}

.button_secondary {
  background-color: var(--secondary-active);
  border-color: var(--secondary-active);
}

.button_secondary:hover {
  background-color: #fff;
  color: #1f2278;
}

.button_icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -moz-column-gap: 15px;
  column-gap: 15px;
}

.button_icon svg {
  fill: currentColor;
  pointer-events: none;
}

.button_icon_square {
  position: relative;
  padding-right: 57px;
}

@media screen and (min-width: 768px) {
  .button_icon_square {
    padding-right: 45px;
  }
}

@media screen and (min-width: 768px) {
  .button_icon_mobile {
    padding-right: 10px;
  }

  .button_icon_mobile .button__icon {
    display: none;
  }
}

.button__icon {
  position: absolute;
  top: 50%;
  right: 8px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  color: var(--main-active);
  background-color: #fff;
  border-radius: 8px;
  transform: translateY(-50%);
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .button__icon {
    right: 5px;
    height: 40px;
    width: 40px;
  }

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

.button_weak {
  background-color: var(--light-gery);
}

.button_alternate:hover {
  opacity: 0.5;
}

.button_disabled {
  pointer-events: none;
}

.button_disabled:hover {
  color: var(--text-invert);
}

.button_disabled:hover .button_prime {
  background-color: var(--main-active);
}

.button_disabled:hover .button_secondary {
  background-color: var(--secondary-active);
}

@media screen and (min-width: 768px) {
  .button__mobile-text {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .contacts {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(300px, 1fr))[2];
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    grid-column-gap: 20px;
  }

  .contacts .title_h2 {
    font-size: 30px;
  }
}

@media screen and (min-width: 1920px) {
  .contacts {
    -ms-grid-columns: 463px 657px;
    grid-template-columns: 463px 657px;
  }
}

.contacts__block+.contacts__block {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .contacts__block+.contacts__block {
    margin-top: 0;
  }
}

.contacts__block_content {
  padding: 30px 15px;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .contacts__block_content {
    padding: 66px 33px;
  }
}

@media screen and (min-width: 1000px) {
  .contacts__block_content {
    padding: 80px 45px;
  }
}

.contacts__image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 570px;
  border-radius: 8px;
  object-fit: cover;
}

.contacts__address-block+.contacts__address-block {
  margin-top: 30px;
}

.contacts__address-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 1px solid #e6e7ff;
}

.contacts__address-title svg {
  margin-right: 14px;
  fill: currentColor;
}

.contacts__small {
  font-size: 15px;
  font-weight: 500;
  color: #1f2278;
}

.contacts__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.contacts__social .button svg {
  width: 30px;
  height: 30px;
}

.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .container_service {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.expandable__toggle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}

.expandable__toggle * {
  pointer-events: none;
}

.expandable__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}

/*.faq__item + .faq__item {
  margin-top: 20px;
}*/
.faq__toggle {
  padding: 15px;
  font-weight: 700;
  color: var(--text-invert);
  background-color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(86, 90, 207, 0.3);
  transition: all 0.25s ease-in-out;
}

.faq__toggle svg {
  width: 20px;
  height: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  fill: currentColor;
  transition: transform 0.25s ease-in-out;
}

.faq__toggle.expandable__toggle_active svg {
  transform: rotate(-180deg);
}

/*@media screen and (min-width: 768px) {
  .faq__question {
    padding-right: 190px;
  }
}*/
.faq__answer {
  margin-top: -15px;
  padding: 30px 15px 15px 15px;
  font-size: 16px;
  line-height: 1.5;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
}

.footer {
  position: relative;
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #f7f7ff;
}

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

@media screen and (min-width: 768px) {
  .footer::before {
    height: 60px;
  }
}

@media screen and (min-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}

.footer__popup {
  position: relative;
  z-index: 1;
  margin-top: -90px;
  margin-bottom: 55px;
  padding: 20px 50px;
  text-align: center;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
}

@media(max-width: 1000px) {
  .footer__popup {
    flex-direction: column;
    align-items: baseline !important;
  }

  .footer__popup-title {
    margin-bottom: 15px !important;
  }
}

@media(max-width: 768px) {
  .footer__popup-social {
    justify-content: flex-start !important;
  }

  .footer__popup-title {
    text-align: left !important;
  }

  .footer__popup {
    padding: 20px !important;
  }
}


@media screen and (min-width: 768px) {
  .footer__popup {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 136px;
    margin-top: -60px;
    text-align: left;
  }
}

.footer__popup-title {
  margin-bottom: 20px;
  font-size: 21px;
  line-height: 29px;
}

@media screen and (min-width: 768px) {
  .footer__popup-title {
    margin-bottom: 0;
  }

  .footer__popup-title.title {
    line-height: 1.5;
  }
}

.footer__popup-title br {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer__popup-title br {
    display: block;
  }
}

.footer__logo {
  display: block;
  width: 100%;
  max-width: 316px;
  margin: 0 auto 15px auto;
}

.footer__button {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .footer__button {
    width: 306px;
  }
}

@media screen and (min-width: 768px) and (min-width: 1000px) {
  .footer__button {
    display: none;
  }
}

.footer__slogan {
  margin-bottom: 30px;
  font-size: 15px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__slogan {
    text-align: left;
    font-size: inherit;
  }
}

.footer__title {
  margin-bottom: 15px;
}

.footer__menu {
  margin-bottom: 30px;
  font-size: 15px;
}

@media screen and (min-width: 768px) {
  .footer__menu {
    margin-bottom: 0;
  }
}

.footer__menu-item+.footer__menu-item {
  margin-top: 0.25rem;
}

.footer__menu-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}

.footer__menu-link:hover {
  color: var(--secondary-active);
}

.footer__address {
  grid-row: 1/2;
  grid-column: 3/4;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .footer__address {
    margin-bottom: 0;
  }
}

.footer__address-block+.footer__address-block {
  margin-top: 25px;
}

.footer__address-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.footer__address-icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
}

.footer__address-icon svg {
  fill: currentColor;
}

.footer__small {
  padding-left: 35px;
  font-size: 14px;
  line-height: 1;
}

.footer__social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
  padding-left: 35px;
}

.footer #map {
  height: 240px;
}

.footer__map {
  margin-bottom: 20px;
  grid-row: 2/3;
  grid-column: 1/4;
}

@media screen and (min-width: 768px) {
  .footer__map {
    margin-bottom: 0;
  }
}

.footer__copy {
  padding-top: 20px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: #1f2278;
  border-top: 1px solid rgba(31, 34, 120, 0.2);
  grid-row: 3/4;
  grid-column: 1/4;
}

@media screen and (min-width: 768px) {
  .footer__copy {
    padding-top: 30px;
  }
}

.footer__copy a {
  color: inherit;
  transition: color 0.25s ease-in-out;
}

.footer__copy a:hover {
  color: var(--secondary-active);
}

.footer__hidden {
  display: none;
}

@media screen and (min-width: 768px) {
  .footer__hidden {
    display: inline;
  }
}

@media screen and (min-width: 768px) {
  .footer__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(200px, 1fr))[3];
    grid-template-columns: repeat(3, minmax(200px, 1fr));
    -ms-grid-rows: (auto)[3];
    grid-template-rows: repeat(3, auto);
    grid-column-gap: 20px;
    grid-row-gap: 35px;
  }
}

.footer__form {
  display: none;
}

@media screen and (min-width: 1024px) {
  .footer__form {
    display: block;
  }
}

.form__group+.form__group {
  margin-top: 20px;
}

.form__input {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  height: 50px;
  width: 100%;
  padding: 20px;
  font-size: 18px;
  border: 2px solid #e6e7ff;
  border-radius: 8px;
}

.form__input_big {
  height: 60px;
}

.form__submit {
  width: 100%;
}

.form__row {
  display: -ms-flexbox;
  display: flex;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
  padding: 28px 0;
  background-color: var(--white);
  box-shadow: 0 6px 12px -6px rgba(0, 0, 0, 0.16);
}

.header__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (min-width: 1920px) {
  .header .container {
    max-width: 1270px;
  }
}

.header__logo {
  display: inline-block;
  width: 265px;
  margin-right: 30px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1920px) {
  .header__logo {
    margin-right: 60px;
  }
}

.header__phone {
  display: none;
  margin-left: 15px;
  margin-right: 50px;
  line-height: 1.4;
  color: #1f2278;
}

.header__phone-small {
  font-size: 15px;
  font-weight: 600;
}

.header__phone-link {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .header__phone {
    display: block;
  }
}

.header__button {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  color: #1f2278;
}

.header__button_phone {
  margin-left: auto;
}

.header__button_menu {
  margin-left: 10px;
}

@media screen and (min-width: 1920px) {
  .header__button_menu {
    display: none;
  }
}

.hero-inner {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .hero-inner {
    padding: 82px 0;
  }
}

@media screen and (min-width: 1920px) {
  .hero-inner {
    padding: 102px 0;
  }
}

.hero-inner_contacts {
  background-image: url("../images/hero-inner-contacts.png");
}

@media screen and (min-width: 768px) {
  .hero-inner_contacts {
    background-image: url("../images/hero-inner-contacts_desktop.png");
  }
}

.hero-inner_reviews {
  background-image: url("../images/hero-inner-reviews.png");
}

@media screen and (min-width: 768px) {
  .hero-inner_reviews {
    background-image: url("../images/hero-inner-reviews_desktop.png");
  }
}

.hero-inner_prices {
  background-image: url("../images/hero-inner-prices.png");
}

@media screen and (min-width: 768px) {
  .hero-inner_prices {
    background-image: url("../images/hero-inner-prices_desktop.png");
  }
}

.hero-inner_service {
  background-image: url("../images/hero-inner-service.png");
}

@media screen and (min-width: 768px) {
  .hero-inner_service {
    background-image: url("../images/hero-inner-service_desktop.png");
  }
}

.hero-inner__title {
  margin-bottom: 15px;
}

.hero {
  padding: 35px 0 60px;
  background-image: url("../images/hero.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 768px) {
  .hero {
    padding: 115px 0;
    background-image: url("../images/hero__desktop.png");
  }
}

@media screen and (min-width: 1920px) {
  .hero {
    padding: 244px 0 305px 0;
  }
}

.hero__title {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .hero__title {
    margin-bottom: 25px;
  }
}

.hero__button {
  width: 100%;
}

.hero__button+.hero__button {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .hero__button {
    width: 230px;
  }

  /* .hero__button.change-btn {
    width: 285px;
  } */

  .hero__button+.hero__button {
    margin-top: 0;
  }
}

.hero__footer {
  padding-top: 65px;
}

@media screen and (min-width: 768px) {
  .hero__footer {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding-top: 0;
  }
}

.hero__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media screen and (min-width: 768px) {
  .hero .title_h1 {
    font-size: 36px;
    max-width: 530px;
  }
}

@media screen and (min-width: 1000px) {
  .hero .title_h1 {
    font-size: 45px;
  }
}

@media screen and (min-width: 1920px) {
  .hero .title_h1 {
    max-width: 772px;
    font-size: 52px;
  }
}

.introduce {
  position: relative;
  margin-top: 100px !important;
}

@media screen and (min-width: 1000px) {
  .introduce__title {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}

@media screen and (min-width: 1000px) {
  .introduce__label {
    grid-column: 2/3;
    grid-row: 1/2;
    justify-self: start;
  }
}

@media screen and (min-width: 1000px) {
  .introduce {
    display: -ms-grid;
    display: grid;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 25px;
    -ms-grid-columns: (minmax(400px, 1fr))[2];
    grid-template-columns: repeat(2, minmax(400px, 1fr));
    -ms-grid-rows: 55px 100px auto auto auto;
    grid-template-rows: 55px 100px auto auto auto;
  }
}

.introduce__image {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .introduce__image {
    position: absolute;
    top: 85px;
    right: 0;
    z-index: -1;
    width: 400px;
  }
}

.introduce__image img {
  width: 100%;
  border-radius: 20px;
}

@media screen and (min-width: 1000px) {
  .introduce__image {
    position: static;
    width: 100%;
    grid-column: 1/2;
    grid-row: 1/4;
    margin-top: 100px;
  }
}

@media screen and (min-width: 1000px) {
  .introduce__image {
    margin-top: 0;
  }
}

.introduce__capture {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .introduce__capture {
    margin-bottom: 30px !important;
    white-space: nowrap;
  }
}

.introduce__text {
  margin-bottom: 40px;
}

.introduce__text p:last-child {
  margin-bottom: 0;
}

.introduce__text ul:last-child {
  margin-bottom: 0;
}

.introduce__text-wrapper {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .introduce__text-wrapper {
    width: 45%;
  }
}

@media screen and (min-width: 1000px) {
  .introduce__text-wrapper {
    width: auto;
  }
}

@media screen and (min-width: 1000px) {
  .introduce__text {
    grid-column: 2/3;
    grid-row: 3/7;
    margin-bottom: 0;
  }
}

.introduce__certificates {
  margin-bottom: 25px;
}

@media screen and (min-width: 1000px) {
  .introduce__certificates {
    grid-column: 1/2;
    grid-row: 4/5;
  }
}

.introduce__certificates-header {
  margin-bottom: 25px;
}

@media screen and (min-width: 768px) {
  .introduce__certificates-header {
    margin-bottom: 0;
  }
}

.introduce__certificates-body {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .introduce__certificates-body {
    width: 590px;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 auto;
    /*overflow: visible;*/
  }
}

@media screen and (min-width: 1000px) {
  .introduce__certificates-body {
    width: 100%;
  }
}

.introduce__certificates-item {
  position: relative;
  height: 220px;
  padding: 8px;
  background-color: #fff;
  border: 2px solid #e6e7ff;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .introduce__certificates-item {
    height: 156px;
  }
}

.introduce__certificates-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 71, 116, 0.6);
  background-image: url("../images/search-plus.svg");
  background-position: center;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.introduce__certificates-item+.introduce__certificates-item {
  margin-left: 8px;
}

@media screen and (min-width: 768px) {
  .introduce__certificates-item+.introduce__certificates-item {
    margin-left: 15px;
  }
}

.introduce__certificates-item:hover {
  border-color: var(--interactive);
}

.introduce__certificates-item:hover::before {
  visibility: visible;
  opacity: 1;
}

.introduce__certificates-item img {
  height: 100%;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  .introduce__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    padding-top: 0;
  }
}

@media screen and (min-width: 1000px) {
  .introduce__footer {
    grid-column: 1/2;
    grid-row: 5/6;
  }
}

.introduce__button {
  width: 100%;
}

.introduce__button+.introduce__button {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .introduce__button {
    width: 230px;
  }

  .introduce__button+.introduce__button {
    margin-top: 0;
  }
}

.main {
  padding-bottom: 107px;
}

.main_inner {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .main_inner {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1920px) {
  .main_inner {
    padding-bottom: 114px;
  }
}

.main__wrapper {
  margin-bottom: 60px;
  margin-top: 60px;
}

@media screen and (min-width: 1000px) {
  .main__wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1180px;
    padding-top: 112px;
    margin-top: 0;
    margin-bottom: 112px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .main__wrapper .container {
    padding: 0;
  }

  .main__wrapper .section {
    width: 100%;
    /*width: 50%;*/
    margin-top: 0 !important;
  }

  /*.main__wrapper .section:first-of-type {
    padding-right: 60px;
  }*/
  .main__wrapper .section:first-of-type .title {
    text-align: left;
  }

  /*.main__wrapper .section:last-of-type {
    padding-top: 65px;
  }/*
  /*.main__wrapper .section:last-of-type .title {
    text-align: right;
  }*/
  .main__wrapper .what-u-get__footer {
    width: 100%;
  }
}

.main__section+.main__section {
  margin-top: 60px;
}

@media screen and (min-width: 1000px) {
  .main__section+.main__section {
    margin-top: 70px;
  }
}

@media screen and (min-width: 1000px) {
  .main__section+.main__section {
    margin-top: 120px;
  }
}

.main__section_sub+.main__section_sub {
  margin-top: 30px;
}

@media screen and (min-width: 768px) {
  .main__section_sub+.main__section_sub {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1920px) {
  .main__section_sub+.main__section_sub {
    margin-top: 114px;
  }
}

.main__inner {
  margin-bottom: 40px;
}

@media screen and (min-width: 1000px) {
  .main__inner {
    max-width: 655px;
    padding-top: 60px;
  }
}

@media screen and (min-width: 1920px) {
  .main__inner {
    max-width: 753px;
  }
}

.menu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 50px 50px 50px 20px;
  font-size: 18px;
  text-align: center;
  background-color: #171a1e;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  overflow: auto;
}

@media screen and (min-width: 768px) {
  .menu {
    padding-left: 126px;
    padding-right: 126px;
  }
}

@media screen and (min-width: 1000px) {
  .menu {
    padding-left: 242px;
    padding-right: 242px;
  }
}

@media screen and (min-width: 1920px) {
  .menu {
    position: static;
    display: block;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
    height: auto;
    padding: 0;
    margin-right: 60px;
    font-size: 16px;
    background-color: transparent;
    visibility: visible;
    opacity: 1;
    overflow: visible;
  }

  .menu .expandable__body {
    position: absolute;
    max-height: auto;
    overflow: visible;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  }
}

.menu_created {
  display: block;
}

.menu_open {
  visibility: visible;
  opacity: 1;
}

.menu__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  color: var(--white);
}

.menu__close svg {
  fill: currentColor;
}

@media screen and (min-width: 1920px) {
  .menu__close {
    display: none;
  }
}

.menu__logo {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
}

.menu__logo img {
  width: 100%;
}

@media screen and (min-width: 1920px) {
  .menu__logo {
    display: none;
  }
}

.menu__toggle {
  color: var(--text-invert);
  transition: color 0.25s ease-in-out;
}

.menu__toggle:hover {
  color: var(--secondary-active);
}

.menu__toggle:hover .menu__link {
  color: var(--secondary-active);
}

.menu__toggle svg {
  fill: currentColor;
  transition: transform 0.25s ease-in-out;
}

.menu__toggle.expandable__toggle_active {
  color: var(--secondary-active);
}

.menu__toggle.expandable__toggle_active .menu__link {
  color: var(--secondary-active);
}

.menu__toggle.expandable__toggle_active svg {
  transform: rotate(-180deg);
}

@media screen and (min-width: 1920px) {
  .menu__toggle {
    color: var(--text);
  }

  .menu__toggle svg {
    margin-left: 10px;
  }
}

.menu__list {
  text-align: left;
}

@media screen and (min-width: 1920px) {
  .menu__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .menu__list_sub {
    display: block;
    padding: 17px 20px;
    background-color: #fff;
    box-shadow: 0 0 15px -3px rgba(0, 0, 0, 0.15);
  }
}

.menu__item {
  padding: 12px 0;
  border-bottom: 1px solid #2f3135;
}

.menu__item_sub {
  padding-left: 30px;
}

.menu__item_sub:first-child {
  border-top: 1px solid #2f3135;
}

.menu__item_sub:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media screen and (min-width: 1920px) {
  .menu__item {
    border: 0;
  }

  .menu__item:first-child {
    border-top: 0;
  }
}

.menu__item.expandable:hover .expandable__body {
  visibility: visible;
  opacity: 1;
}

.menu__item.expandable:hover svg {
  transform: rotate(-180deg);
}

.menu__link {
  display: block;
  text-decoration: none;
  color: var(--text-invert);
  transition: color 0.25s ease-in-out;
}

@media screen and (min-width: 1920px) {
  .menu__link {
    color: var(--text);
  }
}

.menu__link:hover {
  color: var(--secondary-active);
}

.menu__link_sub {
  display: block;
  color: #a6a6a6;
}

@media screen and (min-width: 1920px) {
  .menu__link_sub {
    color: #1f2278;
  }
}

.menu .expandable__layout {
  padding-top: 12px;
}

.menu__footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  padding-top: 40px;
}

@media screen and (min-width: 1920px) {
  .menu__footer {
    display: none;
  }
}

.plain-text p {
  margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
  .plain-text p {
    margin-bottom: 1rem;
  }
}

.plain-text ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .plain-text ul {
    margin-bottom: 2rem;
  }
}

.plain-text ul li {
  position: relative;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .plain-text ul li {
    margin-bottom: 1rem;
  }
}

.plain-text ul li::before {
  position: absolute;
  left: -20px;
  content: '·';
  vertical-align: middle;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: none;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.85);
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}

.popup_created {
  display: -ms-flexbox;
  display: flex;
}

.popup_show {
  visibility: visible;
  opacity: 1;
}

.popup_show .title-label {
  margin-left: 0;
}

.popup_picture {
  height: 100vh;
  overflow: hidden;
}

.popup_picture .popup__layout {
  width: 768px;
  height: 768px;
  max-width: 100%;
  max-height: 100%;
  padding-top: 70px;
  background-color: transparent;
}

.popup_picture .popup__body {
  position: relative;
  width: 100%;
  height: 100%;
}

.popup_picture .popup__close {
  right: 20px;
}

.popup_picture img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.popup__layout {
  position: relative;
  width: 560px;
  max-width: 100%;
  padding: 40px 20px 30px 20px;
  margin: auto 0;
  background-color: var(--white);
  border-radius: 8px;
}

.popup__title {
  margin-bottom: 15px;
}

.popup__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #fff;
  color: #1f2278;
  border: 0;
  cursor: pointer;
}

.popup__close:hover svg {
  transform: rotate(180deg);
}

.popup__close svg {
  width: 25px;
  height: 25px;
  pointer-events: none;
  fill: currentColor;
  transition: transform 0.25s ease-in-out;
}

.popup .title-label {
  margin-bottom: 15px;
}

.prices {
  font-size: 14px;
  border: 2px solid #565acf;
  border-radius: 8px;
  overflow: hidden;
}

.prices table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}

.prices td {
  padding: 9px 15px;
  background-color: #f7f7ff;
  border-bottom: 2px solid #565acf;
}

.prices td:last-child {
  text-align: right;
}

.prices th {
  padding: 20px 15px;
  text-align: left;
  color: var(--text-invert);
  background-color: #565acf;
  border: 0;
}

.prices th+.prices th {
  text-align: right;
}

.prices tr:last-child td {
  border-bottom: 0;
}

.section__title {
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .section__title {
    margin-bottom: 30px;
  }
}

.services {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(120px, 1fr))[2];
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  grid-gap: 20px;
}

@media screen and (min-width: 768px) {
  .services {
    -ms-grid-columns: (minmax(120px, 1fr))[3];
    grid-template-columns: repeat(3, minmax(120px, 1fr));
  }
}

@media screen and (min-width: 1000px) {
  .services {
    -ms-grid-columns: (minmax(120px, 1fr))[4];
    grid-template-columns: repeat(4, minmax(120px, 1fr));
  }
}

.services__header {
  grid-column: 1/3;
  grid-row: 1/2;
}

.services__header .button {
  display: none;
  width: 50%;
  margin: 0 !important;
}

@media screen and (min-width: 768px) {
  .services__header .button {
    display: -ms-flexbox;
    display: flex;
  }
}

.services__header-buttons {
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.services__item {
  position: relative;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s ease-in-out;
}

.services__item:hover {
  border-color: var(--secondary-active);
}

.services__item:hover .services__price {
  color: var(--secondary-active);
}

.services__link {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #1f2278;
}

.services__link-body {
  padding: 18px 10px;
}

@media screen and (min-width: 768px) {
  .services__link-body {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 18px;
  }
}

.services__link svg {
  fill: currentColor;
}

@media screen and (min-width: 768px) {
  .services__link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 273px;
    font-size: 18px;
  }
}

.services__image {
  display: block;
  width: 100%;
}

.services__name {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .services__name {
    font-size: 18px;
  }
}

@media screen and (min-width: 1920px) {
  .services__name {
    font-size: 21px;
  }
}

.services__price {
  font-size: 14px;
  transition: color 0.25s ease-in-out;
}

.services__price svg {
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .services__price {
    margin-top: auto;
    font-size: 18px;
  }
}

.services__footer {
  grid-column: 1/3;
}

@media screen and (min-width: 768px) {
  .services__footer {
    display: none;
  }
}

.services__button {
  width: 100%;
}

.services__button+.services__button {
  margin-top: 10px;
}

.services__button_arrow svg {
  width: 10px;
  heitgh: 10px;
  transform: rotate(-90deg);
}

.side-menu {
  width: 100%;
  padding: 15px;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
}

.side-menu__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 8px 0 20px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: left;
  color: var(--text-invert);
  background-color: #565acf;
  border: 2px solid #565acf;
  border-radius: 8px;
  transition: all 0.25s ease-in-out;
}

.side-menu__link:hover {
  background-color: #fff;
  color: #565acf;
}

.side-menu__link+.side-menu__link {
  margin-top: 10px;
}

.side-menu__link svg {
  fill: currentColor;
}

.side-menu__link_active {
  background-color: var(--secondary-active);
  border-color: var(--secondary-active);
  pointer-events: none;
}

.side-menu__link_active:hover {
  background-color: var(--secondary-active);
  border-color: var(--secondary-active);
}

.side-menu__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #1f2278;
  background-color: #fff;
  border-radius: 8px;
}

.side-menu__icon_chevron svg {
  width: 10px;
  height: 10px;
  transform: rotate(-90deg);
}

.side-menu__footer {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #c4c4c4;
}

.side-menu__footer .side-menu__link {
  font-weight: 700;
}

.sidebar {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 1000px) {
  .sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    right: 0;
    width: calc(100% - 655px);
    padding-top: 60px;
    padding-left: 20px;
  }
}

@media screen and (min-width: 1920px) {
  .sidebar {
    width: calc(100% - 753px);
  }
}

.title-label {
  display: inline-block;
  padding: 4px 15px;
  margin-left: -15px;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 700;
  color: #f17732;
  background: repeating-linear-gradient(110deg, rgba(241, 119, 50, 0.15), rgba(241, 119, 50, 0.15) 3px, transparent 3px, transparent 7px);
}

@media screen and (min-width: 768px) {
  .title-label {
    margin-bottom: 25px;
  }
}

.title-label_blue {
  color: #565acf;
  background: repeating-linear-gradient(110deg, rgba(86, 90, 207, 0.15), rgba(86, 90, 207, 0.15) 3px, transparent 3px, transparent 7px);
}

.title-label_secondary {
  margin-left: 0;
}

.title-label_mobile {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  background: none;
}

@media screen and (min-width: 768px) {
  .title-label_mobile {
    font-weight: bold;
    font-style: normal;
  }

  .title-label_mobile br {
    display: none;
  }

  .title-label_mobile.title-label_blue {
    background: repeating-linear-gradient(110deg, rgba(86, 90, 207, 0.15), rgba(86, 90, 207, 0.15) 3px, transparent 3px, transparent 7px);
  }
}

.title {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-decorate);
}

.title_h1 {
  font-size: 34px;
}

@media screen and (min-width: 410px) {
  .title_h1 {
    font-size: 40px;
  }
}

@media screen and (min-width: 768px) {
  .title_h1 {
    font-size: 45px;
  }
}

@media screen and (min-width: 1920px) {
  .title_h1 {
    font-size: 55px;
  }
}

.title_h2 {
  font-size: 30px;
}

@media screen and (min-width: 410px) {
  .title_h2 {
    font-size: 36px;
  }
}

.title_h3 {
  font-size: 24px;
}

.title_h4 {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .title_introduce {
    width: 370px;
  }
}

.what-u-get__list {
  margin-bottom: 11px;
}

@media screen and (min-width: 768px) {
  .what-u-get__list {
    margin-bottom: 25px;
  }
}

.what-u-get__item {
  display: -ms-flexbox;
  display: flex;
  border: 3px solid var(--secondary-active);
  border-radius: 8px;
}

.what-u-get__item+.what-u-get__item {
  margin-top: 10px;
}

.what-u-get__item p {
  width: 100%;
}

.what-u-get__body {
  padding: 12px 15px;
}

.what-u-get__icon {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background-color: var(--secondary-active);
}

.what-u-get__icon svg {
  width: 45px;
  height: 45px;
}

.what-u-get__title {
  margin-bottom: 10px;
  font-weight: 600;
}

.what-u-get__text {
  font-size: 16px;
}

@media screen and (min-width: 768px) {
  .what-u-get__text {
    margin-right: 23px;
    font-size: inherit;
  }
}

.what-u-get__footer {
  padding: 20px;
  font-weight: 600;
  color: #1f2278;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .what-u-get__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 23px;
  }
}

.what-u-get__button {
  width: 100%;
}

.what-u-get__button+.what-u-get__button {
  margin-top: 10px;
}

.faq {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 1000px) {
  .faq {
    grid-template-columns: 1fr;
  }
}

.we-help {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.we-help .we-help__item {
  font-weight: 600;
  color: #1f2278;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
  padding: 15px 23px 23px;
}

.we-help .we-help__item .we-help__number {
  font-family: Montserrat;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 70px;
  letter-spacing: 0.1em;
  text-align: left;
  color: var(--secondary-active);
}

.we-help .we-help__item .we-help__title {
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  .we-help {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  .we-help {
    grid-template-columns: 1fr 1fr;
  }
}

.video-answer {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 103px;
}

.video-answer .video-answer__item {
  font-weight: 600;
  color: #1f2278;
  background-color: #f7f7ff;
  border: 3px solid #e6e7ff;
  border-radius: 8px;
  padding: 15px 23px;
  min-width: 298px;
}

.video-answer .video-answer__item .video-answer__video {
  margin-left: -7px;
  width: calc(100% + 14px);
}

.video-answer .video-answer__item .video-answer__link {
  width: 100%;
  height: 385px;
  display: flex;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}

.video-answer .video-answer__item:hover {
  border-color: var(--secondary-active);
  cursor: pointer;
}

.video-answer .video-answer__item .video-answer__link:hover svg circle {
  fill-opacity: 0.5;
}

.video-answer .video-answer__item .video-answer__title {
  line-height: 27px;
  margin-top: 15px;
}

@media screen and (max-width: 1100px) {
  .video-answer {
    padding: 0;
    overflow-x: auto;
  }
}

.tobii__btn--next,
.tobii__btn--previous {
  outline: none;
}

.change-btn .button__icon,
.change-btn .button__mobile-text {
  display: none;
}

.change-btn {
  padding: 0;
}

.footer__popup-social {
  display: flex;
  justify-content: space-between;
  align-items: center;

}

.footer__popup-social a {
  margin-right: 6px;
  width: 50px;
  height: 50px;
}

.footer__popup-social a:last-child {
  margin-right: 0;
}

.header__menu .menu__list {
  /* justify-content: center; */
  justify-content: initial;
}

.header__menu .menu__item {
  margin-right: 30px;
  font-weight: 500;
}

.header__menu .menu__item:last-child {
  margin-right: 0;
}


.no-show {
  display: none;
}

@media(max-width: 430px) {
  .no-show {
    display: initial;
  }
}

.read-more {
  display: none;
  /*  pointer-events: initial; */
  z-index: 800;
}

@media(max-width: 767px) {
  .show-more {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: max-height 0.25s ease-in-out, opacity 0.25s ease-in-out;

  }

  .read-more {
    cursor: pointer !important;
    display: inline-block;
  }

  .show-more.open {
    max-height: initial;
    opacity: 1;
    visibility: visible;
  }
}


.hero__footer-v1 * {
  margin: 0 !important;
}

@media screen and (min-width: 768px) {
  .hero__footer-v1 {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
  }
}

@media screen and (max-width: 767px) {
  .hero__footer-v1:not(.hero__footer-v2) {
    grid-template-columns: 1fr;
    width: 100%;
  }
}

.hero__footer-v1 {
  display: grid;
  gap: 20px;
}

.hero__footer-v1-fix-button .button {
  width: 100% !important;
}

.services__button-fix-color {
  color: #FFF !important;
}

.services__button-fix-color:hover {
  color: #1f2278 !important;
}

.what-u-get__footer-fix {
  align-items: start !important;
}

.hero__footer-v2 {
  width: 100%;
}

.hero__footer-v2 a {
  width: 100%;
}