@import url(https://fonts.googleapis.com/css2?family=Lato:wght@700&amp;display=swap);

@font-face {
  font-family: 'Metropolis';
  font-display: swap;
  src: url('../metropolis-regular.html') format('woff2'),
    url('../woff/metropolis-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  font-display: swap;
  src: url('../metropolis-medium.html') format('woff2'),
    url('../woff/metropolis-medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  font-display: swap;
  src: url('../metropolis-semibold.html') format('woff2'),
    url('../woff/metropolis-semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Metropolis';
  font-display: swap;
  src: url('../metropolis-bold.html') format('woff2'),
    url('../woff/metropolis-bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}

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

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

:focus,
:active {
  outline: none;
}

:focus-visible {
  outline: none;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
  -webkit-tap-highlight-color: transparent;
}

body {
  color: #050e1a;
  line-height: 1;
  font-family: 'Metropolis';
  font-size: 0.875rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: 'Metropolis';
  font-size: inherit;
}

input::-ms-clear {
  display: none;
}

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

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

input[type='search']::-webkit-search-decoration,
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-results-button,
input[type='search']::-webkit-search-results-decoration {
  display: none;
}

body.lock {
  -ms-touch-action: none;
  touch-action: none;
  position: fixed;
  overflow: hidden;
  width: 100%;
}

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

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

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

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

.container-1 {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-2 {
  max-width: 650px;
  margin: 0 auto;
  padding: 0 15px;
}

.page {
  padding-top: 74px;
}

.checkbox {
  position: relative;
}

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

.checkbox__input:checked + .checkbox__label::after {
  opacity: 1;
  visibility: visible;
}

.checkbox__label {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 0.625rem;
  color: #415166;
}

.checkbox__label:before {
  content: '';
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5rem;
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #97a9be;
  border-radius: 0.25rem;
  -webkit-transition: background-color 0.4s ease 0s;
  -o-transition: background-color 0.4s ease 0s;
  transition: background-color 0.4s ease 0s;
}

.checkbox__label::after {
  content: '';
  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;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  position: absolute;
  background: #2f80ed url('../svg/check-white.svg') center/18px 14px no-repeat;
  font-size: 1.25rem;
  line-height: 140%;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.modal__window {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1.875rem 0.625rem;
  visibility: hidden;
  -webkit-transition: visibility 0.8s ease 0s, background-color 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s, background-color 0.8s ease 0s;
  transition: visibility 0.8s ease 0s, background-color 0.8s ease 0s;
  pointer-events: none;
}

.modal_open {
  z-index: 15000;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
  background-color: rgba(0, 0, 0, 0.75);
  cursor: pointer;
}

.modal_open .modal__content {
  visibility: visible;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  cursor: auto;
}

.modal__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
}

.modal__content {
  position: relative;
  padding: 2.5rem;
  width: 100%;
  max-width: 60.5rem;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  transition: visibility 0.3s ease 0s, opacity 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s, visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: transform 0.3s ease 0s, visibility 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: transform 0.3s ease 0s, visibility 0.3s ease 0s, opacity 0.3s ease 0s,
    -webkit-transform 0.3s ease 0s;
  background-color: transparent;
  border-radius: 0.9375rem;
}

.modal__content#download-guide-container {
  background-color: #fff;
}

.modal__content#download-guide-container .modal__exit {
  right: 20px;
  top: 20px;
}

.modal__content#download-guide-container .modal__exit svg {
  fill: #2f80ed;
}

.modal__content#download-guide-container .modal__exit:hover svg {
  fill: #013a85;
}

.modal__exit {
  position: absolute;
  right: 10px;
  top: 10px;
}

.modal__exit svg {
  fill: #fff;
  -webkit-transition: fill 0.4s ease 0s;
  -o-transition: fill 0.4s ease 0s;
  transition: fill 0.4s ease 0s;
}

.modal__exit:hover svg {
  fill: #2f80ed;
}

.title-section {
  font-weight: 600;
  font-size: 64px;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 75px;
}

.title-section--left {
  text-align: start;
  margin-bottom: 20px;
}

.padding-section {
  padding: 120px 0;
}

.fw-medium {
  font-weight: 500;
  color: #050e1a;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  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;
}

.hero__body {
  position: relative;
}

.hero__title {
  font-weight: 700;
  font-size: 64px;
  text-align: center;
  letter-spacing: -2px;
}

.hero__title span {
  display: block;
}

.hero__subtitle {
  font-size: 25px;
  line-height: 128%;
  text-align: center;
  color: #415166;
  margin-top: 25px;
}

.hero__caption {
  margin-top: 20px;
  font-size: 13px;
  line-height: 133.3333333333%;
  text-align: center;
  color: #97a9be;
}

.hero-guide .container-1 {
  width: 100%;
  padding-bottom: 80px;
}

.hero__container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.hero__container .hero__subtitle {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
}

.hero__img-container {
  display: block;
  position: absolute;
  width: 45vw;
  min-height: 100%;
  right: 0;
  top: 0;
}

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

.hero__btn {
  background-color: #2f80ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 120px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 83px;
  height: 83px;
  border-radius: 47.25px;
  -webkit-box-shadow: 0px 1.25px 8.75px rgba(107, 126, 152, 0.16);
  box-shadow: 0px 1.25px 8.75px rgba(107, 126, 152, 0.16);
  margin: 0 auto;
  margin-top: 80px;
  -webkit-animation: heroBtn 1s linear infinite normal running 0s none;
  animation: heroBtn 1s linear infinite normal running 0s none;
}

.hero__btn svg {
  width: 30px;
  height: 45px;
}

@-webkit-keyframes heroBtn {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes heroBtn {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.go-to-list {
  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;
  margin-top: 75px;
}

.go-to-list__btn {
  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;
}

.go-to-list__btn span {
  margin-left: 10px;
  font-weight: 500;
  font-size: 18px;
  line-height: 111.1111111111%;
  color: #2f80ed;
  -webkit-transition: color 0.4s ease 0s;
  -o-transition: color 0.4s ease 0s;
  transition: color 0.4s ease 0s;
}

.go-to-list__btn svg path {
  stroke: #2f80ed;
  -webkit-transition: stroke 0.4s ease 0s;
  -o-transition: stroke 0.4s ease 0s;
  transition: stroke 0.4s ease 0s;
}

.go-to-list__btn:hover span {
  color: #325789;
}

.go-to-list__btn:hover svg path {
  stroke: #325789;
}

.accent {
  color: #2f80ed;
}

.pc {
  display: none;
}

.mb {
  display: none;
}

.clr-mahogany {
  color: #de4244;
}

.text-link {
  text-decoration: underline !important;
  color: #2f80ed;
  -webkit-transition: color 0.4s ease 0s;
  -o-transition: color 0.4s ease 0s;
  transition: color 0.4s ease 0s;
}

.text-link:hover {
  color: #325789;
}

.btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 111.1111111111%;
  padding: 30px 50px;
  color: #ffffff;
  background-color: #2f80ed;
  border-radius: 50px;
  border: 1px solid transparent;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.btn:hover {
  color: #2f80ed;
  background-color: transparent;
  border-color: #2f80ed;
}

.btn-transparent {
  background-color: transparent;
  color: #2f80ed;
  border-color: #2f80ed;
}

.btn-transparent:hover {
  color: #fff;
  background-color: #2f80ed;
}

.bg-solitude {
  background-color: #f0f2f5;
}

/*HEADER*/

.header {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10000;
  -webkit-box-shadow: 0px 1px 0px #f0f2f5;
  box-shadow: 0px 1px 0px #f0f2f5;
  background: #ffffff;
}

.header__body {
  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;
  min-height: 74px;
  padding: 10px 15px;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  left: 0;
  top: 0;
  z-index: 3;
}

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

.menu__item {
  margin-left: 30px;
}

.menu__item--submenu {
  position: relative;
  left: 0;
  top: 0;
}

.submenu__list {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  min-width: 220px;
  -webkit-box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 12px -4px rgba(0, 0, 0, 0.12);
  border: 1px solid #f0f2f4;
  background: #fff;
}

.submenu__item {
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.submenu__item:last-child {
  margin-bottom: 0;
}

.submenu__link {
  display: block;
  padding: 10px 10px;
  line-height: 20px;
  color: #415166;
  -webkit-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.submenu__link.active {
  color: #2f80ed;
}

.menu__item--submenu:hover .submenu__list {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.menu__link {
  line-height: 20px;
  color: #415166;
  background: transparent;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.menu__link.active {
  color: #050e1a;
  text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
}

.menu__call {
  margin-left: 30px;
  padding: 20px 30px;
  font-weight: 500;
  line-height: 14px;
  color: #2f80ed;
  background: rgba(47, 128, 237, 0.1);
  border-radius: 30px;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.header__burger {
  display: none;
}

.footer {
  background-color: #f0f2f5;
}

.footer__body {
  padding: 50px 0;
}

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

.footer-lists__title {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #050e1a;
}

.footer__link {
  line-height: 20px;
  color: #050e1a;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.footer__locations {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 420px;
  flex: 0 1 420px;
}

.footer__item {
  margin-bottom: 20px;
  line-height: 20px;
  color: #050e1a;
}

.footer__item:last-child {
  margin: 0;
}

.footer__bottom {
  padding: 20px 0;
  border-top: 1px solid #f0f2f5;
}

.footer-bottom__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  color: #050e1a;
}

.bottom-footer__left span {
  display: block;
}

.vertical-line {
  height: 10px;
  width: 1px;
  background: #000;
  margin: 0 15px;
}

.bottom-footer__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  line-height: 20px;
  color: #415166;
}

.bottom-footer__right span {
  display: block;
  line-height: 20px;
  color: #97a9be;
}

.bottom-footer__link {
  line-height: 20px;
  color: #415166;
}

.for-who__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.for-who__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}

.for-who__forma {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
  padding: 50px;
  background-color: #fff;
  -webkit-box-shadow: 0px 12px 24px -6px rgba(8, 35, 71, 0.12);
  box-shadow: 0px 12px 24px -6px rgba(8, 35, 71, 0.12);
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.for-who-content__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108.3333333333%;
  letter-spacing: -0.02em;
}

.for-who-content__list {
  font-size: 18px;
  line-height: 155.5555555556%;
  color: #415166;
  margin-top: 50px;
}

.for-who-content__list li {
  position: relative;
  padding-left: 52px;
}

.for-who-content__list li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: url('../svg/check.svg') center no-repeat;
}

.for-who-content__list li:not(:last-child) {
  margin-bottom: 20px;
}

.for-who-forma__title {
  font-size: 36px;
  line-height: 122.2222222222%;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}

.for-who-forma__section:not(:last-child) {
  margin-bottom: 30px;
}

.for-who-forma__section--btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.for-who-forma__input {
  width: 100%;
  padding: 16px;
  background-color: #f7f8fa;
  border: 1px solid #f0f2f5;
  -webkit-transition: border-color 0.4s ease 0s;
  -o-transition: border-color 0.4s ease 0s;
  transition: border-color 0.4s ease 0s;
  color: #415166;
}
.for-who-forma__error {
  margin-top: 10px;
  color: #de4244;
}

.for-who-forma__input.error {
  border: 1px solid #de4244;
}

.for-who-forma__input:focus {
  border-color: #97a9be;
}

.for-who-forma__input::-webkit-input-placeholder {
  color: #97a9be;
}

.for-who-forma__input::-moz-placeholder {
  color: #97a9be;
}

.for-who-forma__input:-ms-input-placeholder {
  color: #97a9be;
}

.for-who-forma__input::-ms-input-placeholder {
  color: #97a9be;
}

.for-who-forma__input::placeholder {
  color: #97a9be;
}

.about-guide__descr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
  font-size: 24px;
  line-height: 133.3333333333%;
  text-align: center;
  color: #415166;
  max-width: 600px;
  margin: 0 auto;
}

.about-guide__container {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 90px;
  -moz-column-gap: 90px;
  column-gap: 90px;
}

.about-guide__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}

.about-guide__slider {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 500px;
  flex: 0 1 500px;
}

.about-guide__download {
  max-width: 600px;
  margin: 0 auto;
  margin-top: 75px;
}

.about-guide-content__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108.3333333333%;
  letter-spacing: -0.02em;
}

.about-guide-content__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 30px;
  margin-top: 50px;
}

.about-guide-item__order {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 142.8571428571%;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #2f80ed;
}

.about-guide-item__text {
  font-size: 24px;
  line-height: 133.3333333333%;
  color: #415166;
  margin-top: 10px;
}

.guide__slider {
  max-width: 500px;
  width: 100%;
  height: 100%;
  position: relative;
}

.guide__wrapper {
  height: 100% !important;
}

.guide__slide {
  max-width: 500px;
  height: 100%;
  padding: 10px 53px 40px;
  position: relative;
}

.guide-slide__img {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.guide-img-modal {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: fit-content;
}
.guide-img-modal img {
  max-width: 100%;
  max-height: 80vh;
}

.guide-slide__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-box-shadow: 0px 12px 24px 6px rgba(12, 64, 134, 0.12);
  box-shadow: 0px 12px 24px 6px rgba(12, 64, 134, 0.12);
}

.guide-download__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 30px;
}

.guide-download__text {
  font-size: 36px;
  line-height: 122.2222222222%;
  text-align: center;
  letter-spacing: -0.01em;
}

.subscribe {
  background-color: #050e1a;
  color: #fff;
}

.subscribe__title {
  font-weight: 500;
  font-size: 48px;
  line-height: 108.3333333333%;
  text-align: center;
  letter-spacing: -0.02em;
}

.subscribe__text {
  font-size: 24px;
  line-height: 133.3333333333%;
  text-align: center;
  margin: 30px 0;
}

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

.subscribe-form__input {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 70px;
  padding: 30px 32px;
  font-size: 16px;
  line-height: 125%;
  color: #415166;
}
.subscribe-form__input.error {
  box-shadow: 0 0 15px 8px #de4244;
  border-color: #de4244;
}

.subscribe-form__input::-webkit-input-placeholder {
  color: #97a9be;
}

.subscribe-form__input::-moz-placeholder {
  color: #97a9be;
}

.subscribe-form__input:-ms-input-placeholder {
  color: #97a9be;
}

.subscribe-form__input::-ms-input-placeholder {
  color: #97a9be;
}

.subscribe-form__input::placeholder {
  color: #97a9be;
}

.response {
  padding: 90px 0 120px;
}

.response__body {
  background-color: #f0f2f5;
  max-width: 600px;
  margin: 0 auto;
  padding: 50px;
}

.response__text {
  font-size: 24px;
  line-height: 133.3333333333%;
  color: #415166;
}

.response__author {
  margin-top: 30px;
  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;
  gap: 15px;
}

.response__author-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  font-size: 18px;
  line-height: 155.5555555556%;
}

