@charset "UTF-8";
/* Reset and base styles  */
* {
  margin: 0;
  padding: 0;
  border: none;
}

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

/* Links */
a {
  color: #333;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

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

ul,
ul li,
ol {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type=submit] {
  cursor: pointer;
  display: inline-block;
  background: none;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --theme-path: "/local/templates/astraAcademy/assets/img/";
  --green: #61db7b;
  --pink: #ff85a1;
  --colorblue: #7cdafe;
  --grey: #c0c6d6;
  --neutral-50: #f2f5fd;
  --neutral-100: #d9dfee;
  --neutral-200: #b8c0d5;
  --neutral-300: #929cb7;
  --neutral-400: #7883A1;
  --neutral-500: #616e8f;
  --neutral-600: #53607e;
  --neutral-700: #434e67;
  --neutral-800: #333c51;
  --neutral-900: #20283a;
  --blue-50: #F1FCFF;
  --blue-300: #5bc4f5;
  --blue-500: #2dabf1;
  --blue-600: #269fdd;
  --blue-700: #248ace;
  --blue-800: #2079BB;
  --blue-900: #185999;
  --faq-100: #f8f9fd;
  --faq-200: #eff0f5;
  --base-bg-color: #fff;
  --base-font-color: var(--neutral-800);
  --link-color: var(--neutral-900);
  --navbar-wrapper-radius: 16px;
  --navbar-bg-color: var(--neutral-800);
  --navbar-color: #fff;
  --navbar-hover-color: var(--blue-300);
  --navbar-radius: 12px;
  --sub-navbar-bg-color: var(--neutral-50);
  --sub-navbar-color: var(--neutral-500);
  --sub-navbar-hover-color: var(--blue-700);
  --sub-navbar-hover-bg-color: #fff;
  --sub-navbar-radius: 12px;
  /* GRADIENTS */
  --radial-stop-1-color: #ffffff;
  --radial-stop-1-position: 13%;
  --radial-stop-2-color: #e7ebf6;
  --radial-stop-2-position: 50%;
  --radial-stop-3-color: #ffffff;
  --radial-stop-3-position: 88%;
  --radial2-stop-1-color: #e9ecf7;
  --radial2-stop-1-position: 5.8%;
  --radial2-stop-2-color: #f4f6fb;
  --radial2-stop-2-position: 31%;
  --radial2-stop-3-color: #ffffff;
  --radial2-stop-3-position: 64.4%;
  --radial2-stop-4-color: #e7ebf6;
  --radial2-stop-4-position: 97.1%;
}

:root {
  --container-width: 1400px;
  --gutter: 32px;
  --columns: 12;
  --search-container-width: 100%;
  --breakpoint-xl: 1400px;
  --breakpoint-lg: 1200px;
  --breakpoint-md: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 576px;
  --base-font-size: 16px;
  --font-regular: "PTAstraFact-Regular", "PT Astra Fact", sans-serif;
  --font-bold: "PTAstraFact-Bold", "PT Astra Fact", sans-serif;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  :root {
    --container-width: 768px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  :root {
    --container-width: 400px;
  }
}
.mt-50 {
  margin-top: 50px;
}

@font-face {
  font-family: "PT Astra Fact";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "PT Astra Fact";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "PTAstraFact-Bold";
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "PTAstraFact-Regular";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/PTAstraFact-Regular.ttf") format("ttf");
}
.grid-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  gap: var(--gutter);
  margin-bottom: calc(var(--gutter) * 2);
}

.grid-col-1 {
  grid-column: span 1;
}

.grid-col-2 {
  grid-column: span 2;
}

.grid-col-3 {
  grid-column: span 3;
}

.grid-col-4 {
  grid-column: span 4;
}

.grid-col-5 {
  grid-column: span 5;
}

.grid-col-6 {
  grid-column: span 6;
}

.grid-col-7 {
  grid-column: span 7;
}

.grid-col-8 {
  grid-column: span 8;
}

.grid-col-9 {
  grid-column: span 9;
}

.grid-col-10 {
  grid-column: span 10;
}

.grid-col-11 {
  grid-column: span 11;
}

.grid-col-12 {
  grid-column: span 12;
}

@media (min-width: 1400px) {
  .grid-col-xl-1 {
    grid-column: span 1;
  }
  .grid-col-xl-2 {
    grid-column: span 2;
  }
  .grid-col-xl-3 {
    grid-column: span 3;
  }
  .grid-col-xl-4 {
    grid-column: span 4;
  }
  .grid-col-xl-5 {
    grid-column: span 5;
  }
  .grid-col-xl-6 {
    grid-column: span 6;
  }
  .grid-col-xl-7 {
    grid-column: span 7;
  }
  .grid-col-xl-8 {
    grid-column: span 8;
  }
  .grid-col-xl-9 {
    grid-column: span 9;
  }
  .grid-col-xl-10 {
    grid-column: span 10;
  }
  .grid-col-xl-11 {
    grid-column: span 11;
  }
  .grid-col-xl-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1399px) {
  .grid-container {
    max-width: 1140px;
  }
  .grid-col-lg-1 {
    grid-column: span 1;
  }
  .grid-col-lg-2 {
    grid-column: span 2;
  }
  .grid-col-lg-3 {
    grid-column: span 3;
  }
  .grid-col-lg-4 {
    grid-column: span 4;
  }
  .grid-col-lg-5 {
    grid-column: span 5;
  }
  .grid-col-lg-6 {
    grid-column: span 6;
  }
  .grid-col-lg-7 {
    grid-column: span 7;
  }
  .grid-col-lg-8 {
    grid-column: span 8;
  }
  .grid-col-lg-9 {
    grid-column: span 9;
  }
  .grid-col-lg-10 {
    grid-column: span 10;
  }
  .grid-col-lg-11 {
    grid-column: span 11;
  }
  .grid-col-lg-12 {
    grid-column: span 12;
  }
}
@media (max-width: 1199px) {
  .grid-container {
    max-width: 960px;
  }
  .grid-col-md-1 {
    grid-column: span 1;
  }
  .grid-col-md-2 {
    grid-column: span 2;
  }
  .grid-col-md-3 {
    grid-column: span 3;
  }
  .grid-col-md-4 {
    grid-column: span 4;
  }
  .grid-col-md-5 {
    grid-column: span 5;
  }
  .grid-col-md-6 {
    grid-column: span 6;
  }
  .grid-col-md-7 {
    grid-column: span 7;
  }
  .grid-col-md-8 {
    grid-column: span 8;
  }
  .grid-col-md-9 {
    grid-column: span 9;
  }
  .grid-col-md-10 {
    grid-column: span 10;
  }
  .grid-col-md-11 {
    grid-column: span 11;
  }
  .grid-col-md-12 {
    grid-column: span 12;
  }
}
@media (max-width: 991px) {
  .grid-container {
    max-width: 720px;
  }
  .grid-row {
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-col-sm-1 {
    grid-column: span 1;
  }
  .grid-col-sm-2 {
    grid-column: span 2;
  }
  .grid-col-sm-3 {
    grid-column: span 3;
  }
  .grid-col-sm-4 {
    grid-column: span 4;
  }
  .grid-col-sm-5 {
    grid-column: span 5;
  }
  .grid-col-sm-6 {
    grid-column: span 6;
  }
  .grid-col-sm-7 {
    grid-column: span 6;
  }
  .grid-col-sm-8 {
    grid-column: span 6;
  }
  .grid-col-sm-9 {
    grid-column: span 6;
  }
  .grid-col-sm-10 {
    grid-column: span 6;
  }
  .grid-col-sm-11 {
    grid-column: span 6;
  }
  .grid-col-sm-12 {
    grid-column: span 6;
  }
}
@media (max-width: 767px) {
  .grid-container {
    max-width: 540px;
    padding: 0 15px;
  }
  .grid-row {
    grid-template-columns: 1fr;
    gap: calc(var(--gutter) * 1.5);
  }
  .grid-col-xs-1 {
    grid-column: 1;
  }
  .grid-col-xs-2 {
    grid-column: 1;
  }
  .grid-col-xs-3 {
    grid-column: 1;
  }
  .grid-col-xs-4 {
    grid-column: 1;
  }
  .grid-col-xs-5 {
    grid-column: 1;
  }
  .grid-col-xs-6 {
    grid-column: 1;
  }
  .grid-col-xs-7 {
    grid-column: 1;
  }
  .grid-col-xs-8 {
    grid-column: 1;
  }
  .grid-col-xs-9 {
    grid-column: 1;
  }
  .grid-col-xs-10 {
    grid-column: 1;
  }
  .grid-col-xs-11 {
    grid-column: 1;
  }
  .grid-col-xs-12 {
    grid-column: 1;
  }
}
@media (max-width: 575px) {
  .grid-container {
    max-width: 100%;
    padding: 0 10px;
  }
}
.grid-col-full {
  grid-column: 1/-1;
}

.grid-col-auto {
  grid-column: auto;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}

[class*=col-] {
  padding: 0 var(--gutter);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.col-1 {
  width: 8.3333333333%;
}

.col-2 {
  width: 16.6666666667%;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3333333333%;
}

.col-5 {
  width: 41.6666666667%;
}

.col-6 {
  width: 50%;
}

.col-7 {
  width: 58.3333333333%;
}

.col-8 {
  width: 66.6666666667%;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.3333333333%;
}

.col-11 {
  width: 91.6666666667%;
}

.col-12 {
  width: 100%;
}

@media (max-width: 1399px) {
  .col-lg-1 {
    width: 8.3333333333%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
  }
  .col-lg-12 {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .col-md-1 {
    width: 8.3333333333%;
  }
  .col-md-2 {
    width: 16.6666666667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.3333333333%;
  }
  .col-md-5 {
    width: 41.6666666667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.3333333333%;
  }
  .col-md-8 {
    width: 66.6666666667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.3333333333%;
  }
  .col-md-11 {
    width: 91.6666666667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .col-sm-1 {
    width: 16.6666666667%;
  }
  .col-sm-2 {
    width: 33.3333333333%;
  }
  .col-sm-3 {
    width: 50%;
  }
  .col-sm-4 {
    width: 66.6666666667%;
  }
  .col-sm-5 {
    width: 83.3333333333%;
  }
  .col-sm-6 {
    width: 100%;
  }
  .col-sm-7 {
    width: 116.6666666667%;
  }
  .col-sm-8 {
    width: 133.3333333333%;
  }
  .col-sm-9 {
    width: 150%;
  }
  .col-sm-10 {
    width: 166.6666666667%;
  }
  .col-sm-11 {
    width: 183.3333333333%;
  }
  .col-sm-12 {
    width: 200%;
  }
}
@media (max-width: 767px) {
  .col-xs-1 {
    width: 100%;
  }
  .col-xs-2 {
    width: 100%;
  }
  .col-xs-3 {
    width: 100%;
  }
  .col-xs-4 {
    width: 100%;
  }
  .col-xs-5 {
    width: 100%;
  }
  .col-xs-6 {
    width: 100%;
  }
  .col-xs-7 {
    width: 100%;
  }
  .col-xs-8 {
    width: 100%;
  }
  .col-xs-9 {
    width: 100%;
  }
  .col-xs-10 {
    width: 100%;
  }
  .col-xs-11 {
    width: 100%;
  }
  .col-xs-12 {
    width: 100%;
  }
}
.no-gutter {
  gap: 0;
}

.gutter-sm {
  gap: calc(var(--gutter) / 2);
}

.gutter-lg {
  gap: calc(var(--gutter) * 2);
}

.row-center {
  justify-items: center;
}

.row-start {
  justify-items: start;
}

.row-end {
  justify-items: end;
}

header .menu__mobile {
  cursor: pointer;
  display: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
  width: 40px;
  height: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .menu__mobile:hover rect {
  fill: var(--neutral-600);
}
header .menu__mobile svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
header .menu__mobile rect {
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
header .menu__mobile .opened {
  display: none;
}
header .menu__mobile.active rect:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  x: 8px;
  y: 17px;
  width: 24px;
}
header .menu__mobile.active rect:nth-child(2) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  x: 8px;
  y: 17px;
  width: 24px;
}
header .header__row__top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 0;
}
header .header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
header .header__logo img {
  width: 218px;
  height: 54px;
}
header .header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 48px;
}
header .header__button__visually-impaired {
  gap: 12px;
  display: grid;
  grid-template-columns: 28px 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
header .header__button__visually-impaired img {
  width: 28px;
  height: 28px;
}
header .header__button__visually-impaired svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .header__button__visually-impaired span {
  font-family: var(--font-reqular);
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: var(--link-color);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .header__button__visually-impaired:hover span {
  color: var(--blue-700);
}
header .header__button__visually-impaired:hover svg path:first-child {
  fill: var(--blue-700);
}
header .header__button__visually-impaired:active span {
  color: var(--blue-900);
}
header .header__button__visually-impaired:active svg path:first-child {
  fill: var(--blue-900);
}
header .header__button__link {
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: grid;
  grid-template-columns: 16px 1fr;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 0 18px;
  line-height: 1;
  border-radius: 12px;
  border: solid 1px var(--neutral-300);
  color: var(--neutral-800);
  font-family: var(--font-reqular);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
header .header__button__link::before {
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.0001 13.4663C10.2668 13.4663 10.5335 13.3329 10.6668 13.1996C11.0668 12.7996 11.0668 12.2663 10.6668 11.8663L7.0668 8.26628C6.93346 8.13294 6.93346 7.99961 6.93346 7.73294C6.93346 7.59961 6.93346 7.46628 7.0668 7.33294L10.6668 3.73294C11.0668 3.33294 11.0668 2.79961 10.6668 2.39961C10.2668 1.99961 9.73346 1.99961 9.33346 2.39961L5.73346 5.99961C5.33346 6.53294 5.0668 7.06628 5.0668 7.73294C5.0668 8.39961 5.33346 9.06628 5.73346 9.46628L9.33346 13.1996C9.60013 13.3329 9.8668 13.4663 10.0001 13.4663Z' fill='%23333C51'/%3E%3C/svg%3E%0A");
}
header .header__button__link:hover {
  border-color: var(--blue-500);
  color: var(--neutral-900);
}
header .header__navbar {
  width: 100%;
  height: 76px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 48px;
  border-radius: var(--navbar-wrapper-radius);
  background-color: #333c51;
}
header .header__navbar__wrapper {
  width: 100%;
}
header .header__navbar__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  font-family: var(--font-reqular);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1;
  letter-spacing: normal;
  text-align: left;
  color: var(--navbar-color);
  background: transparent;
  border-radius: var(--navbar-radius);
  padding: 12px 10px 12px 12px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
header .header__navbar__item:hover {
  color: var(--navbar-hover-color);
}
header .header__navbar__item.selected:link, header .header__navbar__item.selected:visited, header .header__navbar__item.selected:active, header .header__navbar__item.selected:hover {
  color: var(--navbar-hover-color);
  background: var(--neutral-700);
}
header .header__subnavbar {
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 18px;
  padding: 16px;
  border-radius: var(--navbar-wrapper-radius);
  background-color: var(--sub-navbar-bg-color);
}
header .header__subnavbar__wrapper {
  margin-top: 20px;
  width: 100%;
}
header .header__subnavbar__item {
  height: 48px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 10px 12px 12px;
  border-radius: var(--sub-navbar-radius);
  background-color: transparent;
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: var(--sub-navbar-color);
  min-width: 106px;
  max-width: 280px;
}
header .header__subnavbar__item:hover {
  color: var(--sub-navbar-hover-color);
}
header .header__subnavbar__item.selected:link, header .header__subnavbar__item.selected:visited, header .header__subnavbar__item.selected:active, header .header__subnavbar__item.selected:hover {
  color: var(--sub-navbar-hover-color);
  background: var(--sub-navbar-hover-bg-color);
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  header .menu__mobile {
    display: block;
  }
  header .header__logo img {
    width: 114px;
    height: 28px;
  }
  header .header__row__nav {
    display: none;
  }
  header .header__buttons {
    display: none;
  }
}
#footer {
  padding-top: 48px;
  padding-bottom: 60px;
}
#footer .container {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_contacts {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 21px 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 16px;
  background-color: var(--neutral-50);
  margin-bottom: 40px;
}
#footer .footer_contacts__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
#footer .footer_contacts__logo-item {
  height: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_contacts__logo-item.academy_logo {
  padding-right: 32px;
  border-right: 1px solid var(--neutral-300);
}
#footer .footer_contacts__logo-item.academy_logo img {
  width: 161px;
  height: 40px;
}
#footer .footer_contacts__logo-item.astra_logo {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#footer .footer_contacts__logo-item.astra_logo img {
  width: 114px;
  height: 30px;
}
#footer .footer_contacts__logo-item.astra_logo p {
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral-300);
}
#footer .footer_contacts__feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
#footer .footer_contacts .socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
#footer .footer_contacts .socials a {
  display: block;
  width: 44px;
  height: 44px;
  background-color: var(--neutral-800);
  border-radius: 16px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_contacts .socials a#vk {
  background-image: url("/local/templates/astraAcademy/assets/img/svg/vk.svg");
}
#footer .footer_contacts .socials a#tg {
  background-image: url("/local/templates/astraAcademy/assets/img/svg/tg.svg");
}
#footer .footer_contacts .socials a:hover, #footer .footer_contacts .socials a:focus, #footer .footer_contacts .socials a:active {
  background-color: var(--blue-700);
}
#footer .footer_contacts .contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 2px;
  width: 600px;
}
#footer .footer_contacts .contacts a#phone {
  font-family: var(--font-regular);
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #151926;
  margin-bottom: 2px;
}
#footer .footer_contacts .contacts a#mail {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  color: var(--blue-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .footer_contacts .contacts a#mail svg {
  margin-left: 6px;
}
#footer .footer_contacts .contacts a#mail svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_contacts .contacts a#mail:hover, #footer .footer_contacts .contacts a#mail:active, #footer .footer_contacts .contacts a#mail:focus {
  color: var(--blue-300);
}
#footer .footer_contacts .contacts a#mail:hover svg path, #footer .footer_contacts .contacts a#mail:active svg path, #footer .footer_contacts .contacts a#mail:focus svg path {
  fill: var(--blue-300);
}
#footer .footer_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 32px;
}
#footer .footer_menu__item, #footer .footer_menu__item-small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  position: relative;
  width: 100%;
}
#footer .footer_menu__item-small:first-of-type {
  margin-bottom: 12px;
}
#footer .footer_menu .link {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral900);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .footer_menu .link:hover, #footer .footer_menu .link:active, #footer .footer_menu .link:focus {
  color: var(--blue-700);
}
#footer .footer_menu .head-link {
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral-500);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  width: 100%;
  border-bottom: 1px solid var(--grey);
}
#footer .footer_policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--grey);
}
#footer .copyright {
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral700);
}
#footer .documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 91px;
}
#footer .documents a {
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#footer .documents a:hover, #footer .documents a:active,
#footer .documents a a:focus {
  color: var(--neutral900);
}
#footer #btnGoToTop {
  height: 80px;
  padding: 12px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background-color: var(--neutral-100);
  color: var(--neutral-300);
  font-weight: 700;
  font-size: 16px;
}

