@font-face {
  font-family: MyriadProRegular;
  font-display: swap;
  src: url("../fonts/MyriadProRegular.woff2") format("woff2"), url("../fonts/MyriadProRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Fontawesome;
  font-display: swap;
  src: url("../fonts/Fontawesome-webfont.woff2") format("woff2"), url("../fonts/Fontawesome-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSansBold;
  font-display: swap;
  src: url("../fonts/OpenSansBold.woff2") format("woff2"), url("../fonts/OpenSansBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: JuraDemiBold;
  font-display: swap;
  src: url("../fonts/JuraDemiBold.woff2") format("woff2"), url("../fonts/JuraDemiBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: OpenSansRegular;
  font-display: swap;
  src: url("../fonts/OpenSansRegular.woff2") format("woff2"), url("../fonts/OpenSansRegular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
.diagnosis-app {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 18px;
  font-family: inherit;
  color: #1f2933;
}

.diagnosis-app * {
  box-sizing: border-box;
}

.is-hidden {
  display: none !important;
}

.diagnosis-start,
.diagnosis-loading,
.diagnosis-result,
.story-card,
.markers-block,
.result-block {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.diagnosis-start h1,
.diagnosis-result h2,
.diagnosis-loading h2,
.story-card h2 {
  margin: 0 0 14px;
  line-height: 1.25;
}

.diagnosis-start p,
.diagnosis-loading p,
.story-text {
  line-height: 1.65;
}

.story-progress {
  margin: 0 0 16px;
  font-size: 14px;
  color: #64748b;
}

.story-card {
  margin-bottom: 18px;
}

.story-text strong {
  font-weight: 700;
  background: rgba(250, 204, 21, 0.28);
  padding: 1px 4px;
  border-radius: 5px;
}

.markers-block h3 {
  margin: 0 0 18px;
}

.marker-item {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(280px, 2fr);
  gap: 18px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #e2e8f0;
}

.marker-item:first-child {
  border-top: none;
}

.marker-label {
  font-weight: 600;
  line-height: 1.35;
}

.marker-scale {
  width: 100%;
}

.scale-visual {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.scale-no {
  font-size: 13px;
  font-weight: 400;
  color: #2563eb;
  text-transform: lowercase;
}

.scale-yes {
  font-size: 24px;
  font-weight: 800;
  color: #dc2626;
  text-transform: uppercase;
}

.scale-bars {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  color: #64748b;
}

.scale-bars span {
  display: inline-block;
  width: 8px;
  background: currentColor;
  border-radius: 3px 3px 0 0;
}

.scale-bars span:nth-child(1) {
  height: 6px;
}

.scale-bars span:nth-child(2) {
  height: 9px;
}

.scale-bars span:nth-child(3) {
  height: 12px;
}

.scale-bars span:nth-child(4) {
  height: 15px;
}

.scale-bars span:nth-child(5) {
  height: 18px;
}

.scale-bars span:nth-child(6) {
  height: 21px;
}

.scale-bars span:nth-child(7) {
  height: 24px;
}

.scale-bars span:nth-child(8) {
  height: 27px;
}

.marker-range {
  width: 100%;
  min-height: 34px;
  cursor: pointer;
  accent-color: #2563eb;
}

.scale-numbers {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #64748b;
  margin-top: 2px;
}

.marker-value {
  margin-top: 6px;
  font-size: 13px;
  color: #334155;
}

.diagnosis-actions,
.result-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.diagnosis-btn {
  border: 0;
  border-radius: 12px;
  padding: 12px 18px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.diagnosis-btn:hover {
  transform: translateY(-1px);
}

.diagnosis-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.diagnosis-btn.secondary {
  background: #e2e8f0;
  color: #1f2933;
}

.result-block {
  margin-top: 18px;
  line-height: 1.6;
}

.result-block h3 {
  margin-top: 0;
}

.result-block ul {
  padding-left: 20px;
}

@media (max-width: 720px) {
  .diagnosis-app {
    padding: 20px 12px;
  }
  .diagnosis-start,
  .diagnosis-loading,
  .diagnosis-result,
  .story-card,
  .markers-block,
  .result-block {
    padding: 18px;
    border-radius: 14px;
  }
  .marker-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .scale-yes {
    font-size: 22px;
  }
  .diagnosis-btn {
    width: 100%;
  }
  .diagnosis-actions,
  .result-actions {
    flex-direction: column;
  }
}
* {
  margin: 0;
  padding: 0;
}

p:last-of-type {
  margin-bottom: 0;
}

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

main section ul li {
  margin-left: 25px;
}

.page {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

.main {
  flex-grow: 1;
}

button, button:focus, button:active {
  outline: none;
  cursor: pointer;
}

.button_orange, .button_blue, .button_green {
  display: block;
  height: 39px;
  color: white;
  line-height: 1.4;
  border: none;
  border-radius: 7px;
  text-align: center;
}

a.button_orange, a.button_blue, .button_green {
  line-height: 39px;
}
a.button_orange:hover, a.button_blue:hover, .button_green:hover {
  color: white;
  text-decoration: none;
}

.button_orange {
  background-color: #f99a11;
}
.button_orange:hover, .button_orange:focus {
  background-color: #0671b4;
}

.button_blue.active, .button_orange.active, .button_green.active {
  position: relative;
  background-color: #798992;
}
.button_blue.active::after, .button_orange.active::after, .button_green.active::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: -10px;
  width: 20px;
  height: 3px;
  background-color: #f99a11;
  transform: translateX(-50%);
}

.lang__button:focus {
  background-color: #0671b4;
}

.bold {
  font-family: OpenSansBold;
}

body {
  font-family: "OpenSansRegular", sans-serif;
  font-size: 15px;
  color: #4d4d4d;
  min-width: 320px;
}

.top-line {
  background-color: rgb(245, 249, 251);
  opacity: 0.859;
  padding: 20px 0;
}
.top-line__logo {
  display: block;
  position: relative;
  width: 115px;
  height: 115px;
  margin: 10px 0;
  line-height: 0;
}
.top-line__logo-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
}
.top-line__logo-img_active {
  visibility: visible;
}
.top-line__logo-description {
  text-align: center;
  margin: auto 30px;
}

.lang-btn {
  display: flex;
  justify-content: center;
}
.lang-btn__item {
  width: 30px;
  margin: 5px;
  padding: 4px 0 5px;
  font-size: 11px;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #0671b4;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}
.lang-btn__item:hover, .lang-btn__item:focus {
  color: #fff;
  background-color: #3aa0e0;
  text-decoration: none;
}
.lang-btn__item.active {
  background-color: #f99a11;
}
.lang-btn__item.active:hover, .lang-btn__item.active:focus {
  background-color: #f5b861;
}

.logo-description__first-line {
  margin: 0;
  font-family: "JuraDemiBold";
  text-transform: uppercase;
  font-size: 28px;
  line-height: 0.765;
  letter-spacing: 0.04em;
  color: #0671b4;
}
.logo-description__first-line--en {
  font-size: 22px;
}

.logo-description__second-line {
  font-size: 16px;
  line-height: 2.29;
}

header .logo-description__first-line, header .logo-description__second-line {
  font-family: "MyriadProRegular";
}
header .logo-description__second-line {
  margin-top: 5px;
  display: block;
  font-size: 22px;
  line-height: 1;
  color: #f99a11;
}

.top-line__angle {
  display: none;
  text-align: center;
  font-size: 35px;
  line-height: 1;
  color: #f99a11;
}
.top-line__angle i {
  cursor: pointer;
  transition: 0.5s;
}
.top-line__angle_slide-up {
  transform: rotate(180deg);
}

.top-line__phones, .top-line__email, .top-line__location {
  position: relative;
  text-align: left;
  line-height: 1.067;
}
.top-line__phones a, .top-line__email a, .top-line__location a {
  font-family: OpenSansBold;
  font-size: 15px;
  color: #4d4d4d;
  text-decoration: none;
  cursor: pointer;
}
.top-line__phones a:hover, .top-line__email a:hover, .top-line__location a:hover {
  color: #f99a11;
}
.top-line__phones span, .top-line__email span, .top-line__location span {
  display: inline-block;
  font-size: 12px;
  line-height: 1.8;
}

.top-line__phones {
  margin-top: 25px;
}

header .top-line__phones a, header .top-line__email a, header .top-line__location a {
  font-family: "MyriadProRegular";
  font-size: 17px;
  color: #000;
}

.phones-item {
  position: relative;
  padding-left: 30px;
}
.phones-item:first-of-type {
  margin-bottom: 10px;
}
.phones-item:first-of-type:before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "\f095";
  font-family: FontAwesome;
  font-size: 22px;
  color: #0671b4;
}
.phones-item:last-of-type {
  padding: 0 0 0 30px;
}

.top-line__email {
  padding: 0 0 5px 30px;
}
.top-line__email:first-of-type:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top-line__email a {
  font-family: "OpenSansRegular", sans-serif;
}

.top-line__contacts {
  margin-top: 18px;
}

.top-line__location {
  padding: 5px 0 0 30px;
}
.top-line__location:before {
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  content: url(../img/icons/location-blue.png);
}
.top-line__location a {
  font-family: "OpenSansRegular", sans-serif;
  line-height: 20px;
}
.top-line__location span {
  display: block;
  line-height: 1;
}

header .top-line__email {
  padding-left: 35px;
}
header .top-line__email:first-of-type:before {
  width: 26px;
  height: 26px;
  content: "";
  background-image: url("../img/icons/email-black.png");
  background-repeat: no-repeat;
  background-size: cover;
}
header .phones-item {
  padding-left: 35px;
}
header .phones-item:last-of-type {
  padding-left: 35px;
}
header .phones-item span {
  font-family: "MyriadProRegular";
  font-size: 14px;
  color: #000;
}
header .phones-item:first-of-type:before {
  top: 2px;
  content: "";
  width: 26px;
  height: 30px;
  background-image: url("../img/icons/phone.png");
  background-repeat: no-repeat;
  background-size: cover;
}
header .top-line__location {
  padding: 5px 0 0 35px;
}
header .top-line__location span {
  font-family: "MyriadProRegular";
  font-size: 14px;
  color: #000;
}
header .top-line__location:before {
  left: -2px;
  width: 32px;
  height: 32px;
  content: "";
  background-image: url("../img/icons/location-black.png");
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-40%);
}

.social-wrapper {
  display: none;
}

.top-line__social {
  text-align: right;
}
.top-line__social-facebook, .top-line__social-instagram {
  display: inline-block;
  width: 23px;
  height: 22px;
}
.top-line__social-facebook {
  background-image: url(../img/icons/facebook.png);
}
.top-line__social-facebook:hover {
  background-image: url(../img/icons/facebook-hovered.png);
}
.top-line__social-instagram {
  background-image: url(../img/icons/instagram.png);
}
.top-line__social-instagram:hover {
  background-image: url(../img/icons/instagram-hovered.png);
}
.top-line__social_small-display {
  display: none;
}
.top-line__social_small-display .top-line__social-facebook, .top-line__social_small-display .top-line__social-instagram {
  margin-top: 6px;
}

.menu {
  background-color: #0671b4;
}

.menu__list {
  display: flex;
  text-align: justify;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__item {
  text-align: center;
  flex-grow: 1;
  border-left: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
}
.menu__item:last-of-type {
  border-right: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
}
.menu__item a {
  display: block;
  height: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  color: white;
  line-height: 1.733;
}
.menu__item a_active, .menu__item a:hover {
  text-decoration: none;
}
.menu__item_active, .menu__item:hover {
  background-color: #f99a11;
}

.desktop-menu {
  display: block;
}

.mobile-menu-bar, .mobile-menu-panel, .mobile-menu-overlay {
  display: none;
}

@media (max-width: 767px) {
  .desktop-menu {
    display: none !important;
  }
  .mobile-menu-bar {
    display: flex;
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 10000;
    padding: 0;
    background: transparent;
    border: 0;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #f99a11;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    cursor: pointer;
  }
  .mobile-menu-toggle > span:last-child {
    display: none;
  }
  .mobile-menu-toggle__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 25px;
    height: 22px;
  }
  .mobile-menu-toggle__icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 0;
    background: #fff;
    border-radius: 2px;
  }
  .mobile-menu-panel {
    display: block;
    position: fixed;
    z-index: 10002;
    top: 0;
    right: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    pointer-events: none;
  }
  .mobile-menu-panel.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }
  .mobile-menu-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 16px 18px;
    border-bottom: 1px solid #e5e5e5;
  }
  .mobile-menu-panel__title {
    font-size: 20px;
    font-weight: 700;
  }
  .mobile-menu-close {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
  }
  .mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
  }
  .mobile-menu-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #eee;
  }
  .mobile-menu-list a {
    display: block;
    padding: 15px 20px;
    color: #222;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.35;
  }
  .mobile-menu-list a:hover, .mobile-menu-list a:focus {
    background: #f3f3f3;
  }
  .mobile-menu-overlay {
    display: block;
    position: fixed;
    z-index: 10001;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
  body.mobile-menu-open {
    overflow: hidden;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu-panel, .mobile-menu-overlay {
    transition: none;
  }
}
.header__info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  margin: 0 auto;
  padding: 38px 20px;
  text-align: center;
  background-color: white;
  opacity: 0.67;
  border-radius: 7px;
  z-index: 2;
}
.header__info-title {
  font-family: JuraDemiBold;
  font-weight: 400;
  font-size: 34px;
  line-height: 0.765;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #4d4d4d;
  text-shadow: 0px 0px 5.22px rgba(255, 255, 255, 0.17);
  padding: 0;
  margin: 0;
}
.header__info-description {
  display: block;
  font-family: OpenSansRegular;
  font-size: 19px;
  line-height: 1.354;
  color: #4d4d4d;
  text-shadow: 0px 0px 5.22px rgba(255, 255, 255, 0.17);
  margin-top: 10px;
}

.about, .subjects, .our-target, .features, .team, .lessons-features, .preparation-forms, .prices, .problems, .questions, .help-materials, .call-back {
  overflow: hidden;
}

.about {
  background-color: white;
  padding: 17px 0 20px;
}

.request-form-block {
  padding: 17px 0 20px;
  background-image: url(../img/target-bg.jpg);
}
@media (max-width: 768px) {
  .request-form-block {
    padding-bottom: 40px;
  }
}

.info-block__text {
  margin-bottom: 20px;
}
.info-block__subtitle {
  margin-bottom: 20px;
  font-size: clamp(15px, 1.25vw, 18px);
}
.info-block__list {
  margin: 0;
}
.info-block__list li {
  margin-left: 15px;
}
.info-block__actions {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.info-block__action {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.info-block__action-btn {
  margin-top: 20px;
  padding: 8px 10px 10px;
  flex-grow: 1;
  min-width: 150px;
  height: auto;
  line-height: 1;
}
.info-block__action-btn:disabled {
  filter: grayscale(100%);
  pointer-events: none;
}

.qr {
  position: relative;
  margin: 20px auto;
  width: 140px;
  height: 140px;
  line-height: 0;
  cursor: pointer;
  z-index: 2;
}
.qr img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.qr.qr--active img {
  transform: translate(-50%, -50%) scale(2);
}
@media only screen and (max-width: 440px) {
  .qr.qr--active img {
    transform: translate(-50%, -50%) scale(1.4);
  }
}

.pay-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pay-link-wrapper {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.pay-link {
  display: block;
  min-width: 150px;
  max-width: 150px;
  margin: 20px auto;
  text-align: center;
}

.pay-link-title, .qr-title {
  text-align: center;
}

.request-form {
  display: none;
  position: relative;
  padding-bottom: 20px;
}
.request-form__age {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.request-form__age .request-form__note {
  margin-bottom: 0;
}
.request-form__age .child-age-wrapper {
  padding-bottom: unset !important;
}
.request-form__element {
  padding: 5px 6px;
  border: 1px solid #798992;
  border-radius: 7px;
}
.request-form .phone-wrapper, .request-form .name-wrapper, .request-form .child-name-wrapper, .request-form .child-age-wrapper {
  position: relative;
  padding-bottom: 20px;
}
.request-form .rf-message {
  display: none;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12px;
  color: red;
}
.request-form input {
  display: block;
  font-style: italic;
  letter-spacing: 0.04em;
}
.request-form .w-280 {
  min-width: 280px;
}
.request-form .user-message-wrapper {
  position: relative;
  max-width: 600px;
  border: 1px solid #798992;
  border-radius: 7px;
  overflow: hidden;
}
.request-form .user-message-wrapper textarea {
  border: none;
}
.request-form .request-form__notification {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: clamp(15px, vw(25), 25px);
  background-color: #279627;
}
.request-form .rf-note__inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.request-form .rf-note__inner-first {
  font-weight: 600;
  font-size: 18px;
}
.request-form .rf-note__inner-second {
  font-size: 16;
}
.request-form textarea {
  display: block;
  width: 100%;
  min-height: 100px;
  width: 100%;
}
.request-form__note {
  margin-bottom: 5px;
}
.request-form__note span {
  color: #f99a11;
}
.request-form__subjects {
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  max-width: 300px;
}
.request-form__subjects-item {
  margin: 5px 0;
  padding: 5px 0;
  display: flex;
  align-items: center;
  min-width: calc(50% - 20px);
  min-width: calc(50% - 20px);
  column-gap: 10px;
  line-height: 1;
}
.request-form__subjects-item input {
  cursor: pointer;
}
.request-form__subjects-item input:checked ~ label {
  font-weight: 600;
}
.request-form__subjects-item label {
  margin: 0;
  cursor: pointer;
}
.request-form-subjects-legend {
  font-style: italic;
  margin-top: 5px;
}
.request-form-message-legend {
  margin-top: 15px;
  margin-bottom: 5px;
}
.request-form__dest-wrapper {
  margin-top: 20px;
}
.request-form__dest-wrapper .request-form__note {
  margin-bottom: 15px;
}
.request-form__dest {
  position: relative;
  padding-bottom: 20px;
  display: inline-flex;
  column-gap: 10px;
}
.request-form .dest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.request-form .dest-item.disabled {
  filter: grayscale(100%);
}
.request-form .dest-item__img {
  width: 30px;
  height: 30px;
}
.request-form .dest-item__name {
  margin-top: 5px;
  font-size: 12px;
}
.request-form__submit {
  margin-top: 10px;
  padding: 10px;
  display: block;
  width: 150px;
  text-align: center;
  line-height: 1;
}

.subjects {
  background-color: white;
}
.subjects ul:not(.styled) {
  list-style: none;
}

.subjects__buttons-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1000px;
}
.subjects__buttons-wrapper--lang {
  display: none;
}

.subjects__button, .lang__button {
  min-width: 200px;
  max-width: 200px;
  margin: 20px 10px 0;
  padding: 0 10px;
}
.subjects__button--type-1, .lang__button--type-1 {
  line-height: 1.3 !important;
  height: auto;
  padding: 5px 10px;
}

.lang__button {
  line-height: 39px;
  cursor: pointer;
}

.rools__list {
  margin-top: 25px;
}

.subject-description {
  display: none;
  background-color: #ccc;
  background-image: url(../img/preparation-forms-bg.jpg);
  background-repeat: repeat;
  background-position: center;
}
.subject-description ul li, .subject-description ol li {
  margin-top: 10px;
}
.subject-description ul li:first-child, .subject-description ol li:first-child {
  margin-top: 0;
}
.subject-description ul ul, .subject-description ul ol, .subject-description ol ul, .subject-description ol ol {
  margin-top: 10px;
  margin-left: 35px;
}
.subject-description ul ul li, .subject-description ol ul li {
  list-style-type: circle;
}
.subject-description ul ol li, .subject-description ol ol li {
  list-style-type: number;
}
.subject-description ul .note, .subject-description ol .note {
  display: inline-block;
  margin: 10px 0 0 20px;
  font-style: italic;
}

h2, .introduction h2, .learning-materials h2 {
  position: relative;
  font-family: JuraDemiBold;
  font-size: 30px;
  line-height: 1.7;
  text-transform: uppercase;
  color: #0671b4;
  padding: 18px 0;
  margin: 0;
}
h2:after, .introduction h2:after, .learning-materials h2:after {
  position: absolute;
  left: 0;
  bottom: 10px;
  content: "";
  width: 68px;
  height: 2px;
  background-color: #f99a11;
}

.target-item__img {
  display: block;
  margin: 18px auto 30px;
}
@media (max-width: 1200px) {
  .target-item__img {
    max-width: 100px;
  }
}
@media (max-width: 768px) {
  .target-item__img {
    max-width: 70px;
    margin: 20px auto;
  }
}
.target-item__img_custom {
  margin-top: 11px;
}
@media (max-width: 768px) {
  .target-item__img_custom {
    margin-top: 15px;
  }
}
.target-item__description {
  text-align: center;
}
.target-item__description-first-line {
  display: block;
  font-family: OpenSansBold;
}
.target-item__description-second-line {
  font-size: 13px;
}

.team-info__img {
  display: block;
  position: relative;
}
.team-info__description {
  position: absolute;
  top: 50%;
  left: 33%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.description-item {
  display: flex;
  justify-content: space-between;
  max-width: 765px;
}
.description-item span {
  display: block;
}
.description-item span:first-of-type {
  font-family: OpenSansBold;
}
.description-item__button {
  min-width: 188px;
  align-self: flex-end;
  margin-left: 70px;
}

@media (max-width: 768px) {
  .preparation-forms-items {
    margin-top: 25px;
  }
}
@media (max-width: 768px) {
  .preparation-forms-items .preparation-forms__item {
    margin-bottom: 20px;
  }
}
.preparation-forms-items .preparation-forms__item img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 360px;
  margin: 35px auto 0;
}
.preparation-forms-items .preparation-forms__item span {
  display: block;
  position: relative;
  max-width: 360px;
  margin: 0 auto;
  padding-top: 15px;
  font-family: OpenSansBold;
  text-align: center;
}
.preparation-forms-items .preparation-forms__item span:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 4px;
  background-color: #f99a11;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .preparation-forms-items .preparation-forms__item span:before {
    display: none;
  }
}
.preparation-forms-items .preparation-forms__item:hover > span:before {
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .preparation-forms-items .preparation-forms__item {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .preparation-forms-items .preparation-forms__item img {
    max-width: 50px;
    margin: 0;
    order: 1;
  }
  .preparation-forms-items .preparation-forms__item span {
    padding: 0;
    margin: 0;
    order: 2;
  }
}

.prices {
  padding: 17px 0 40px;
}
.prices .prices-item {
  background-color: #f6f9fb;
  border-radius: 7px;
  margin-top: 30px;
  padding: 0 15px;
}
.prices .prices-item__title, .prices .prices-item__messagers, .prices .prices-item__time, .prices .prices-item__price, .prices .prices-item__people-count {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: relative;
}
.prices .prices-item__title:after, .prices .prices-item__messagers:after, .prices .prices-item__time:after, .prices .prices-item__price:after, .prices .prices-item__people-count:after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: rgb(0, 110, 178);
  opacity: 0.09;
  position: absolute;
  bottom: 0;
  left: 10%;
}
.prices .prices-item__title {
  font-family: OpenSansBold;
}
.prices .prices-item__messagers {
  text-align: center;
}
.prices .prices-item__messagers img {
  width: 23px;
  margin-right: 10px;
}
.prices .prices-item__messagers img.meet-img {
  width: 27px;
}
.prices .prices-item__messagers span {
  line-height: 1;
}
.prices .prices-item__messagers .zoom {
  margin-right: 10px;
}
.prices .prices-item__time img, .prices .prices-item__people-count img {
  margin-right: 10px;
}
.prices .prices-item__price {
  font-family: OpenSansBold;
  color: #f99a11;
}

.problems {
  padding: 17px 0 40px;
  background: #ccc url(../img/preparation-forms-bg.jpg) repeat center;
}

.problems-list {
  list-style: none;
  margin: 20px 0;
}
.problems-list__item {
  background-image: url(../img/problems-list-marker.png);
  background-repeat: no-repeat;
  background-position: 0 4px;
  padding: 10px 0 10px 50px;
  margin-left: 0;
}
.problems-list__addition {
  font-family: OpenSansBold;
}

.questions {
  background-color: white;
  padding: 17px 0 40px;
}
.questions-wrapper {
  margin-top: 20px;
}
.questions__item {
  display: block;
  position: relative;
  background-color: #f6f9fb;
  padding: 10px 0;
  padding-left: 50px;
  font-family: OpenSansBold;
}
.questions__item:before {
  content: "?";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: JuraDemiBold;
  color: #f99a11;
  font-size: 26px;
  line-height: 0.808;
  padding-left: 15px;
}
.questions details {
  margin-bottom: 10px;
}
.questions details:last-child {
  margin-bottom: 0;
}
.questions details p {
  margin: 5px 0 15px 30px;
}

.answer {
  display: block;
  padding: 15px 0 15px 50px;
}

.faq-algorithmic-thinking {
  padding: 17px 0 40px;
  background: #ccc url(../img/preparation-forms-bg.jpg) repeat center;
}
.faq-algorithmic-thinking__faq {
  overflow: auto;
  max-height: 230px;
}

.help-materials {
  padding: 17px 0 40px;
}
.help-materials-wrapper {
  display: none;
  margin-top: 25px;
}
.help-materials__img {
  margin-bottom: 10px;
}
.help-materials__img-descriptions {
  text-align: center;
}
.help-materials__title {
  font-family: OpenSansBold;
  font-size: 17px;
}
.help-materials__btn {
  min-width: 160px;
  margin-top: 15px;
  padding: 0 15px;
}
.help-materials__about-link {
  display: block;
  font-size: 18px;
  color: #4d4d4d;
  text-decoration: underline;
}
.help-materials__about-link:hover {
  color: #f99a11;
}
.help-materials__links {
  margin-top: 20px;
}
.help-materials__links a {
  margin-top: 10px;
  display: block;
  font-size: 16px;
  color: #4d4d4d;
}
.help-materials__links a:hover {
  color: #f99a11;
}

.map {
  height: 500px;
}

.top-line__angle {
  margin-top: 20px;
}

.video {
  position: relative;
  max-width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.video--75 {
  padding-bottom: 75%;
}
.video img, .video iframe, .video__link, .video__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video__button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: none;
  padding: 0;
  width: 68px;
  height: 48px;
  border: none;
  background-color: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.video-title {
  margin-top: 10px;
  text-align: center;
}

.video__button-shape {
  fill: #212121;
  fill-opacity: 0.8;
}

.video__button-icon {
  fill: #ffffff;
}

.video__button:focus {
  outline: none;
}

.video:hover .video__button-shape, .video__button:focus .video__button-shape {
  fill: #ff0000;
  fill-opacity: 1;
}

/* Enabled */
.video--enabled {
  cursor: pointer;
}

.video--enabled .video__button {
  display: block;
}

.feedbacks-wrapper {
  padding: 30px 0;
  background-color: #f6f9fb;
}
.feedbacks-wrapper.empty .feedbacks {
  height: 0;
}
.feedbacks-wrapper.empty .feedback-form {
  margin-top: 0;
}

.feedbacks {
  max-height: 100vh;
  padding-right: 15px;
  overflow-y: scroll;
}

.feedback {
  margin-top: 30px;
  padding: 20px;
  border-radius: 20px;
  background-color: #edfefc;
  background-color: #fff;
  -webkit-box-shadow: 3px 3px 8px -2px rgba(207, 207, 207, 0.83);
  -moz-box-shadow: 3px 3px 8px -2px rgba(207, 207, 207, 0.83);
  box-shadow: 3px 3px 8px -2px rgba(207, 207, 207, 0.83);
  transition: mrgin 0.3s;
}
.feedback:first-child {
  margin-top: 0;
}
.feedback__date {
  font-size: 14px;
  font-style: italic;
}
.feedback__text {
  margin-top: 25px;
  font-size: 18px;
}
.feedback__autor {
  margin-top: 25px;
  font-size: 14px;
  font-weight: bold;
}

.feedback-form {
  margin-top: 30px;
  width: 100%;
}
.feedback-form__text {
  width: 100%;
  min-height: 150px;
  padding: 15px;
  font-size: 18px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.feedback-form__autor {
  min-width: 400px;
  height: 40px;
  padding: 0 15px;
  line-height: 40px;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.feedback-form__btn, .feedback-form .get-feedback__btn {
  min-width: 200px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 39px;
}

.textarea-wrapper {
  margin-right: 30px;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.text-danger {
  color: red;
}

.success-message {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  background-color: green;
}
.success-message__text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}

.success-accent {
  font-size: 22px;
}

.get-feedback__btn {
  margin-top: 20px;
}

.header-simple {
  background: url("../img/top-line-bg.jpg") center/cover no-repeat;
  padding: 20px 24px;
  position: relative;
  z-index: 20;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo-wrap {
  flex: 0 0 auto;
}

.header-logo {
  position: relative;
  display: block;
  top: -10px;
  width: 115px;
  height: 115px;
}

.header-logo img {
  position: absolute;
  inset: 0;
  top: -10px;
  width: 115px;
  height: 115px;
}

.logo-blue {
  opacity: 1;
  animation: logoBlue 6s infinite;
}

.logo-orange {
  opacity: 0;
  animation: logoOrange 6s infinite;
}

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

.header-title {
  margin: 0;
  font-size: 32px;
  color: #1f4f8f;
}

.header-subtitle {
  font-size: 22px;
  color: #d58b00;
}

@keyframes logoBlue {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoOrange {
  0%, 45% {
    opacity: 0;
  }
  50%, 95% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .header-simple {
    padding: 16px 14px;
  }
  .header-logo {
    width: 90px;
    height: 90px;
  }
  .header-logo img {
    width: 90px;
    height: 90px;
  }
  .header-title {
    font-size: 26px;
  }
  .header-subtitle {
    font-size: 18px;
  }
}
details > summary::-webkit-details-marker {
  display: none;
}

.questions h2 {
  margin-bottom: 35px;
}

details.faq-cluster {
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

details.faq-cluster > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 70px 22px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: #1f2d3d;
  background: #fff;
  transition: 0.25s ease;
}

details.faq-cluster > summary::before {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 400;
  color: #0671b4;
  transition: 0.25s ease;
}

details.faq-cluster[open] > summary::before {
  transform: translateY(-50%) rotate(45deg);
}

details.faq-cluster > summary > h3 {
  display: inline;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  margin: 0;
}

details.faq-cluster > div {
  padding: 0 24px 24px;
}

details.faq-cluster p {
  line-height: 1.75;
  color: #44515c;
}

details.faq-cluster details {
  margin-top: 16px;
  border-top: 1px solid #e7edf2;
  padding-top: 14px;
}

details.faq-cluster details > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding-right: 36px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: #243444;
}

details.faq-cluster details > summary::before {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #f99a11;
  transition: 0.25s ease;
}

details.faq-cluster details[open] > summary::before {
  transform: translateY(-50%) rotate(45deg);
}

details.faq-cluster details > p,
details.faq-cluster details > div {
  padding-top: 12px;
}

@media (max-width: 768px) {
  details.faq-cluster > summary {
    padding: 18px 56px 18px 18px;
    font-size: 17px;
  }
  details.faq-cluster > summary::before {
    right: 18px;
  }
  details.faq-cluster > div {
    padding: 0 18px 18px;
  }
  details.faq-cluster details > summary {
    font-size: 15px;
  }
}
.expert-post {
  background: #fff;
  border-radius: 18px;
  padding: 34px 36px;
  margin-bottom: 32px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.expert-post__content {
  font-size: 18px;
  line-height: 1.8;
  color: #394956;
}

.expert-post__content p {
  margin-bottom: 22px;
}

.expert-post__content strong {
  color: #1d2c39;
}

details.expert-post {
  margin-bottom: 24px;
}

details.expert-post > summary {
  cursor: pointer;
  list-style: none;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #1e2a36;
  margin-bottom: 18px;
}

details.expert-post > summary::-webkit-details-marker {
  display: none;
}

.block-break {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 32px 0;
}

.block-break .was,
.block-break .now {
  flex: 1;
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.65;
}

.block-break .was {
  background: #fff4f2;
  border: 1px solid #ffd2ca;
}

.block-break .now {
  background: #eef8ff;
  border: 1px solid #cfe9ff;
}

.block-break .line {
  width: 46px;
  height: 2px;
  background: #d0dce6;
}

.block-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  color: #1d2c39;
  margin-bottom: 18px;
}

.block-sub {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  color: #2d4357;
  margin-bottom: 16px;
}

.block-text {
  font-size: 18px;
  line-height: 1.8;
  color: #455560;
}

.block-formula {
  margin: 26px 0;
  padding: 18px 24px;
  border-left: 4px solid #0671b4;
  background: #f5fbff;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 700;
  color: #1e2f3d;
}

.block-formula-box {
  margin: 28px 0;
  padding: 26px 28px;
  border-radius: 16px;
  background: #f8fbfd;
  border: 1px solid #dde8f0;
}

.material-block-title {
  font-size: 26px;
  line-height: 1.35;
  font-weight: 800;
  color: #1e2a36;
  margin-bottom: 18px;
}

.summary-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #617181;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .expert-post {
    padding: 24px 20px;
  }
  .expert-post__content {
    font-size: 16px;
  }
  .block-title {
    font-size: 24px;
  }
  .block-sub {
    font-size: 19px;
  }
  .block-text {
    font-size: 16px;
  }
  .block-formula {
    font-size: 17px;
    padding: 16px 18px;
  }
  .material-block-title {
    font-size: 22px;
  }
  .block-break {
    flex-direction: column;
  }
  .block-break .line {
    width: 2px;
    height: 28px;
  }
}
.hero-section {
  padding: 80px 0 55px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.hero-text {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0671b4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  font-size: 21px;
  line-height: 1.8;
  color: #4d5b66;
}

.section {
  padding: 60px 0;
}

.content-section {
  margin-bottom: 50px;
}

.case-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.case-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 1px solid #edf2f6;
}

.case-card h3 {
  font-size: 24px;
  line-height: 1.4;
  font-weight: 800;
  color: #1f2d3a;
  margin-bottom: 16px;
}

.case-card p {
  font-size: 17px;
  line-height: 1.75;
  color: #4b5964;
}

.case-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2f8fd;
  color: #0671b4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.attention-formula {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid #f99a11;
  background: #fff8ef;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 700;
  color: #2d3d4d;
}

.nav-box {
  margin-top: 42px;
  padding: 28px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #dcebf7;
}

.back-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.back-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #0671b4;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.back-links a:hover {
  background: #055a8f;
}

.profession-grid,
.subject-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.principle-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.accent-block {
  padding: 26px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
  border: 1px solid #d7e9f6;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.site-header {
  padding: 22px 0;
  background: #fff;
  border-bottom: 1px solid #edf2f6;
}

.site-logo {
  font-size: 28px;
  font-weight: 800;
  color: #0671b4;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-nav a {
  font-weight: 700;
  color: #2a3948;
  text-decoration: none;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 55px 0 40px;
  }
  .lead {
    font-size: 18px;
  }
  .case-grid,
  .profession-grid,
  .subject-grid {
    grid-template-columns: 1fr;
  }
  .case-card {
    padding: 22px;
  }
  .case-card h3 {
    font-size: 21px;
  }
  .case-card p {
    font-size: 15px;
  }
  .attention-formula {
    font-size: 16px;
  }
  .nav-box {
    padding: 22px;
  }
  .site-nav {
    gap: 14px;
  }
}
#request-form-block {
  padding: 70px 0;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.request-form {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 36px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.request-form__title {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
  color: #1f2d3a;
  margin-bottom: 18px;
  text-align: center;
}

.request-form__subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #52616d;
  text-align: center;
  margin-bottom: 28px;
}

.request-form__group {
  margin-bottom: 22px;
}

.request-form__label {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #2b3a48;
}

.request-form__input,
.request-form__textarea,
.request-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d8e2ea;
  border-radius: 14px;
  background: #fff;
  font-size: 16px;
  line-height: 1.5;
  color: #2a3947;
  transition: 0.25s ease;
}

.request-form__input:focus,
.request-form__textarea:focus,
.request-form select:focus {
  border-color: #0671b4;
  box-shadow: 0 0 0 3px rgba(6, 113, 180, 0.12);
}

.request-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.request-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #f99a11;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  border: 0;
  transition: 0.25s ease;
}

.request-form__button:hover {
  background: #e58d0d;
}

.rf-message {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15px;
  line-height: 1.6;
}

.rf-message.success {
  background: #eefaf1;
  color: #1f6b37;
  border: 1px solid #bfe5c9;
}

.rf-message.error {
  background: #fff3f1;
  color: #8d2f24;
  border: 1px solid #f0c2bc;
}

.iti {
  width: 100%;
}

.iti__country-list {
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
  #request-form-block {
    padding: 50px 0;
  }
  .request-form {
    padding: 24px 20px;
  }
  .request-form__title {
    font-size: 28px;
  }
  .request-form__subtitle {
    font-size: 16px;
  }
}
.children-history {
  padding: 70px 0;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.history-card {
  position: relative;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e7edf2;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.history-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.08);
}