.author-data__name {
  font-weight: 500;
  color: #415166;
}

.author-data__positinon {
  color: #97a9be;
}

.list-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  row-gap: 10px;
  margin-top: 50px;
}

.list-logo li {
  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;
}

.swiper {
  overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(47, 128, 237, 0.3);
}

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

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

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

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #2f80ed;
}

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

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 2.5px;
}

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

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

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

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  border-color: #083f86;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  content: '';
  border: solid #2f80ed;
  border-width: 0 7px 7px 0;
  display: block;
  padding: 15px;
  -webkit-transition: border-color 0.4s ease 0s;
  -o-transition: border-color 0.4s ease 0s;
  transition: border-color 0.4s ease 0s;
}

.swiper-button-prev {
  left: 20px;
  right: auto;
}

.swiper-button-prev:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.swiper-button-next {
  right: 20px;
  left: auto;
}

.swiper-button-next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 769px) {
  .pc {
    display: block;
  }
}

@media (min-width: 992px) {
  .hero__title--left {
    text-align: start;
  }

  .hero__container {
    text-align: start;
    margin: 0;
    margin-right: auto;
    padding-right: 10px;
  }

  .hero__container .hero__subtitle {
    text-align: start;
  }
}

@media (min-width: 1024px) {
  .submenu__item:hover {
    background-color: #2f80ed;
  }

  .submenu__item:hover .submenu__link {
    color: #fff;
  }
  .menu__link:hover {
    color: #050e1a;
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}
.consultation__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}