/* Для экранов 768-1399px */
@media (max-width: 1399px) {
  #footer .footer_contacts {
    margin-bottom: 20px;
  }
  #footer .footer_contacts__logo {
    gap: 16px;
  }
  #footer .footer_contacts__logo-item {
    height: 40px;
  }
  #footer .footer_contacts__logo-item.academy_logo {
    padding-right: 16px;
  }
  #footer .footer_contacts__logo-item.academy_logo img {
    width: 121px;
    height: 30px;
  }
  #footer .footer_contacts__logo-item.astra_logo img {
    width: 91px;
    height: 24px;
  }
  #footer .footer_contacts__logo-item.astra_logo p {
    font-size: 10px;
    line-height: 16px;
  }
  #footer .footer_contacts__feedback {
    gap: 14px;
  }
  #footer .footer_contacts .socials {
    gap: 8px;
  }
  #footer .footer_contacts .socials a {
    width: 40px;
    height: 40px;
  }
  #footer .footer_contacts .contacts {
    gap: 2px;
    width: 240px;
  }
  #footer .footer_contacts .contacts a#phone {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 0;
  }
  #footer .footer_contacts .contacts a#mail {
    font-size: 12px;
    line-height: 20px;
  }
  #footer .footer_contacts .contacts a#mail svg {
    margin-left: 3px;
  }
  #footer .footer_menu {
    gap: 20px;
    margin-bottom: 20px;
  }
  #footer .footer_menu__item, #footer .footer_menu__item-small {
    gap: 14px;
  }
  #footer .footer_menu__item-small:first-of-type {
    margin-bottom: 10px;
  }
  #footer .footer_menu .link {
    font-size: 14px;
    line-height: 20px;
  }
  #footer .footer_menu .head-link {
    height: 30px;
    padding-bottom: 4px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    font-size: 12px;
    line-height: 14px;
  }
  #footer .footer_policy {
    padding-top: 20px;
  }
  #footer .copyright {
    font-family: var(--font-regular);
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
    color: var(--neutral700);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #footer .documents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
    position: relative;
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
  #footer .documents a {
    font-size: 12px;
    line-height: 14px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #footer .documents a:first-of-type {
    -webkit-box-flex: 1.4;
        -ms-flex: 1.4;
            flex: 1.4;
  }
  #footer #btnGoToTop {
    height: 80px;
    padding: 12px 26px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 8px;
    background-color: var(--neutral-100);
    color: var(--neutral-300);
    font-weight: 700;
    font-size: 16px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #footer .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #footer .footer_contacts {
    width: 100vw;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-flex-item-align: center;
        align-self: center;
    justify-self: center;
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 24px;
  }
  #footer .footer_contacts__logo {
    gap: 16px;
    margin-bottom: 20px;
  }
  #footer .footer_contacts__feedback {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  #footer .footer_contacts .socials {
    gap: 16px;
  }
  #footer .footer_contacts .contacts {
    gap: 10px;
    width: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #footer .footer_contacts .contacts a#phone {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
  }
  #footer .footer_contacts .contacts a#mail {
    font-size: 14px;
    line-height: 20px;
  }
  #footer .footer_contacts .contacts a#mail svg {
    margin-left: 4px;
  }
  #footer .footer_menu {
    gap: 12px;
    margin-bottom: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 20px;
  }
  #footer .footer_menu__item {
    width: calc(50% - 10px);
    gap: 10px;
  }
  #footer .footer_menu__item-small {
    width: 100%;
    gap: 10px;
  }
  #footer .footer_menu__item-small:first-of-type {
    margin-bottom: 10px;
  }
  #footer .footer_menu .link {
    font-size: 12px;
    line-height: 16px;
    width: 100%;
  }
  #footer .footer_menu .head-link {
    border-color: var(--neutral-100);
  }
  #footer .footer_policy {
    padding-top: 40px;
    border-color: var(--neutral-100);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #footer .copyright {
    margin-bottom: 12px;
  }
  #footer .documents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.h1 {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 130%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  color: var(--neutral-900);
}