.history-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.history-card__name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
  color: #1f2d39;
}

.history-card__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0671b4;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.history-card__short {
  font-size: 17px;
  line-height: 1.75;
  color: #495864;
  margin-bottom: 20px;
}

.history-card__details {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid #e8eef3;
}

.history-card__details p {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.75;
  color: #52616d;
}

.history-card__details strong {
  color: #1f2d39;
}

.history-card details {
  margin-top: 20px;
}

.history-card summary {
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: #0671b4;
}

.history-card summary::-webkit-details-marker {
  display: none;
}

.history-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.history-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #f3f7fa;
  color: #31414f;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.history-filter.active {
  background: #0671b4;
  color: #fff;
}

@media (max-width: 768px) {
  .children-history {
    padding: 50px 0;
  }
  .history-grid {
    grid-template-columns: 1fr;
  }
  .history-card {
    padding: 22px;
  }
  .history-card__name {
    font-size: 21px;
  }
  .history-card__short {
    font-size: 15px;
  }
  .history-card__details p {
    font-size: 15px;
  }
}
.material-section {
  padding: 70px 0;
}

.material-content {
  max-width: 1100px;
  margin: 0 auto;
}

.material-block {
  margin-bottom: 54px;
}

.material-block:last-child {
  margin-bottom: 0;
}