.consultation__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 500px;
}

.consultation__text {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 15px;
  font-size: 24px;
  line-height: 133.3333333333%;
  color: #415166;
}

.consultation__awards {
  margin-top: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.consultation__modal {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  max-width: 500px;
  position: relative;
}

.consultation__modal iframe {
  min-height: 605px !important;
  height: auto !important;
}

@media (max-width: 1100px) {
  .menu__item {
    margin-left: 15px;
  }
}

@media (max-width: 1024px) {
  .title-section {
    font-size: 50px;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
  }

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

  .hero__title {
    font-size: 50px;
  }

  .hero__subtitle {
    font-size: 23px;
  }

  .for-who__body {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .for-who__forma {
    padding: 40px;
  }

  .for-who-content__title {
    font-size: 42px;
  }

  .for-who-content__list {
    margin-top: 30px;
  }

  .for-who-content__list li:not(:last-child) {
    margin-bottom: 15px;
  }

  .for-who-content__list li {
    padding-left: 32px;
  }

  .for-who-content__list li::before {
    width: 22px;
    height: 22px;
    background: url('../svg/check.svg') center/22px auto no-repeat;
  }

  .for-who-forma__title {
    font-size: 30px;
  }

  .about-guide__descr {
    font-size: 22px;
  }

  .about-guide__container {
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
  }

  .about-guide-content__title {
    font-size: 42px;
  }

  .about-guide-item__text {
    font-size: 22px;
  }

  .guide-download__text {
    font-size: 30px;
  }

  .subscribe__title {
    font-size: 45px;
  }

  .subscribe__text {
    font-size: 22px;
  }

  .response {
    padding: 80px 0 100px;
  }
  .consultation__awards {
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  .menu__call {
    margin-left: 10px;
  }
}

@media (max-width: 1023px) {
  .header {
    z-index: 10002;
  }
  .header__burger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 10002;
    margin-right: 10px;
    cursor: pointer;
  }

  .header__burger span {
    background-color: #000;
  }

  .header__burger span:nth-child(1),
  .header__burger span:nth-child(2),
  .header__burger span:nth-child(3),
  .header__burger span:nth-child(4),
  .header__burger span:nth-child(5) {
    position: absolute;
    height: 2px;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }

  .header__burger span:nth-child(1) {
    top: 0;
    left: 0;
    width: 50%;
  }

  .header__burger span:nth-child(2) {
    top: 0;
    right: 0;
    width: 50%;
  }

  .header__burger span:nth-child(3) {
    left: 0;
    top: 9px;
    width: 100%;
  }

  .header__burger span:nth-child(4) {
    left: 0;
    bottom: 0;
    width: 50%;
  }

  .header__burger span:nth-child(5) {
    right: 0;
    bottom: 0;
    width: 50%;
  }

  .menu-open .header__burger span {
    background-color: #fff;
  }

  .menu-open .header__burger span:nth-child(1) {
    top: 4px;
    left: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu-open .header__burger span:nth-child(2) {
    top: 4px;
    right: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .header__burger span:nth-child(3) {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }

  .menu-open .header__burger span:nth-child(4) {
    bottom: 5px;
    left: 3px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .menu-open .header__burger span:nth-child(5) {
    bottom: 5px;
    right: 3px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .menu-open .header__menu {
    opacity: 1;
    left: 0;
  }

  .menu__call {
    display: none;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease, left 0.4s ease;
    display: block;
    background-color: #121212;
    padding: 60px 10px 20px 40px;
    overflow: auto;
    z-index: 10002;
  }

  .menu__list {
    position: relative;
    display: block;
  }

  .menu__list li {
    margin: 0px 0px 30px 0px;
    text-align: left;
  }

  .menu__list li:last-child {
    margin: 0;
  }

  .menu__link {
    font-size: 24px;
    line-height: 100%;
    font-weight: 500;
    color: #fff;
  }

  .menu__link.active {
    color: #2f80ed;
  }

  .menu__link--button {
    display: inline-flex;
    gap: 20px;
    align-items: center;
  }
  .menu__link--button::after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    color: red;
    transform: rotate(180deg);
    background: url(../svg/menu-arrow.svg) 0 0/ 24px 24px no-repeat;
  }
  .menu__link--button.active::after {
    background: url(../svg/menu-arrow-blue.svg) 0 0/ 24px 24px no-repeat;
  }
  .submenu__list-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
  }
  .submenu__list-overflow {
    overflow: hidden;
  }

  .submenu__list {
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
    position: relative;
    border: none;
    background: transparent;
    margin-top: 30px;
  }
  .menu__item--submenu.is-open .submenu__list-wrapper {
    grid-template-rows: 1fr;
  }
  .menu__item--submenu.is-open .menu__link--button::after {
    transform: rotate(0);
  }

  .submenu__link {
    padding: 0;
    line-height: 100%;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
  }

  .footer__lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 992px) {
  .for-who__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 40px;
  }

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

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

@media (max-width: 991px) {
  .hero__img-container {
    display: none;
  }
  .about-guide__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .about-guide__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    margin-bottom: 50px;
  }

  .about-guide__slider {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    height: 500px;
  }

  .guide__slider {
    margin: 0 auto;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 900px) {
  .consultation__awards {
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}

@media (min-width: 769px) {
  .consultation__modal iframe {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .title-section {
    font-size: 37px;
    line-height: 108.1081081081%;
    margin-bottom: 50px;
  }

  .title-section--left {
    margin-bottom: 50px;
  }

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

  .hero__title {
    font-size: 45px;
    line-height: 97.7777777778%;
  }

  .hero__subtitle {
    font-size: 22px;
  }

  .hero__caption {
    font-size: 12px;
  }

  .hero__btn {
    bottom: 90px;
    width: 50px;
    height: 50px;
    border-radius: 31.25px;
    margin-top: 30px;
  }

  .hero__btn svg {
    width: 18px;
    height: 24px;
  }

  .go-to-list {
    margin-top: 50px;
  }

  .mb {
    display: block;
  }

  .btn {
    padding: 20px 35px;
  }

  .for-who-content__title {
    font-size: 28px;
  }

  .for-who-content__list {
    font-size: 16px;
  }

  .for-who-forma__title {
    font-size: 26px;
  }

  .about-guide__descr {
    font-size: 20px;
  }

  .about-guide-content__title {
    font-size: 28px;
  }

  .about-guide-item__text {
    font-size: 20px;
  }

  .guide-download__text {
    font-size: 26px;
  }

  .subscribe__title {
    font-size: 42px;
  }

  .subscribe__text {
    font-size: 20px;
  }

  .response {
    padding: 75px 0s;
  }

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

  .consultation__content {
    max-width: 100%;
  }

  .consultation__awards {
    margin-top: 25px;
  }

  .consultation__modal {
    max-width: 100%;
    margin-top: 25px;
  }
}

@media (max-width: 731px) {
  .modal__content#bookcall-content iframe {
    min-height: 605px !important;
    height: auto !important;
  }
}

@media (max-width: 650px) {
  .footer-bottom__body {
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    row-gap: 20px;
  }

  .bottom-footer__left {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}

@media (max-width: 576px) {
  .response__body {
    padding: 30px;
  }

  .response__text {
    font-size: 20px;
  }

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

@media (max-width: 575px) {
  .modal__window {
    padding-left: 0;
    padding-right: 0;
  }

  .modal__content#bookcall-content {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }

  .modal__content#download-guide-container {
    padding: 1.25rem;
  }
}

@media (max-width: 574px) {
  .subscribe__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px;
  }

  .subscribe-form__input {
    max-width: 100%;
    padding: 20px 25px;
  }
}

@media (max-width: 500px) {
  .for-who__forma {
    padding: 20px;
  }

  .about-guide__slider {
    margin: 0 -10px;
  }

  .guide__slide {
    padding: 10px 20px 40px;
  }
}

@media (max-width: 371px) {
  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .footer__locations {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
  }
  .meetings-iframe-container {
    margin: 0 -15px;
  }
}

@media (any-hover: hover) {
  .menu__call:hover {
    background: rgba(47, 128, 237, 0.2);
  }

  .footer__link:hover {
    text-shadow: 0 0 0.1px #050e1a, 0 0 0.1px #050e1a;
  }
}

#get-the-guide {
  position: relative;
}
#get-the-guide .snackbar {
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0;
}
#get-the-guide .snackbar p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 30px;
  width: 80%;
}

#get-the-guide .snackbar.error p {
  background: #de4244;
}

#get-the-guide .snackbar.success p {
  background: #13966e;
}
.snackbar {
  z-index: 1000;
  position: fixed;
  left: 10px;
  bottom: 40px;
  background-color: transparent;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}