.h2 {
  font-family: var(--font-bold);
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-align: left;
  color: var(--neutral-900);
  margin-bottom: 60px;
}

.h3 {
  font-family: var(--font-bold);
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  text-align: left;
  color: var(--neutral-900);
  margin-bottom: 60px;
}

.h4 {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 136%;
  text-align: left;
  color: var(--neutral-900);
  margin-bottom: 60px;
}

.text-large {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--neutral-800);
}

.text-xlarge {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: var(--neutral-800);
}

.white {
  color: #fff;
}

.resources__item__btn, .resources-dark__item__btn, .resources-black__item__btn, .link__block__btn {
  background-color: var(--blue-500);
  height: 40px;
  min-width: 40px;
  width: 40px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 26px;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 12px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.resources__item__btn p, .resources-dark__item__btn p, .resources-black__item__btn p, .link__block__btn p,
.resources__item__btn span,
.resources-dark__item__btn span,
.resources-black__item__btn span,
.link__block__btn span {
  width: 0px;
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.resources__item__btn::after, .resources-dark__item__btn::after, .resources-black__item__btn::after, .link__block__btn::after {
  content: "";
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4108 5.97461H9.04877C8.48185 5.97461 7.9858 6.45229 7.9858 6.9982C7.9858 7.54412 8.48185 8.02179 9.04877 8.02179H17.2691L5.36381 19.486C4.93863 19.8955 4.93863 20.5096 5.36381 20.919C5.57641 21.1238 5.85986 21.192 6.14332 21.192C6.42678 21.192 6.71024 21.1238 6.92283 20.919L18.8281 9.45482V17.3706C18.8281 17.9165 19.3241 18.3942 19.891 18.3942C20.458 18.3942 20.954 17.9165 20.954 17.3706V9.38658C20.8831 7.47588 19.3241 5.97461 17.4108 5.97461Z' fill='white' /%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.link-see__block__btn {
  background-color: var(--neutral-50);
  height: 40px;
  min-width: 40px;
  width: 40px;
  border-radius: 16px;
  display: grid;
  grid-template-columns: auto 26px;
  gap: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 12px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.link-see__block__btn p,
.link-see__block__btn span {
  width: 0px;
  font-family: var(--font-regular);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--blue-500);
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.link-see__block__btn:hover {
  width: auto;
}
.link-see__block__btn:hover p,
.link-see__block__btn:hover span {
  width: auto;
  margin-left: 11px;
  margin-right: 12px;
}
.link-see__block__btn:hover::after {
  -webkit-transform: scale(70%);
      -ms-transform: scale(70%);
          transform: scale(70%);
}
.link-see__block__btn::after {
  content: "";
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4108 5.97461H9.04877C8.48185 5.97461 7.9858 6.45229 7.9858 6.9982C7.9858 7.54412 8.48185 8.02179 9.04877 8.02179H17.2691L5.36381 19.486C4.93863 19.8955 4.93863 20.5096 5.36381 20.919C5.57641 21.1238 5.85986 21.192 6.14332 21.192C6.42678 21.192 6.71024 21.1238 6.92283 20.919L18.8281 9.45482V17.3706C18.8281 17.9165 19.3241 18.3942 19.891 18.3942C20.458 18.3942 20.954 17.9165 20.954 17.3706V9.38658C20.8831 7.47588 19.3241 5.97461 17.4108 5.97461Z' fill='%232dabf1' /%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.button__gray {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 32px;
  background: var(--neutral-700);
  border-radius: 12px;
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--blue-300);
}
.button__gray:hover {
  color: var(--blue-300);
}

blockquote {
  margin-bottom: 60px;
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-900);
  margin-bottom: 24px;
  position: relative;
  display: grid;
  grid-template-columns: 4px 1fr;
  gap: 20px;
}
blockquote:before {
  content: "";
  display: block;
  height: 100%;
  width: 4px;
  background-color: var(--blue-700);
  border-radius: 2px;
}

.bg-gray-gradient, #aboutCommercial .img_wrap, #whyAuthor .advantages__block, #courses .container, #aboutTeaching .img_wrap, #documentsCards .container, #why .container, #educationalServices .container, #informationEnvironment .container, #managers .container, .feedBack__form {
  background: radial-gradient(103.05% 402.22% at -3.05% -4.07%, #E9ECF7 5.77%, #F4F6FB 31.01%, #FFFFFF 58.33%, #E7EBF6 97.12%);
  border-radius: 24px 60px 24px 24px;
}

.bg-black, #projects .container, #additionalEducationalPrograms .container {
  background: var(--neutral-800);
  border-radius: 24px 60px 24px 24px;
}
.bg-black h2.h2, #projects .container h2.h2, #additionalEducationalPrograms .container h2.h2 {
  color: #fff;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 4px;
}
.pagination a {
  width: 56px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 16px;
  line-height: 24;
  color: var(--neutral-500);
  background-color: transparent;
  border-radius: 100px;
}
.pagination a.active {
  background-color: var(--neutral-400);
  color: #FFF;
}

#btnGoToTop {
  width: 43px;
  height: 120px;
  padding: 12px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 50px;
  background-color: transparent;
  border: 3px solid var(--neutral-500);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 1000;
}
#btnGoToTop:hover {
  background-color: rgba(242, 245, 253, 0.7);
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}

#btnAction {
  width: auto;
  height: 68px;
  padding: 20px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  border-radius: 14px;
  background-color: var(--blue-600);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#btnAction::after {
  content: url("/local/templates/astraAcademy/assets/img/svg/more_icon.svg");
  width: 9px;
  height: 17px;
}
#btnAction:hover {
  background-color: var(--blue-500);
}

#btnLinkSmall {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  background-color: var(--blue-600);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#btnLinkSmall svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}

/* Для экранов 768-1399px */
@media (max-width: 1399px) {
  #btnGoToTop {
    bottom: 40px;
    right: 10px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #btnGoToTop {
    width: 43px;
    height: 43px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
    position: fixed;
    bottom: 40px;
    right: 12px;
    border-width: 2px;
  }
  #btnGoToTop svg:last-of-type {
    display: none;
  }
  #btnGoToTop:hover, #btnGoToTop:active, #btnGoToTop:focus {
    background-color: var(--neutral-100);
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
.resources__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.resources__block__2 > .resources__item {
  width: calc(50% - 16px);
}
.resources__block__3 > .resources__item {
  width: calc(33.33% - 21.3333333333px);
}
.resources__block__4 > .resources__item {
  width: calc(25% - 24px);
}
.resources__block__row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.resources__item {
  width: calc(25% - 24px);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: #fff;
  border: 1px solid var(--neutral-50);
  border-radius: 16px 60px 16px 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.resources__item__small {
  border-radius: 16px 40px 16px 16px;
}
.resources__item img {
  height: 66px;
  width: auto;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.resources__item__title {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-800);
}
.resources__item__title-blue {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--blue-900);
}
.resources__item__title-blue + .resources__item__desc {
  margin-top: 15px;
}
.resources__item__desc {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--neutral-800);
}
.resources__item__btn {
  margin-top: 20px;
}
.resources__item:hover .resources-black__item__btn, .resources__item:hover .resources-dark__item__btn, .resources__item:hover .resources__item__btn {
  width: auto;
}
.resources__item:hover .resources-black__item__btn p, .resources__item:hover .resources-dark__item__btn p, .resources__item:hover .resources__item__btn p,
.resources__item:hover .resources-black__item__btn span,
.resources__item:hover .resources-dark__item__btn span,
.resources__item:hover .resources__item__btn span {
  width: auto;
  margin-left: 11px;
  margin-right: 12px;
}
.resources__item:hover .resources-black__item__btn::after, .resources__item:hover .resources-dark__item__btn::after, .resources__item:hover .resources__item__btn::after {
  -webkit-transform: scale(70%);
      -ms-transform: scale(70%);
          transform: scale(70%);
}