.material-block-title {
  font-size: 34px;
  line-height: 1.3;
  font-weight: 800;
  color: #1f2d39;
  margin-bottom: 24px;
}

.material-block-subtitle {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  color: #2d4357;
  margin-bottom: 20px;
}

.material-text {
  font-size: 18px;
  line-height: 1.85;
  color: #4d5b66;
}

.material-text p {
  margin-bottom: 22px;
}

.material-text strong {
  color: #1f2d39;
}

.material-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0;
}

.material-list li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  line-height: 1.75;
  color: #4d5b66;
}

.material-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0671b4;
}

.block-formula-box {
  margin: 28px 0;
  padding: 26px 28px;
  border-radius: 18px;
  background: #f7fbff;
  border: 1px solid #d8e8f4;
}

.block-formula {
  font-size: 21px;
  line-height: 1.75;
  font-weight: 700;
  color: #233445;
}

.block-break {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin: 36px 0;
}

.block-break .was,
.block-break .now {
  flex: 1;
  padding: 22px;
  border-radius: 16px;
}

.block-break .was {
  background: #fff4f2;
  border: 1px solid #ffd3ca;
}

.block-break .now {
  background: #eef8ff;
  border: 1px solid #cfe8ff;
}

.block-break .line {
  width: 2px;
  background: #d6e2ea;
}