@media (max-width: 576px) {
  .snackbar {
    left: 0;
  }
}

.snackbar p {
  font-size: 18px;
  line-height: 156%;
  margin: 0;
  color: #fff;
  text-align: center;
}
.snackbar a {
  color: #063124;
  font-weight: 500;
  transition: color 0.4s ease 0s;
}
.snackbar a:hover {
  color: #fff;
}

.snackbar.error {
  background: #de4244;
}

.snackbar.success {
  background: #13966e;
}

.cookies_popup {
  align-items: center;
  background: #121212;
  bottom: 25px;
  display: none;
  left: 3.5%;
  padding: 20px 15px;
  position: fixed;
  z-index: 989999;
}
@media (max-width: 1023px) {
  .cookies_popup {
    left: 0;
    bottom: 50px;
  }
}
.cookies_popup p {
  color: #fff;
  font-size: 12px;
  line-height: 150%;
  margin: 0;
}

.cookies_popup > div {
  margin-right: 15px;
}
.cookies_popup a {
  color: #2f80ed;
  text-decoration: none;
}
.cookies_popup button {
  background: #121212;
  border: 1px solid #fff;
  border-radius: 20px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  outline: 0;
  padding: 10px 25px;
}

.loading {
  position: relative;
}

.loading .loader {
  display: flex;
}
.loader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.loader svg {
  width: 200px;
}

.loader circle:first-child {
  -webkit-animation: 1s ease-in-out 0.1s infinite circle;
  animation: 1s ease-in-out 0.1s infinite circle;
}

.loader circle:nth-child(2) {
  -webkit-animation: 1s ease-in-out 0.2s infinite circle;
  animation: 1s ease-in-out 0.2s infinite circle;
}

.loader circle:last-child {
  -webkit-animation: 1s ease-in-out 0.3s infinite circle;
  animation: 1s ease-in-out 0.3s infinite circle;
}

@-webkit-keyframes circle {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes circle {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