.resources-dark__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.resources-dark__block__2 > .resources-dark__item {
  width: calc(50% - 16px);
}
.resources-dark__block__3 > .resources-dark__item {
  width: calc(33.33% - 21.3333333333px);
}
.resources-dark__block__4 > .resources-dark__item {
  width: calc(25% - 24px);
}
.resources-dark__item {
  width: calc(25% - 24px);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: var(--neutral-800);
  border: 1px solid var(--neutral-800);
  border-radius: 16px 40px 16px 16px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.resources-dark__item__svg-top {
  margin-bottom: 30px;
}
.resources-dark__item img {
  height: 66px;
  width: auto;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.resources-dark__item__title {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.resources-dark__item__title + .resources-dark__item__desc {
  margin-top: 10px;
}
.resources-dark__item__desc {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 170%;
  font-weight: 400;
  color: var(--neutral-200);
}
.resources-dark__item:hover .resources-black__item__btn, .resources-dark__item:hover .resources__item__btn, .resources-dark__item:hover .resources-dark__item__btn {
  width: auto;
}
.resources-dark__item:hover .resources-black__item__btn p, .resources-dark__item:hover .resources__item__btn p, .resources-dark__item:hover .resources-dark__item__btn p,
.resources-dark__item:hover .resources-black__item__btn span,
.resources-dark__item:hover .resources__item__btn span,
.resources-dark__item:hover .resources-dark__item__btn span {
  width: auto;
  margin-left: 11px;
  margin-right: 12px;
}
.resources-dark__item:hover .resources-black__item__btn::after, .resources-dark__item:hover .resources__item__btn::after, .resources-dark__item:hover .resources-dark__item__btn::after {
  -webkit-transform: scale(70%);
      -ms-transform: scale(70%);
          transform: scale(70%);
}

.resources-black__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.resources-black__block__2 > .resources-black__item {
  width: calc(50% - 16px);
}
.resources-black__block__3 > .resources-black__item {
  width: calc(33.33% - 21.3333333333px);
}
.resources-black__block__4 > .resources-black__item {
  width: calc(25% - 24px);
}
.resources-black__item {
  width: calc(25% - 24px);
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: var(--neutral-900);
  border: 1px solid var(--neutral-900);
  border-radius: 16px 40px 16px 16px;
  cursor: pointer;
}
.resources-black__item__svg-top {
  margin-bottom: 30px;
}
.resources-black__item img {
  height: 66px;
  width: auto;
  margin-bottom: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.resources-black__item__title {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
}
.resources-black__item__title + .resources-black__item__desc {
  margin-top: 10px;
}
.resources-black__item__desc {
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 170%;
  font-weight: 400;
  color: var(--neutral-200);
}
.resources-black__item:hover .resources__item__btn, .resources-black__item:hover .resources-dark__item__btn, .resources-black__item:hover .resources-black__item__btn {
  width: auto;
}
.resources-black__item:hover .resources__item__btn p, .resources-black__item:hover .resources-dark__item__btn p, .resources-black__item:hover .resources-black__item__btn p,
.resources-black__item:hover .resources__item__btn span,
.resources-black__item:hover .resources-dark__item__btn span,
.resources-black__item:hover .resources-black__item__btn span {
  width: auto;
  margin-left: 11px;
  margin-right: 12px;
}
.resources-black__item:hover .resources__item__btn::after, .resources-black__item:hover .resources-dark__item__btn::after, .resources-black__item:hover .resources-black__item__btn::after {
  -webkit-transform: scale(70%);
      -ms-transform: scale(70%);
          transform: scale(70%);
}

/* Для экранов 768-1399px */
@media (max-width: 1399px) {
  #documentsCards .resources__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
    padding: 36px 32px;
  }
  #documentsCards .resources__item a:hover {
    width: 40px;
    height: 40px;
  }
  #documentsCards .resources__item a:hover span {
    display: none;
    margin-right: 0;
  }
  #documentsCards .resources__item a:hover::after {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
    background-position: center center;
    margin-left: 0;
    margin-right: 0;
  }
  #documentsCards .resources__item a {
    margin-top: 0;
  }
  #documentsCards .resources__block__3 > .resources__item {
    width: calc(50% - 20px);
  }
  #documentsCards .resources__block__3 > .resources__item:last-child {
    width: 100%;
  }
  #educationalServices .resources-dark__item {
    width: calc(50% - 16px);
  }
}
.cards__flat {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}
.cards__flat__2 {
  grid-template-columns: 1fr 1fr;
}
.cards__flat__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px;
  background: var(--neutral-50);
  border-radius: 16px;
}
.cards__flat__item:hover {
  background: var(--neutral-100);
}
.cards__point {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cards__point__item {
  display: grid;
  grid-template-columns: 6px 1fr;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 32px;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--neutral-100);
  border-radius: 16px;
}
.cards__point__item::before {
  content: "";
  margin-top: 5px;
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--blue-600);
  border-radius: 50%;
}
.cards__point__item:hover {
  background: var(--neutral-100);
}
.cards__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.cards__faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 32px 40px;
  background: var(--faq-100);
  border-radius: 32px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.cards__faq__item__title {
  color: var(--neutral-800);
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  gap: 40px;
  display: grid;
  grid-template-columns: 1fr 40px;
  cursor: pointer;
}
.cards__faq__item__title::after {
  content: "";
  display: block;
  border-radius: 16px;
  width: 40px;
  height: 40px;
  background-color: var(--blue-600);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.4108 5.93555H9.04877C8.48185 5.93555 7.9858 6.41322 7.9858 6.95914C7.9858 7.50505 8.48185 7.98273 9.04877 7.98273H17.2691L5.36381 19.447C4.93863 19.8564 4.93863 20.4705 5.36381 20.88C5.57641 21.0847 5.85986 21.1529 6.14332 21.1529C6.42678 21.1529 6.71024 21.0847 6.92283 20.88L12.8755 15.1479L18.8281 9.41576V17.3315C18.8281 17.8774 19.3241 18.3551 19.891 18.3551C20.458 18.3551 20.954 17.8774 20.954 17.3315V9.34752C20.8831 7.43681 19.3241 5.93555 17.4108 5.93555Z' fill='white'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-size: 26px 26px;
  background-repeat: no-repeat;
}
.cards__faq__item__desc {
  height: 0;
  color: var(--neutral-500);
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  pointer-events: none;
}
.cards__faq__item.active {
  background: var(--faq-200);
  gap: 20px;
}
.cards__faq__item.active .cards__faq__item__title::after {
  background-color: var(--blue-300);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cards__faq__item.active .cards__faq__item__desc {
  height: auto;
  opacity: 1;
  pointer-events: all;
}
.cards__faq__item:hover .cards__faq__item__title::after {
  background-color: var(--blue-300);
}

.news__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 32px;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
.news__block__item {
  width: calc(50% - 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  gap: 10px;
  background: #FFFFFF;
  border-radius: 20px;
  -webkit-box-shadow: 0px 1px 6px -1px rgba(30, 34, 42, 0.02);
          box-shadow: 0px 1px 6px -1px rgba(30, 34, 42, 0.02);
  -webkit-filter: drop-shadow(0px 1px 2px rgba(30, 34, 42, 0.03)) drop-shadow(0px 2px 4px rgba(30, 34, 42, 0.02));
          filter: drop-shadow(0px 1px 2px rgba(30, 34, 42, 0.03)) drop-shadow(0px 2px 4px rgba(30, 34, 42, 0.02));
}
.news__block__item__img {
  height: 210px;
  width: 100%;
  background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail-thumbnail-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 24px 24px 0 0;
}
.news__block__item__img img {
  border-radius: 24px 24px 0 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.news__block__item__content {
  padding: 24px 32px 32px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news__block__item__date {
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 170%;
  color: var(--neutral-700);
}
.news__block__item__title {
  margin-top: 24px;
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 156%;
  color: var(--neutral-900);
}
.news__block__item__desc {
  margin-top: 8px;
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: var(--neutral-900);
}
.news__block__item__tags {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 6px;
  -webkit-box-shadow: 0 0 2px green;
          box-shadow: 0 0 2px green;
}
.news__block__item__tags__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 90px;
  background-color: var(--neutral-50);
  padding: 5px 12px;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral-500);
}

.managers__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.managers__item {
  background-color: #fff;
  border-radius: 24px 60px 24px 24px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-shadow: 0px 1px 6px -1px rgba(30, 34, 42, 0.02);
          box-shadow: 0px 1px 6px -1px rgba(30, 34, 42, 0.02);
  -webkit-filter: drop-shadow(0px 1px 2px rgba(30, 34, 42, 0.03)) drop-shadow(0px 2px 4px rgba(30, 34, 42, 0.02));
          filter: drop-shadow(0px 1px 2px rgba(30, 34, 42, 0.03)) drop-shadow(0px 2px 4px rgba(30, 34, 42, 0.02));
}
.managers__item__header {
  height: 210px;
  width: 100%;
  background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail-thumbnail-10.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 24px 60px 0 0;
}
.managers__item__header::after {
  content: "";
  width: 300px;
  height: 342px;
  position: absolute;
  bottom: 0;
  left: 177px;
}
.managers__item__body {
  height: 302px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px 32px 32px 32px;
}
.managers__item:first-of-type .managers__item__header::after {
  background-image: url("/local/templates/astraAcademy/assets/img/png/index/man.png");
  background-repeat: no-repeat;
  left: 195px;
}
.managers__item:last-of-type .managers__item__header::after {
  background-image: url("/local/templates/astraAcademy/assets/img/png/index/woman.png");
  background-repeat: no-repeat;
}
.managers__item__name {
  font-size: 24px;
  line-height: 34px;
  color: var(--blue-900);
  margin-bottom: 10px;
}
.managers__item__post {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-500);
}
.managers__item__subtitle {
  font-size: 14px;
  line-height: 24px;
  color: #929292;
  margin-bottom: 4px;
}
.managers__item__data {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-500);
  margin-bottom: 10px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .managers__item__header::after {
    width: 240px;
    height: 323px;
    left: 39px;
  }
  .managers__item__body {
    height: 360px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 24px 32px 32px 32px;
  }
  .managers__item:first-of-type .managers__item__header::after {
    background-size: contain;
    left: 39px;
  }
  .managers__item:last-of-type .managers__item__header::after {
    background-size: contain;
  }
  .managers__item__name {
    max-width: 166px;
  }
  .managers__item__post {
    line-height: 20px;
  }
}
.teachers__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-bottom: 60px;
}
.teachers__item {
  background-color: var(--neutral-700);
  border-radius: 32px 60px 32px 32px;
  width: 33.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.teachers__item__header {
  height: 222px;
  width: 100%;
  background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail-thumbnail-11.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 32px 60px 0 0;
}
.teachers__item__header img {
  width: 160px;
  height: 160px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 31px;
}
.teachers__item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 32px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
}
.teachers__item__name {
  font-size: 24px;
  line-height: 34px;
  color: var(--blue-50);
  margin-bottom: 17px;
}
.teachers__item__post {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-50);
}
.teachers__item__info {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.teachers__item__subtitle {
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-300);
  margin-bottom: 8px;
}
.teachers__item__subject {
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-50);
}
.teachers__item__details {
  width: 100%;
  margin-top: 20px;
}
.teachers__item__details .btn {
  width: 100%;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  background-color: var(--neutral-600);
  border-radius: 12px;
  color: var(--neutral-200);
  font-size: 16px;
  line-height: 24px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .teachers__block {
    margin-bottom: 40px;
  }
  .teachers__item {
    width: 50%;
  }
  .teachers__item__header {
    background-position: 84%;
  }
  .teachers__item__body {
    height: 421px;
  }
  .teachers__item:last-of-type {
    display: none;
  }
}
.documentsList__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-height: 360px;
  overflow-y: auto;
}
.documentsList__block__wrapper {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}
.documentsList__block__wrapper.show::after {
  display: none;
}
.documentsList__block__wrapper.show .documentsList__block {
  max-height: unset;
}
.documentsList__block__wrapper.show + .documentsList__btn svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.documentsList__block__wrapper::after {
  content: "";
  position: absolute;
  width: calc(100% - 12px);
  height: 100%;
  left: 0;
  bottom: 0;
  z-index: 10;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.9) 100%);
}
.documentsList__block {
  /* Стилизация скроллбара */
}
.documentsList__block::-webkit-scrollbar {
  width: 12px;
}
.documentsList__block::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 4px;
}
.documentsList__block::-webkit-scrollbar-thumb {
  background: var(--neutral-50);
  border-radius: 4px;
}
.documentsList__block::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-100);
}
.documentsList__item {
  width: 100%;
  border-radius: 16px;
  background-color: transparent;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  gap: 16px;
  cursor: pointer;
}
.documentsList__item__number {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.documentsList__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 6px;
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-900);
  max-width: 800px;
}
.documentsList__item__link {
  height: 40px;
  background-color: var(--blue-500);
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  border-radius: 16px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.documentsList__item:hover {
  background-color: var(--neutral-50);
}
.documentsList__item:hover .documentsList__item__link {
  background-color: var(--blue-300);
}
.documentsList__btn {
  width: 100%;
  height: 48px;
  background-color: var(--neutral-50);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 11px;
  font-size: 16px;
  line-height: 100%;
  color: var(--blue-900);
  cursor: pointer;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.documentsList__btn:hover {
  background-color: var(--neutral-100);
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .documentsList__title {
    max-width: 660px;
  }
  .documentsList__item__link {
    display: none;
  }
}
.feedBack__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 36px;
  position: relative;
}
.feedBack__txt {
  min-height: 578px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
.feedBack__txt .subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-800);
}
.feedBack__form {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 80px 60px;
  border-radius: 24px;
}
.feedBack__form form {
  width: 100%;
}