.summary-sub {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #667685;
}

@media (max-width: 768px) {
  .material-section {
    padding: 50px 0;
  }
  .material-block {
    margin-bottom: 40px;
  }
  .material-block-title {
    font-size: 28px;
  }
  .material-block-subtitle {
    font-size: 20px;
  }
  .material-text {
    font-size: 16px;
  }
  .material-list li {
    font-size: 15px;
  }
  .block-formula {
    font-size: 17px;
  }
  .block-break {
    flex-direction: column;
  }
  .block-break .line {
    width: 100%;
    height: 2px;
  }
}
.page-navigation {
  margin-top: 50px;
}

.navigation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.navigation-card {
  display: block;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e6edf2;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  text-decoration: none;
  transition: 0.25s ease;
}

.navigation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navigation-card__title {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
  color: #1f2d39;
  margin-bottom: 14px;
}

.navigation-card__text {
  font-size: 16px;
  line-height: 1.75;
  color: #55636f;
}

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.links-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: #0671b4;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.links-row a:hover {
  background: #05588b;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #0671b4;
  text-decoration: none;
  margin-top: 20px;
}

.back-link:hover {
  text-decoration: underline;
}

.anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.anchor-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: #eef7ff;
  color: #0671b4;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.anchor-links a:hover {
  background: #0671b4;
  color: #fff;
}

