html,
body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  width: 100%;
}

html {
  min-height: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Glober, serif;
  color: #181a1e;
  height: 100vh;
  /* Chrome + Safari =/- */
  text-rendering: geometricPrecision;
  /* Safari */
  -webkit-font-smoothing: antialiased;
  /* Firefox */
  -moz-osx-font-smoothing: grayscale;
  /* Just in case */
  font-smooth: antialiased;
}
body.a-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

sup {
  line-height: 0;
}

button {
  border: none;
  outline: none;
  appearance: none;
  background: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
  color: inherit;
}

svg {
  transition: fill 0.3s;
}

.a-layout {
  overflow: hidden;
  min-height: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
}

.a-container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media only screen and (min-width: 1280px) {
  .a-container {
    max-width: 1280px;
    padding: 0 60px;
  }
}

.a-anchor {
  position: relative;
}
.a-anchor__top {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.a-reg {
  border-radius: 2px;
  height: 44px;
  font-size: 1.25rem;
  line-height: 2.75rem;
  color: #ffffff;
  text-align: center;
  background-image: linear-gradient(150.91deg, #e1b31d 5%, #f2811f 50%, #ff7b12 95%);
  background-size: 200% 100%;
  transition: background-position 0.3s;
  padding: 0 12px;
  font-family: Glober, serif;
}
.a-reg:hover {
  background: #f3801d;
}

.a-button {
  border-radius: 2px;
  height: 60px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.125rem;
  color: #ffffff;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  text-align: center;
  background-image: linear-gradient(150.91deg, #e1b31d 5%, #f2811f 50%, #ff7b12 95%);
  background-size: 200% 100%;
  transition: background-position 0.3s;
  padding: 0 12px;
  font-family: Glober, serif;
}
@media only screen and (min-width: 1280px) {
  .a-button {
    font-size: 1rem;
    line-height: 1.375rem;
  }
}
.a-button_border {
  background-color: transparent;
  background-image: none;
  border: solid 2px #f3801d;
  color: #181a1e;
  transition: background-color 0.3s;
}
.a-button_border:hover {
  background: #f3801d;
}
.a-button:hover {
  background-position: 100% 0;
}

h1.a-title {
  color: var(--white, #fff);
  font-size: 3rem;
  font-weight: 800;
  line-height: 3.3125rem;
  letter-spacing: 0.01em;
}
@media only screen and (min-width: 1280px) {
  h1.a-title {
    font-size: 5.75rem;
    line-height: 6.3125rem;
  }
}

h2.a-title {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.6875rem;
  text-align: center;
  letter-spacing: 0.01em;
  color: #181a1e;
}
h2.a-title span {
  color: #f3801d;
}
@media only screen and (min-width: 1280px) {
  h2.a-title {
    font-size: 3rem;
    line-height: 3rem;
  }
}

.a-subtitle {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6875rem;
  text-align: center;
  color: #959fb2;
  margin: 8px auto 0;
  max-width: 720px;
}
.a-subtitle:after {
  width: 100px;
  height: 1px;
  content: "";
  background: #f3801d;
  display: block;
  margin: 20px auto 0;
}
@media only screen and (min-width: 1280px) {
  .a-subtitle {
    font-size: 1.25rem;
    line-height: 2.125rem;
  }
}

.a-messengers {
  display: flex;
  align-items: center;
}
.a-messengers__messenger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.a-preload__image {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.a-preload__image img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.a-preload__placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: block;
  object-fit: cover;
  filter: blur(15px);
  transition: all 0.5s;
  z-index: 2;
}

.a-badge {
  border-radius: 50%;
  background: #f3801d;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.17);
  position: relative;
  width: 310px;
  height: 310px;
}
.a-badge:before {
  position: absolute;
  left: 12px;
  top: 12px;
  content: "";
  display: block;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  border: solid 1px #ffffff;
  border-radius: 50%;
  z-index: 1;
}
.a-badge__text {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #ffffff;
  z-index: 2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 254px;
  letter-spacing: 0.01em;
  text-align: center;
}
.a-badge__text:before, .a-badge__text:after {
  width: 194px;
  height: 1px;
  margin: 0 auto;
  background: #ffffff;
  display: block;
  content: "";
}
.a-badge__text:before {
  margin-bottom: 10px;
}
.a-badge__text:after {
  margin-top: 10px;
}
.a-badge__title {
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 0.37em;
  text-transform: uppercase;
  background: url(../images/trapezoid.svg) center center no-repeat;
  height: 32px;
  width: 272px;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #181a1e;
}
.a-badge__stars {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.a-header {
  color: #ffffff;
  min-height: 700px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.a-header .a-badge {
  position: absolute;
  right: 0;
  top: 106px;
  transform: rotate(10deg) scale(0.4);
  transform-origin: 100% 0;
}
@media only screen and (min-width: 768px) {
  .a-header .a-badge {
    transform: rotate(10deg) scale(0.6);
    top: auto;
    bottom: -52px;
    transform-origin: 50% 50%;
  }
}
@media only screen and (min-width: 1280px) {
  .a-header .a-badge {
    bottom: 100px;
    top: auto;
    transform: rotate(10deg);
    transform-origin: 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-header {
    min-height: 768px;
  }
}
.a-header .a-menu {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header .a-menu {
    display: flex;
  }
}
.a-header .a-preload {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.a-header:before, .a-header:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.a-header:before {
  z-index: 2;
  background: url(../images/top-bg.svg) left bottom no-repeat;
  left: 0;
  bottom: 0;
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header:before {
    display: block;
  }
}
.a-header:after {
  z-index: 3;
  top: 0;
  left: 0;
  opacity: 0.75;
  background: #000000;
}
@media only screen and (min-width: 1280px) {
  .a-header:after {
    opacity: 0.75;
    background: #000000;
  }
}
.a-header .a-container {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 4;
  flex: 1;
}
.a-header__logo {
  flex: 0 0 196px;
  max-width: 196px;
}
@media only screen and (min-width: 1280px) {
  .a-header__logo {
    margin: -8px 0 0 0;
  }
}
.a-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-header__top {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 40px 0 0 0;
  }
}
.a-header__phone {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.25rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
}
.a-header .a-messengers {
  margin: 0 0 0 18px;
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header .a-messengers {
    display: flex;
  }
}
.a-header .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 12px;
}
.a-header .a-messengers__messenger:hover {
  color: #f3801d;
}
.a-header__callback {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-header__callback {
    display: block;
    margin: -2px 20px 0 auto;
  }
}
@media only screen and (min-width: 1280px) {
  .a-header__callback {
    margin: 0 0 0 auto;
  }
}
.a-header__callback-popup {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin: 10px 0 0 0;
}
.a-header__callback-popup:after {
  width: 100%;
  height: 1px;
  background: linear-gradient(150.91deg, #dccb90 13.28%, #f3801d 92.83%);
  content: "";
  display: block;
  margin: 8px 0 0 0;
  transition: opacity 0.3s;
}
.a-header__callback-popup:hover:after {
  opacity: 0;
}
.a-header__info {
  margin: auto 0 0 0;
  padding: 0 0 72px 0;
}
@media only screen and (min-width: 1280px) {
  .a-header__info {
    padding: 0 0 72px 0;
    max-width: 498px;
  }
}
.a-header__subtitle {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.9375rem;
  margin: 16px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-header__subtitle {
    font-size: 1.5rem;
    line-height: 2.25rem;
    max-width: 430px;
  }
}
.a-header__subtitle span {
  font-weight: bold;
}
@media only screen and (min-width: 1280px) {
  .a-header__subtitle span {
    display: block;
    font-size: 2.125rem;
  }
}
.a-header__address {
  margin: 24px 0 0 0;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.25rem;
  letter-spacing: 0.01em;
}
.a-header__address:before {
  width: 100%;
  height: 1px;
  background: rgba(248, 248, 248, 0.5);
  display: block;
  content: "";
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 1280px) {
  .a-header__address:before {
    margin: 0 0 26px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-header__address {
    width: 412px;
    margin: 24px 0 0 0;
  }
}
.a-header__address-item {
  display: flex;
  align-items: flex-start;
  line-height: 1.625rem;
  color: #b3bdda;
}
.a-header__address-item + .a-header__address-item {
  margin: 16px 0 0 0;
}
.a-header__address-icon {
  margin: -4px 10px 0 0;
}
.a-header__mobile-phone {
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-header__mobile-phone {
    display: none;
  }
}
.a-header .a-button {
  margin: 38px 0 0 0;
}
.a-header_dark {
  color: #181a1e;
  min-height: 0;
}
.a-header_dark:before, .a-header_dark:after {
  display: none;
}
.a-header_dark .a-messengers {
  color: #f3801d;
}
.a-header_dark .a-menu__link {
  color: #181a1e;
}
.a-header_dark .a-header__callback-popup {
  color: #181a1e;
}
.a-header_dark .a-header__callback-popup:after {
  background: #f3801d;
}
.a-header_dark .a-menu-handle__line {
  background: #f3801d;
}
.a-header__index-link {
  flex: 0 0 196px;
  max-width: 196px;
}

.a-menu-handle {
  position: relative;
  flex: 0 0 24px;
  max-width: 24px;
  height: 24px;
  display: block;
}
@media only screen and (min-width: 1280px) {
  .a-menu-handle {
    display: none;
  }
}
.a-menu-handle__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}
.a-menu-handle__line:first-child {
  top: 0;
}
.a-menu-handle__line:last-child {
  bottom: 0;
}
.a-menu-handle__line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.a-mobile-menu {
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #1d2432;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s;
  overflow: scroll;
}
.a-mobile-menu[data-opened=false] {
  transform: translateY(-100%);
}
.a-mobile-menu[data-opened=true] {
  transform: translateY(0);
}
@media only screen and (min-width: 1280px) {
  .a-mobile-menu {
    display: none;
  }
}
.a-mobile-menu__close {
  position: absolute;
  z-index: 10;
  top: 32px;
  right: 20px;
}
.a-mobile-menu__head {
  margin: 0 20px;
  padding: 32px 0 24px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.a-mobile-menu__phone {
  color: #ffffff;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.75rem;
  letter-spacing: 0.065rem;
  text-transform: uppercase;
  display: block;
  text-align: center;
  position: relative;
}
.a-mobile-menu__phone-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.a-mobile-menu__links {
  padding: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.a-mobile-menu__link {
  color: #ffffff;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.5rem;
  letter-spacing: 0.055rem;
  text-transform: uppercase;
}
.a-mobile-menu__link + .a-mobile-menu__link {
  margin: 64px 0 0 0;
}
.a-mobile-menu__messengers {
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  margin: auto 20px 0;
  padding: 28px 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.875rem;
}
.a-mobile-menu .a-messengers {
  margin: 0 0 0 16px;
}
.a-mobile-menu .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 18px;
}
.a-mobile-menu__address {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.01125rem;
  padding: 20px 36px 36px;
  max-width: 376px;
  margin: 0 auto;
}
.a-mobile-menu__address-item {
  display: flex;
  align-items: flex-start;
}
.a-mobile-menu__address-item + .a-mobile-menu__address-item {
  margin: 12px 0 0 0;
}
.a-mobile-menu__address-icon {
  margin: -2px 10px 0 0;
  flex: 0 0 24px;
  max-width: 24px;
}
.a-mobile-menu__foot {
  background: #f3801d;
  padding: 20px 30px;
}
.a-mobile-menu__foot .a-messengers {
  justify-content: center;
  margin: 0;
}
.a-mobile-menu__foot .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 52px;
}
.a-mobile-menu__map {
  color: #f3801d;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.01125rem;
  margin: 12px 0 0 34px;
}

.a-menu {
  align-items: center;
  margin: 0 44px;
  flex: 1;
}
.a-menu__link {
  color: #ffffff;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.a-menu__link + .a-menu__link {
  margin: 0 0 0 32px;
}

.a-creation {
  padding: 40px 0 20px;
}
@media only screen and (min-width: 768px) {
  .a-creation {
    padding: 40px 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-creation {
    padding: 60px 0 30px;
  }
}
.a-creation__features {
  margin: 24px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-creation__features {
    display: flex;
    justify-content: space-between;
    margin: 32px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-creation__feature {
    flex: 0 0 310px;
    max-width: 310px;
  }
}
.a-creation__feature + .a-creation__feature {
  margin: 48px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-creation__feature + .a-creation__feature {
    margin: 0;
  }
}
.a-creation__feature-title {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.875rem;
  letter-spacing: 0.01em;
}
.a-creation__feature-text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.9375rem;
  margin: 16px 0 0 0;
}
.a-creation__feature-icon {
  margin: 0 auto;
  display: block;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.a-offer {
  padding: 40px 0;
  background: #1d2432;
}
@media only screen and (min-width: 768px) {
  .a-offer {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-offer {
    padding: 60px 0;
  }
}
.a-offer .a-title {
  color: #ffffff;
}
.a-offer__cards {
  margin: 48px 0 0 -36px;
  padding: 0 0 20px 0;
  display: flex;
  overflow: scroll;
}
@media only screen and (min-width: 1280px) {
  .a-offer__cards {
    margin: 0 0 0 -48px;
    padding: 0;
    overflow: hidden;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.a-offer .a-offer__card {
  margin: 0 0 0 36px;
}
@media only screen and (min-width: 1280px) {
  .a-offer .a-offer__card {
    margin: 48px 0 0 48px;
  }
}
.a-offer__card {
  background: #ffffff;
  border-radius: 4px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  flex: 0 0 310px;
  max-width: 310px;
}
.a-offer__card > * {
  z-index: 2;
  position: relative;
}
.a-offer__card:before {
  position: absolute;
  content: "";
  border: 1px solid #c3ae65;
  border-radius: 4px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
  left: 12px;
  top: 12px;
  z-index: 1;
}
.a-offer__card_blue {
  background: #235c76;
  color: #ffffff;
}
.a-offer__card_blue:before {
  border-color: #ffffff;
}
.a-offer__card_circle {
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.a-offer__card_circle:before {
  display: none;
}
.a-offer__title {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.875rem;
  letter-spacing: 0.01em;
}
.a-offer__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  color: #000000;
  margin: 6px 0 0 0;
}
.a-offer__card_blue .a-offer__subtitle {
  color: #ffffff;
}
.a-offer__disclaimer {
  color: #959fb2;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  margin: 46px 0 0 0;
  text-align: center;
}
.a-offer__full-price {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 2.375rem;
  margin: 16px 0 0 0;
}
.a-offer__full-price:after {
  width: 100px;
  height: 1px;
  content: "";
  display: block;
  background: #f3801d;
  margin: 12px auto 0;
}
.a-offer__card_blue .a-offer__full-price:after {
  background-color: #ffffff;
}
.a-offer__type {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5625rem;
  text-align: center;
  letter-spacing: 0.01em;
  margin: 12px 0 0 0;
}
.a-offer__price {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 2.375rem;
  color: #959fb2;
}
.a-offer__card_blue .a-offer__price {
  color: #ffffff;
}
.a-offer__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  letter-spacing: 0.01em;
  margin: 12px 0 24px 0;
}
.a-offer .a-button {
  width: 100%;
  margin: auto 0 0 0;
  height: 50px;
}
.a-offer_cert .a-offer__text-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 2rem;
  letter-spacing: 0.0125rem;
  margin: 16px 0 0 0;
}
.a-offer_cert .a-offer__text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.01rem;
}
.a-offer__decor {
  margin: 0 auto;
  text-align: center;
}
.a-offer__stars {
  display: flex;
  justify-content: center;
  margin: 0 0 4px 0;
}
.a-offer__stars .a-offer__star + .a-offer__star {
  margin: 0 0 0 4px;
}

.a-free {
  background: linear-gradient(to bottom right, #4545a6, pink);
  color: #ffffff;
  position: relative;
}
.a-free:after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../images/decor.svg) right top no-repeat;
  background-size: 83px auto;
}
@media only screen and (min-width: 1280px) {
  .a-free:after {
    background-size: 171px auto;
  }
}
.a-free__title {
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 2.375rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-free__title {
    text-align: left;
  }
}
.a-free__subtitle {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: 18px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-free__subtitle {
    font-size: 1.25rem;
    line-height: 1.875rem;
    margin: 8px 0 0 0;
    text-align: left;
  }
}
.a-free .a-messengers {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: 20px 0 0 -24px;
  justify-content: center;
}
.a-free .a-messengers__messenger {
  margin: 0 0 0 24px;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-messengers {
    padding: 36px 0 0 0;
    margin: 0;
    justify-content: flex-start;
  }
}
.a-free__submit {
  flex: 0 0 280px;
  max-width: 280px;
  margin: 0 0 0 20px;
}
.a-free .a-form {
  position: relative;
  z-index: 2;
  padding: 40px 0 30px;
}
.a-free .a-form__messengers-title {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  padding: 36px 0 0 0;
  text-align: center;
}
.a-free .a-form__form {
  margin: 24px 0 0 0;
  position: static;
}
.a-free .a-form__form_desktop {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__form_desktop {
    display: block;
  }
}
.a-free .a-form__form_mobile {
  display: block;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__form_mobile {
    display: none;
  }
}
.a-free .a-form__label {
  color: #ffffff;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__label {
    margin: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__row {
    display: flex;
  }
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__row + .a-form__row {
    margin: 8px 0 0 0;
  }
}
.a-free .a-form__input {
  border: none;
  background: #ffffff;
}
.a-free .a-form__field {
  flex: 1;
}
.a-free .a-form__field + .a-form__field {
  margin: 0 0 0 20px;
}
.a-free .a-form__error {
  color: #ffffff;
}
.a-free .a-form__disclaimer {
  margin: 24px 0 0 0;
  color: #ffffff;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.3125rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form__disclaimer {
    max-width: 260px;
    font-size: 0.75rem;
    line-height: 1rem;
    padding: 8px 0 0 0;
    text-align: left;
    margin: 0 auto;
  }
}
.a-free .a-form__disclaimer a {
  color: #ffffff;
  border: none;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
}
.a-free .a-form__disclaimer a:hover {
  text-decoration-color: transparent;
}
.a-free .a-form__message {
  background: #f3801d;
  color: #ffffff;
}
.a-free .a-form .a-button {
  width: 100%;
  margin: 56px auto 0;
  background: #ffffff;
  color: #181a1e;
  display: block;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  height: 52px;
  transition: all 0.3s;
}
.a-free .a-form .a-button:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.1);
  background: #f3801d;
  color: white;
}
@media only screen and (min-width: 1280px) {
  .a-free .a-form .a-button {
    margin: 0;
  }
}
.a-free__checkup {
  margin: 24px 0 0 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 20px 24px 18px 74px;
  color: #181a1e;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .a-free__checkup {
    padding: 18px 104px 18px 78px;
  }
}
.a-free__checkup-decor {
  position: absolute;
  left: 16px;
  top: 16px;
}
@media only screen and (min-width: 1280px) {
  .a-free__checkup-decor {
    top: 12px;
    left: 18px;
  }
}
.a-free__checkup-title {
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 2.375rem;
}
@media only screen and (min-width: 1280px) {
  .a-free__checkup-title {
    font-size: 1.5rem;
  }
}
.a-free__checkup-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
@media only screen and (min-width: 1280px) {
  .a-free__checkup-text {
    font-size: 1.125rem;
    line-height: 1.6875rem;
  }
}

.a-club-card {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .a-club-card {
    padding: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-club-card {
    padding: 60px 0;
  }
}
.a-club-card__card {
  color: #ffffff;
  background: #1d2432;
  position: relative;
  margin: 0 -20px;
  padding: 48px 20px;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__card {
    display: flex;
    padding: 54px 20px 56px 56px;
    border-radius: 20px;
    margin: 0;
  }
}
.a-club-card__card:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: -18px;
  z-index: 1;
  background: url(../images/card-decor.svg) right bottom no-repeat;
  background-size: 152px auto;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__card:after {
    background-size: 173px auto;
  }
}
.a-club-card__desktop {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__desktop {
    margin: auto 0 0 0;
    display: block;
  }
}
.a-club-card__mobile {
  display: block;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__mobile {
    display: none;
  }
}
.a-club-card__column {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__column {
    flex: 1;
  }
}
@media only screen and (min-width: 1280px) {
  .a-club-card__column:first-child {
    flex: 0 0 264px;
    max-width: 264px;
    margin: 0 110px 0 0;
    display: flex;
    flex-direction: column;
  }
}
.a-club-card__logo {
  width: 122px;
  margin: 0 auto;
  display: block;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__logo {
    margin: 0;
  }
}
.a-club-card__title {
  background: linear-gradient(150.91deg, #dccb90 13.28%, #f3801d 92.83%);
  background-size: 100% 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-weight: 800;
  font-size: 3.25rem;
  line-height: 3.875rem;
  text-transform: uppercase;
  margin: 14px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__title {
    text-align: left;
  }
}
.a-club-card__offer {
  margin: 48px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__offer {
    margin: 0;
    justify-content: flex-start;
  }
}
.a-club-card__price {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.375rem;
}
.a-club-card__delimiter {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.375rem;
  color: #959fb2;
  margin: 0 4px;
}
.a-club-card__period {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.375rem;
}
.a-club-card .a-button {
  width: 100%;
  margin: 16px 0 0 0;
}
.a-club-card__includes {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__includes {
    font-size: 1.75rem;
    line-height: 2.375rem;
    text-align: left;
    margin: 0;
  }
}
.a-club-card__features {
  margin: 32px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__features {
    display: flex;
    justify-content: flex-start;
    margin: 28px 0 0 0;
  }
}
.a-club-card__feature {
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__feature {
    flex: 0 0 210px;
    max-width: 210px;
    text-align: left;
  }
}
.a-club-card__feature + .a-club-card__feature {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__feature + .a-club-card__feature {
    margin: 0 0 0 40px;
  }
}
.a-club-card__feature-price {
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #eb9c4e;
  margin: 16px 0 0 0;
}
.a-club-card__feature-text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: 8px 0 0 0;
}
.a-club-card__super-feature {
  margin: 44px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__super-feature {
    margin: 28px 0 0 0;
  }
}
.a-club-card__super-feature-title {
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 2rem;
  letter-spacing: 0.01em;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__super-feature-title {
    font-size: 1.75rem;
    line-height: 2.375rem;
    text-align: left;
  }
}
.a-club-card__super-feature-title span {
  color: #eb9c4e;
}
.a-club-card__super-feature-text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6875rem;
  margin: 16px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__super-feature-text {
    margin: 2px 0 0 0;
    text-align: left;
  }
}
.a-club-card__benefits {
  margin: 44px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__benefits {
    margin: 36px 0 0 0;
    text-align: left;
  }
}
.a-club-card__benefits-title {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__benefits-title {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
}
.a-club-card__discounts {
  margin: 32px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__discounts {
    margin: 16px 0 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.a-club-card__discount {
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__discount {
    flex: 0 0 188px;
    max-width: 188px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    text-align: left;
  }
}
.a-club-card__discount + .a-club-card__discount {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__discount + .a-club-card__discount {
    margin: 0 0 0 40px;
  }
}
.a-club-card__discount-value {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 3.375rem;
  letter-spacing: 0.01em;
  color: #eb9c4e;
}
.a-club-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -12px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-club-card__pricing {
    justify-content: flex-start;
  }
}
.a-club-card__old-price {
  font-weight: 800;
  font-size: 1rem;
  line-height: 2.375rem;
  text-decoration-line: line-through;
}
.a-club-card__discount-price {
  font-weight: 800;
  font-size: 1rem;
  line-height: 2.375rem;
  color: #eb9c4e;
  margin: 0 0 0 8px;
}
.a-club-card__discount-text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6875rem;
  margin: auto 0 0 0;
}

.a-class {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) {
  .a-class {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-class {
    padding: 60px 0;
  }
}
.a-class_grey {
  background: #f8f8f8;
}
.a-class .a-container {
  display: flex;
}
.a-class_left .a-container {
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1280px) {
  .a-class_left .a-container {
    flex-direction: row;
  }
}
.a-class_right .a-container {
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .a-class_right .a-container {
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .a-class__column {
    flex: 1;
  }
}
.a-class__image {
  width: 100%;
  margin: 0 0 30px 0;
}
@media only screen and (min-width: 1280px) {
  .a-class__image {
    flex: 0 0 50%;
    max-width: 50%;
    margin: 0 0 0 40px;
    width: auto;
  }
}
@media only screen and (min-width: 1280px) {
  .a-class_right .a-class__image {
    margin: 0 40px 0 0;
  }
}
.a-class__title {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.6875rem;
  letter-spacing: 0.01em;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-class__title {
    padding: 8px 0 0 0;
    font-size: 2.75rem;
    text-align: left;
  }
}
.a-class__subtitle {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.125rem;
  margin: 8px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-class__subtitle {
    font-size: 1.5rem;
    line-height: 2.5625rem;
    text-align: left;
  }
}
.a-class__text {
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin: 34px 0 0 0;
}
.a-class__text ul {
  list-style: disc;
}
@media only screen and (min-width: 1280px) {
  .a-class__text {
    margin: 12px 0 0 0;
  }
}
.a-class__feature {
  margin: 26px 0 0 0;
}
.a-class__feature-title {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1.875rem;
  letter-spacing: 0.01em;
  color: #959fb2;
}
.a-class__feature-text {
  font-size: 1.125rem;
  line-height: 1.9375rem;
}
.a-class__offer {
  margin: 28px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-class__offer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (min-width: 1280px) {
  .a-class__offer {
    margin: 36px 0 0 0;
    justify-content: flex-start;
  }
}
.a-class__price {
  font-weight: 800;
  font-size: 2rem;
  line-height: 2.375rem;
}
.a-class__delimiter {
  font-size: 2rem;
  line-height: 2.375rem;
  color: #959fb2;
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-class__delimiter {
    display: block;
  }
}
.a-class__period {
  font-size: 1.5rem;
  line-height: 2.375rem;
}
.a-class__buttons {
  margin: 16px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-class__buttons {
    display: flex;
  }
}
.a-class .a-button {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  .a-class .a-button {
    flex: 1;
    width: auto;
  }
}
.a-class .a-button + .a-button {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-class .a-button + .a-button {
    margin: 0 0 0 20px;
  }
}
.a-class .a-button_border {
  color: #f3801d;
}
.a-class .a-button_border:hover {
  color: #ffffff;
}

.a-teachers {
  padding: 20px 0 40px;
}
.a-teachers .a-container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .a-teachers .a-container {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-teachers .a-container {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .a-teachers {
    padding: "only screen and (min-width: 768px)";
  }
}
@media only screen and (min-width: 1280px) {
  .a-teachers {
    padding: 30px 0 60px;
  }
}
.a-teachers .a-reg {
  margin-top: 16px;
}
.a-teachers .a-button {
  width: 100%;
  margin: auto 0 0 0;
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-teachers .a-button {
    display: none;
  }
}
.a-teachers__list {
  display: flex;
  overflow: scroll;
  margin: 32px -20px 0 -40px;
  padding: 0 20px 20px;
}
@media only screen and (min-width: 1280px) {
  .a-teachers__list {
    margin: 20px 0 0 -32px;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
  }
}
.a-teachers__teacher {
  flex: 0 0 266px;
  max-width: 266px;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  margin: 0 0 0 20px;
}
@media only screen and (min-width: 1280px) {
  .a-teachers__teacher {
    flex: auto;
    width: calc(25% - 32px);
    max-width: calc(25% - 32px);
    margin: 32px 0 0 32px;
  }
}
.a-teachers__teacher-button {
  cursor: pointer;
  text-align: left;
  margin: 0 0 20px 0;
}
@media only screen and (min-width: 1280px) {
  .a-teachers__teacher-button {
    margin: 0;
  }
}
.a-teachers__teacher-button * {
  pointer-events: none;
}
.a-teachers__teacher-button:hover .a-teachers__position,
.a-teachers__teacher-button:hover .a-teachers__name {
  color: #f3801d;
}
.a-teachers__teacher-button:hover .a-teachers__image:after {
  opacity: 1;
}
.a-teachers__img {
  width: 100%;
  display: block;
}
.a-teachers__image {
  position: relative;
}
.a-teachers__image:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  outline: solid 6px #f3801d;
  outline-offset: -6px;
  transition: opacity 0.3s;
  opacity: 0;
}
.a-teachers__name {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.01em;
  margin: 24px 0 0 0;
  transition: color 0.3s;
}
.a-teachers__position {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #86878a;
  margin: 8px 0 0 0;
  transition: color 0.3s;
}

.a-popup-teacher {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}
.a-popup-teacher__head {
  display: flex;
  align-items: center;
  padding: 40px 12px 20px;
  border-bottom: solid 1px rgba(149, 159, 178, 0.3);
}
@media only screen and (min-width: 1280px) {
  .a-popup-teacher__head {
    padding: 28px 80px 16px 32px;
  }
}
.a-popup-teacher__image {
  border-radius: 50%;
  height: 100px;
  margin: 0 12px 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-popup-teacher__image {
    height: 100px;
    margin: 0 20px 0 0;
  }
}
.a-popup-teacher__name {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.6875rem;
  letter-spacing: 0.01em;
}
.a-popup-teacher__position {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6875rem;
  margin: 4px 0 0 0;
  color: #959fb2;
}
.a-popup-teacher__info {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  overflow-y: scroll;
  padding: 20px 16px 20px;
  flex: 1;
}
@media only screen and (min-width: 1280px) {
  .a-popup-teacher__info {
    padding: 32px 32px 32px;
  }
}

.a-events {
  padding: 40px 0;
}
.a-events .a-container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .a-events .a-container {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-events .a-container {
    padding: 0 60px;
  }
}
@media only screen and (min-width: 768px) {
  .a-events {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-events {
    padding: 60px 0;
  }
}
.a-events__list {
  margin: 32px 0 0 -20px;
  padding: 0 20px 20px 20px;
  display: flex;
  overflow: scroll;
}
@media only screen and (min-width: 1280px) {
  .a-events__list {
    margin: 0 0 0 -48px;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
  }
}
.a-events__event {
  flex: 0 0 320px;
  max-width: 320px;
  margin: 0 0 0 20px;
}
@media only screen and (min-width: 1280px) {
  .a-events__event {
    margin: 48px 0 0 48px;
    flex: auto;
    width: calc(33.3333333333% - 48px);
    max-width: calc(33.3333333333% - 48px);
  }
}
.a-events__image {
  width: 100%;
  display: block;
  margin: 16px 0 0 0;
}
.a-events__date {
  display: flex;
  align-items: baseline;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.1875rem;
  letter-spacing: 0.0875rem;
  text-transform: uppercase;
}
.a-events__date-number {
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 2.625rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #f3801d;
  margin: 0 4px 0 0;
}
.a-events__date-date {
  display: flex;
  align-items: center;
}
.a-events__date-date:after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3801d;
  display: block;
  margin: 0 8px;
}
.a-events__date-date:last-child:after {
  display: none;
}
.a-events__title {
  font-size: 1.375rem;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  margin: 16px 0 0 0;
  color: #f3801d;
}
@media only screen and (min-width: 1280px) {
  .a-events__title {
    font-size: 1.625rem;
    line-height: 2rem;
  }
}
.a-events__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #000000;
  margin: 12px 0 0 0;
}

.a-gallery {
  padding: 20px 0 10px;
  margin: 0 0 0 -4px;
  display: flex;
  overflow: scroll;
}
@media only screen and (min-width: 768px) {
  .a-gallery {
    padding: 40px 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-gallery {
    padding: 60px 0 30px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-gallery {
    flex-wrap: wrap;
    overflow: hidden;
    width: 100%;
    margin: 0;
  }
}
.a-gallery__image {
  position: relative;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1;
  margin: 0 0 0 4px;
  max-width: 420px;
}
@media only screen and (min-width: 1280px) {
  .a-gallery__image {
    margin: 2px;
  }
}
@media only screen and (not (pointer: coarse)) and (min-width: 1280px) {
  .a-gallery__image:hover {
    transform: scale(1.03);
    box-shadow: 0 2px 20px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
  }
}
.a-gallery__image * {
  pointer-events: none;
}
.a-gallery__img {
  display: block;
  height: 280px;
}
@media only screen and (min-width: 1280px) {
  .a-gallery__img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
  }
}

.a-contacts {
  padding: 40px 0 20px;
}
@media only screen and (min-width: 768px) {
  .a-contacts {
    padding: 40px 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-contacts {
    padding: 60px 0 30px;
  }
}
.a-contacts .a-title {
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-contacts .a-title {
    text-align: left;
  }
}
.a-contacts__columns {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-contacts__columns {
    display: flex;
  }
}
.a-contacts__map {
  width: calc(100% + 40px);
  height: 262px;
  margin: 0 -20px 32px -20px;
}
@media only screen and (min-width: 768px) {
  .a-contacts__map {
    height: 400px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-contacts__map {
    width: auto;
    height: auto;
    flex: 0 0 65%;
    max-width: 65%;
    margin: 0 48px 0 0;
    min-height: 552px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-contacts__info {
    flex: 1;
  }
}
.a-contacts__city {
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 2.125rem;
  text-transform: uppercase;
  vertical-align: center;
}
.a-contacts__city svg {
  margin: 3px 4px 0 0;
}
.a-contacts__address {
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 2.125rem;
  margin: 4px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-contacts__address {
    font-size: 1.5rem;
    line-height: 2.5625rem;
  }
}
.a-contacts__features {
  margin: 22px 0 0 0;
}
.a-contacts__feature {
  border-top: solid 1px rgba(149, 159, 178, 0.3);
  padding: 22px 0 20px;
}
.a-contacts__feature-distance {
  font-size: 1.25rem;
  line-height: 1.6875rem;
  letter-spacing: 0.01em;
  color: #f3801d;
}
.a-contacts__feature-from {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  margin: 4px 0 0 0;
}
.a-contacts__feature-from b,
.a-contacts__feature-from strong {
  font-weight: 800;
}
.a-contacts__feature-from svg {
  margin: 0 6px 0 0;
}

.a-feedback {
  padding: 20px 0 40px;
}
@media only screen and (min-width: 768px) {
  .a-feedback {
    padding: "only screen and (min-width: 768px)";
  }
}
@media only screen and (min-width: 1280px) {
  .a-feedback {
    padding: 30px 0 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-container {
    display: flex;
  }
}
.a-feedback .a-title {
  text-align: left;
}
.a-feedback .a-subtitle {
  text-align: left;
}
.a-feedback .a-subtitle:after {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-feedback__column {
    flex: 1;
    margin: 0 80px 0 0;
  }
}
.a-feedback__contacts {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-feedback__contacts {
    margin: 32px 0 0 0;
  }
}
.a-feedback__contact + .a-feedback__contact {
  margin: 16px 0 0 0;
}
.a-feedback__contact a {
  display: inline-flex;
  align-items: center;
  color: #f3801d;
}
.a-feedback__contact svg {
  margin: 0 16px 0 0;
}
.a-feedback__contact span {
  color: #181a1e;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 8px;
  text-decoration-skip-ink: none;
  transition: text-decoration 0.3s;
}
.a-feedback__contact:hover span {
  text-decoration-color: rgba(243, 128, 29, 0.5);
  color: #f3801d;
}
.a-feedback .a-form {
  padding: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-form {
    flex: 0 0 58%;
    max-width: 58%;
    padding: 26px 0 0 0;
  }
}
.a-feedback .a-form .a-button {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-form .a-button {
    margin-left: 0;
    margin-right: 0;
  }
}

.a-faq {
  padding: 40px 0;
  background: #f8f8f8;
}
@media only screen and (min-width: 768px) {
  .a-faq {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-faq {
    padding: 60px 0;
  }
}
.a-faq__handle {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.a-faq__handle:before, .a-faq__handle:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #f3801d;
  transition: transform 0.3s;
}
.a-faq__handle:before {
  width: 100%;
  height: 2px;
}
.a-faq__handle:after {
  width: 2px;
  height: 100%;
}
.a-faq .a-accordion {
  margin: 36px auto 0;
  max-width: 800px;
}
.a-faq .ac {
  border-top: solid 1px #f3801d;
  padding: 26px 0 28px;
}
.a-faq .ac:last-child {
  border-bottom: solid 1px #f3801d;
}
.a-faq .ac .ac-panel {
  visibility: hidden;
}
.a-faq .ac.is-active .ac-panel {
  padding: 20px 0 0 0;
  visibility: visible;
}
.a-faq .ac.is-active .a-faq__handle:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.a-faq .ac-header {
  margin: 0;
  padding: 0;
}
.a-faq .ac-trigger {
  font-weight: 800;
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  text-align: left;
  padding: 0 28px 0 0;
  width: 100%;
  display: block;
  cursor: pointer;
  position: relative;
}
.a-faq .ac-panel {
  font-weight: 400;
  font-size: 1rem;
  line-height: 2rem;
  overflow: hidden;
  transition-property: height, visibility, padding;
  transition-timing-function: linear;
}

.a-footer {
  background: #1d2432;
  padding: 48px 0 0 0;
  color: #ffffff;
  margin: auto 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer {
    padding: 40px 0 0 0;
  }
}
.a-footer .a-menu {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .a-footer .a-menu {
    justify-content: flex-end;
    flex-direction: row;
    margin: 0;
  }
}
.a-footer .a-menu__link + .a-menu__link {
  margin: 68px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer .a-menu__link + .a-menu__link {
    margin: 0 0 0 60px;
  }
}
.a-footer__logo {
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .a-footer__logo {
    margin: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__row {
    display: flex;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__row_top {
    align-items: center;
  }
}
.a-footer__row_middle {
  padding: 0 0 48px 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__row_middle {
    margin: 30px 0 0 0;
    padding: 0 0 54px 0;
  }
}
.a-footer__row_bottom {
  background: #eb9c4e;
  color: #181a1e;
  display: block;
  padding: 24px 0;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75rem;
}
@media only screen and (min-width: 1280px) {
  .a-footer__row_bottom {
    padding: 20px 0;
  }
}
.a-footer__row_bottom .a-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer__row_bottom .a-container {
    flex-direction: row;
    align-items: center;
  }
}
.a-footer__link {
  margin: 4px 0 0 0;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  transition: text-decoration 0.3s;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer__link {
    margin: 0 0 0 40px;
  }
}
.a-footer__link:hover {
  text-decoration-color: #181a1e;
}
.a-footer__developer {
  margin: 4px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__developer {
    margin: 0 0 0 auto;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__column:first-child {
    flex: 0 0 390px;
    max-width: 390px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__column:last-child {
    margin: 0 0 0 auto;
    flex: 1;
  }
}
.a-footer__column > .a-messengers {
  margin: 48px 0 0 0;
  color: #f3801d;
  justify-content: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer__column > .a-messengers {
    margin: 36px 0 0 0;
    justify-content: flex-start;
  }
}
.a-footer__column > .a-messengers .a-messengers__messenger:hover {
  color: #ffffff;
}
.a-footer__column > .a-messengers .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 52px;
}
.a-footer__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.625rem;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer__text {
    text-align: left;
  }
}
.a-footer__address {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375rem;
  text-align: center;
  letter-spacing: 0.01em;
  padding: 48px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__address {
    text-align: right;
    padding: 0;
  }
}
.a-footer__address button,
.a-footer__address a {
  display: inline;
  color: #f3801d;
}
.a-footer__contacts {
  text-align: center;
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__contacts {
    text-align: right;
    margin: 20px 0 0 0;
  }
}
.a-footer__contacts-row {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer__contacts-row {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}
.a-footer__contacts-row + .a-footer__contacts-row {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__contacts-row + .a-footer__contacts-row {
    margin: 16px 0 0 0;
  }
}
.a-footer__contacts-row .a-messengers {
  margin: 0 0 0 12px;
  color: #ffffff;
}
.a-footer__contacts-row .a-messengers__messenger:hover {
  color: #f3801d;
}
.a-footer__contacts-row .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 16px;
}
.a-footer__contacts-title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.75rem;
  opacity: 0.5;
  flex: 0 0 100%;
  max-width: 100%;
}
@media only screen and (min-width: 1280px) {
  .a-footer__contacts-title {
    max-width: none;
    flex: auto;
  }
}
.a-footer__contact {
  margin: 0 0 0 12px;
}

.a-secret-1 {
  display: none !important;
}

.a-secret-2 {
  position: absolute;
  left: -10000px;
  top: -10000px;
}

.a-none {
  display: none;
}

.a-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.a-transition {
  pointer-events: auto;
  transition: opacity 0.5s;
}

/** popups **/
.a-overlay {
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.85);
  overflow: scroll;
  transition: opacity 0.5s;
}

.a-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 28px 20px 44px;
  border-radius: 8px;
  box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  overflow: scroll;
}
.a-popup_top {
  top: 40px;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .a-popup {
    height: auto;
    max-width: 650px;
    width: calc(100% - 40px);
    overflow: hidden;
    padding: 28px 32px 24px;
  }
}
.a-popup__messengers {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5rem;
  letter-spacing: 0.01125rem;
  margin: 16px 0 0 0;
}
.a-popup__messengers .a-messengers {
  margin: 0 0 0 12px;
  color: #f3801d;
}
.a-popup__messengers .a-messengers .a-messengers__messenger + .a-messengers__messenger {
  margin: 0 0 0 20px;
}
.a-popup__title {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 2rem;
  letter-spacing: 0.0225rem;
  padding: 0 52px 0 0;
}
@media only screen and (min-width: 768px) {
  .a-popup__title {
    font-size: 2.25rem;
    line-height: 3rem;
    letter-spacing: 0.0225rem;
  }
}
.a-popup__subtitle {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #959fb2;
  margin: 8px 0 0 0;
}
.a-popup__close {
  position: absolute;
  width: 44px;
  height: 44px;
  background: #f3801d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 16px;
  right: 16px;
}
.a-popup .a-form {
  margin: 24px 0 0 0;
}
.a-popup .a-form .a-button {
  max-width: 312px;
  margin: 38px auto 0;
  display: block;
}
.a-popup .a-form__disclaimer {
  text-align: center;
}
.a-popup_teacher {
  max-height: calc(100% - 116px);
  max-width: calc(100% - 40px);
  padding: 0;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .a-popup_teacher {
    max-width: 650px;
  }
}

/** popups **/
/** forms **/
.a-form {
  position: relative;
}
.a-form__row + .a-form__row {
  margin: 30px 0 0 0;
}
.a-form__form {
  position: relative;
}
.a-form__field {
  position: relative;
}
.a-form__label {
  font-size: 1.125rem;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  color: #181a1e;
  font-family: Glober, serif;
  margin: 0 0 8px 0;
  display: block;
}
.a-form__label_mandatory:after {
  content: "*";
  color: #f3801d;
  margin: 0 0 0 4px;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
}
.a-form__input, .a-form__textarea {
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
  color: black;
  font-weight: 400;
  width: 100%;
  font-family: Glober, serif;
  border: solid 1px #959fb2;
  font-size: 1.125rem;
  line-height: 1.5rem;
  text-align: left;
}
.a-form__input {
  height: 52px;
  padding: 0 12px;
}
.a-form__textarea {
  min-height: 60px;
  resize: vertical;
  padding: 8px;
}
@media only screen and (min-width: 768px) {
  .a-form__textarea {
    min-height: 78px;
  }
}
.a-form .a-button {
  width: 100%;
  margin: 46px 0 0 0;
  max-width: 312px;
}
.a-form__disclaimer {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.25rem;
  color: #959fb2;
  font-family: Glober, serif;
  margin: 16px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-form__disclaimer {
    text-align: left;
  }
}
.a-form__disclaimer a {
  color: #f3801d;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  text-decoration-color: transparent;
}
.a-form__disclaimer a:hover {
  text-decoration-color: #f3801d;
}
.a-form__error {
  position: absolute;
  left: 0;
  bottom: -18px;
  color: #f3801d;
  font-size: 0.75rem;
}
.a-form__form {
  position: relative;
}
.a-form__message {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  color: #181a1e;
  background: #ffffff;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.a-form__message_visible {
  opacity: 1;
}

/** forms **/
@keyframes spin1 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.a-circle1 {
  animation: spin1 2s infinite linear;
  transform-origin: 67px 50px;
  display: block;
}

.a-circle2 {
  animation: spin2 2s infinite linear;
  transform-origin: 67px 50px;
  display: block;
}

.a-circle3 {
  animation: spin1 2s infinite linear;
  transform-origin: 67px 50px;
  display: block;
}

.a-loader {
  height: 200px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.a-logo-circle-1 {
  animation: spin1 10s infinite linear;
  transform-origin: 87px 16px;
}

.a-logo-circle-2 {
  animation: spin2 10s infinite linear;
  transform-origin: 87px 16px;
}

.a-logo-circle-3 {
  animation: spin1 10s infinite linear;
  transform-origin: 87px 16px;
}

.a-loader-overlay {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-color: #f3801d;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
.a-loader-overlay_visible {
  opacity: 1;
  pointer-events: auto;
}

.a-error {
  margin: auto 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.a-error h1.a-title {
  color: #181a1e;
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  line-height: 2.6875rem;
  letter-spacing: 0.02rem;
  margin: 32px 0 0 0;
}
.a-error .a-subtitle {
  margin: 16px auto 0;
}
.a-error .a-subtitle:after {
  display: none;
}
.a-error .a-subtitle:before {
  content: "";
  width: 100px;
  height: 1px;
  background: #f3801d;
  margin: 0 auto 16px;
  display: block;
}
.a-error__image {
  display: block;
  margin: 0 auto;
}

.a-kids {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) {
  .a-kids {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids .a-title,
  .a-kids .a-subtitle {
    text-align: left;
  }
}
.a-kids .a-title {
  margin: 40px 0 0 0;
}
.a-kids .a-subtitle {
  max-width: none;
}
.a-kids .a-subtitle:after {
  display: none;
}
.a-kids__block {
  display: flex;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1280px) {
  .a-kids__block {
    flex-direction: row;
  }
}
.a-kids__block + .a-kids__block {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-kids__column:first-child {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0 54px 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids__column:last-child {
    flex: 1;
  }
}
.a-kids__text {
  color: #181a1e;
  font-size: 1.25rem;
  font-style: normal;
  line-height: 2.125rem;
  margin: 12px 0 0 0;
}
.a-kids__actions {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-kids__actions {
    margin: 0;
    padding: 0 32px 0 0;
  }
}
.a-kids__title {
  color: #181a1e;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 2.1875rem;
  letter-spacing: 0.01625rem;
}
.a-kids__actions-action {
  color: #f3801d;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.875rem;
  letter-spacing: 0.01375rem;
  margin: 24px 0 0 0;
}
.a-kids__actions-text {
  color: #181a1e;
  font-size: 1.125rem;
  line-height: 1.9375rem;
  margin: 8px 0 0 0;
}
.a-kids__kid {
  position: relative;
  margin: 0 auto;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .a-kids__kid {
    height: 494px;
  }
}
.a-kids__kid-img {
  display: block;
  margin: 0 auto;
  max-width: 220px;
}
@media only screen and (min-width: 768px) {
  .a-kids__kid-img {
    max-width: 100%;
  }
}
.a-kids__kid-circle {
  position: absolute;
  width: 320px;
  height: 320px;
  left: 50%;
  top: 50%;
  animation: spin1 24s infinite linear;
  background: url("../images/kids/kid-circle.svg") 0 0 no-repeat;
  margin: -160px 0 0 -160px;
}
@media only screen and (min-width: 768px) {
  .a-kids__kid-circle {
    margin: -247px 0 0 -247px;
    width: 494px;
    height: 494px;
  }
}
.a-kids__slider {
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .a-kids__slider {
    margin: 48px 0 0 0;
  }
}
.a-kids__slider-img {
  display: block;
  max-width: 100%;
  cursor: pointer;
}
.a-kids__help {
  margin: 60px 0 0 0;
}
.a-kids__list {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 -106px;
}
@media only screen and (min-width: 768px) {
  .a-kids__list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids__list {
    flex-wrap: nowrap;
  }
}
.a-kids__item {
  margin: 40px 0 0 106px;
}
@media only screen and (min-width: 768px) {
  .a-kids__item {
    flex: auto;
    width: calc(50% - 106px);
    max-width: calc(50% - 106px);
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids__item {
    flex: 1;
  }
}
.a-kids__help-title {
  color: #181a1e;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.5rem;
  letter-spacing: 0.01125rem;
  margin: 24px 0 0 0;
}
.a-kids__help-text {
  color: #181a1e;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin: 8px 0 0 0;
}
.a-kids__media {
  margin: 68px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-kids__media .youtube-player {
    height: 100%;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids__media {
    display: flex;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1280px) {
  .a-kids__media-column {
    flex: auto;
    width: calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
.a-kids__cta {
  border-radius: 4px;
  background: #1d2432;
  box-shadow: 0 16px 0px -12px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 30px 38px 80px;
  position: relative;
  margin: 32px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-kids__cta {
    margin: 0;
  }
}
.a-kids__cta:before {
  border-radius: 4px;
  border: solid 1px #ffffff;
  opacity: 0.5;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 24px);
  height: calc(100% - 16px);
  pointer-events: none;
}
.a-kids__notes {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}
.a-kids__family {
  display: block;
  margin: 22px auto 0;
  max-width: 100%;
}
.a-kids__cta-text {
  color: #ffffff;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 2rem;
  letter-spacing: 0.015rem;
  margin: 40px auto 0;
}
.a-kids__cta-text span {
  color: #f3801d;
}
.a-kids__cta-offer {
  text-align: center;
  margin: 18px auto 0;
}
@media only screen and (min-width: 768px) {
  .a-kids__cta-offer {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.a-kids__cta-price {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  line-height: 2.375rem;
}
.a-kids__cta-delimiter {
  color: #959fb2;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 2.375rem;
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-kids__cta-delimiter {
    display: block;
  }
}
.a-kids__cta-lesson {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: normal;
}
.a-kids .a-button {
  width: 100%;
  margin: 22px auto 0;
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-kids .a-button {
    width: auto;
    min-width: 316px;
  }
}
.a-kids .a-slider-control {
  width: 60px;
  height: 60px;
  background: #ffffff;
  border-radius: 50%;
}
.a-kids .a-slider-control:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent #f3801d;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
.a-kids .a-slider-control_prev {
  margin-left: -30px;
}
.a-kids .a-slider-control_prev:before {
  transform: scaleX(-1) translateY(-50%);
}
.a-kids .a-slider-control_next {
  margin-right: -30px;
}
.a-kids .a-slider-control_next:before {
  left: auto;
  right: 50%;
}

.a-slider-controls {
  position: absolute;
  pointer-events: none;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.a-slider-control {
  pointer-events: auto;
  position: relative;
}

.a-video {
  padding: 40px 0;
}
@media only screen and (min-width: 768px) {
  .a-video {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-video {
    padding: 60px 0;
  }
}
.a-video__list {
  display: flex;
  margin: 0 -20px 0 -44px;
  padding: 0 20px 20px;
  overflow: scroll;
}
@media only screen and (min-width: 1280px) {
  .a-video__list {
    margin: 0;
    padding: 0 0 20px 0;
  }
}
.a-video .youtube-player {
  height: 474px;
  flex: 0 0 266px;
  max-width: 266px;
  margin: 0 0 0 24px;
}
@media only screen and (min-width: 1280px) {
  .a-video .youtube-player {
    margin: 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-video .youtube-player + .youtube-player {
    margin: 0 0 0 24px;
  }
}

.a-reviews {
  padding-bottom: 40px;
}
@media only screen and (min-width: 1280px) {
  .a-reviews {
    padding-bottom: 60px;
  }
}
.a-reviews__title {
  color: #000000;
  font-size: 3rem;
  line-height: 4.375rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.03rem;
  padding: 24px 0 0 78px;
  margin: 0 0 -24px 0;
  background-image: url("../images/treble-clef.svg");
  background-repeat: no-repeat;
  background-position: 32px 0;
  background-size: 30px 75px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .a-reviews__title {
    font-size: 4.25rem;
    line-height: 6.1875rem;
    letter-spacing: 0.0425rem;
    padding: 26px 0 0 106px;
    margin: 0 0 -32px 0;
    background-position: 50px 0;
    background-size: 39px 97px;
  }
}
.a-reviews__slider {
  width: 100%;
  position: relative;
}
.a-reviews .tns-item {
  padding: 4px;
}
.a-reviews .tns-item:after {
  border-radius: 0 0 8px 8px;
  border: 2px solid #959fb2;
  opacity: 0.5;
  background: #959fb2;
  content: "";
  height: 10px;
  width: 95%;
  margin: -4px auto 0;
  display: block;
  position: relative;
  z-index: 0;
}
.a-reviews .a-slider-controls {
  bottom: 32px;
  top: auto;
  transform: none;
}
@media only screen and (min-width: 768px) {
  .a-reviews .a-slider-controls {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }
}
.a-reviews .a-slider-control {
  width: 52px;
  height: 52px;
  background: url("../images/review-arrow.svg") 0 0 no-repeat;
}
@media only screen and (min-width: 768px) {
  .a-reviews .a-slider-control {
    width: 88px;
    height: 88px;
  }
}
.a-reviews .a-slider-control_prev {
  transform: scaleX(-1);
  margin-left: 32px;
}
@media only screen and (min-width: 768px) {
  .a-reviews .a-slider-control_prev {
    margin-left: -16px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-reviews .a-slider-control_prev {
    margin-left: -40px;
  }
}
.a-reviews .a-slider-control_next {
  margin-right: 32px;
}
@media only screen and (min-width: 768px) {
  .a-reviews .a-slider-control_next {
    margin-right: -16px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-reviews .a-slider-control_next {
    margin-right: -40px;
  }
}

.a-review {
  border-radius: 8px;
  border: 2px solid #959fb2;
  background: #ffffff;
  padding: 36px 18px 86px 30px;
  color: #000000;
  font-size: 0.875rem;
  line-height: 1.5rem;
  letter-spacing: 0.00875rem;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) {
  .a-review {
    padding: 56px 96px 40px 106px;
    font-size: 1.5rem;
    line-height: 2.1875rem;
    letter-spacing: 0.015rem;
  }
}
.a-review__text {
  display: block;
  font-weight: 400;
}
.a-review__author {
  margin: 12px 0 0 0;
  font-weight: 800;
}
@media only screen and (min-width: 768px) {
  .a-review__author {
    margin: 40px 0 0 0;
  }
}

.a-enroll {
  position: fixed;
  z-index: 1000;
  left: 12px;
  bottom: 12px;
  opacity: 0.9;
}
@media only screen and (min-width: 768px) {
  .a-enroll {
    left: auto;
    right: 14px;
    bottom: 14px;
  }
}
.a-enroll__inner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #f3801d;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: #ffffff;
  overflow: visible;
}
.a-enroll__icon {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%) scale(0.6);
}
.a-enroll__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25rem;
}
.a-enroll__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  background: url("../images/enroll-circle.svg") 0 0 no-repeat;
  background-size: contain;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  display: block;
  animation: spin1 58s infinite linear;
}

.ya-sprav {
  display: flex;
  flex-direction: column-reverse;
}
.ya-sprav__widget {
  padding-left: 78px;
  margin-bottom: -40px;
}
@media only screen and (min-width: 768px) {
  .ya-sprav__widget {
    padding-left: 112px;
    margin-bottom: -44px;
  }
}