.form-upload {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.form-upload .file-input {
  display: none;
}
.form-upload label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.form-upload label p {
  color: var(--blue-500);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.form-upload label svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.form-upload:hover label p {
  color: var(--blue-700);
}
.form-upload:hover label svg path:first-child {
  fill: var(--blue-700);
}

.download-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.download-btn p {
  color: var(--blue-500);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.download-btn svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.download-btn:hover p {
  color: var(--blue-700);
}
.download-btn:hover svg path:first-child {
  fill: var(--blue-700);
}

.form-group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 13px 12px;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: var(--neutral-800);
  background-color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--blue-500);
  -webkit-box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.form-input::-webkit-input-placeholder {
  color: #999;
  font-size: 14px;
}

.form-input::-moz-placeholder {
  color: #999;
  font-size: 14px;
}

.form-input:-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.form-input::-ms-input-placeholder {
  color: #999;
  font-size: 14px;
}

.form-input::placeholder {
  color: #999;
  font-size: 14px;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 42px 0;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--neutral-200);
  border-radius: 4px;
  background-color: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--blue-600);
  border-color: var(--blue-600);
}

.custom-checkbox input:checked ~ .checkmark:after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.checkbox-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-900);
}
.checkbox-label a {
  color: var(--blue-700);
  text-decoration: none;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.checkbox-label a:hover {
  color: var(--blue-900);
}

.submit-btn {
  width: 100%;
  height: 50px;
  background-color: var(--blue-600);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: var(--blue-300);
}

.submit-btn:active {
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

.search-container {
  position: relative;
  width: var(--search-container-width);
}

.search-input {
  width: 100%;
  padding: 13px 13px 13px 52px;
  border: 1px solid var(--neutral-300);
  border-radius: 100px;
  font-size: 14px;
  color: var(--neutral-900);
  outline: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: #fff;
}
.search-input:hover {
  border-color: var(--neutral-400);
}
.search-input:focus {
  padding-left: 13px;
  border-color: var(--blue-300);
}
.search-input:focus ~ .search-icon {
  -webkit-transform: translateY(-50%) translateX(calc(var(--search-container-width) - 52px));
      -ms-transform: translateY(-50%) translateX(calc(var(--search-container-width) - 52px));
          transform: translateY(-50%) translateX(calc(var(--search-container-width) - 52px));
}

.search-input::-webkit-input-placeholder {
  color: #67788C;
}

.search-input::-moz-placeholder {
  color: #67788C;
}

.search-input:-ms-input-placeholder {
  color: #67788C;
}

.search-input::-ms-input-placeholder {
  color: #67788C;
}

.search-input::placeholder {
  color: #67788C;
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all aese 0.9s;
  transition: all aese 0.9s;
  cursor: pointer;
}

.search-icon:hover {
  color: #007bff;
}

.filter__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 32px;
}
.filter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.filter__drop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-900);
}
.filter__drop::after {
  content: "";
  width: 22px;
  height: 21px;
  background-image: url(/local/templates/astraAcademy/assets/img/svg/arrow__drop.svg);
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
  cursor: pointer;
}
.filter__results__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.filter__results__item {
  height: 28px;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border: 1px solid var(--neutral-700);
  border-radius: 50px;
  font-size: 12px;
  line-height: 20px;
  color: var(--neutral-700);
}
.filter__results__item::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(/local/templates/astraAcademy/assets/img/svg/close-circle.svg);
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.burger-menu {
  width: 100vw;
  min-height: 600px;
  padding-bottom: 80px;
  background-color: var(--neutral-800);
  display: none;
  position: absolute;
  top: 84px;
  right: 0;
  z-index: 1000;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

/* Для экранов 768-1399px */
@media (max-width: 1399px) {
  .burger-menu {
    display: none;
  }
  .burger-menu .container {
    width: var(--container-width);
    padding: 14px 40px;
  }
  .burger-menu-navbar {
    width: 100%;
    position: relative;
  }
  .burger-menu-navbar-nav {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
  .burger-menu-navbar-nav-item {
    width: 100%;
    min-height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .burger-menu-navbar-nav-item-link {
    width: 100%;
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 6px;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    padding: 0 12px;
  }
  .burger-menu-navbar-nav-item-link svg path {
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .burger-menu-navbar-nav-item-link:hover {
    color: var(--blue-500);
  }
  .burger-menu-navbar-nav-item-link:hover svg path {
    fill: var(--blue-500);
  }
  .burger-menu-navbar-nav-item-link:active {
    color: var(--blue-800);
  }
  .burger-menu-navbar-nav-item-link:active svg path {
    fill: var(--blue-800);
  }
  .burger-menu-navbar-nav-item-link.selected {
    background-color: var(--neutral-700);
    border-radius: 12px;
    color: var(--blue-300);
  }
  .burger-menu-navbar-nav-item-link.selected svg {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .burger-menu-navbar-nav-item-link.selected svg path {
    fill: var(--blue-300);
  }
  .burger-menu-navbar-nav-item-link.selected ~ .burger-menu-navbar-nav-item-subnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .burger-menu-navbar-nav-item-subnav {
    margin-top: 8px;
    width: 100%;
    padding: 16px 32px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
    background-color: var(--neutral-50);
    border-radius: 20px;
    display: none;
  }
  .burger-menu-navbar-nav-item-subnav-link {
    padding: 12px;
    border-radius: 12px;
    background-color: transparent;
    font-size: 12px;
    line-height: 20px;
    color: var(--neutral-500);
    font-weight: 400;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
  }
  .burger-menu-navbar-nav-item-subnav-link:hover {
    color: var(--blue-500);
  }
  .burger-menu-navbar-nav-item-subnav-link:active {
    color: var(--blue-800);
  }
  .burger-menu-navbar-nav-item-subnav-link:first-child {
    background-color: #fff;
    color: var(--blue-700);
  }
  .burger-menu[style*="display: flex"] {
    -webkit-animation: fadeIn 0.3s ease;
            animation: fadeIn 0.3s ease;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  .burger-menu .container {
    padding: 14px 20px;
  }
  .burger-menu-navbar-nav-item-subnav {
    padding: 16px 20px;
    gap: 10px;
  }
}
.page__index {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 100px;
}

#welcome {
  margin-top: 60px;
}
#welcome .img__tablet, #welcome .img__mobile {
  display: none;
}
#welcome .container {
  padding-left: 100px;
  padding-right: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
#welcome .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#director {
  background-color: var(--neutral-100);
}
#director .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 60px;
}
#director .director_photo img {
  width: 199px;
  height: 267px;
}
#director .director_speach {
  width: 675px;
  background-color: #fff;
  border-radius: 24px 80px 24px 24px;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
#director .director_speach::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='29' height='59' viewBox='0 0 29 59' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_706_10737)'%3E%3Cpath d='M25 52L1.46978 33.3662C-0.479511 31.8402 -0.479511 28.1598 1.46978 26.6338L25 8V52Z' fill='white'/%3E%3Cg clip-path='url(%23clip1_706_10737)'%3E%3Cpath d='M25 -1.40039V59.5996C25 52.3259 23.3387 48.0278 19.2684 45.7134C13.2875 42.3245 6.80831 38.0264 1.40895 33.7283C-0.169329 32.5712 -0.916933 30.8354 -1 29.0996C-0.916933 27.3638 -0.169329 25.6281 1.32588 24.4709C6.72524 20.2554 13.2045 15.8747 19.1853 12.5684C23.3387 10.2541 25 5.87332 25 -1.40039Z' fill='white'/%3E%3C/g%3E%3Cg clip-path='url(%23clip2_706_10737)'%3E%3Cpath d='M25 61.4004V0.400391C25 7.6741 23.3387 11.9722 19.2684 14.2866C13.2875 17.6755 6.80831 21.9736 1.40895 26.2717C-0.169329 27.4288 -0.916933 29.1646 -1 30.9004C-0.916933 32.6362 -0.169329 34.3719 1.32588 35.5291C6.72524 39.7446 13.2045 44.1253 19.1853 47.4316C23.3387 49.7459 25 54.1267 25 61.4004Z' fill='white'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_706_10737'%3E%3Crect width='29' height='59' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_706_10737'%3E%3Crect width='4' height='16' fill='white' transform='translate(21 -1.40039)'/%3E%3C/clipPath%3E%3CclipPath id='clip2_706_10737'%3E%3Crect width='4' height='16' fill='white' transform='matrix(1 0 0 -1 21 61.4004)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  position: absolute;
  width: 29px;
  height: 59px;
  top: 41px;
  left: -25px;
}
#director .director_speach__title {
  font-family: var(--font-regular);
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: #185999;
}
#director .director_speach p {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-900);
}