@media (max-width: 768px) {
  .navigation-grid {
    grid-template-columns: 1fr;
  }
  .navigation-card {
    padding: 22px;
  }
  .navigation-card__title {
    font-size: 21px;
  }
  .navigation-card__text {
    font-size: 15px;
  }
}
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 32px 0;
}

.table-wrapper table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.table-wrapper th {
  padding: 18px 20px;
  background: #0671b4;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

.table-wrapper td {
  padding: 16px 20px;
  border-bottom: 1px solid #e7edf2;
  font-size: 15px;
  line-height: 1.7;
  color: #4d5b66;
}

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

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 26px 0;
}

.info-list__item {
  padding: 18px 22px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid #dce9f3;
}

.info-list__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #1f2d39;
  margin-bottom: 8px;
}

.info-list__text {
  font-size: 16px;
  line-height: 1.75;
  color: #55636f;
}

.note-box {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff8ef;
  border-left: 4px solid #f99a11;
}

.note-box p {
  font-size: 16px;
  line-height: 1.75;
  color: #4d5b66;
}

.warning-box {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff3f1;
  border-left: 4px solid #d35454;
}

.warning-box p {
  font-size: 16px;
  line-height: 1.75;
  color: #5b4a4a;
}

@media (max-width: 768px) {
  .table-wrapper th,
  .table-wrapper td {
    padding: 12px 14px;
    font-size: 14px;
  }
  .info-list__title {
    font-size: 16px;
  }
  .info-list__text {
    font-size: 15px;
  }
}
.text-center {
  text-align: center;
}

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

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

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.w-100 {
  width: 100%;
}

.hidden {
  display: none;
}

.accent-text {
  color: #0671b4;
  font-weight: 700;
}

.orange-text {
  color: #f99a11;
  font-weight: 700;
}

.gray-text {
  color: #667685;
}

.section-divider {
  width: 100%;
  height: 1px;
  margin: 40px 0;
  background: #e7edf2;
}

.image-box {
  margin: 30px 0;
  text-align: center;
}

.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.quote-box {
  margin: 34px 0;
  padding: 26px 30px;
  border-left: 4px solid #0671b4;
  background: #f7fbff;
  border-radius: 0 18px 18px 0;
}

.quote-box p {
  font-size: 18px;
  line-height: 1.85;
  color: #44515c;
  font-style: italic;
}

.code-inline {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 8px;
  background: #eef3f7;
  font-family: monospace;
  font-size: 0.95em;
  color: #233445;
}

@media (max-width: 768px) {
  .quote-box {
    padding: 20px 22px;
  }
  .quote-box p {
    font-size: 16px;
  }
}
.header-col {
  min-width: 180px;
}

.header-simple a {
  color: #000;
  text-decoration: none;
}

.header-simple a:hover {
  text-decoration: underline;
}

.header-small {
  font-size: 14px;
}

.header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  padding-left: 140px;
}

.header-logo-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 30;
}

@media (max-width: 768px) {
  .header-row {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
  }
  .header-logo-wrap {
    position: relative;
  }
  .header-description {
    text-align: left;
  }
}
#request-form-block details > summary {
  cursor: pointer;
}

#request-form-block details[open] > form.request-form {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  overflow: visible !important;
}

#request-form-block details > form.request-form {
  margin-top: 16px;
}

#request-form-block details[open] .request-form__name,
#request-form-block details[open] .request-form__phone,
#request-form-block details[open] .request-form__age,
#request-form-block details[open] .request-form__subjects,
#request-form-block details[open] .request-form__dest-wrapper,
#request-form-block details[open] .request-form__submit,
#request-form-block details[open] .request-form__consent-text,
#request-form-block details[open] .user-message-wrapper {
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
}

#request-form-block details .rf-message,
#request-form-block details .rf-note,
#request-form-block details .request-form__message {
  display: none;
}

.request-payment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 25px;
}

.request-panel,
.payment-panel {
  min-width: 0;
}

.section-box {
  margin-top: 24px;
}

@media (max-width: 768px) {
  .request-payment-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}
.footer-custom {
  background: #1f4f8f;
  color: #fff;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-custom__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-custom__col {
  min-width: 180px;
}

.footer-custom__logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-custom__logo img {
  display: block;
  width: 115px;
  height: 115px;
}

.footer-custom__security {
  font-size: 13px;
  line-height: 1.3;
  text-align: center;
}

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

.footer-custom__description-first {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-custom__description-second {
  font-size: 16px;
  line-height: 1.4;
}

.footer-custom__phones,
.footer-custom__contacts,
.footer-custom__social {
  line-height: 1.6;
}

.footer-custom a {
  color: #fff;
  text-decoration: none;
}

.footer-custom a:hover {
  text-decoration: underline;
}

.footer-custom__small {
  font-size: 14px;
}

@media (max-width: 768px) {
  .footer-custom__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-custom__logo-col,
  .footer-custom__description {
    align-items: flex-start;
    text-align: left;
  }
}
#num-ai-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f99a11;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 10000;
}

#num-ai-box {
  position: fixed;
  right: 22px;
  bottom: 92px;
  width: 360px;
  max-width: calc(100vw - 44px);
  height: 520px;
  max-height: calc(100vh - 130px);
  display: none;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  z-index: 9999;
}
#num-ai-box.active {
  display: flex;
}

#num-ai-header {
  background: #0671b4;
  color: #fff;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 18px;
}

#num-ai-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #f6f9fb;
}

.num-ai-message {
  max-width: 88%;
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.num-ai-message.bot {
  background: #fff;
  color: #4d4d4d;
  border: 1px solid #e5e5e5;
}
.num-ai-message.user {
  margin-left: auto;
  background: #0671b4;
  color: #fff;
}

#num-ai-controls {
  padding: 12px;
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

#num-ai-input {
  width: 100%;
  min-height: 76px;
  resize: none;
  padding: 10px;
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

#num-ai-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

#num-ai-mic,
#num-ai-send {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}

#num-ai-mic {
  background: #0671b4;
}
#num-ai-mic.recording {
  background: #c0392b;
}

#num-ai-send {
  background: #f99a11;
}

@media (max-width: 768px) {
  #num-ai-box {
    right: 10px;
    bottom: 82px;
    width: calc(100vw - 20px);
  }
  #num-ai-toggle {
    right: 14px;
    bottom: 14px;
  }
}
/*==========  Desktop First  ==========*/
@media (max-width: 1199.98px) {
  .top-line__logo {
    margin: 18px 0;
    width: 80px;
    height: 80px;
  }
  .top-line__logo-description {
    margin: auto 0;
  }
  .top-line__phones {
    margin-top: 16px;
  }
  .logo-description__first-line {
    font-size: 22px;
  }
  .logo-description__first-line--en {
    font-size: 20px;
  }
  .logo-description__second-line {
    font-size: 14px;
  }
  .menu__item a {
    font-size: 13px;
  }
  .team-info__img {
    width: 450px;
    height: auto;
  }
  .team-info__description {
    left: 29%;
    min-height: 140px;
  }
  .description-item {
    max-width: 665px;
  }
  .description-item__button {
    min-width: 170px;
    margin-left: 50px;
  }
}
@media (max-width: 991.98px) {
  .top-line__logo {
    margin: 10px 0;
  }
  .top-line__phones {
    display: flex;
    justify-content: space-around;
  }
  .phones-item:before {
    position: absolute;
    left: 0;
    top: 2px;
    content: "\f095";
    font-family: FontAwesome;
    font-size: 22px;
    color: #0671b4;
  }
  .top-line__contacts {
    max-width: 240px;
    margin: 18px auto 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
  }
  header .top-line__contacts {
    max-width: 245px;
  }
  header .phones-item:before {
    top: 2px;
    content: "";
    width: 26px;
    height: 30px;
    background-image: url("../img/icons/phone.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
  .footer .phones-item {
    max-width: 30%;
    min-width: 30%;
  }
  .footer .top-line__phones {
    margin-top: 25px;
  }
  .footer .top-line__phones span {
    padding-top: 10px;
  }
  .footer .phones-item div:last-child {
    padding-top: 7px;
  }
  .footer .top-line__contacts {
    margin-top: 10px;
  }
  .footer .phones-item:before {
    color: #f99a11;
  }
  .top-line__contacts {
    display: none;
  }
  .top-line__phones {
    padding-bottom: 15px;
  }
  .top-line__email, .top-line__location {
    max-width: 100%;
  }
  .social-wrapper {
    display: block;
  }
  .top-line__social {
    display: none;
  }
  .top-line__social_small-display {
    display: block;
  }
  .top-line__angle {
    display: block;
  }
  .menu {
    display: none;
  }
  .hamburger-wrapper {
    display: block;
  }
  .menu__list {
    display: block;
    text-align: left;
  }
  .menu__item {
    border: none;
  }
  .menu__item:last-of-type {
    border: none;
  }
  .header__info {
    margin: 140px auto 0;
  }
  .header__info-wrapper {
    padding-bottom: 100px;
  }
  .team-info__img {
    width: 400px;
    height: auto;
  }
  .team-info__description {
    font-size: 13px;
    left: 34%;
    min-height: 170px;
  }
  .description-item {
    max-width: 459px;
  }
  .description-item__button {
    min-width: 155px;
    margin-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .header__info {
    width: 420px;
  }
  header .phones-item:first-child {
    margin-right: 5px;
  }
  header .phones-item:last-child {
    margin-left: 5px;
  }
  .team-info {
    display: flex;
    flex-direction: column;
  }
  .team-info__img {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
  }
  .team-info__description {
    position: relative;
    width: auto;
    transform: none;
    top: 0;
    left: 0;
  }
  .description-item {
    max-width: none;
  }
  .description-item span {
    font-size: 13px;
  }
  .description-item__button {
    min-width: 150px;
    margin-left: 40px;
  }
  .request-form textarea {
    min-height: unset;
    height: 56px;
  }
  .feedback-form__text {
    font-size: 16px;
  }
  .footer .top-line__phones {
    flex-direction: column;
    align-items: center;
  }
  .footer .phones-item {
    margin-bottom: 20px;
    min-width: 290px;
    max-width: 290px;
  }
  .footer .phones-item:last-child {
    padding-left: 30px;
  }
  .footer .phones-item a {
    font-size: 16px;
  }
  .footer .phones-item span, .footer .phones-item div:last-child {
    padding-top: 10px;
    font-size: 15px;
    line-height: 1.4;
  }
  .footer .phones-item .phones-item div:last-child {
    padding-top: 6px;
  }
}
@media (max-width: 575.98px) {
  .top-line__logo {
    width: 50px;
    height: 50px;
  }
  .logo-description-wrapper {
    padding: 0;
  }
  .logo-description__first-line {
    font-size: 16px;
  }
  .logo-description__first-line--en {
    font-size: 14px;
  }
  header .logo-description__second-line {
    font-size: 16px;
  }
  header .phones-item:first-child {
    margin-right: 0;
  }
  header .phones-item:last-child {
    margin-left: 0;
  }
  .social-wrapper {
    display: none;
  }
  .top-line__phones, .top-line__contacts {
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
  }
  .top-line__phones:after, .top-line__contacts:after {
    display: none;
  }
  .top-line__phones {
    flex-direction: column;
  }
  .hamburger {
    padding-left: 10px;
  }
  .header__info {
    width: 280px;
    margin: 65px auto 0;
  }
  .header__info-wrapper {
    padding: 30px 20px;
    padding-bottom: 100px;
  }
  .header__info-title {
    font-size: 24px;
  }
  .header__info-description {
    font-size: 14px;
  }
  .header__info-button {
    margin: 35px auto 0;
    font-size: 17px;
  }
  .pay-link {
    min-width: 122px;
  }
  .description-item {
    flex-direction: column;
    align-items: center;
  }
  .description-item span {
    text-align: center;
    font-size: 15px;
  }
  .description-item__button {
    min-width: 150px;
    margin: 20px auto;
  }
  .description-item:last-of-type button {
    margin-bottom: 0;
  }
  h2, .introduction h1, .learning-materials h1 {
    font-size: 22px;
  }
  .features-list__item-img {
    min-width: 50px;
  }
  .help-materials__title {
    margin-top: 25px;
  }
  .call-back-form {
    font-size: 15px;
  }
  .call-back-form__title {
    padding: 50px 10px 40px 10px;
    font-size: 25px;
  }
  .call-back-form__user-name, .call-back-form__user-phone, .call-back-form__user-mail {
    width: 90%;
  }
  .materials-item {
    padding: 40px 0 30px;
  }
  .materials-item__img {
    margin-bottom: 20px;
  }
  .materials-item__info {
    text-align: center;
  }
  .feedback {
    padding: 15px;
  }
  .feedback__text {
    font-size: 16px;
  }
  .feedback-form .input-wrapper {
    margin-right: 15px;
  }
  .feedback-form__autor {
    min-width: 270px;
    display: block;
    width: 100%;
  }
  .footer .logo-description__second-line {
    font-size: 11px;
  }
  .footer .top-line__logo-security {
    font-size: 8px;
  }
  .footer .social-wrapper {
    display: block;
  }
  .footer .top-line__social_small-display {
    display: block;
  }
  .footer .top-line__phones {
    margin-top: 35px;
  }
  .footer .phones-item {
    margin-bottom: 17px;
  }
  .footer .phones-item span, .footer .phones-item .phones-item div:last-child {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 422px) {
  .qr-title span {
    display: block;
  }
}
@media only screen and (max-width: 368px) {
  .top-line__logo {
    width: 40px;
    height: 40px;
  }
  .logo-description__second-line {
    display: none;
  }
  .hamburger {
    padding-left: 0;
  }
}
/*==========  Mobile First  ==========*/
@media (min-width: 576px) {
  header .top-line {
    background-image: url("../img/top-line-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
@media (min-width: 992px) {
  .footer .phones-item {
    max-width: 220px;
  }
}