#about h2.h2 {
  margin-bottom: 40px;
}
#about .about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#about .about__text p + p {
  margin-top: 20px;
}
#about .about__blockquotes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
#about blockquote {
  margin-bottom: 0;
}

#news h2.h2 {
  margin-bottom: 40px;
}
#news .news__block {
  margin-bottom: 0;
}

#documentsCards .container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: calc(var(--container-width) - 64px);
}
#documentsCards .container .h4 {
  margin-top: 60px;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
#documentsCards .container .resources__block {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#documentsCards .container .resources__block .resources__item__title {
  font-family: var(--font-bold);
  font-weight: 700;
}

#why .container {
  max-width: calc(var(--container-width) - 200px);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: row;
  padding: 60px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  gap: 60px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/index/index_why_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}
#why .container .resources__block .resources__item {
  border-radius: 20px 40px 20px 20px;
  position: relative;
  padding: 36px 32px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: default;
}
#why .container .resources__block .resources__item::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='41' viewBox='0 0 40 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.9691 40.04C12.9212 40.04 8.0371 38.8016 4.88408 35.8914C1.42195 32.7335 0 27.6561 0 20.04C0 12.4239 1.42195 7.34655 4.88408 4.18865C8.0371 1.27843 12.983 0.0400393 19.9691 0.0400393C27.2025 0.0400393 32.2102 1.34035 35.3632 4.43633C38.5781 7.59422 40 12.6097 40 20.04C40 28.3373 38.2689 33.6004 34.1886 36.6964C30.9119 38.9874 26.3369 40.04 19.9691 40.04Z' fill='%23E7EBF4'/%3E%3Cpath d='M17.7342 24.5516C17.1342 24.5516 16.5342 24.285 16.1342 23.885L13.1342 20.885C12.6675 20.485 12.6675 19.8183 13.0675 19.4183C13.4675 19.0183 14.0675 19.0183 14.4675 19.4183L17.4675 22.4183C17.6009 22.5516 17.7342 22.5516 17.8675 22.4183L25.5342 14.885C25.9342 14.485 26.5342 14.485 26.9342 14.885C27.3342 15.285 27.3342 15.885 26.9342 16.285L19.3342 23.885C18.8675 24.3516 18.3342 24.5516 17.7342 24.5516Z' fill='%234EB9E5'/%3E%3C/svg%3E%0A");
}
#why .container .resources__block .resources__item__title {
  font-family: var(--font-regular);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--neutral-800);
  margin-bottom: 16px;
  max-width: 216px;
}
#why .container .resources__block .resources__item__desc {
  margin-bottom: 0;
  font-family: var(--font-regular);
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-500);
}
#why .container .resources__block .resources__item:nth-child(4) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
#why .container .resources__block .resources__item:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
#why .container h2.h2 {
  width: 49%;
}

#projects .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: row;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  gap: 60px;
  max-width: calc(var(--container-width) - 64px);
  background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}
#projects .container .resources-dark__block .resources-dark__item {
  background-color: var(--neutral-600);
  border: 1px solid var(--neutral-600);
}
#projects .container .resources-dark__block .resources-dark__item__svg-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#projects .container h2.h2 {
  width: 360px;
}

#structure .container {
  background-image: url("/local/templates/astraAcademy/assets/img/svg/waves_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding-bottom: 86px;
}
#structure .resources__block .resources__item {
  border-color: var(--neutral-100);
}
#structure .resources__block .resources__item:nth-child(7) {
  width: 100%;
}

#educationalServices .container {
  position: relative;
  padding: 46px 60px 60px 60px !important;
  max-width: calc(var(--container-width) - 64px);
}
#educationalServices .container .resources-dark__item__title {
  margin-bottom: 20px;
}

#finance .container {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg.svg");
  background-repeat: no-repeat;
  background-position: right 40px bottom -76px;
  background-size: 50%;
}
#finance .container h4.h4 {
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--neutral-800);
}

#additionalEducationalPrograms .container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  flex-direction: row;
  padding: 60px !important;
  gap: 60px;
  max-width: calc(var(--container-width) - 64px);
  background-image: url("/local/templates/astraAcademy/assets/img/png/index/additional_educational_programs.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
}
#additionalEducationalPrograms .container .resources__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#additionalEducationalPrograms .container .resources__block .resources-black__item {
  width: 100%;
}
#additionalEducationalPrograms .container .resources__block .resources-black__item__svg-top {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#additionalEducationalPrograms .container h2.h2 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#informationOrganisation {
  margin-top: 60px;
}
#informationOrganisation h2 {
  margin-bottom: 20px;
}
#informationOrganisation .cards__faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
#informationOrganisation .cards__faq__item p {
  margin-top: 2px;
}
#informationOrganisation .cards__faq__item:hover .cards__faq__item__title::after {
  background-color: var(--blue-300);
}

#informationEnvironment .container {
  position: relative;
  padding: 60px 40px !important;
  max-width: calc(var(--container-width) - 64px);
}
#informationEnvironment .container .resources__block > .resources__item:nth-child(1), #informationEnvironment .container .resources__block > .resources__item:nth-child(2) {
  width: calc(50% - 16px);
}

#resources .resources__item {
  border-color: var(--neutral-100);
}
#resources .container {
  padding-top: 0;
  padding-bottom: 60px;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg.svg");
  background-repeat: no-repeat;
  background-position: right 40px bottom 60px;
}

#managers .container {
  position: relative;
  padding: 60px;
  max-width: calc(var(--container-width) - 64px);
}
#managers .container .h2 {
  margin-bottom: 178px;
}

#teachers .container {
  position: relative;
  padding: 0;
  max-width: calc(var(--container-width) - 64px);
}
#teachers .container .h2 {
  margin-bottom: 20px;
  margin-top: 0;
}
#teachers .teachers__block {
  margin-bottom: 0;
}
#teachers .teachers__item__main {
  display: none;
}
#teachers .teachers__item__details__btn {
  margin-top: 8px;
}

#documentsList .container {
  position: relative;
  max-width: var(--container-width);
  padding: 0 160px;
  margin-top: -86px;
}
#documentsList .container .h2 {
  margin-bottom: 60px;
}

#anchor-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
#anchor-list a {
  color: var(--blue-900);
}
#anchor-list {
  margin-bottom: 80px;
}

#feedBack .container {
  position: relative;
  max-width: var(--container-width);
  padding: 0 40px;
}
#feedBack .container .h2 {
  margin-bottom: 32px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .page__index {
    gap: 60px;
  }
  #welcome .img__tablet {
    display: block;
  }
  #welcome .img__desktop {
    display: none;
  }
  #welcome .container > div {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #welcome .container {
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: 1fr;
  }
  #welcome .container .h1 {
    text-align: center !important;
  }
  #welcome .container p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    max-width: 500px;
    font-size: 16px;
    line-height: 24px;
  }
  #director {
    background-color: var(--neutral-100);
  }
  #director .container {
    gap: 45px;
  }
  #director .director_speach {
    width: 444px;
    border-radius: 24px 60px 24px 24px;
    padding: 40px 32px;
  }
  #director .director_speach::before {
    top: 46px;
  }
  #director .director_speach p:last-of-type {
    letter-spacing: -0.03em;
  }
  #about h2 {
    margin-bottom: 40px;
  }
  #about .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    gap: 60px;
  }
  #about .col-6 {
    width: 100%;
  }
  #about .about__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #about .about__text p + p {
    margin-top: 20px;
  }
  #about .about__blockquotes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
  #about .about__blockquotes blockquote {
    margin-bottom: 0;
  }
  #news h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #news .news__block__item {
    width: calc(50% - 16px);
  }
  #news .news__block__item:nth-child(3), #news .news__block__item:last-child {
    display: none;
  }
  #news .news__block__item__img {
    background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail-thumbnail-2-tablet.png");
  }
  #documentsCards .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #documentsCards .container h2 {
    margin-bottom: 0;
    text-align: center;
  }
  #documentsCards .container .h4 {
    max-width: 370px;
    text-align: center;
  }
  #why .container {
    max-width: calc(var(--container-width) - 64px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 32px;
    padding-right: 32px;
    gap: 60px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/index_why_bg_tablet.png");
    background-position: left top;
    border-radius: 32px;
  }
  #why .container .resources__block {
    gap: 20px;
  }
  #why .container .resources__block .resources__item {
    border-radius: 20px 40px 20px 20px;
    position: relative;
    padding: 36px 32px;
    width: calc(50% - 10px);
  }
  #why .container .resources__block .resources__item__title {
    margin-bottom: 20px;
  }
  #why .container .resources__block .resources__item:last-of-type {
    width: 100%;
  }
  #why .container .resources__block .resources__item:last-of-type .resources__item__title {
    max-width: 86%;
  }
  #why .container h2.h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  #projects .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 54px;
    padding-bottom: 43px;
    padding-left: 38px;
    padding-right: 38px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail-tablet.png");
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 32px;
  }
  #projects .container .resources-dark__block .resources-dark__item {
    background-color: var(--neutral-600);
    border: 1px solid var(--neutral-600);
  }
  #projects .container .resources-dark__block .resources-dark__item__svg-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  #projects .container h2.h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  #structure h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
  }
  #structure .container {
    background-image: url("/local/templates/astraAcademy/assets/img/svg/waves_bg_tablet.svg");
    background-repeat: no-repeat;
    background-position: top 206px center;
    padding-bottom: 60px;
    padding-top: 46px;
  }
  #structure .resources__block {
    gap: 20px;
  }
  #structure .resources__block .resources__item {
    width: calc(50% - 10px) !important;
  }
  #structure .resources__block .resources__item:last-child {
    width: 100% !important;
  }
  #mto h2 {
    width: 100%;
    text-align: center;
    font-size: 24px;
    line-height: 34px;
  }
  #mto .cards__flat {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #mto .cards__flat__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  #educationalServices h2 {
    width: 100%;
    text-align: center;
  }
  #educationalServices .container {
    position: relative;
    padding: 60px 40px !important;
    max-width: calc(var(--container-width) - 64px);
    border-radius: 40px;
  }
  #educationalServices .container .resources-dark__item__title {
    margin-bottom: 20px;
  }
  #finance .container {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 82px;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg_tablet.svg");
    background-repeat: no-repeat;
    background-position: right top 144px;
    background-size: contain;
  }
  #finance .container h4.h4 {
    text-align: center;
    width: 100%;
  }
  #finance .container h2 {
    width: 100%;
    text-align: center;
  }
  #finance .cards__point {
    gap: 20px;
  }
  #finance .cards__point__item {
    padding: 24px;
    gap: 16px;
    border-radius: 16px 60px 16px 16px;
  }
  #additionalEducationalPrograms .container {
    max-width: calc(var(--container-width) - 64px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 20px !important;
    gap: 60px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/additional_educational_programs_tablet.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }
  #additionalEducationalPrograms .container .resources__block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
  #additionalEducationalPrograms .container .resources__block .resources-black__item {
    width: calc(50% - 16px);
    padding: 32px;
  }
  #additionalEducationalPrograms .container h2.h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
    max-width: 400px;
    text-align: center;
    margin-bottom: 0;
  }
  #additionalEducationalPrograms .button__gray {
    width: 100%;
  }
  #informationOrganisation h2 {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  #informationOrganisation h4 {
    width: 100%;
    text-align: center;
  }
  #informationEnvironment h2 {
    width: 100%;
    text-align: center;
  }
  #informationEnvironment .container .resources__block {
    gap: 20px;
  }
  #informationEnvironment .container .resources__block .resources__item {
    width: calc(50% - 10px);
  }
  #informationEnvironment .container .resources__block .resources__item:last-child {
    width: 100%;
  }
  #resources h2 {
    width: 100%;
    text-align: center;
  }
  #resources .resources__block {
    gap: 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #resources .resources__block .resources__item {
    width: calc(50% - 10px) !important;
  }
  #resources .container {
    padding-top: 0;
    padding-bottom: 60px;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/waves-left.svg");
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
  }
  #managers .container {
    padding: 60px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #managers .container .h2 {
    margin-bottom: 160px;
    max-width: 469px;
    text-align: center;
  }
  #teachers .container {
    position: relative;
    padding: 0;
    max-width: calc(var(--container-width) - 64px);
  }
  #teachers .container .h2 {
    margin-bottom: 60px;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  #documentsList .container {
    position: relative;
    max-width: calc(var(--container-width) - 64px);
    padding: 0;
    margin-top: 0;
  }
  #documentsList .container .h2 {
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
  }
  #feedBack .container {
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/form_bg.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 80%;
    position: relative;
    max-width: var(--container-width);
    padding: 0 40px;
  }
  #feedBack .container .h2 {
    margin-bottom: 60px;
    text-align: center;
  }
  #feedBack .container .subtitle {
    text-align: center;
    max-width: 470px;
    margin-bottom: 40px;
  }
  #feedBack .feedBack__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #welcome .container .img__tablet {
    display: none;
  }
  #welcome .container .img__mobile {
    display: block;
  }
  #welcome .container .img__mobile img {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  #welcome .container p {
    margin-bottom: 40px;
  }
  #director {
    background-color: var(--neutral-100);
  }
  #director .container {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 60px 20px;
  }
  #director .director_speach {
    width: 100%;
    margin-top: -23px;
  }
  #director .director_speach::before {
    top: -39px;
    left: 50%;
    -webkit-transform: rotate(90deg) translateY(20px);
        -ms-transform: rotate(90deg) translateY(20px);
            transform: rotate(90deg) translateY(20px);
  }
  #director .director_speach p:last-of-type {
    letter-spacing: -0.03em;
  }
  #about .container {
    padding: 0 20px;
  }
  #about .col-6 {
    padding: 0;
  }
  #news h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #news .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #news .news__block__item {
    width: 100%;
  }
  #documentsCards .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #documentsCards .container .h4 {
    max-width: 100%;
    margin-top: 40px;
  }
  #documentsCards .container .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #documentsCards .container .resources__item {
    width: 100%;
  }
  #why .container h2 {
    width: 100%;
  }
  #why .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #why .container .resources__block .resources__item {
    width: 100%;
  }
  #why .container .resources__block .resources__item__title {
    margin-bottom: 16px;
    max-width: 250px;
  }
  #why .container h2.h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  #projects .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #projects .container .resources-dark__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #projects .container .resources-dark__block .resources-dark__item {
    width: 100%;
  }
  #structure h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 80px;
  }
  #structure .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/waves_bg_tablet.svg");
    background-size: 160%;
    background-position: top 206px center;
    padding-bottom: 0;
  }
  #structure .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #structure .resources__block .resources__item {
    width: 100% !important;
  }
  #mto .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }
  #mto .cards__flat {
    gap: 18px;
  }
  #educationalServices h2 {
    width: 100%;
    text-align: center;
  }
  #educationalServices .container {
    max-width: var(--container-width);
    padding: 60px 20px !important;
  }
  #educationalServices .container .resources-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #educationalServices .container .resources-dark__item {
    width: 100%;
  }
  #educationalServices .container .resources-dark__item__title {
    margin-bottom: 20px;
  }
  #finance .container {
    max-width: var(--container-width);
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background-position: right -80px top 280px;
    background-size: 240%;
  }
  #finance .cards__point {
    gap: 20px;
    grid-template-columns: 1fr;
  }
  #finance .cards__point__item {
    padding: 24px;
    gap: 16px;
  }
  #additionalEducationalPrograms .container {
    max-width: var(--container-width);
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/additional_educational_programs_mobile.png");
  }
  #additionalEducationalPrograms .container .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #additionalEducationalPrograms .container .resources__block .resources-black__item {
    width: 100%;
    padding: 36px 32px 48px 32px;
  }
  #additionalEducationalPrograms .button__gray {
    margin-top: 28px;
  }
  #informationOrganisation .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #informationOrganisation .cards__faq__item {
    padding: 32px 20px 112px 20px;
    position: relative;
  }
  #informationOrganisation .cards__faq__item__title {
    width: 100%;
    gap: 0;
  }
  #informationOrganisation .cards__faq__item__title p {
    width: 310px;
  }
  #informationOrganisation .cards__faq__item__title::after {
    position: absolute;
    right: 20px;
    bottom: 32px;
  }
  #informationEnvironment h2 {
    width: 100%;
    text-align: center;
  }
  #informationEnvironment .container {
    max-width: var(--container-width);
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #informationEnvironment .container .resources__block {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #informationEnvironment .container .resources__block .resources__item {
    width: 100% !important;
  }
  #resources h2 {
    width: 100%;
    text-align: center;
  }
  #resources .resources__block {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #resources .resources__block .resources__item {
    width: 100% !important;
  }
  #resources .container {
    max-width: var(--container-width);
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-position: bottom left -130px;
    background-size: 240%;
  }
  #managers .container {
    max-width: var(--container-width);
    padding: 60px 20px;
  }
  #managers .container .h2 {
    max-width: 100%;
  }
  #managers .managers__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 170px;
  }
  #managers .managers__item {
    width: 100%;
    height: 522px;
  }
  #managers .managers__item__body {
    width: 100%;
  }
  #managers .managers__item__title {
    width: 100%;
  }
  #managers .managers__item__name {
    max-width: 100%;
  }
  #teachers .container {
    max-width: var(--container-width);
    padding-left: 20px;
    padding-right: 20px;
  }
  #teachers .teachers__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #teachers .teachers__item {
    width: 100%;
  }
  #documentsList .container {
    position: relative;
    max-width: var(--container-width);
    padding: 0 20px;
    margin-top: 0;
  }
  #documentsList .container .h2 {
    margin-bottom: 60px;
    width: 100%;
    text-align: center;
  }
  #documentsList .documentsList__block {
    max-height: 502px;
  }
  #documentsList .documentsList__item {
    width: 100%;
    height: 312px;
  }
  #feedBack .container {
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/form_bg_mobile.png");
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    max-width: var(--container-width);
    padding: 0 20px;
  }
  #feedBack .container .h2 {
    margin-bottom: 60px;
    text-align: center;
  }
  #feedBack .container .subtitle {
    text-align: center;
    max-width: 470px;
    margin-bottom: 40px;
  }
  #feedBack .feedBack__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #feedBack .feedBack__form {
    padding: 80px 28px;
  }
  #feedBack .checkbox-group {
    gap: 12px;
  }
}
.page__commercial__learning,
.page__commercial__teaching {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 120px;
}

#aboutCommercial {
  margin-top: 40px;
}
#aboutCommercial h1 {
  max-width: 100%;
  font-weight: 700;
}
#aboutCommercial .container {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
#aboutCommercial .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#aboutCommercial .container > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc((100% - 100px) / 2);
}
#aboutCommercial .container > div:first-child {
  padding-left: 81px;
}
#aboutCommercial .img_wrap {
  width: 100%;
  height: 282px;
  border-radius: 24px;
  position: relative;
}
#aboutCommercial .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#placeCommercial h2 {
  margin-bottom: 40px;
}
#placeCommercial .places__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-top: 32px;
}
#placeCommercial .places__block__item {
  width: calc((100% - 64px) / 3);
  height: 238px;
  background-color: var(--neutral-700);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 16px 40px 16px 16px;
}

#whyAuthor h2 {
  margin-bottom: 40px;
}
#whyAuthor .container:first-child {
  padding-top: 60px;
  padding-bottom: 40px;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg.svg");
  background-repeat: no-repeat;
  background-position: right 40px bottom 60px;
}
#whyAuthor .container:last-child > .text-large {
  margin-bottom: 32px;
}
#whyAuthor .resources__block {
  margin-top: 32px;
}
#whyAuthor .resources__item {
  border-color: var(--neutral-100);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#whyAuthor .resources__item img {
  height: 42px;
}
#whyAuthor .advantages__block {
  width: 100%;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: 60px 80px;
}
#whyAuthor .advantages__block__item {
  width: calc((100% - 80px) / 3);
  height: 156px;
  border-radius: 16px;
  background: radial-gradient(50% 256.01% at 50% 50%, #0F68A9 0%, #0C4C7B 81.73%);
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
}
#whyAuthor .advantages__block__item::before {
  content: url("/local/templates/astraAcademy/assets/img/svg/star.svg");
  width: 32px;
  height: 32px;
}

#howUnderstand .container {
  background: none;
}
#howUnderstand h2 {
  margin-bottom: 40px;
}
#howUnderstand .cards__point {
  margin-top: 32px;
}
#howUnderstand .cards__point a {
  display: inline;
  color: var(--blue-700);
}
#howUnderstand .cards__point__item:hover {
  background: none;
}

#centers {
  --search-container-width: 344px;
}
#centers h2 {
  margin-bottom: 40px;
}
#centers .centers__block {
  width: 100%;
  height: 753px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 50px;
}
#centers .centers__filter {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: var(--neutral-50);
  border-radius: 50px;
  padding: 40px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
#centers .centers__filter .checkbox-group {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0;
}
#centers .centers__filter .checkbox-label {
  margin-top: -2px;
  max-width: 193px;
}
#centers .centers__filter__search__block {
  width: 100%;
  margin-bottom: 32px;
}
#centers .centers__filter__search__block .search-container:first-child {
  margin-bottom: 24px;
}
#centers .centers__filter__status__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
#centers .centers__filter__status__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#centers .centers__filter__status__item img {
  margin-right: 10px;
}
#centers .centers__filter__status__item .amount {
  height: 22px;
  padding: 0 8px;
  background-color: var(--neutral-200);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--neutral-800);
  font-weight: 400;
  font-size: 12px;
}
#centers .centers__filter__notes p {
  font-size: 12px;
  color: var(--neutral-700);
  max-width: 243px;
}
#centers .centers__filter__notes p:first-child {
  margin-bottom: 12px;
}
#centers .centers__list {
  -webkit-box-flex: 2.6;
      -ms-flex: 2.6;
          flex: 2.6;
  max-height: 753;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  padding-right: 32px;
  /* Стилизация скроллбара */
}
#centers .centers__list::-webkit-scrollbar {
  width: 8px;
}
#centers .centers__list::-webkit-scrollbar-track {
  background: var(--neutral-100);
  border-radius: 10px;
}
#centers .centers__list::-webkit-scrollbar-thumb {
  background: var(--neutral-200);
  border-radius: 10px;
}
#centers .centers__list::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-300);
}
#centers .centers__item {
  width: 100%;
  min-height: 208px;
  padding: 24px 28px;
  border: 1px solid var(--neutral-100);
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  cursor: pointer;
}
#centers .centers__item__logo {
  -webkit-box-flex: 1.6;
      -ms-flex: 1.6;
          flex: 1.6;
}
#centers .centers__item__info {
  -webkit-box-flex: 4.2;
      -ms-flex: 4.2;
          flex: 4.2;
}
#centers .centers__item__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
#centers .centers__item__name .text-large {
  font-weight: 700;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#centers .centers__item__address p {
  color: var(--neutral-600);
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
}
#centers .centers__item__contacts {
  -webkit-box-flex: 1.8;
      -ms-flex: 1.8;
          flex: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
#centers .centers__item__contacts div p {
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-600);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#centers .centers__item__contacts div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
#centers .centers__item #btnLinkSmall {
  position: absolute;
  top: 10px;
  right: 12px;
}
#centers .centers__item:hover {
  background-color: var(--neutral-50);
}
#centers .centers__item:hover .centers__item__name p {
  color: var(--blue-700);
}
#centers .centers__item:hover #btnLinkSmall {
  background-color: var(--blue-500);
}
#centers .centers__item:hover #btnLinkSmall svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

#courses {
  --search-container-width: 392px;
}
#courses .container {
  padding: 60px;
  border-radius: 40px;
  margin: 0 auto;
  -ms-flex-item-align: center;
      align-self: center;
  max-width: calc(var(--container-width) - 60px);
}
#courses h2 {
  margin-bottom: 40px;
}
#courses .filter__block {
  margin-bottom: 60px;
}
#courses .resources-dark__item {
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item .resources-dark__item__svg-top svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item .resources-dark__item__svg-top svg path, #courses .resources-dark__item .resources-dark__item__svg-top svg g path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item:hover {
  background-color: var(--blue-500);
  border-color: var(--blue-500);
}
#courses .resources-dark__item:hover #btnLinkSmall {
  background-color: #fff;
}
#courses .resources-dark__item:hover #btnLinkSmall svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#courses .resources-dark__item:hover #btnLinkSmall svg path {
  fill: var(--blue-500);
}
#courses .resources-dark__item:hover .resources-dark__item__svg-top svg > path:first-of-type {
  fill: #fff;
}
#courses .resources-dark__item:hover .resources-dark__item__svg-top svg g path {
  fill: var(--blue-500);
}
#courses .resources-dark__item:hover .resources-dark__item__download__icon {
  background-color: #fff;
}
#courses .resources-dark__item:hover .resources-dark__item__download__icon svg path {
  fill: var(--blue-500);
}
#courses .resources-dark__item__svg-top svg {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item .text-xlarge {
  margin-bottom: 20px;
}
#courses .resources-dark__item__title {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}
#courses .resources-dark__item__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 22px;
}
#courses .resources-dark__item__download__icon {
  width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 8px;
  background-color: var(--neutral-300);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item__download__icon svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#courses .resources-dark__item #btnLinkSmall {
  position: absolute;
  top: 29px;
  right: 28px;
}
#courses .pagination {
  margin-top: 60px;
}

#addMaterials h2 {
  margin-bottom: 40px;
}
#addMaterials .resources__block {
  margin-top: 32px;
}
#addMaterials .resources__block p a {
  display: inline;
  color: var(--blue-700);
}
#addMaterials .resources__item {
  border-radius: 16px;
  border-color: var(--neutral-100);
  position: relative;
}
#addMaterials .resources__item__btn {
  position: absolute;
  top: 17px;
  right: 17px;
  margin-top: 0;
}
#addMaterials .resources__item img {
  width: 54px;
}

#checkSertificate .container {
  background-color: var(--neutral-700);
  background-image: url(/local/templates/astraAcademy/assets/img/png/commercial/check-sertificate_bg.png);
  background-position: top right;
  background-repeat: no-repeat;
  border-radius: 40px;
  padding: 60px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: calc(var(--container-width) - 60px);
}
#checkSertificate h2 {
  margin-bottom: 32px;
}
#checkSertificate p.text-large {
  max-width: 660px;
  margin-bottom: 40px;
}

#questions .container {
  position: relative;
  max-width: var(--container-width);
  padding: 0 40px;
  margin-bottom: 40px;
}
#questions .container .h2 {
  margin-bottom: 32px;
}
#questions .feedBack__block {
  position: relative;
  background-image: url(/local/templates/astraAcademy/assets/img/png/commercial/form_bg.png);
  background-repeat: no-repeat;
}

#aboutTeaching {
  margin-top: 40px;
}
#aboutTeaching h1 {
  max-width: 100%;
  margin-bottom: 8px;
  font-weight: 700;
}
#aboutTeaching h4 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 40px;
}
#aboutTeaching .container {
  padding-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
}
#aboutTeaching .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}
#aboutTeaching .container > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: calc((100% - 100px) / 2);
}
#aboutTeaching .container > div:first-child {
  padding-left: 81px;
}
#aboutTeaching .img_wrap {
  width: 100%;
  height: 318px;
  border-radius: 24px;
  position: relative;
}
#aboutTeaching .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#application h2 {
  max-width: 347px;
}
#application .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#application .container > div {
  position: relative;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#application .container > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 100px;
}
#application .container > div:last-child {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}
#application .application_wrap {
  width: 100%;
  height: 424px;
  max-width: 673px;
  border-radius: 20px;
  background-color: var(--neutral-50);
  position: relative;
  padding: 60px 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
#application .application_wrap .checkbox-group {
  margin: 0;
}

#whoCan h2 {
  margin-bottom: 40px;
}
#whoCan .advantages__block {
  width: 100%;
  border-radius: 20px;
  background-color: var(--blue-900);
  background-image: url(/local/templates/astraAcademy/assets/img/svg/partners_bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: 60px 80px;
  position: relative;
  margin-top: 40px;
}
#whoCan .advantages__block__item {
  width: calc((100% - 80px) / 3);
  height: 152px;
  border-radius: 16px;
  background-color: #fff;
  padding: 40px;
}
#whoCan .advantages__block::before {
  content: "Преимущества партнерства:";
  position: absolute;
  height: 30px;
  width: 300px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  top: 60px;
  left: 80px;
}

#stages h2 {
  margin-bottom: 40px;
}
#stages .container {
  background-image: url(/local/templates/astraAcademy/assets/img/svg/stages_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
}
#stages .resources__item {
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 40px;
  border-color: var(--neutral-100);
}
#stages .resources__item__number {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 120px;
  line-height: 80%;
  font-weight: 400;
  color: var(--neutral-100);
}
#stages .resources__item__content {
  -webkit-box-flex: 6;
      -ms-flex: 6;
          flex: 6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
#stages .resources__item__title p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--neutral-900);
}
#stages .resources__item ul {
  padding-left: 22px;
}
#stages .resources__item ul li {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--neutral-800);
  position: relative;
}
#stages .resources__item ul li::before {
  content: "•";
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: -22px;
}
#stages .resources__item ul li:not(:last-child) {
  margin-bottom: 16px;
}
#stages .resources__item__notes p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--neutral-600);
}

#partners {
  margin-bottom: 40px;
  --search-container-width: 392px;
}
#partners .search-container {
  position: absolute;
  top: 48px;
  right: 80px;
}
#partners h2 {
  margin-bottom: 68px;
}
#partners .container {
  position: relative;
  max-width: calc(var(--container-width) - 60px);
  padding: 48px 80px;
  background-color: var(--neutral-50);
  border-radius: 24px;
}
#partners .partners__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
}
#partners .partners__item {
  height: 72px;
  width: calc((100% - 96px) / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 16px;
  background-color: #fff;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  display: block;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  white-space: nowrap;
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  border: 0;
}

html,
body {
  font-size: var(--base-font-size);
}
@media (min-width: 1400) {
  html,
  body {
    font-size: var(--base-font-size);
  }
}

body {
  /* Страница не сдвигалась вправо при отключении скролла */
  overflow-x: hidden;
  font-family: var(--font-regular);
  font-weight: 400;
  color: var(--font-color-base);
  background-color: var(--base-bg-color);
}
body * {
  font-family: var(--font-reqular);
}

.comingSoon {
  width: 100%;
  height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-image: url("/local/templates/astraAcademy/assets/img/png/circle.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
}
.comingSoon p {
  margin-left: 10px;
  color: var(--neutral-800);
}
.comingSoon p:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.1em;
  margin-bottom: 4px;
}
.comingSoon p:last-of-type {
  font-size: 24px;
  margin-left: 16px;
  letter-spacing: -0.03em;
}

/* Для экранов 768-1399px */
@media (max-width: 1399px) {
  .comingSoon {
    background-size: 60%;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  .comingSoon {
    background-size: 86%;
    background-position: top 20% center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-top: 44%;
  }
  .comingSoon p:first-of-type {
    font-size: 20px;
    margin-bottom: 2px;
  }
  .comingSoon p:last-of-type {
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */
