@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-200: #91D6F6;
  --blue-300: #5bc4f5;
  --blue-400: #4EBAE5;
  --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: 1140px;
  }
}
@media (max-width: 1199px) {
  :root {
    --container-width: 960px;
  }
}
@media (max-width: 991px) {
  :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 .container {
  padding-left: 0;
  padding-right: 0;
}
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 32px;
  background-color: #fff;
  border-radius: 0 0 40px 40px;
}
header .header__row__nav {
  padding-left: 32px;
  padding-right: 32px;
}
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;
  align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: -webkit-max-content;
  grid-auto-columns: max-content;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 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;
  font-family: var(--font-reqular);
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.3;
  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%;
  height: 80px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 1fr);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 16px;
  border-radius: var(--navbar-wrapper-radius);
  background-color: var(--sub-navbar-bg-color);
}
header .header__subnavbar.hide {
  display: none !important;
}
header .header__subnavbar__wrapper {
  margin-top: 20px;
  width: 100%;
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: opacity 0.22s ease, -webkit-transform 0.22s ease;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transition: transform 0.22s ease, opacity 0.22s ease, -webkit-transform 0.22s ease;
  will-change: transform, opacity;
}
header .header__subnavbar__item {
  min-height: 48px;
  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;
  white-space: normal;
  color: var(--sub-navbar-color);
  position: relative;
  min-width: 0;
}
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);
}
header .header__subnavbar__item:last-of-type {
  letter-spacing: -0.03em;
}
header .header__subnavbar__item:last-of-type::before {
  content: "";
  width: 24px;
  height: 40px;
  background-color: transparent;
  border-left: 1px solid #C0C6D6;
  position: absolute;
  left: -25px;
}

[data-division=main] header .header__subnavbar {
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 280px);
  grid-template-columns: repeat(auto-fit, minmax(80px, 280px));
}

[data-division=default] header .header__subnavbar {
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 280px);
  grid-template-columns: repeat(auto-fit, minmax(80px, 280px));
}

[data-division=commercial] .header__subnavbar {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
[data-division=commercial] .header__subnavbar__item {
  max-width: 100%;
}
[data-division=commercial] .header__subnavbar__item::before {
  display: none;
}

[data-division=educational] .header__subnavbar__item,
[data-division=course] .header__subnavbar__item,
[data-division=students] .header__subnavbar__item {
  white-space: none;
}
[data-division=educational] .header__subnavbar__item::before,
[data-division=course] .header__subnavbar__item::before,
[data-division=students] .header__subnavbar__item::before {
  display: none;
}

[data-division=certification] .header__subnavbar {
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 200px);
  grid-template-columns: repeat(auto-fit, minmax(120px, 240px));
}
[data-division=certification] .header__subnavbar__item::before {
  display: none;
}

[data-division=contacts] .header__subnavbar {
  display: none;
}

/* Для экранов меньше 1399px */
@media (max-width: 1399px) {
  header .header__navbar {
    padding: 12px 16px;
  }
  header .header__navbar__item {
    letter-spacing: -0.02em;
  }
  header .header__subnavbar {
    min-height: 80px;
    height: auto;
    max-height: 90px;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  header .header__subnavbar__item {
    padding: 6px 10px 6px 12px;
  }
  [data-division=main] header .header__subnavbar {
    grid-auto-columns: minmax(120px, 220px);
    grid-template-columns: repeat(auto-fit, minmax(60px, 220px));
  }
  [data-division=main] header .header__subnavbar__item:last-of-type::before {
    left: -14px;
  }
  [data-division=default] header .header__subnavbar {
    grid-auto-columns: minmax(120px, 220px);
    grid-template-columns: repeat(auto-fit, minmax(60px, 220px));
  }
  [data-division=default] header .header__subnavbar__item:last-of-type::before {
    left: -14px;
  }
  [data-division=certification] .header__subnavbar {
    grid-auto-columns: minmax(130px, 220px);
    grid-template-columns: repeat(auto-fit, minmax(130px, 260px));
  }
  [data-division=certification] .header__subnavbar__item:first-of-type {
    letter-spacing: -0.02em;
    white-space: none;
  }
  [data-division=certification] .header__subnavbar__item:last-of-type::before {
    left: -14px;
  }
}
/* Для экранов меньше 768-1199px */
@media (max-width: 1199px) {
  header {
    background: #fff;
  }
  header .menu__mobile {
    display: block;
  }
  header .header__logo img {
    width: 114px;
    height: 28px;
  }
  header .header__row__nav {
    display: none;
  }
  header .header__buttons {
    display: none;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  header .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
#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: 100%;
    padding: 0 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;
}

.h5 {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 34px;
  text-align: left;
  color: var(--neutral-800);
  margin-bottom: 0;
}

.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);
}

.text-regular {
  font-family: var(--font-regular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: var(--neutral-800);
  margin-top: 8px;
}

.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;
}

.modal-close {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--neutral-300);
}

.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, #aboutSertification .img_wrap, #whomSertificate .whomSertificate__block__item, #aboutEducational .img_wrap, #programEducational .img_wrap, #advantagesEducational .container, #events .container, #aboutCommercial .img_wrap, #courses .container, #aboutTeaching .img_wrap, #application .authorisation__form__wrapper, #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, #joinUs .container, #projects .container, #additionalEducationalPrograms .container {
  background: var(--neutral-800);
  border-radius: 24px 60px 24px 24px;
}
.bg-black h2.h2, #joinUs .container 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((100% - 20px) / 2);
  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: 1024px) {
  #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;
  cursor: pointer;
}
.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;
  right: 0;
}
.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;
}
.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: 20px;
  line-height: 30px;
  color: var(--blue-50);
  margin-bottom: 17px;
}
.teachers__item__post {
  font-size: 14px;
  line-height: 22px;
  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;
  min-width: 146px;
  white-space: nowrap;
}
.documentsList__item__link svg {
  width: 26px;
}
.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;
  }
}
/* Для экранов меньше 768px */
@media (max-width: 768px) {
  .documentsList__item {
    -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;
    height: auto !important;
  }
}
.feedBack__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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  position: relative;
}
.feedBack__txt {
  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;
}
.feedBack__txt .subtitle {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-800);
}
.feedBack__form {
  width: 100%;
  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: 40px;
  border-radius: 24px;
}
.feedBack__form form {
  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: 42px;
}

.form-section {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.form-section:first-of-type .form-block:last-child .form-row, .form-section:first-of-type .form-block:last-child .form-group {
  height: 100%;
}

.form-block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  padding: 0;
}
.form-block .form-row:last-of-type .form-group {
  margin-bottom: 0;
}

.form-row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}

span.text-small {
  color: var(--blue-300);
}

p.text-small {
  font-size: 12px;
  line-height: 130%;
  color: var(--neutral-300);
}

.btn-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;
  position: relative;
}

.form-upload {
  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;
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--neutral-300);
  border-radius: 12px;
  height: 46px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px;
  margin-top: 20px;
  margin-bottom: 10px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  position: relative;
}
.form-upload .text-large {
  width: calc(100% - 16px - 20px);
  text-align: center;
}
.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: 16px;
  width: 100%;
}
.form-upload label p {
  color: var(--neutral-800);
  font-size: 14px;
  line-height: 22px;
  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 label svg.attached {
  display: none;
}
.form-upload:hover {
  border-color: var(--blue-500);
}
.form-upload:hover label p {
  color: var(--blue-500);
}
.form-upload.attached {
  background-color: #E2F5FE;
}
.form-upload.attached svg.upload {
  display: none;
}
.form-upload.attached svg.attached {
  display: block;
}

.download-btn {
  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;
  width: 100%;
  background-color: var(--neutral-700);
  border: 1px solid var(--neutral-700);
  border-radius: 12px;
  height: 46px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 13px;
  margin-top: 22px;
}
.download-btn .text-large {
  width: calc(100% - 16px - 20px);
  text-align: center;
}
.download-btn p {
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  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-group textarea {
  height: 100%;
  resize: none;
}

.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-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;
  margin: 0;
  gap: 12px;
}

.checkbox-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0 !important;
}

.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;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1024px) {
  .filter__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  .filter__container .search-container {
    width: 100%;
  }
  .filter__block {
    margin-bottom: 60px;
  }
  .filter__results__block {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  .filter__results__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .filter__results__item {
    padding: 0 8px;
  }
}
@-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;
  }
}
#policy-doc, #agreement-doc, #cookie-policy-doc {
  padding: 60px 0;
}
#policy-doc .policy-doc-title, #agreement-doc .policy-doc-title, #cookie-policy-doc .policy-doc-title {
  max-width: var(--container-width);
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--gutter);
}
#policy-doc h1.policy-title, #agreement-doc h1.policy-title, #cookie-policy-doc h1.policy-title {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  max-width: 828px;
  margin-bottom: 20px;
}
#policy-doc h3, #agreement-doc h3, #cookie-policy-doc h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}
#policy-doc p, #agreement-doc p, #cookie-policy-doc p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
#policy-doc ul, #agreement-doc ul, #cookie-policy-doc ul {
  padding-left: 20px;
}
#policy-doc ul li, #agreement-doc ul li, #cookie-policy-doc ul li {
  list-style-type: disc;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
#policy-doc ul li p, #agreement-doc ul li p, #cookie-policy-doc ul li p {
  margin-bottom: 0;
  text-align: left;
}
#policy-doc .table-wrap, #agreement-doc .table-wrap, #cookie-policy-doc .table-wrap {
  padding-top: 20px;
  padding-bottom: 20px;
}
#policy-doc table, #policy-doc th, #policy-doc td, #agreement-doc table, #agreement-doc th, #agreement-doc td, #cookie-policy-doc table, #cookie-policy-doc th, #cookie-policy-doc td {
  border: 1px solid #CCCCCC;
}
#policy-doc td, #policy-doc th, #agreement-doc td, #agreement-doc th, #cookie-policy-doc td, #cookie-policy-doc th {
  text-align: left;
  padding: 20px 8px;
  vertical-align: top;
}
#policy-doc td p, #policy-doc th p, #agreement-doc td p, #agreement-doc th p, #cookie-policy-doc td p, #cookie-policy-doc th p {
  margin-bottom: 0;
  font-size: 12px;
  line-height: 14px;
  text-align: left !important;
}
#policy-doc td p:not(:last-of-type), #policy-doc th p:not(:last-of-type), #agreement-doc td p:not(:last-of-type), #agreement-doc th p:not(:last-of-type), #cookie-policy-doc td p:not(:last-of-type), #cookie-policy-doc th p:not(:last-of-type) {
  margin-bottom: 15px;
}
#policy-doc td.highlight-grey p, #policy-doc th.highlight-grey p, #agreement-doc td.highlight-grey p, #agreement-doc th.highlight-grey p, #cookie-policy-doc td.highlight-grey p, #cookie-policy-doc th.highlight-grey p {
  text-align: center !important;
}
#policy-doc table.confluenceTable, #agreement-doc table.confluenceTable, #cookie-policy-doc table.confluenceTable {
  border-collapse: collapse;
}
#policy-doc a, #agreement-doc a, #cookie-policy-doc a {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#policy-doc a:hover, #agreement-doc a:hover, #cookie-policy-doc a:hover {
  color: var(--blue-500);
}
#policy-doc #id-Политикаобработкиизащитыперсональныхданныхastraautomation-ПриложенияПриложение, #agreement-doc #id-Политикаобработкиизащитыперсональныхданныхastraautomation-ПриложенияПриложение, #cookie-policy-doc #id-Политикаобработкиизащитыперсональныхданныхastraautomation-ПриложенияПриложение {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 20px;
}

/* Для экранов до 768px */
@media (max-width: 767px) {
  #policy-doc {
    padding: 40px 0;
  }
  #policy-doc h1.policy-title {
    text-align: center;
    max-width: 100%;
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 18px;
  }
  #policy-doc .policy-doc-title, #policy-doc .container {
    padding: 0 20px;
  }
  #policy-doc p, #policy-doc li {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 18px;
  }
  #policy-doc h3 {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 18px;
    margin-top: 18px;
  }
  #policy-doc .table-wrap {
    padding-top: 18px;
  }
  #policy-doc td, #policy-doc th {
    padding: 18px 4px;
  }
  #policy-doc td p, #policy-doc th p {
    font-size: 10px;
    line-height: 14px;
  }
  #policy-doc td p:not(:last-of-type), #policy-doc th p:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.modal-content.modal_teachers {
  background-color: var(--neutral-700);
  border-radius: 24px 60px 32px 32px;
}
.modal-content.modal_teachers::-webkit-scrollbar {
  width: 6px;
}
.modal-content.modal_teachers::-webkit-scrollbar-track {
  background: var(--neutral-700);
  border-radius: 10px;
  margin: 60px 0 32px 0;
}
.modal-content.modal_teachers::-webkit-scrollbar-thumb {
  background: var(--neutral-400);
  border-radius: 10px;
}
.modal-content.modal_teachers::-webkit-scrollbar-thumb:hover {
  background: #8f9ab6;
}
.modal-content.modal_teachers .modal-close {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.modal-content.modal_teachers .modal-close:hover {
  color: var(--neutral-300) !important;
}
.modal-content.modal_teachers .modal-body .text-regular {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
  color: #fff;
}
.modal-content.modal_teachers .modal-body .text-small {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 0;
  color: var(--neutral-200);
}
.modal-content.modal_teachers .modal-card__header {
  width: 100%;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/teacher_card_header.png");
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
}
.modal-content.modal_teachers .modal-card__header__photo {
  width: 160px;
  height: 160px;
  border-radius: 100px;
  background-color: var(--neutral-800);
}
.modal-content.modal_teachers .modal-card__header__name {
  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;
}
.modal-content.modal_teachers .modal-card__header__name h6 {
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
}
.modal-content.modal_teachers .modal-card__body {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 20px 32px 60px 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: 20px;
}
.modal-content.modal_teachers .modal-card__details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
.modal-content.modal_teachers .modal-card__details__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: 4px;
  padding: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  background-color: var(--neutral-600);
  border-radius: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.modal-content.modal_teachers .modal-card__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;
  gap: 20px;
}
.modal-content.modal_teachers .modal-card__info__item {
  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: 4px;
}
.modal-content.modal_teachers .modal-card__info__item li {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #fff;
  list-style-type: disc;
}

/* Для экранов меньше 768-1024px */
@media (max-width: 649px) {
  .modal-content.modal_teachers .modal-card__header {
    -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;
  }
  .modal-content.modal_teachers .modal-card__header__photo {
    width: 120px;
    height: 120px;
  }
  .modal-content.modal_teachers .modal-card__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .modal-content.modal_teachers .modal-card__details__item {
    width: 100%;
  }
}
/* Для экранов до 768px */
#error-page .container {
  padding: 120px 180px;
}
#error-page .error-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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
#error-page .error-block .submit-btn {
  height: 68px;
  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;
}
#error-page .error-block h1.h1 {
  font-size: 48px;
  line-height: 58px;
  margin-bottom: 0;
}
#error-page .error-block h6.h6 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 0;
}
#error-page .error-block img {
  width: 600px;
  height: auto;
}
#error-page .error-block__desc {
  max-width: 400px;
  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;
}

/* Для экранов меньше 1199px */
@media (max-width: 1199px) {
  #error-page .error-block img {
    width: 500px;
  }
}
/* Для экранов меньше 1024px */
@media (max-width: 1024px) {
  #error-page .container {
    padding: 40px 32px;
  }
  #error-page .error-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
  }
  #error-page .error-block__desc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #error-page .error-block h1.h1, #error-page .error-block h6.h6 {
    text-align: center;
  }
  #error-page .error-block img {
    margin-top: 116px;
    width: 500px;
  }
  #error-page .error-block h1.h1 {
    position: absolute;
    top: 0;
  }
}
.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: 60px;
}

#welcome {
  margin-top: 60px;
}
#welcome .img__desktop, #welcome .img__tablet {
  width: 570px;
  height: auto;
}
#welcome .img__mobile {
  width: 360px;
  height: auto;
}
#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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
#welcome .container > div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#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 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#documentsCards .container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  max-width: calc(var(--container-width) - 64px);
  background: url("/local/templates/astraAcademy/assets/img/svg/shadow.svg"), radial-gradient(103.05% 402.22% at -3.05% -4.07%, #E9ECF7 5.77%, #F4F6FB 31.01%, #FFFFFF 58.33%, #E7EBF6 97.12%);
  background-position: center, top left;
  background-repeat: no-repeat;
  border-radius: 24px 60px 24px 24px;
}
#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 {
  margin-top: 40px;
}
#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;
  border-radius: 60px;
}
#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 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#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 {
  background-image: url("/local/templates/astraAcademy/assets/img/svg/news_bg.svg");
  background-repeat: no-repeat;
  background-position: top right;
}
#structure .container {
  padding: 0 0 36px 0;
}
#structure .resources__block .resources__item {
  border-color: var(--neutral-100);
}
#structure .resources__block .resources__item:nth-child(7) {
  width: 100%;
}

#structureNews .container {
  padding: 60px 32px 36px 32px;
}
#structureNews .resources__block .resources__item {
  border-color: var(--neutral-100);
}
#structureNews .resources__block .resources__item:nth-child(7) {
  width: 100%;
}
#structureNews .structure-date {
  font-size: 14px;
  line-height: 22px;
  color: rgb(97, 110, 143);
  margin-bottom: 0;
}
#structureNews .detail_picture {
  height: 600px;
  width: 100%;
  border-radius: 32px;
  overflow: hidden;
  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: relative;
}
#structureNews .detail_picture img {
  -o-object-fit: cover;
     object-fit: cover;
}
#structureNews .news-detail {
  position: relative;
  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;
}
#structureNews .news-detail__back-link {
  height: 48px;
  border-radius: 10px;
  background-color: var(--neutral-100);
  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;
  padding: 12px 16px;
  gap: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--neutral-800);
  position: absolute;
  top: 30px;
  left: 60px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#structureNews .news-detail__back-link svg path {
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#structureNews .news-detail__back-link:hover, #structureNews .news-detail__back-link:focus {
  background-color: rgb(232, 248, 255);
  color: rgb(0, 126, 255);
}
#structureNews .news-detail__back-link:hover svg path, #structureNews .news-detail__back-link:focus svg path {
  stroke: rgb(0, 126, 255);
}
#structureNews .news-detail__block {
  width: calc(100% - 120px);
  background-color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 48px 60px 0 60px;
  margin-top: -120px;
  z-index: 100;
}
#structureNews .news-detail__date {
  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;
  margin-bottom: 56px;
}
#structureNews .news-detail__date__labels {
  display: none;
  -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;
}
#structureNews .news-detail__date__labels__item {
  height: 38px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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;
  padding: 8px 14px;
  background-color: rgb(232, 248, 255);
  border-radius: 10px;
}
#structureNews .news-detail__date__labels__item .text-regular {
  color: rgb(0, 126, 255);
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin: 0;
}
#structureNews .news-detail__preview {
  width: 100%;
  font-size: 24px;
  line-height: 34px;
  font-weight: 400;
  color: var(--neutral-600);
  margin-bottom: 40px;
}
#structureNews .news-detail h2.h2 {
  margin-bottom: 32px;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 32px;
}
#structureNews .news-detail__subtitle {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  margin-top: 32px;
  color: rgb(11, 12, 14);
}
#structureNews .news-detail__text {
  margin-bottom: 40px;
}
#structureNews .news-detail__text p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  color: rgb(11, 12, 14);
}
#structureNews .news-detail__text ul {
  max-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: 16px;
  margin-bottom: 32px;
  margin-top: 32px;
}
#structureNews .news-detail__text li {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: rgb(11, 12, 14);
  list-style: none;
}
#structureNews .news-detail__text li::before {
  content: "";
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/marker.svg");
  background-position: center;
  background-repeat: no-repeat;
  border: 1.5px solid var(--neutral-300);
}
#structureNews .news-detail__text a {
  color: var(--blue-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#structureNews .news-detail__text a:hover {
  color: var(--blue-800);
}
#structureNews .news-detail__text a:active {
  color: var(--blue-900);
}

#educationalServices .container {
  position: relative;
}
#educationalServices .container .resources-dark__item__title {
  margin-bottom: 20px;
}

#additionalEducationalPrograms h4.white.short {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#additionalEducationalPrograms .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 40px !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 h4.h4 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#additionalEducationalPrograms .container .resources__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#additionalEducationalPrograms .container .resources__block__row {
  gap: 32px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
#additionalEducationalPrograms .container .resources__block .resources-black__item {
  width: calc((100% - 40px) / 3);
}
#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;
}
#additionalEducationalPrograms .show-more-btn {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 20px;
  width: 100%;
  background-color: var(--neutral-700);
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue-300);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#additionalEducationalPrograms .show-more-btn:hover, #additionalEducationalPrograms .show-more-btn:active {
  background-color: var(--neutral-900);
}

.about-body #additionalEducationalPrograms .container .resources__block {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-body #additionalEducationalPrograms .container .resources__block__row {
  gap: 32px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-body #additionalEducationalPrograms .container .resources__block .resources-black__item {
  width: 100%;
}

#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 {
  margin-top: 20px;
}
#resources .resources__item {
  border-color: var(--neutral-100);
}
#resources .container {
  padding-top: 0;
  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;
}

#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 {
  margin-top: 20px;
  margin-bottom: 20px;
}
#feedBack .container {
  position: relative;
  max-width: var(--container-width);
  padding: 0 40px;
}
#feedBack .container .h2 {
  margin-bottom: 32px;
}

/* Для экранов меньше 1399px */
@media (max-width: 1399px) {
  #welcome .container {
    padding-left: 80px;
    padding-right: var(--gutter);
    grid-template-columns: 1fr 1.5fr;
  }
  #director .container {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  #why .container {
    max-width: var(--container-width);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  #documentsCards .container {
    max-width: var(--container-width);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
  #projects .container {
    max-width: var(--container-width);
  }
  #projects .container h2.h2 {
    width: 220px;
  }
  #additionalEducationalPrograms .container {
    max-width: var(--container-width);
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
    -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;
    gap: 60px;
  }
  #additionalEducationalPrograms .container .resources-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
  #additionalEducationalPrograms h4.white {
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
    margin-bottom: 0;
  }
  #informationEnvironment .container {
    max-width: var(--container-width);
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }
}
/* Для экранов 1199px */
@media (max-width: 1199px) {
  #welcome .container {
    grid-template-columns: 1fr 1fr;
  }
  #additionalEducationalPrograms .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 40px !important;
    gap: 60px;
  }
  #additionalEducationalPrograms .container h4.h4 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: start;
        align-self: flex-start;
    text-align: start;
  }
  #additionalEducationalPrograms .container .resources__block__row {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #additionalEducationalPrograms .container .resources__block .resources-black__item {
    width: 100%;
  }
  .about-body #additionalEducationalPrograms .container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .about-body #additionalEducationalPrograms .container .resources__block__row {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-body #additionalEducationalPrograms .container .resources-black__item {
    width: 100%;
  }
}
/* Для экранов 768-1024px */
@media (max-width: 1024px) {
  .page__index {
    gap: 60px;
  }
  #welcome .container {
    padding-left: 80px;
    padding-right: 80px;
  }
  #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__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 {
    text-align: center;
  }
  #documentsCards .resources__block__3:first-of-type > .resources__item:last-child {
    width: calc(50% - 20px);
  }
  #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:nth-of-type(2) {
    width: 100%;
  }
  #why .container .resources__block .resources__item:nth-of-type(2) .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 .container {
    padding: 0;
  }
  #structureNews .container {
    padding: 20px 32px 8px 32px;
  }
  #structureNews .detail_picture {
    height: 320px;
    width: 100%;
  }
  #structureNews .news-detail__block {
    width: calc(100% - 80px);
    margin-top: -80px;
  }
  #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 h4.white, #additionalEducationalPrograms h4.white.short {
    width: 100%;
    max-width: 400px;
  }
  #additionalEducationalPrograms .container {
    max-width: calc(var(--container-width) - 64px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left top;
  }
  #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 {
    position: relative;
    max-width: var(--container-width);
    padding: 0 40px;
  }
  #feedBack .container .h2 {
    margin-bottom: 40px;
    text-align: center;
  }
  #feedBack .container .subtitle {
    text-align: center;
    max-width: 470px;
    margin-bottom: 40px;
  }
  #feedBack .feedBack__txt {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #feedBack .feedBack__txt .subtitle {
    margin-bottom: 0;
  }
  #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 .form-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #feedBack .form-block {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
  #feedBack .form-row:nth-of-type(3) .form-group:last-of-type {
    display: none;
  }
}
/* Для экранов до 991px */
@media (max-width: 991px) {
  #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;
  }
  #structureNews .news-detail__back-link {
    top: 24px;
    left: 24px;
    font-size: 14px;
    line-height: 22px;
    height: 40px;
  }
  #structureNews .news-detail__block {
    width: calc(100% - 40px);
    margin-top: -40px;
    padding: 48px 32px 0 32px;
  }
  #additionalEducationalPrograms .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: 60px 20px !important;
    gap: 60px;
  }
  #additionalEducationalPrograms .container .resources-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
  #additionalEducationalPrograms h4.white.short {
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
    margin-bottom: 0;
  }
  .about-body #additionalEducationalPrograms h4.h4 {
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #welcome .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #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;
    max-width: 100%;
  }
  #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;
    max-width: 100%;
  }
  #about .col-6 {
    padding: 0;
  }
  #news h2 {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #news .container {
    max-width: calc(100% - 40px);
    padding: 0;
  }
  #news .news__block__item {
    width: 100%;
  }
  #documentsCards .container {
    max-width: 100%;
    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%;
  }
  #documentsCards .resources__block__3:first-of-type > .resources__item:last-child {
    width: 100%;
  }
  #why .container h2 {
    width: 100%;
  }
  #why .container {
    max-width: 100%;
    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: 100%;
    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 {
    background-image: url("/local/templates/astraAcademy/assets/img/svg/news_bg.svg");
    background-repeat: no-repeat;
    background-position: top right -250px;
    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;
  }
  #structure .container {
    width: 100%;
    max-width: 100%;
    padding: 20px 20px 16px 20px;
    margin: 0;
  }
  #structure .resources__block .resources__item {
    border-color: var(--neutral-100);
  }
  #structure .resources__block .resources__item:nth-child(7) {
    width: 100%;
  }
  #structureNews {
    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;
  }
  #structureNews .container {
    width: 100%;
    max-width: 100%;
    padding: 20px 0 16px 0;
    margin: 0;
  }
  #structureNews .detail_picture {
    height: 420px;
    width: 100%;
    border-radius: 0;
    position: relative;
    overflow-x: hidden;
  }
  #structureNews .detail_picture img {
    width: 100%;
    height: 100%;
  }
  #structureNews .news-detail__back-link {
    top: 14px;
    left: 20px;
  }
  #structureNews .news-detail__block {
    width: 100%;
    margin-top: -60px;
    padding: 78px 24px 0 24px;
    z-index: 100;
    position: relative;
  }
  #structureNews .news-detail__date__labels {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #structureNews .news-detail h2.h2 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 24px;
  }
  #structureNews .news-detail .structure-date {
    position: absolute;
    top: 32px;
  }
  #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 .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: 100%;
    background-image: url("/local/templates/astraAcademy/assets/img/png/index/additional_educational_programs_mobile.png");
  }
  #additionalEducationalPrograms .container .resources__block__row {
    -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;
  }
  #additionalEducationalPrograms .container .resources__block__row .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: 100%;
    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: 100%;
    padding-left: 20px !important;
    padding-right: 20px !important;
    background-position: bottom left -130px;
    background-size: 240%;
  }
  #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 .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: 100%;
    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__txt {
    min-height: 0;
    margin-top: 60px;
  }
  #feedBack .feedBack__form {
    padding: 80px 28px;
  }
  #feedBack .checkbox-group {
    gap: 12px;
  }
  #feedBack .form-section {
    gap: 10px;
  }
  #feedBack .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #feedBack .form-group {
    margin-bottom: 20px;
  }
  #feedBack .submit-btn {
    margin-top: 40px;
  }
}
.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: 80px;
  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: 320px;
  border-radius: 80px;
  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%);
  width: 480px;
  height: auto;
}

#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: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: 0;
  padding-bottom: 40px;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg.svg");
  background-repeat: no-repeat;
  background-position: right 40px bottom 40px;
}
#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;
  background-color: var(--neutral-100);
  background-image: url("/local/templates/astraAcademy/assets/img/svg/adv_commerce_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  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 40px 16px 16px;
  background-color: var(--neutral-800);
  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;
  padding: 0 80px;
}
#howUnderstand .cards__point a {
  display: inline;
  color: var(--blue-700);
}
#howUnderstand .cards__point__item:hover {
  background: none;
}

#partners h2 {
  margin-bottom: 26px;
}
#partners .text-large {
  margin-bottom: 50px;
}

#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__block {
  min-height: 580px;
}
#courses .resources-dark__item {
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  max-height: 290px;
}
#courses .resources-dark__item h3, #courses .resources-dark__item p {
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
}
#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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#addMaterials .resources__block p a {
  display: inline;
  color: var(--blue-700);
}
#addMaterials .resources__item {
  border-radius: 16px;
  border-color: var(--neutral-100);
  position: relative;
  width: 480px;
}
#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) - 140px);
}
#checkSertificate h2 {
  margin-bottom: 32px;
}
#checkSertificate p.text-large {
  max-width: 660px;
  margin-bottom: 40px;
}
#checkSertificate .sertificate__form .form-group {
  width: 417px;
  margin-bottom: 32px;
}
#checkSertificate .sertificate__form .submit-btn {
  margin-top: 46px;
  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;
  gap: 12px;
  padding: 12px 26px;
  width: auto;
}

section.questions .container {
  position: relative;
  max-width: var(--container-width);
  padding: 0 40px;
  margin-bottom: 40px;
}
section.questions .container .h2 {
  margin-bottom: 32px;
}
section.questions .feedBack__block {
  position: relative;
}
section.questions .form-block:first-child {
  margin-bottom: 10px;
}
section.questions .submit-btn {
  margin-top: 20px;
}

#aboutTeaching {
  margin-top: 0;
}
#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: 80px;
  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: 320px;
  border-radius: 80px;
  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%);
  width: 480px;
  height: auto;
}

#application h2 {
  margin-bottom: 40px;
}
#application .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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 80px;
}
#application .container > div {
  position: relative;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#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;
}
#application .authorisation__form__wrapper {
  width: 100%;
  padding: 60px 40px !important;
  border-radius: 24px;
}
#application .authorisation__form__wrapper h2 {
  margin-bottom: 20px;
}
#application .authorisation__form__wrapper .application_wrap_ > p.text-large {
  margin-bottom: 40px;
}
#application .authorisation__form__wrapper .form-section {
  gap: 40px;
}
#application .authorisation__form__wrapper .form-section .form-row, #application .authorisation__form__wrapper .form-section .form-group {
  height: auto;
}
#application .authorisation__form__wrapper .form-section .checkbox-group {
  margin-top: 8px;
}
#application .authorisation__form__wrapper .form-section .form-block:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#application .authorisation__form__wrapper .form-section .form-block:last-of-type {
  -webkit-box-flex: 1.6;
      -ms-flex: 1.6;
          flex: 1.6;
}
#application .authorisation__form__wrapper .submit-btn {
  margin-top: 20px;
}

#whoCan h2 {
  margin-bottom: 40px;
}
#whoCan .advantages__block {
  width: 100%;
  border-radius: 20px;
  background-color: var(--neutral-100);
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: 130px 80px 60px 80px;
  position: relative;
  margin-top: 40px;
}
#whoCan .advantages__block__item {
  width: calc((100% - 80px) / 3);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-radius: 16px;
  background-color: #fff;
  padding: 40px;
}
#whoCan .advantages__block::before {
  content: "Преимущества партнерства:";
  position: absolute;
  height: 30px;
  width: 400px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  color: var(--neutral-700);
  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);
}

#authorized-partners {
  margin-bottom: 40px;
  --search-container-width: 392px;
  display: none;
}
#authorized-partners .search-container {
  position: absolute;
  top: 48px;
  right: 80px;
}
#authorized-partners h2 {
  margin-bottom: 68px;
}
#authorized-partners .container {
  position: relative;
  max-width: calc(var(--container-width) - 60px);
  padding: 48px 80px;
  background-color: var(--neutral-50);
  border-radius: 24px;
}
#authorized-partners .authorized-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;
}
#authorized-partners .authorized-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;
}

@media (max-width: 1399px) {
  #aboutCommercial .container {
    padding-right: var(--gutter);
    padding-top: 0;
  }
  #aboutCommercial .container > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0;
  }
  #aboutCommercial .container > div:last-child {
    -webkit-box-flex: 1.5;
        -ms-flex: 1.5;
            flex: 1.5;
  }
  #aboutCommercial .container .img_wrap {
    height: 205px;
    border-radius: 50px;
  }
  #aboutCommercial .container .img_wrap img {
    width: 360px;
  }
  #aboutTeaching .container {
    padding-right: var(--gutter);
    padding-top: 0;
  }
  #aboutTeaching .container > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 0;
  }
  #aboutTeaching .container > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #aboutTeaching .container .img_wrap {
    height: 205px;
    border-radius: 50px;
  }
  #aboutTeaching .container .img_wrap img {
    width: 360px;
  }
  #whyAuthor .resources__item {
    width: calc((100% - 32px) / 2);
  }
  #whyAuthor .advantages__block {
    padding: 60px 40px;
  }
  #whoCan .advantages__block {
    padding: 130px 40px 60px 40px;
  }
  #howUnderstand .cards__point {
    padding: 0;
  }
}
@media (max-width: 1199px) {
  #aboutCommercial .container > div:first-child, #aboutTeaching .container > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #aboutCommercial .container > div:last-child, #aboutTeaching .container > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #aboutTeaching .container {
    gap: 40px;
  }
  #aboutTeaching h1.h1 {
    letter-spacing: -0.03em;
    font-size: 29px;
    line-height: 140%;
  }
  #aboutTeaching h4 {
    margin-bottom: 30px;
  }
  #application .container {
    padding: 0 var(--gutter);
  }
  #addMaterials .resources__item {
    width: calc((100% - 32px) / 2);
  }
  #courses .resources-dark__block {
    min-height: 664px;
  }
  #courses .resources-dark__item {
    max-height: 340px;
  }
}
@media (max-width: 1024px) {
  #aboutCommercial h1 {
    text-align: center;
    margin-bottom: 40px;
  }
  #aboutCommercial .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    padding: 0 40px;
    max-width: calc(var(--container-width) - 64px);
  }
  #aboutCommercial .container p {
    text-align: center;
  }
  #aboutCommercial .container > div {
    padding: 0;
    width: 100%;
  }
  #aboutCommercial .container > div:first-child {
    padding-left: 0;
  }
  #aboutCommercial .img_wrap {
    height: 205px;
    max-height: 205px;
  }
  #aboutCommercial .img_wrap img {
    width: 360px;
  }
  #placeCommercial .container {
    max-width: calc(var(--container-width) - 64px);
  }
  #placeCommercial h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  #placeCommercial .text-large {
    text-align: center;
  }
  #placeCommercial .places__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 80px;
  }
  #placeCommercial .places__block__item {
    width: 100%;
    height: 190px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #whyAuthor .container {
    max-width: calc(var(--container-width) - 64px);
  }
  #whyAuthor h2 {
    text-align: center;
    margin-bottom: 80px;
  }
  #whyAuthor .text-large {
    text-align: center;
    max-width: 470px;
  }
  #whyAuthor .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;
  }
  #whyAuthor .container:first-child {
    padding-top: 0;
    padding-bottom: 80px;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/commercial-why_tablet.svg");
    background-repeat: no-repeat;
    background-position: right 40px top 190px;
  }
  #whyAuthor .container:last-child > .text-large {
    margin-bottom: 32px;
    max-width: 100%;
  }
  #whyAuthor .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 80px;
  }
  #whyAuthor .resources__item {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #whyAuthor .resources__item__title {
    text-align: center;
  }
  #whyAuthor .resources__item img {
    height: 42px;
  }
  #whyAuthor .advantages__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/adv_commerce_bg_tablet.svg");
  }
  #whyAuthor .advantages__block__item {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #howUnderstand h2 {
    text-align: center;
  }
  #howUnderstand h2 br {
    display: none;
  }
  #howUnderstand .container {
    max-width: calc(var(--container-width) - 64px);
  }
  #howUnderstand .container > .text-large {
    text-align: center;
    margin-left: 80px;
    margin-right: 80px;
  }
  #howUnderstand .cards__point {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #howUnderstand .cards__point__item {
    width: 100%;
  }
  #partners .container {
    max-width: calc(var(--container-width) - 64px);
  }
  #courses .container {
    padding: 60px 40px;
    border-radius: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0 auto;
    -ms-flex-item-align: center;
        align-self: center;
    max-width: calc(var(--container-width) - 128px);
  }
  #courses h2 {
    text-align: center;
  }
  #courses .resources-dark {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #courses .resources-dark__block {
    min-height: 1164px;
  }
  #courses .resources-dark__item {
    width: 100%;
    max-height: 290px;
  }
  #addMaterials h2 {
    text-align: center;
  }
  #addMaterials .container {
    max-width: calc(var(--container-width) - 16px);
  }
  #addMaterials .container > .text-large {
    text-align: center;
  }
  #addMaterials .resources__block {
    margin-top: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 40px;
  }
  #addMaterials .resources__block p a {
    display: inline;
    color: var(--blue-700);
  }
  #addMaterials .resources__item {
    width: 100%;
    height: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #addMaterials .resources__item .text-large {
    max-width: 245px;
    text-align: center;
  }
  #checkSertificate .container {
    background-color: var(--neutral-700);
    background-image: url(/local/templates/astraAcademy/assets/img/png/commercial/check-sertificate_bg_tablet.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 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: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: calc(var(--container-width) - 128px);
  }
  #checkSertificate .sertificate__form {
    width: 100%;
  }
  #checkSertificate .sertificate__form .form-group {
    width: 100%;
  }
  #checkSertificate .sertificate__form .submit-btn {
    width: 100%;
  }
  #checkSertificate h2 {
    text-align: center;
  }
  #checkSertificate p.text-large {
    max-width: 452px;
    text-align: center;
  }
  #checkSertificate #btnAction {
    width: 100%;
  }
  section.questions .container {
    padding: 0;
    max-width: calc(var(--container-width) - 128px);
  }
  section.questions .container .h2 {
    text-align: center;
    margin-bottom: 32px;
  }
  section.questions .feedBack__block {
    -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: 0;
    gap: 60px;
    background-position: top 0 left 60px;
  }
  section.questions .feedBack__txt {
    min-height: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  section.questions .feedBack__txt .text-large {
    text-align: center;
    max-width: 370px;
  }
  section.questions .form-row:nth-of-type(3) .form-group:last-of-type {
    display: none;
  }
  section.questions .form-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #aboutTeaching h1.h1 {
    width: 100%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
  }
  #aboutTeaching h4 {
    text-align: center;
  }
  #aboutTeaching .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;
    gap: 80px;
    padding: 0 40px;
    max-width: calc(var(--container-width) - 64px);
  }
  #aboutTeaching .container p {
    text-align: center;
  }
  #aboutTeaching .container > div {
    padding: 0;
    width: 100%;
  }
  #aboutTeaching .container > div:first-child {
    padding-left: 0;
    max-width: 650px;
  }
  #aboutTeaching .img_wrap {
    height: 205px;
    max-height: 205px;
  }
  #aboutTeaching .img_wrap img {
    width: 284px;
  }
  #application h2 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #application h2 br {
    display: none;
  }
  #application .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 40px;
  }
  #application .container > div {
    position: relative;
    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-sizing: border-box;
            box-sizing: border-box;
  }
  #application .container > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
  #application .container > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
  }
  #application .application_wrap {
    width: 100%;
    height: 426px;
    max-width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #application .application_wrap .text-large {
    text-align: center;
  }
  #application .application_wrap .checkbox-group {
    margin: 0;
  }
  #application .application_wrap_ > .text-large {
    text-align: center;
  }
  #application .form-section {
    -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;
  }
  #application .form-section .text-large {
    text-align: center;
  }
  #application .form-block {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #application .btn-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 20px;
  }
  #application p.text-small {
    width: calc((100% - 10px) / 2);
    -ms-flex-item-align: end;
        align-self: flex-end;
    padding-left: 10px;
  }
  #application .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #application .checkbox-group {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  #whoCan .container {
    padding: 0 40px;
  }
  #whoCan .container > .text-large {
    text-align: center;
  }
  #whoCan h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  #whoCan .advantages__block {
    background-image: url(/local/templates/astraAcademy/assets/img/svg/partners_bg_tablet.svg);
    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;
    padding: 128px 60px 60px 60px;
  }
  #whoCan .advantages__block__item {
    width: 100%;
    height: auto;
    padding: 40px 28px;
  }
  #whoCan .advantages__block__item .txt-large {
    text-align: center;
  }
  #whoCan .advantages__block::before {
    text-align: center;
    top: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #stages h2 {
    text-align: center;
  }
  #stages .container {
    background-image: url(/local/templates/astraAcademy/assets/img/svg/stages_bg_tablet.svg);
    padding: 0 40px;
  }
  #stages .resources__block {
    -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;
  }
  #stages .resources__item {
    width: 100%;
  }
  #authorized-partners {
    --search-container-width: 392px;
    margin-bottom: 0;
  }
  #authorized-partners .search-container {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 60px;
  }
  #authorized-partners h2 {
    margin-bottom: 40px;
    text-align: center;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #authorized-partners .container {
    max-width: calc(var(--container-width) - 80px);
    padding: 48px 60px;
    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;
  }
  #authorized-partners .authorized-partners__block {
    -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;
    margin-bottom: 60px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #authorized-partners .authorized-partners__item {
    height: 72px;
    width: 100%;
  }
  #authorized-partners .pagination {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #aboutCommercial .container {
    padding: 0 20px;
    max-width: 100%;
    gap: 100px;
  }
  #aboutCommercial .img_wrap {
    height: 282px;
    max-height: 282px;
  }
  #aboutCommercial .img_wrap img {
    width: 360px;
  }
  #placeCommercial .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #placeCommercial .places__block {
    padding: 0;
  }
  #placeCommercial .places__block__item {
    height: auto;
    padding: 40px;
  }
  #whyAuthor .text-large {
    max-width: 100%;
  }
  #whyAuthor .container:first-child {
    max-width: 100%;
    padding: 0 20px 80px 20px;
  }
  #whyAuthor .container:last-child {
    max-width: 100%;
    padding: 0 20px;
  }
  #whyAuthor .container:last-child > .text-large {
    margin-bottom: 32px;
    max-width: 100%;
  }
  #whyAuthor .resources__block {
    padding: 0;
  }
  #whyAuthor .advantages__block {
    padding: 60px 32px;
    background-image: url(/local/templates/astraAcademy/assets/img/svg/adv_commerce_bg_mobile.svg);
  }
  #whyAuthor .advantages__block__item .txt-large {
    text-align: center;
  }
  #howUnderstand .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #howUnderstand .container > .text-large {
    margin: 0;
  }
  #howUnderstand .cards__point {
    margin-left: 0;
    margin-right: 0;
    padding: 0;
  }
  #howUnderstand .cards__point__item {
    padding: 40px;
  }
  #partners .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #courses .container {
    padding: 60px 32px;
    max-width: 100%;
  }
  #courses .resources-dark__block {
    min-height: 1282px;
  }
  #courses .resources-dark__item {
    max-height: 340px;
  }
  #addMaterials .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #addMaterials .container > .text-large {
    text-align: center;
  }
  #addMaterials .resources__block {
    padding: 0;
  }
  #checkSertificate .container {
    background-image: url(/local/templates/astraAcademy/assets/img/png/commercial/check-sertificate_bg_tablet.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 20px;
    max-width: calc(100% - 40px);
  }
  #checkSertificate h2 {
    text-align: center;
  }
  #checkSertificate p.text-large {
    max-width: 452px;
    text-align: center;
  }
  #checkSertificate #btnAction {
    width: 100%;
  }
  #checkSertificate #btnAction .text-xlarge {
    font-size: 16px;
    line-height: 24px;
  }
  #checkSertificate .sertificate__form {
    width: 100%;
  }
  #checkSertificate .sertificate__form .form-group {
    width: 100%;
  }
  #checkSertificate .sertificate__form .submit-btn {
    width: 100%;
  }
  section.questions .container {
    padding: 0 20px;
    max-width: 100%;
  }
  section.questions .feedBack__form {
    padding: 80px 28px;
  }
  section.questions .feedBack__block {
    background-position: top 0 left 160px;
    background-size: 140%;
  }
  section.questions .feedBack__txt .text-large {
    text-align: center;
  }
  section.questions .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  section.questions .form-section {
    gap: 0;
  }
  section.questions .form-section .form-group {
    margin-bottom: 20px !important;
  }
  #aboutTeaching .container {
    max-width: 100%;
    padding: 0 20px;
    gap: 100px;
  }
  #aboutTeaching .img_wrap {
    height: 282px;
    max-height: 282px;
  }
  #aboutTeaching .img_wrap img {
    width: 284px;
  }
  #application h2 {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #application h2 br {
    display: none;
  }
  #application .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #application .application_wrap {
    height: 466px;
    max-width: 100%;
    padding: 60px 28px;
  }
  #application .authorisation__form__wrapper {
    padding: 60px 20px !important;
  }
  #application .authorisation__form__wrapper .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #application .btn-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  #application p.text-small {
    width: 100%;
    -ms-flex-item-align: center;
        align-self: center;
    text-align: center;
    padding-left: 0;
    padding-right: 10px;
  }
  #application .checkbox-label {
    margin-left: 10px;
  }
  #whoCan .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #whoCan .advantages__block {
    padding: 128px 32px 60px 32px;
  }
  #whoCan .advantages__block::before {
    width: calc(100% - 64px);
  }
  #stages h2 {
    text-align: center;
  }
  #stages .container {
    background-image: url(/local/templates/astraAcademy/assets/img/svg/stages_bg_tablet.svg);
    padding: 0 20px;
    background-position: top 110px right -180px;
    max-width: 100%;
  }
  #stages .resources__block {
    -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;
  }
  #stages .resources__item {
    position: relative;
    width: 100%;
  }
  #stages .resources__item__number {
    position: absolute;
  }
  #stages .resources__item__title {
    margin-left: 104px;
    min-height: 93px;
  }
  #authorized-partners {
    --search-container-width: 392px;
  }
  #authorized-partners .container {
    max-width: calc(100% - 40px);
    padding: 48px 28px;
  }
}
@media (max-width: 460px) {
  #courses .resources-dark__block {
    min-height: 1328px;
  }
}
/* Для экранов до 438px */
@media (max-width: 438px) {
  #whoCan .advantages__block::before {
    top: 40px;
  }
  #stages h2 {
    font-size: 29px;
    line-height: 140%;
  }
}
.page__school,
.page__college,
.page__university {
  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;
}

#aboutEducational, #programEducational {
  margin-top: 40px;
}
#aboutEducational h1, #programEducational h1 {
  max-width: 100%;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 30px;
}
#aboutEducational .welcome__p, #programEducational .welcome__p {
  max-width: 600px;
}
#aboutEducational .container, #programEducational .container {
  padding-top: 80px;
  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: 60px;
}
#aboutEducational .container p, #programEducational .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#aboutEducational .container > div, #programEducational .container > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
  width: calc((100% - 60px) / 2);
}
#aboutEducational .container > div:first-child, #programEducational .container > div:first-child {
  padding-left: 76px;
  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-flex: 1.3;
      -ms-flex: 1.3;
          flex: 1.3;
}
#aboutEducational .img_wrap, #programEducational .img_wrap {
  width: 100%;
  height: 320px;
  border-radius: 80px;
  position: relative;
}
#aboutEducational .img_wrap img, #programEducational .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
}
#aboutEducational .submit-btn, #programEducational .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 20px 24px;
  width: auto;
  height: 68px;
  margin-top: 40px;
}
#aboutEducational .submit-btn p, #programEducational .submit-btn p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
#aboutEducational .submit-btn:hover, #programEducational .submit-btn:hover {
  background-color: var(--blue-500);
}
#aboutEducational .submit-btn:active, #programEducational .submit-btn:active {
  background-color: var(--blue-700);
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

#whoEducational h2 {
  margin-bottom: 40px;
}
#whoEducational .container {
  padding-top: 60px;
  margin-top: -60px;
  padding-bottom: 0;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg.svg");
  background-repeat: no-repeat;
  background-position: right 40px bottom -80px;
}
#whoEducational .resources__block {
  margin-top: 32px;
}
#whoEducational .resources__item {
  border-color: var(--neutral-100);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#whoEducational .resources__item img {
  height: 42px;
}

.page__university #whoEducational .resources__item {
  width: calc((100% - 64px) / 3);
}

#advantagesEducational .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: calc(var(--container-width) - 64px);
  padding: 60px;
  gap: 60px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/educational/advantage_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  border-radius: 60px;
}
#advantagesEducational .container .resources__block .resources__item {
  border-radius: 20px 40px 20px 20px;
  position: relative;
  padding: 36px 80px 40px 32px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  cursor: default;
}
#advantagesEducational .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");
}
#advantagesEducational .container .resources__block .resources__item__desc {
  margin-bottom: 0;
  font-family: var(--font-regular);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--neutral-800);
}
#advantagesEducational .container h3.h3 {
  width: 55%;
  margin-bottom: 0;
}

#programEducational {
  margin-top: -20px;
}
#programEducational .container {
  padding-top: 0;
}

#stagesEducational {
  margin-top: -60px;
}
#stagesEducational .container {
  background-image: url(/local/templates/astraAcademy/assets/img/svg/stages_bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 60px;
}
#stagesEducational .resources__item {
  border-radius: 20px 80px 20px 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);
  cursor: default;
  pointer-events: none;
}
#stagesEducational .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);
}
#stagesEducational .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;
}
#stagesEducational .resources__item__title p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--neutral-900);
}
#stagesEducational .resources__item ul {
  padding-left: 22px;
}
#stagesEducational .resources__item ul li {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: var(--neutral-800);
  position: relative;
}
#stagesEducational .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;
}
#stagesEducational .resources__item ul li:not(:last-child) {
  margin-bottom: 16px;
}
#stagesEducational .resources__item ul li a {
  color: var(--blue-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  pointer-events: all;
}
#stagesEducational .resources__item ul li a:hover {
  color: var(--blue-500);
}
#stagesEducational .resources__item ul li a:active {
  color: var(--blue-800);
}
#stagesEducational .resources__item__notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  width: 100%;
  pointer-events: all;
}
#stagesEducational .resources__item__notes__wrap {
  width: auto;
  height: auto;
  max-width: 68%;
}
#stagesEducational .resources__item__notes p {
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  color: var(--neutral-600);
}
#stagesEducational .resources__item__notes .resources__item__btn {
  margin-top: 0;
  max-width: 50%;
}
#stagesEducational .resources__item__notes:hover .resources__item__btn {
  width: auto;
}
#stagesEducational .resources__item__notes:hover .resources__item__btn p,
#stagesEducational .resources__item__notes:hover .resources__item__btn span {
  width: auto;
  margin-left: 11px;
  margin-right: 12px;
}
#stagesEducational .resources__item__notes:hover .resources__item__btn::after {
  -webkit-transform: scale(70%);
      -ms-transform: scale(70%);
          transform: scale(70%);
}

.page__college #stagesEducational .resources__block.resources__block__2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 32px;
}
.page__college #stagesEducational .resources__item {
  width: 100%;
  grid-column: span 1;
  grid-row: span 1;
}
.page__college #stagesEducational .resources__item:nth-child(4) {
  grid-column: span 1;
  grid-row: span 2;
}

#events .container {
  border-radius: 40px;
  padding: 60px;
  max-width: calc(var(--container-width) - 64px);
}
#events .calendar__block__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}
#events .calendar__block__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;
  background-color: #fff;
  border-radius: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 24px;
  color: var(--neutral-500);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  cursor: pointer;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#events .calendar__block__tags__item:hover {
  background-color: #E8F8FF;
  color: #007EFF;
}
#events .calendar__block__tags #course-tag.current {
  background-color: var(--blue-500);
  color: #fff;
}
#events .calendar__block__tags #event-tag.current {
  background-color: var(--neutral-400);
  color: #fff;
}
#events .calendar__block__viewport {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 100%;
  margin: 40px auto 0;
  overflow: hidden;
  position: relative;
}
#events .calendar__block__viewport .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
          transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}
#events .calendar__block__item {
  min-height: 356px;
  height: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc((100% - 64px) / 3);
  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: 24px;
  background: #FFFFFF;
  border-radius: 32px;
  padding: 24px 24px 60px;
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#events .calendar__block__item[data-type=course] .calendar__block__item__label {
  background-color: var(--blue-500);
}
#events .calendar__block__item[data-type=event] .calendar__block__item__label {
  background-color: var(--neutral-400);
}
#events .calendar__block__item:hover {
  -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));
}
#events .calendar__block__item__header {
  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: 20px;
}
#events .calendar__block__item__label {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 8px 24px;
  font-family: var(--font-reqular);
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
}
#events .calendar__block__item__content {
  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: 8px;
}
#events .calendar__block__item__date {
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 20px;
  color: var(--neutral-200);
}
#events .calendar__block__item__title {
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--neutral-900);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#events .calendar__block__item__desc {
  font-family: var(--font-reqular);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: var(--neutral-900);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#events .calendar__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 24px;
}
#events .calendar__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#events .calendar__page {
  border: 0;
  background: transparent;
  padding: 4px 18px;
  opacity: 0.55;
  cursor: pointer;
  border-radius: 999px;
}
#events .calendar__page.is-active {
  opacity: 1;
  background: #C0C6D6;
}
#events .calendar__arrow {
  border: 0;
  background: transparent;
  font-size: 28px;
  cursor: pointer;
}

#joinUs .container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding: 54px 60px;
  gap: 20px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/article-card-thumbnail.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left bottom;
  border-radius: 40px 100px 40px 40px;
  max-width: calc(var(--container-width) - 64px);
}
#joinUs .container .resources-dark__block .resources-dark__item {
  background-color: var(--neutral-600);
  border: 1px solid var(--neutral-600);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc((100% - 64px) / 3);
  cursor: default;
}
#joinUs .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%;
  margin-bottom: 32px;
}
#joinUs .container .resources-dark__block .resources-dark__item__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
}
#joinUs h2.h2 {
  font-weight: 400;
  margin-bottom: 0;
}
#joinUs .text-xlarge {
  max-width: 900px;
  margin-bottom: 20px;
}

#educational .feedBack__form {
  -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;
  padding: 60px 80px;
  gap: 40px;
  border-radius: 40px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/educational/edu_form_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
}
#educational h3.h3 {
  margin-bottom: 0;
}
#educational .form-section {
  width: 50%;
}
#educational .form-section .form-block {
  gap: 20px;
}
#educational .form-section .form-block:first-child {
  display: none;
}
#educational .checkbox-group {
  -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: 0;
  margin-bottom: 0 !important;
}
#educational .checkbox-group .checkbox-label {
  color: var(--neutral-100);
  margin-top: -2px;
}
#educational .checkbox-group .checkbox-label a:hover {
  color: var(--blue-500);
}
#educational .submit-btn {
  height: 46px !important;
  min-height: 46px;
  margin-top: -30px;
}
#educational .submit-btn:hover {
  background-color: var(--blue-500);
}
#educational .submit-btn:active {
  background-color: var(--blue-700);
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

#members h3.h3 {
  margin-bottom: 0;
}
#members .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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
#members .members__info {
  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: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#members .members__img {
  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;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#members .members__img img {
  width: 613px;
  height: auto;
  border-radius: 32px;
}
#members .map-container {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: calc(var(--container-width) - 64px);
  background-image: url(/local/templates/astraAcademy/assets/img/svg/educational/map_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0;
  margin-top: -60px;
}
#members #svg-map {
  display: block;
  width: 100%;
}
#members .top-left-title {
  position: absolute;
  pointer-events: none;
}
#members .top-left-title .region-count {
  color: #2DABF1;
  font-weight: 700;
}
#members .svg-tooltip {
  position: absolute;
  display: none;
  background: rgba(255, 255, 255, 0.4549019608);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: normal;
  pointer-events: none;
  z-index: 20;
  -webkit-transition: opacity 0.1s;
  transition: opacity 0.1s;
}

#educationalFAQ .container {
  max-width: calc(var(--container-width) - 140px);
  background-image: url("/local/templates/astraAcademy/assets/img/png/educational/faq_bg.png"), linear-gradient(100.33deg, #333C51 3.57%, #414B5F 38%, #252E43 77.6%, #252E43 96.13%);
  background-repeat: no-repeat;
  background-position: left bottom, left top;
  background-size: 40%, cover;
  border-radius: 32px;
  padding: 60px 60px 100px 60px;
}
#educationalFAQ .educationalFAQ {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
#educationalFAQ .educationalFAQ__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#educationalFAQ .educationalFAQ__title h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--neutral-200);
}
#educationalFAQ .educationalFAQ .cards__faq {
  -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;
  gap: 16px;
}
#educationalFAQ .educationalFAQ .cards__faq__item {
  background-color: var(--neutral-900);
  height: auto;
}
#educationalFAQ .educationalFAQ .cards__faq__item__title {
  color: #fff;
}
#educationalFAQ .educationalFAQ .cards__faq__item__title::after {
  background-color: var(--neutral-800);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='7' viewBox='0 0 14 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.93237 7C6.3913 7 5.85024 6.86603 5.44444 6.46411L0.304348 1.64115C-0.101449 1.23923 -0.101449 0.703349 0.304348 0.301435C0.710145 -0.100478 1.25121 -0.100478 1.657 0.301435L6.7971 5.1244C6.93237 5.25837 7.2029 5.25837 7.2029 5.1244L12.343 0.301435C12.7488 -0.100478 13.2899 -0.100478 13.6957 0.301435C14.1014 0.703349 14.1014 1.23923 13.6957 1.64115L8.55556 6.46411C8.01449 6.86603 7.47343 7 6.93237 7Z' fill='%235BC4F5'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 14px 7px;
  background-repeat: no-repeat;
}
#educationalFAQ .educationalFAQ .cards__faq__item__desc {
  height: 0;
  color: var(--neutral-200);
  opacity: 0;
}
#educationalFAQ .educationalFAQ .cards__faq__item__desc a {
  color: var(--blue-500);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#educationalFAQ .educationalFAQ .cards__faq__item__desc a:hover {
  color: var(--blue-700);
}
#educationalFAQ .educationalFAQ .cards__faq__item.active .cards__faq__item__desc {
  height: auto;
  opacity: 1;
}
#educationalFAQ .calendar__block__item {
  width: calc((100% - 64px) / 3);
}

#educationalReviews h3 {
  margin-bottom: 32px;
}
#educationalReviews .reviews__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
#educationalReviews .reviews__block__item {
  width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background-color: var(--neutral-50);
  background-image: url("/local/templates/astraAcademy/assets/img/svg/revew.svg");
  background-repeat: no-repeat;
  background-position: top right;
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  padding: 40px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 32px 72px 32px 32px;
  position: relative;
}
#educationalReviews .reviews__block__item__title {
  width: 100%;
}
#educationalReviews .reviews__block__item__title h5 {
  margin-bottom: 8px;
}
#educationalReviews .reviews__block__item__title h5:first-child {
  margin-bottom: 4px;
  text-transform: uppercase;
}
#educationalReviews .reviews__block__item__title .text-small {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  color: var(--neutral-400);
}
#educationalReviews .reviews__block__item__desc {
  width: 100%;
}
#educationalReviews .reviews__block__item__desc > .text-regular {
  color: var(--neutral-800);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#educationalReviews .reviews__block__item__desc > .text-regular.is-open {
  -webkit-line-clamp: unset;
  overflow: visible;
}
#educationalReviews .reviews__block__item__link {
  margin-top: 16px;
  cursor: pointer;
}
#educationalReviews .reviews__block__item__link .text-regular {
  color: #24A7D9;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin: 0;
}
#educationalReviews .reviews__block__item__link:hover .text-regular {
  color: var(--blue-700);
}

#feedBack {
  margin-top: 0;
  margin-bottom: 60px;
}

@media (max-width: 1399px) {
  #aboutEducational .container {
    padding-right: var(--gutter);
    padding-top: 0;
  }
  #aboutEducational .container > div:first-child {
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
    padding-left: 0;
  }
  #aboutEducational .container > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #aboutEducational .container .img_wrap {
    height: 205px;
    border-radius: 50px;
  }
  #aboutEducational .container .img_wrap img {
    width: 360px;
  }
  #whoEducational .resources__item {
    width: calc((100% - 32px) / 2);
  }
  #members .map-container {
    background-size: 860px auto;
  }
  #stagesEducational .resources__item__notes p {
    max-width: 180px;
  }
  #stagesEducational .resources__item__notes .resources__item__btn {
    max-width: 70%;
  }
}
@media (max-width: 1199px) {
  .page__school,
  .page__college,
  .page__university {
    gap: 80px;
  }
  #aboutEducational, #programEducational {
    margin-top: 0;
  }
  #aboutEducational .submit-btn, #programEducational .submit-btn {
    max-width: 424px;
  }
  #aboutEducational .submit-btn p, #programEducational .submit-btn p {
    max-width: 310px;
  }
  #aboutEducational .img_wrap, #programEducational .img_wrap {
    max-height: 205px;
    height: 205px;
    border-radius: 50px;
  }
  #aboutEducational .container > div:first-child, #programEducational .container > div:first-child {
    padding-left: 0;
  }
  .page__university #aboutEducational .container > div:first-child {
    -webkit-box-flex: 1.4;
        -ms-flex: 1.4;
            flex: 1.4;
  }
  .page__university #aboutEducational .container > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #educational .form-section {
    width: 60%;
  }
  #educationalReviews .reviews__block__item {
    width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
  #advantagesEducational .container h3.h3 {
    width: 90%;
  }
  #events .calendar__block__item {
    width: calc((100% - 32px) / 2);
  }
  #members .map-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-size: 500px auto;
  }
  #members #svg-map {
    width: 80%;
    pointer-events: none;
  }
  #members .top-left-title {
    left: 0;
  }
  #members .top-left-title .region-count {
    color: #2DABF1;
    font-weight: 700;
  }
  #stagesEducational .resources__item__notes {
    -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;
  }
}
/* Для экранов меньше 768-1024px */
@media (max-width: 1024px) {
  #aboutEducational {
    margin-bottom: 40px;
  }
  #aboutEducational, #programEducational {
    margin-top: 40px;
  }
  #aboutEducational h1, #programEducational h1 {
    text-align: center;
    margin-bottom: 40px;
  }
  #aboutEducational .container, #programEducational .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;
    gap: 120px;
    padding: 0 80px;
    max-width: var(--container-width);
  }
  #aboutEducational .container p, #programEducational .container p {
    text-align: center;
  }
  #aboutEducational .container > div, #programEducational .container > div {
    padding: 0;
    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;
  }
  #aboutEducational .container > div:first-child, #programEducational .container > div:first-child {
    padding-left: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #aboutEducational .img_wrap, #programEducational .img_wrap {
    height: 205px;
    max-height: 205px;
    max-width: 100%;
  }
  #aboutEducational .img_wrap img, #programEducational .img_wrap img {
    width: 360px;
  }
  #aboutEducational .welcome__p, #programEducational .welcome__p {
    max-width: 100%;
  }
  #aboutEducational .submit-btn, #programEducational .submit-btn {
    text-align: center;
    max-width: 100%;
  }
  #aboutEducational .submit-btn p, #programEducational .submit-btn p {
    max-width: 100%;
  }
  #whoEducational h2.h2 {
    text-align: center;
  }
  #whoEducational .container {
    background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg_tablet.svg") !important;
  }
  #whoEducational .resources__item {
    width: calc((100% - 32px) / 2);
  }
  .page__university #whoEducational .resources__item {
    width: calc((100% - 32px) / 2);
  }
  .page__university #whoEducational .resources__item:last-child {
    width: 100%;
  }
  #advantagesEducational .container h3.h3 {
    width: 100% !important;
    text-align: center;
  }
  #programEducational h1.h1 br {
    display: none;
  }
  #stagesEducational .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #stagesEducational .resources__item {
    width: 100%;
  }
  #stagesEducational .resources__item__notes {
    -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;
  }
  #stagesEducational .resources__item__notes p {
    max-width: 400px;
  }
  .page__college #stagesEducational .resources__block.resources__block__2 {
    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: 32px;
  }
  .page__college #stagesEducational .resources__item {
    width: 100%;
  }
  #events h3.h3 {
    text-align: center;
  }
  #joinUs h2.h2 {
    text-align: center;
  }
  #joinUs .text-xlarge {
    text-align: center;
  }
  #joinUs .resources-dark__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #joinUs .resources-dark__item {
    width: 100% !important;
  }
  #educational h3.h3 {
    width: 100%;
    text-align: center;
  }
  #educational .feedBack__form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #educational .form-section {
    width: 100% !important;
  }
  #educationalFAQ .cards__faq {
    -webkit-box-flex: 2.8 !important;
        -ms-flex: 2.8 !important;
            flex: 2.8 !important;
  }
  #educationalReviews .reviews__block__item {
    width: calc((100% - 20px) / 2) !important;
    min-width: calc((100% - 20px) / 2) !important;
  }
}
@media (max-width: 991px) {
  #aboutEducational .img_wrap, #programEducational .img_wrap {
    max-width: 100%;
  }
  #aboutEducational .container, #programEducational .container {
    padding: 0 40px;
  }
  #members .map-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 18px;
    background-size: 700px auto;
    background-position: bottom -100px center;
  }
  #members #svg-map {
    width: 100%;
  }
  #members .top-left-title {
    position: relative;
    left: auto;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #aboutEducational .container, #programEducational .container {
    padding: 0 20px;
    max-width: 100%;
    gap: 100px;
  }
  #aboutEducational .img_wrap, #programEducational .img_wrap {
    height: 202px;
    max-height: 202px;
    border-radius: 50px;
  }
  #aboutEducational .img_wrap img, #programEducational .img_wrap img {
    width: 300px !important;
  }
  #whoEducational h2.h2 {
    text-align: center;
  }
  #whoEducational .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/resources_bg_mobile.svg") !important;
    background-position: top center !important;
  }
  #whoEducational .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #whoEducational .resources__item {
    width: 100%;
  }
  .page__university #whoEducational .resources__item {
    width: 100%;
  }
  #advantagesEducational h3.h3 {
    font-size: 28px;
    letter-spacing: -0.02em;
  }
  #advantagesEducational .container {
    width: 100%;
    max-width: 100%;
    padding: 60px 20px !important;
  }
  #advantagesEducational .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #advantagesEducational .resources__item {
    width: 100%;
  }
  #stagesEducational .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #stagesEducational .resources__item {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    padding: 40px 28px;
  }
  #stagesEducational .resources__item__number {
    position: absolute;
  }
  #stagesEducational .resources__item__title {
    padding-left: 96px;
    min-height: 96px;
  }
  section.questions .container {
    padding: 0 20px;
    max-width: 100%;
  }
  section.questions .feedBack__form {
    padding: 80px 28px;
  }
  section.questions .feedBack__block {
    background-position: top 0 left 160px;
    background-size: 140%;
  }
  section.questions .feedBack__txt .text-large {
    text-align: center;
  }
  section.questions .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  section.questions .form-section {
    gap: 0;
  }
  section.questions .form-section .form-group {
    margin-bottom: 20px !important;
  }
  #events .container {
    width: 100%;
    max-width: 100%;
    padding: 60px 20px !important;
  }
  #joinUs .container {
    width: calc(100% - 40px);
    max-width: 100%;
    padding: 54px 20px !important;
    background-image: none !important;
    border-radius: 40px !important;
  }
  #educational .container {
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
  }
  #educational .feedBack__form {
    padding: 60px 32px !important;
  }
  #educational .checkbox-label {
    max-width: 90%;
  }
  #educational .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  #members .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  #members .members__info {
    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;
  }
  #members h3.h3, #members .text-large {
    text-align: center;
    letter-spacing: -0.03em;
  }
  #members .map-container {
    max-width: 100%;
    padding: 0 20px;
    margin-top: 0;
    background-size: 800px auto;
    background-position: center left -160px;
  }
  #educationalFAQ .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: calc(100% - 40px);
    background-size: 100%, cover;
  }
  #educationalFAQ .educationalFAQ {
    -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;
  }
  #educationalFAQ .cards__faq {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 !important;
            flex: 1 !important;
  }
  #educationalFAQ .cards__faq__item {
    padding: 32px 20px;
  }
  #educationalReviews h3.h3 {
    text-align: center;
  }
  #educationalReviews .container {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
  }
  #educationalReviews .reviews__block {
    -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;
  }
  #educationalReviews .reviews__block__item {
    width: 100% !important;
    min-width: 100% !important;
  }
  #feedBack .form-block {
    width: 100%;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  #feedBack .form-block > div {
    width: 100%;
  }
}
/* Для экранов до 700px */
@media (max-width: 700px) {
  #events .calendar__block__item {
    width: 100%;
  }
  #members {
    overflow: hidden !important;
  }
  #members .map-container {
    max-width: 100%;
    padding: 0 20px;
    overflow: visible;
  }
  #members #svg-map {
    width: 1340px;
    margin-top: -220px;
  }
  #stagesEducational .resources__item__notes {
    -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;
  }
  #stagesEducational .resources__item__notes p {
    max-width: 180px;
  }
}
.about-header {
  padding-top: 60px;
}
.about-header h2.h2 {
  margin-bottom: 0;
}

.about-body > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  padding: 0 32px 0 0 !important;
  margin-bottom: 68px;
}
.about-body .side-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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;
  min-width: 352px;
  position: sticky;
  top: 40px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: calc(100vh - 80px);
  border-right: 1px solid var(--neutral-100);
}
.about-body .side-menu #anchor-list {
  gap: 0;
  margin-bottom: 0;
}
.about-body .side-menu #anchor-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 8px 10px 8px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: var(--neutral-500) !important;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  border-radius: 4px;
}
.about-body .side-menu #anchor-list li a:hover, .about-body .side-menu #anchor-list li a:active {
  background-color: var(--neutral-50);
  color: var(--blue-500);
}
.about-body .side-menu li {
  width: 100%;
  position: relative;
}
.about-body .side-menu .container {
  padding: 0 20px 0 32px;
}
.about-body .content-block {
  -webkit-box-flex: 2.5;
      -ms-flex: 2.5;
          flex: 2.5;
  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: 80px;
}
.about-body .content-block h4.h4 {
  font-weight: 700;
  margin-bottom: 40px;
}
.about-body .content-block .container {
  max-width: 964px;
  padding: 0;
}
.about-body .content-block #documentsList .container {
  padding: 0;
}
.about-body .content-block #managers .container {
  background-image: url(/local/templates/astraAcademy/assets/img/png/index/managers_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 40px;
  max-width: 964px;
  padding: 40px;
}
.about-body .content-block #managers h4 {
  margin-bottom: 179px !important;
}
.about-body .content-block #teachers .container {
  width: 964px;
}
.about-body .content-block #teachers .teachers__block {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about-body #informationOrganisation {
  margin-top: 0;
}
.about-body #educationalServices .container {
  padding: 40px;
}
.about-body #educationalServices .resources__block {
  gap: 20px;
}
.about-body #finance .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;
  gap: 40px;
}
.about-body #finance h4.h4 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-bottom: 0;
  margin-top: 90px;
}
.about-body #finance .cards__faq {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 50%;
}
.about-body #finance .cards__faq__item {
  padding: 28px 40px;
  cursor: pointer;
}
.about-body #finance .documentsList__item__link {
  height: 104px;
  background-color: var(--neutral-500);
  padding: 28px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -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: 24px;
  color: #fff;
  border-radius: 32px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.about-body #finance .documentsList__item__link:hover {
  background-color: var(--blue-500);
}
.about-body #finance .documentsList__item__link:active {
  background-color: var(--blue-700);
}
.about-body #finance .documentsList__item__link svg {
  min-width: 40px;
}
.about-body #finance .documentsList__item__link p {
  white-space: pre-wrap;
}
.about-body #finance .cards__point {
  grid-template-columns: 1fr;
}
.about-body #finance .cards__point__item {
  width: 100%;
  pointer-events: none;
}
.about-body #common__info .cards__faq__item:nth-child(2) .cards__faq__item__desc {
  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;
}
.about-body #common__info .cards__faq__item:nth-child(2) .cards__faq__item__desc article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 20px;
}
.about-body #common__info .cards__faq__item:nth-child(2) .cards__faq__item__desc article:first-child {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--neutral-100);
  margin-top: 20px;
}
.about-body #common__info .cards__faq__item:nth-child(2) .cards__faq__item__desc article > div {
  border-bottom: 1px solid var(--neutral-100);
  letter-spacing: -0.02em;
  padding-bottom: 20px;
  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: 60px;
}
.about-body #common__info .cards__faq__item:nth-child(2) .cards__faq__item__desc article > div p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  line-height: 24px;
}
.about-body #section_more .container {
  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;
}
.about-body #section_more .cards__faq__item__title {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-body #section_more .cards__faq__item__title p {
  font-size: 16px;
  line-height: 130%;
  font-weight: 700;
  color: var(--neutral-800);
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc {
  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;
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 20px;
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc article:first-child {
  padding-bottom: 4px;
  border-bottom: 1px solid var(--neutral-100);
  margin-top: 20px;
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc article > div {
  border-bottom: 1px solid var(--neutral-100);
  letter-spacing: -0.02em;
  padding-bottom: 20px;
  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: 60px;
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc article > div p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 14px;
  line-height: 24px;
}
.about-body #section_more .cards__faq:first-of-type .cards__faq__item__desc > p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 24px;
}
.about-body .aboutAddPrograms {
  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: 60px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .about-body .content-block .container {
    max-width: 724px;
  }
  .about-body #documentsList .container {
    max-width: 724px;
  }
  .about-body .aboutAddPrograms .container {
    margin: 0;
  }
  .about-body #managers .container {
    max-width: 724px;
  }
  .about-body #teachers .container {
    max-width: 724px;
  }
  .about-body #teachers .container .teachers__item__body {
    height: auto;
  }
  .about-body #teachers .container .teachers__item {
    width: calc((100% - 40px) / 3);
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .about-body #teachers .container .teachers__item:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-body #teachers .container .teachers__item__body {
    padding: 40px 20px;
  }
}
/* Для экранов меньше 768-1199px */
@media (max-width: 1199px) {
  .about-header h2.h2 {
    text-align: center;
  }
  .about-body > .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--gutter) !important;
  }
  .about-body .side-menu {
    display: none;
  }
  .about-body .content-block {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: 100%;
  }
  .about-body .content-block .container {
    max-width: var(--container-width);
  }
  .about-body #documentsList .container {
    max-width: var(--container-width);
  }
  .about-body .aboutAddPrograms .container {
    margin: 0;
  }
  .about-body #managers .container {
    max-width: var(--container-width);
  }
  .about-body #teachers .container {
    width: var(--container-width) !important;
    max-width: calc(var(--container-width) - 64px);
  }
  .about-body #informationOrganisation h4.h4 {
    text-align: left;
  }
  .about-body #structure .resources__item {
    width: calc((100% - 32px) / 2);
  }
  .about-body #finance h4.h4 {
    text-align: left;
    -webkit-box-flex: 0.5;
        -ms-flex: 0.5;
            flex: 0.5;
  }
  .about-body #finance .cards__faq {
    max-width: 70%;
  }
  .about-body #finance .container {
    background-image: none;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  .about-header {
    padding-top: 20px;
  }
  .about-header .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-body > .container {
    max-width: 100%;
    padding: 0 !important;
  }
  .about-body .content-block {
    gap: 60px;
  }
  .about-body .content-block #documentsList .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-body .content-block #managers {
    width: 100%;
  }
  .about-body .content-block #managers .container {
    max-width: 100%;
    padding: 40px 20px;
  }
  .about-body .content-block #managers h4.h4 {
    text-align: center;
  }
  .about-body .content-block #managers .managers__block {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .about-body .content-block #managers .managers__item {
    height: auto;
    max-width: 648px !important;
  }
  .about-body .content-block #managers .managers__item__body {
    height: auto;
    min-height: 200px;
    gap: 40px;
  }
  .about-body .content-block #teachers {
    width: 100%;
  }
  .about-body .content-block #teachers .container {
    width: 100% !important;
    max-width: 100%;
    padding: 0 20px;
    margin: 0;
  }
  .about-body .content-block #teachers h4.h4 {
    text-align: center;
  }
  .about-body .content-block #teachers .teachers__item {
    height: auto;
    width: 100%;
  }
  .about-body .content-block #teachers .teachers__item__body {
    height: auto;
    min-height: 200px;
    gap: 20px;
  }
  .about-body #informationOrganisation h4.h4 {
    text-align: center;
  }
  .about-body #informationOrganisation .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-body #informationOrganisation .cards__faq__item__title {
    grid-template-columns: 1fr;
  }
  .about-body #informationOrganisation .cards__faq__item__title p {
    width: 100%;
  }
  .about-body #structure {
    width: 100%;
  }
  .about-body #structure h4.h4 {
    text-align: center;
  }
  .about-body #structure .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about-body #structure .resources__item {
    width: 100%;
  }
  .about-body #structure .resources__item__desc {
    width: 100%;
    max-width: 100%;
  }
  .about-body #structure .resources__item__desc a {
    max-width: 100%;
  }
  .about-body #educationalServices .container {
    max-width: 100%;
    padding: 60px 20px !important;
  }
  .about-body #educationalServices h4.h4 {
    text-align: center;
  }
  .about-body #finance {
    width: 100%;
  }
  .about-body #finance h4.h4 {
    text-align: center;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .about-body #finance .cards__faq {
    max-width: 100%;
  }
  .about-body #finance .container {
    width: 100%;
    margin: 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: 0 20px;
    max-width: 100%;
  }
  .about-body #finance .cards__faq__item, .about-body #finance .documentsList__item__link {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
  .about-body #finance .cards__faq__item svg, .about-body #finance .documentsList__item__link svg {
    min-width: 40px;
  }
  .about-body #mto {
    width: 100%;
  }
  .about-body #mto .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-body #mto h4.h4 {
    text-align: center;
  }
  .about-body #section_more {
    width: 100%;
  }
  .about-body #section_more .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .about-body .aboutAddPrograms h4.h4 {
    text-align: center;
  }
  .about-body .aboutAddPrograms .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
.sertification {
  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;
}

#aboutSertification {
  margin-top: 40px;
}
#aboutSertification h1 {
  max-width: 100%;
  font-weight: 700;
}
#aboutSertification .text-large:first-of-type {
  margin-bottom: 16px;
}
#aboutSertification .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;
}
#aboutSertification .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#aboutSertification .container > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
  width: calc((100% - 100px) / 2);
}
#aboutSertification .container > div:first-child {
  padding-left: 81px;
}
#aboutSertification .img_wrap {
  width: 100%;
  height: 320px;
  border-radius: 80px;
  position: relative;
}
#aboutSertification .img_wrap img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 480px;
  height: auto;
}

#formats .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
#formats h2 {
  margin-bottom: 8px;
}
#formats .formats__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
  padding: 60px;
  background-color: var(--neutral-100);
  border-radius: 20px 60px 20px 20px;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/formats_bg.svg");
  background-repeat: no-repeat;
  background-position: bottom center;
}
#formats .formats__block__item {
  width: calc((100% - 40px) / 2);
  height: 256px;
  background-color: var(--neutral-600);
  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 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 16px 60px 16px 16px;
}

#stagesSertificate .container {
  background-image: url(/local/templates/astraAcademy/assets/img/svg/stages_bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
  padding-top: 0;
  padding-bottom: 60px;
  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;
}
#stagesSertificate h3 {
  margin-bottom: 0;
}
#stagesSertificate .resources__item {
  border-radius: 20px 80px 20px 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);
  cursor: default;
  pointer-events: none;
}
#stagesSertificate .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);
}
#stagesSertificate .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;
}
#stagesSertificate .resources__item__title p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--neutral-900);
}

#whomSertificate {
  margin-top: -60px;
}
#whomSertificate h3 {
  margin-bottom: 0;
  margin-bottom: 0;
}
#whomSertificate .container {
  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;
}
#whomSertificate h6.h6 {
  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: 1px solid var(--neutral-900);
  border-radius: 90px;
  background: transparent;
  font-size: 20px;
  line-height: 30px;
  padding: 8px 28px;
  height: 46px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#whomSertificate .whomSertificate__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
#whomSertificate .whomSertificate__block__item {
  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;
  gap: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 40px;
  width: calc((100% - 32px) / 2);
  border-radius: 16px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#whomSertificate .whomSertificate__block__item__body {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  padding: 40px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
#whomSertificate .whomSertificate__block__item__body__item {
  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: 28px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#whomSertificate .whomSertificate__block__item__body__item:nth-child(1), #whomSertificate .whomSertificate__block__item__body__item:nth-child(2) {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--neutral-100);
}
#whomSertificate .whomSertificate__block__item__body__item:nth-child(3), #whomSertificate .whomSertificate__block__item__body__item:nth-child(4) {
  padding-top: 32px;
}
#whomSertificate .whomSertificate__block__item__body__item:nth-child(odd) {
  padding-right: 32px;
  position: relative;
}
#whomSertificate .whomSertificate__block__item__body__item:nth-child(odd):after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  right: -16px;
  background-color: var(--neutral-100);
}
#whomSertificate .whomSertificate__block__item__body__item:first-child::after {
  height: calc(100% - 32px);
}
#whomSertificate .whomSertificate__block__item__body__item:nth-child(even) {
  padding-left: 32px;
}
#whomSertificate .whomSertificate__block__item__body__item {
  width: calc((100% - 32px) / 2);
}
#whomSertificate .whomSertificate__block__item__body ul {
  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;
}
#whomSertificate .whomSertificate__block .text-regular {
  margin: 0;
  color: var(--neutral-900);
  position: relative;
  padding-left: 13px;
}
#whomSertificate .whomSertificate__block .text-regular::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--blue-600);
  border-radius: 5px;
  position: absolute;
  top: 8px;
  left: 0;
}
#whomSertificate .whomSertificate__block .text-small {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  color: var(--neutral-700);
}

#advantagesSertificate .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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
#advantagesSertificate h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#advantagesSertificate .advantagesSertificate__block {
  -webkit-box-flex: 3.6;
      -ms-flex: 3.6;
          flex: 3.6;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#advantagesSertificate .advantagesSertificate__block__item {
  background-color: #04375D;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 40px;
  width: calc((100% - 32px) / 2);
}
#advantagesSertificate .advantagesSertificate__block__item:nth-child(1) {
  background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_1.png");
  background-position: bottom right;
}
#advantagesSertificate .advantagesSertificate__block__item:nth-child(2) {
  background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_2.png");
  background-position: bottom left;
}
#advantagesSertificate .advantagesSertificate__block__item:nth-child(3) {
  background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_3.png");
  background-position: top right;
}
#advantagesSertificate .advantagesSertificate__block__item:nth-child(4) {
  background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_4.png");
  background-position: top left;
}

#tests h3 {
  margin-bottom: 48px;
}
#tests .container {
  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;
}
#tests .resources-dark__wrapper {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 48px 60px;
  border-radius: 40px;
  background-color: var(--neutral-200);
  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;
  z-index: 10;
}
#tests .resources-dark__block {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#tests .resources-dark__item {
  width: calc((100% - 64px) / 3);
  padding: 36px 32px;
  gap: 8px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  position: relative;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#tests .resources-dark__item .text-regular {
  color: var(--neutral-200);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#tests .resources-dark__item #btnLinkSmall {
  position: absolute;
  right: 20px;
  top: 18px;
}
#tests .resources-dark__item:hover {
  border-color: var(--blue-600);
  background-color: var(--blue-600);
}
#tests .resources-dark__item:hover #btnLinkSmall {
  background-color: #fff;
}
#tests .resources-dark__item:hover #btnLinkSmall svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
#tests .resources-dark__item:hover #btnLinkSmall svg path {
  fill: var(--blue-600);
}
#tests .resources-dark__item:hover .text-regular {
  color: #fff;
}
#tests .future-test__wrapper {
  margin-top: -40px;
  background-color: var(--neutral-50);
  padding: 90px 60px 74px 60px;
  border-radius: 0 0 40px 40px;
  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: 32px;
}
#tests .future-test__wrapper > .text-large {
  color: var(--neutral-800);
}
#tests .future-test__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}
#tests .future-test__item {
  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-sizing: border-box;
          box-sizing: border-box;
  padding: 36px 32px;
  border-radius: 16px 40px 16px 16px;
  background-color: var(--neutral-100);
  position: relative;
  width: calc((100% - 64px) / 3);
}
#tests .future-test__item .text-regular {
  color: var(--neutral-700);
}
#tests .future-test__item .text-xlarge {
  color: var(--neutral-800);
}
#tests .future-test__label {
  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: 12px;
  height: 34px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 10px;
  background-color: var(--neutral-600);
  color: #fff;
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  position: absolute;
  top: 18px;
  right: 20px;
}

#partners .widget__container {
  border-radius: 24px;
}
#partners h3.h3 {
  margin-bottom: 50px;
}

#roolsSertificate h3.h3 {
  margin-bottom: 0;
}
#roolsSertificate .container {
  max-width: calc(var(--container-width) - 64px);
  border-radius: 40px;
  background-color: var(--blue-900);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/rools_bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  padding: 60px 80px;
  gap: 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;
}
#roolsSertificate .submit-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 12px 34px;
  width: auto;
  height: 46px;
  margin-top: 8px;
}
#roolsSertificate .submit-btn p {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.02em;
}
#roolsSertificate .submit-btn svg {
  width: 16px;
  height: 16px;
}
#roolsSertificate .submit-btn:hover {
  background-color: var(--blue-500);
}
#roolsSertificate .submit-btn:active {
  background-color: var(--blue-700);
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

#feedBack {
  margin-top: 0;
  margin-bottom: 60px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  .sertification {
    gap: 80px;
  }
  #aboutSertification h1 {
    text-align: center;
    margin-bottom: 40px;
  }
  #aboutSertification .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
    padding: 0 40px;
    max-width: var(--container-width);
  }
  #aboutSertification .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;
    padding: 0;
  }
  #aboutSertification .container > div:first-child {
    padding-left: 0;
  }
  #aboutSertification .container .text-large {
    text-align: center;
  }
  #formats .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;
  }
  #formats .container .h2, #formats .container > .text-large {
    text-align: center;
  }
  #formats .formats__block {
    gap: 20px;
    padding: 40px 20px;
  }
  #formats .formats__block__item {
    width: calc((100% - 20px) / 2);
    height: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 40px 32px;
  }
  #stagesSertificate .container .h3, #stagesSertificate .container > .text-large {
    text-align: center;
  }
  #stagesSertificate .resources__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #stagesSertificate .resources__item {
    width: 100%;
  }
  #whomSertificate .h3 {
    text-align: center;
  }
  #whomSertificate .whomSertificate__block {
    -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;
  }
  #whomSertificate .whomSertificate__block__item {
    width: 100%;
  }
  #advantagesSertificate .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;
  }
  #advantagesSertificate .h3 {
    text-align: center;
    margin-bottom: 0;
  }
  #advantagesSertificate .advantagesSertificate__block {
    width: 100%;
    gap: 20px;
  }
  #tests h3 {
    text-align: center;
  }
  #tests .resources-dark__wrapper {
    padding: 48px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #tests .resources-dark__wrapper > .text-large {
    text-align: center;
  }
  #tests .resources-dark__item {
    width: calc((100% - 32px) / 2);
  }
  #tests .future-test__wrapper {
    padding: 88px 20px 48px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #tests .future-test__wrapper > .text-large {
    text-align: center;
  }
  #tests .future-test__item {
    width: calc((100% - 32px) / 2);
  }
  #partners .h3 {
    text-align: center;
  }
  #roolsSertificate .container {
    padding: 60px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #roolsSertificate .container .h3, #roolsSertificate .container .text-large {
    text-align: center;
  }
  #roolsSertificate .submit-btn {
    width: 100%;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #aboutSertification .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #aboutSertification .img_wrap {
    height: 202px;
    border-radius: 50px;
  }
  #formats .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #formats .formats__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #formats .formats__block__item {
    width: 100%;
  }
  #stagesSertificate .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #stagesSertificate .resources__item__number {
    position: absolute;
  }
  #stagesSertificate .resources__item__title {
    padding-left: 104px;
    min-height: 96px;
  }
  #whomSertificate .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #whomSertificate h6.h6 {
    min-height: 46px;
    height: auto;
    text-align: center;
  }
  #whomSertificate .whomSertificate__block__item {
    padding: 40px 20px;
  }
  #whomSertificate .whomSertificate__block__item__body {
    padding: 20px;
    -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;
  }
  #whomSertificate .whomSertificate__block__item__body__item:nth-child(1), #whomSertificate .whomSertificate__block__item__body__item:nth-child(2), #whomSertificate .whomSertificate__block__item__body__item:not(:last-child) {
    padding-bottom: 32px;
    border-bottom: 1px solid var(--neutral-100);
  }
  #whomSertificate .whomSertificate__block__item__body__item:nth-child(3), #whomSertificate .whomSertificate__block__item__body__item:nth-child(4) {
    padding-top: 0;
  }
  #whomSertificate .whomSertificate__block__item__body__item:nth-child(odd) {
    padding-right: 0;
  }
  #whomSertificate .whomSertificate__block__item__body__item:nth-child(odd):after {
    display: none;
  }
  #whomSertificate .whomSertificate__block__item__body__item:first-child::after {
    height: calc(100% - 32px);
  }
  #whomSertificate .whomSertificate__block__item__body__item:nth-child(even) {
    padding-left: 0;
  }
  #whomSertificate .whomSertificate__block__item__body__item {
    width: 100%;
  }
  #advantagesSertificate .container {
    max-width: 100%;
    padding: 0 20px;
  }
  #advantagesSertificate .advantagesSertificate__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #advantagesSertificate .advantagesSertificate__block__item {
    width: 100%;
  }
  #advantagesSertificate .advantagesSertificate__block__item:nth-child(1) {
    background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_1_mobile.png");
    background-position: bottom center;
    background-size: cover;
  }
  #advantagesSertificate .advantagesSertificate__block__item:nth-child(2) {
    background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_2_mobile.png");
    background-position: center;
    background-size: cover;
  }
  #advantagesSertificate .advantagesSertificate__block__item:nth-child(3) {
    background-image: url("/local/templates/astraAcademy/assets/img/png/sertification/adv_3_mobile.png");
    background-position: top center;
    background-size: cover;
  }
  #advantagesSertificate .advantagesSertificate__block__item:nth-child(4) {
    background-image: none;
  }
  #tests .container {
    max-width: 100%;
    padding: 0;
  }
  #tests .resources-dark__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #tests .resources-dark__item {
    width: 100%;
  }
  #tests .future-test__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #tests .future-test__item {
    width: 100%;
  }
  #roolsSertificate .container {
    padding: 60px 20px;
    max-width: calc(100% - 40px);
    background-image: url("/local/templates/astraAcademy/assets/img/svg/rools_bg_mobile.svg");
    background-position: center;
  }
  section.questions .container {
    padding: 0 20px;
    max-width: 100%;
  }
  section.questions .feedBack__form {
    padding: 80px 28px;
  }
  section.questions .feedBack__block {
    background-position: top 0 left 160px;
    background-size: 140%;
  }
  section.questions .feedBack__txt .text-large {
    text-align: center;
  }
  section.questions .form-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 10px;
  }
  section.questions .form-section {
    gap: 0;
  }
  section.questions .form-section .form-group {
    margin-bottom: 20px !important;
  }
}
.contacts {
  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;
}

#aboutContacts {
  margin-top: 0;
}
#aboutContacts h3 {
  margin-bottom: 40px;
}
#aboutContacts h3:last-child {
  font-weight: 400;
  margin-bottom: 30px;
}
#aboutContacts h4 {
  margin-bottom: 20px;
}
#aboutContacts .text-xlarge:first-of-type {
  margin-bottom: 16px;
}
#aboutContacts .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: 60px;
}
#aboutContacts .container p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#aboutContacts .container > div {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 0;
  width: calc((100% - 60px) / 2);
}
#aboutContacts .container > div:first-child {
  padding-left: 81px;
}
#aboutContacts .aboutContacts__department {
  margin-top: 60px;
}
#aboutContacts .aboutContacts__department a .text-xlarge {
  color: var(--blue-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#aboutContacts .aboutContacts__department a:hover .text-xlarge {
  color: var(--blue-500);
}
#aboutContacts .aboutContacts__map iframe {
  border-radius: 20px;
}

/* Для экранов меньше 768-1399px */
@media (max-width: 1399px) {
  #aboutContacts {
    margin-top: 0;
  }
  #aboutContacts h3 {
    text-align: center;
  }
  #aboutContacts h4 {
    text-align: center;
  }
  #aboutContacts .text-xlarge {
    text-align: center;
  }
  #aboutContacts .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 48px;
  }
  #aboutContacts .container p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  #aboutContacts .container > div {
    padding: 0;
    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;
  }
  #aboutContacts .container > div:first-child {
    padding-left: 0;
  }
  #aboutContacts .aboutContacts__department {
    margin-top: 48px;
  }
  #aboutContacts .aboutContacts__department a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #aboutContacts .aboutContacts__department a .text-xlarge {
    text-align: center;
  }
  #aboutContacts .aboutContacts__map iframe {
    border-radius: 20px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #aboutContacts .container {
    max-width: 100%;
    padding: 40px 20px 0 20px;
  }
  #aboutContacts .aboutContacts__map {
    width: 100%;
  }
  #aboutContacts .aboutContacts__map iframe {
    width: 100% !important;
    border-radius: 20px;
  }
}
.page__students,
.page__stipend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#bannerStudents {
  background-color: var(--neutral-200);
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/students_bottom.png"), url("/local/templates/astraAcademy/assets/img/png/students/students_figuras.png"), url("/local/templates/astraAcademy/assets/img/png/students/students_bg.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 277px, 1400px auto, cover;
  margin-top: 16px;
  height: 692px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#bannerStudents .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;
  padding-top: 152px;
}
#bannerStudents img {
  max-width: 1015px;
}
#bannerStudents .img__wrap {
  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;
  width: auto;
  position: relative;
}

#aboutStudents {
  background-color: #7CDAFE;
  margin-top: -1px;
  position: relative;
}
#aboutStudents .container.aboutStudents__details {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 125px;
  padding-left: 153px;
  padding-right: 119px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  top: -108px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#aboutStudents .aboutStudents__details__item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  -webkit-transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1), -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
}
#aboutStudents .aboutStudents__details__item h5.h5 {
  margin: 0;
  font-weight: 400;
}
#aboutStudents .aboutStudents__details__item:nth-child(1) {
  width: 326px;
  margin-right: 32px;
}
#aboutStudents .aboutStudents__details__item:nth-child(2) {
  width: 260px;
  margin-top: 51px;
}
#aboutStudents .aboutStudents__details__item:nth-child(3) {
  width: 260px;
  margin-top: 12px;
}
#aboutStudents .container:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 57px;
  padding: 77px 155px 0 155px;
}
#aboutStudents .container:last-child > div:first-child {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#aboutStudents .container:last-child > div:last-child {
  -webkit-box-flex: 1.44;
      -ms-flex: 1.44;
          flex: 1.44;
  padding-right: 62px;
}
#aboutStudents img {
  width: 424px;
  height: auto;
}
#aboutStudents h2.h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#aboutStudents.is-revealed .aboutStudents__details__item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
#aboutStudents.is-revealed .aboutStudents__details__item:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
#aboutStudents.is-revealed .aboutStudents__details__item:nth-child(2) {
  -webkit-transition-delay: 640ms;
          transition-delay: 640ms;
}
#aboutStudents.is-revealed .aboutStudents__details__item:nth-child(3) {
  -webkit-transition-delay: 980ms;
          transition-delay: 980ms;
}

#featuresStudents {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), -webkit-gradient(linear, left top, left bottom, from(#7CDAFE), to(#C0C6D6));
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), linear-gradient(180deg, #7CDAFE 0%, #C0C6D6 100%);
  background-repeat: no-repeat;
  background-position: top center, center;
  background-size: 698px auto, cover;
}
#featuresStudents .container {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_2.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 288px auto;
  padding: 102px 100px 132px 100px;
}
#featuresStudents .featuresStudents__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#featuresStudents .featuresStudents__block__item {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  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: 32px;
  gap: 32px;
  width: calc((100% - 32px) / 2);
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border-radius: 24px;
}
#featuresStudents .featuresStudents__block__item h3.h3 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
#featuresStudents .featuresStudents__block__item .text-regular {
  margin: 0;
}
#featuresStudents .featuresStudents__block__item__info {
  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;
}
#featuresStudents .featuresStudents__block__item .submit-btn {
  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: 12px;
  width: auto;
  height: 48px;
  padding: 12px 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #24A7D9;
}
#featuresStudents .featuresStudents__block__item .submit-btn p {
  font-weight: 400;
}
#featuresStudents .featuresStudents__block__item .submit-btn svg {
  width: 16px;
  height: 16px;
}
#featuresStudents .featuresStudents__block__item:hover .submit-btn {
  background-color: var(--blue-500);
}
#featuresStudents .featuresStudents__block__item:active .submit-btn {
  background-color: var(--blue-700);
}

#advantagesStudents {
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantagesContainer_bg.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 1920px auto;
  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;
  gap: 54px;
  background-position: top right;
  margin-top: -1px;
}
#advantagesStudents .container:first-child {
  max-width: calc(var(--container-width) - 200px);
  background-color: var(--neutral-900);
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/star.png"), url("/local/templates/astraAcademy/assets/img/png/students/plazma.png"), url("/local/templates/astraAcademy/assets/img/png/students/advantages_students_bg.png");
  background-repeat: no-repeat;
  background-position: top center, bottom right, center;
  background-size: 640px auto, 486px auto, cover;
  border-radius: 40px;
  padding: 60px 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;
  gap: 60px;
}
#advantagesStudents .container:first-child h2.h2 {
  padding-left: 28px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
}
#advantagesStudents .container:first-child .text-regular {
  margin: 0;
}
#advantagesStudents .container:last-child {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 582px auto;
  max-width: calc(var(--container-width) - 200px);
  padding: 106px 230px 186px 230px;
}
#advantagesStudents .advantagesStudents__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#advantagesStudents .advantagesStudents__block__item {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 36px 36px 48px;
  gap: 32px;
  width: calc((100% - 48px) / 3);
  background: rgba(47, 52, 65, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#advantagesStudents .advantagesStudents__block__item__info {
  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: 16px;
}
#advantagesStudents .joinUsStudents__block {
  width: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
}
#advantagesStudents .joinUsStudents__block__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: 60px;
}
#advantagesStudents .joinUsStudents__block__info h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}
#advantagesStudents .joinUsStudents__block__info ul {
  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: 45px;
  padding-left: 60px;
}
#advantagesStudents .joinUsStudents__block__info li {
  position: relative;
}
#advantagesStudents .joinUsStudents__block__info li::before {
  content: url("/local/templates/astraAcademy/assets/img/svg/check_blue.svg");
  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;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: -60px;
}
#advantagesStudents .joinUsStudents__block__tg {
  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;
  -webkit-box-flex: 1.1;
      -ms-flex: 1.1;
          flex: 1.1;
  -webkit-filter: drop-shadow(0px 4px 9.7px rgba(0, 0, 0, 0.15));
          filter: drop-shadow(0px 4px 9.7px rgba(0, 0, 0, 0.15));
}
#advantagesStudents .joinUsStudents__block__tg__header {
  width: 100%;
  background-color: #2BA3D7;
  border-radius: 40px 32px 0 0;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 23px;
}
#advantagesStudents .joinUsStudents__block__tg__header .text-regular {
  margin: 0;
  text-align: center;
}
#advantagesStudents .joinUsStudents__block__tg__header img {
  width: 66px;
  height: 66px;
}
#advantagesStudents .joinUsStudents__block__tg__body {
  width: 100%;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/pattern.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 20px 40px 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#advantagesStudents .joinUsStudents__block__tg__footer {
  background-color: #fff;
  border-radius: 0 0 32px 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;
  padding: 20px;
}
#advantagesStudents .joinUsStudents__block__tg .contact-btn {
  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;
  width: 100%;
  height: 56px;
  border-radius: 32px;
  padding: 16px 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #2BA3D7;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
#advantagesStudents .joinUsStudents__block__tg .contact-btn p {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
}
#advantagesStudents .joinUsStudents__block__tg .contact-btn svg {
  width: 24px;
  height: 24px;
}
#advantagesStudents .joinUsStudents__block__tg .contact-btn:hover {
  background-color: var(--blue-500);
}
#advantagesStudents .joinUsStudents__block__tg .contact-btn:active {
  background-color: var(--blue-700);
}
#advantagesStudents .joinUsStudents__block__tg .text-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: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 16px;
  background-color: #fff;
  border-radius: 0 12px 12px 12px;
  position: relative;
}
#advantagesStudents .joinUsStudents__block__tg .text-block::before {
  content: url("/local/templates/astraAcademy/assets/img/svg/corner.svg");
  width: 15px;
  height: 15px;
  position: absolute;
  top: -1px;
  left: -15px;
}
#advantagesStudents .joinUsStudents__block__tg .text-block .text-regular {
  margin: 0;
}
#advantagesStudents .joinUsStudents__block__tg .text-block .text-regular:first-child {
  color: var(--neutral-500);
}
#advantagesStudents .joinUsStudents__block__tg .text-block .text-regular:last-child {
  color: var(--neutral-100);
  -ms-flex-item-align: end;
      align-self: flex-end;
}
#advantagesStudents .submit-btn {
  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: 12px;
  width: auto;
  height: 48px;
  padding: 12px 26px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #24A7D9;
}
#advantagesStudents .submit-btn p {
  font-weight: 400;
}
#advantagesStudents .submit-btn svg {
  width: 16px;
  height: 16px;
}
#advantagesStudents .submit-btn:hover {
  background-color: var(--blue-500);
}
#advantagesStudents .submit-btn:active {
  background-color: var(--blue-700);
}

#feedbackStudents {
  width: 100vw;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/feedback-students.png"), url("/local/templates/astraAcademy/assets/img/png/students/page_bottom.png"), linear-gradient(to top, #C0C6D6, #C0C6D6 calc(100% - 50px), transparent calc(100% - 50px), transparent);
  background-position: bottom 327px center, bottom center, top center;
  background-repeat: no-repeat;
  background-size: auto 698px, auto 327px, cover;
  padding-bottom: 333px;
  margin-top: -51px;
}
#feedbackStudents .container {
  max-width: --container-width;
  margin: 0 auto;
  padding-bottom: 50px;
}
#feedbackStudents .feedback__viewport {
  max-width: calc(var(--container-width) - 200px);
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  height: 420px;
  position: relative;
}
#feedbackStudents .feedback__item {
  width: calc((100% - 40px) / 3);
  height: 420px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  background-color: var(--neutral-50);
  background-image: url("/local/templates/astraAcademy/assets/img/svg/revew.svg");
  background-repeat: no-repeat;
  background-position: top right;
  border-radius: 32px 72px 32px 32px;
  padding: 40px 32px;
  -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;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  position: relative;
  box-sizing: border-box;
}
#feedbackStudents .feedback__item__title {
  width: 100%;
}
#feedbackStudents .feedback__item__title h5.h5 {
  margin-bottom: 8px;
}
#feedbackStudents .feedback__item__title h5.h5:first-child {
  margin-bottom: 4px;
  text-transform: uppercase;
}
#feedbackStudents .feedback__item__title .text-small {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  color: var(--neutral-400);
  font-size: 12px;
  line-height: 18px;
}
#feedbackStudents .feedback__item__desc {
  width: 100%;
}
#feedbackStudents .feedback__item__desc > .text-regular {
  color: var(--neutral-800);
  display: -webkit-box;
  margin: 0;
}
#feedbackStudents .feedback__item__link {
  margin-top: 32px;
  cursor: pointer;
}
#feedbackStudents .feedback__item__link .text-regular {
  color: #24A7D9;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  margin: 0;
}
#feedbackStudents .feedback__item__link:hover .text-regular {
  color: var(--blue-700);
}
#feedbackStudents .feedback__item {
  scroll-snap-align: start;
}
#feedbackStudents .feedback__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-top: 40px;
  margin-bottom: 8px;
  padding-left: 68px;
}
#feedbackStudents .feedback__pagination {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  white-space: nowrap;
}
#feedbackStudents .feedback__pagination::-webkit-scrollbar {
  display: none;
}
#feedbackStudents .feedback__page {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: var(--neutral-700);
  padding: 4px 24px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.55;
  border-radius: 999px;
}
#feedbackStudents .feedback__page.is-active {
  opacity: 1;
  background: var(--neutral-400);
  color: #fff;
}
#feedbackStudents .feedback__arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  color: var(--neutral-700);
  font-size: 28px;
  line-height: 1;
  opacity: 0.55;
  padding: 4px 8px 6px 8px;
}
#feedbackStudents .feedback__page:hover,
#feedbackStudents .feedback__arrow:hover {
  opacity: 1;
}
#feedbackStudents h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 40px;
  margin-left: 100px;
}
#feedbackStudents .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
          transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
}

/* Астра-Стипендия */
.page__stipend #bannerStudents {
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/stipend_bottom.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 249px;
  margin-top: 16px;
  height: 249px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__stipend #aboutStipend {
  background-color: #C0C6D6;
  position: relative;
}
.page__stipend #aboutStipend .container {
  padding: 92px 82px 0 82px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page__stipend #aboutStipend .aboutStipend__img__mobile {
  display: none;
}
.page__stipend #aboutStipend .aboutStipend__details {
  width: 100%;
  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;
  gap: 72px;
}
.page__stipend #aboutStipend .aboutStipend__details__block {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  position: relative;
  min-height: 50px;
}
.page__stipend #aboutStipend .aboutStipend__details__item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  -webkit-transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1), -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
}
.page__stipend #aboutStipend .aboutStipend__details__item h5.h5 {
  margin: 0;
  font-weight: 400;
}
.page__stipend #aboutStipend .aboutStipend__details__item:nth-child(1) {
  width: 334px;
  top: -127px;
}
.page__stipend #aboutStipend .aboutStipend__details__item:nth-child(2) {
  width: 352px;
  top: 87px;
  margin-left: 135px;
}
.page__stipend #aboutStipend .aboutStipend__details__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__stipend #aboutStipend .aboutStipend__join {
  width: 100%;
  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;
  gap: 72px;
}
.page__stipend #aboutStipend h2.h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  margin-right: 32px;
}
.page__stipend #aboutStipend .img__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page__stipend #aboutStipend .img__wrap img {
  width: 560px;
  height: auto;
}
.page__stipend #aboutStipend .btn__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  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;
}
.page__stipend #aboutStipend .btn__wrap .submit-btn {
  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: 12px;
  width: auto;
  height: 60px;
  padding: 18px 172px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #24A7D9;
  margin-bottom: 20px;
  position: relative;
  border: none !important;
  outline: none !important;
}
.page__stipend #aboutStipend .btn__wrap .submit-btn::after {
  content: "";
  width: 122px;
  height: 141px;
  position: absolute;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/cursor.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 15px;
  right: -12px;
  pointer-events: none;
}
.page__stipend #aboutStipend .btn__wrap .submit-btn p {
  font-weight: 400;
}
.page__stipend #aboutStipend .btn__wrap .submit-btn svg {
  width: 16px;
  height: 16px;
}
.page__stipend #aboutStipend .btn__wrap .submit-btn:hover {
  background-color: var(--blue-500);
}
.page__stipend #aboutStipend .btn__wrap .submit-btn:active {
  background-color: var(--blue-700);
}
.page__stipend #aboutStipend.is-revealed .aboutStipend__details__item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.page__stipend #aboutStipend.is-revealed .aboutStipend__details__item:nth-child(1) {
  -webkit-transition-delay: 0ms;
          transition-delay: 0ms;
}
.page__stipend #aboutStipend.is-revealed .aboutStipend__details__item:nth-child(2) {
  -webkit-transition-delay: 320ms;
          transition-delay: 320ms;
}
.page__stipend #startStipend {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/blue_pattern.png"), url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), -webkit-gradient(linear, left bottom, left top, from(#C0C6D6), color-stop(28%, #C0C6D6), color-stop(28%, #FF85A1), to(#C0C6D6));
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/blue_pattern.png"), url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), linear-gradient(to top, #C0C6D6 0%, #C0C6D6 28%, #FF85A1 28%, #C0C6D6 100%);
  background-repeat: no-repeat;
  background-position: bottom center, bottom 74px center, center;
  background-size: auto 249px, 550px auto, cover;
}
.page__stipend #startStipend .container {
  padding: 113px 324px 352px 324px;
}
.page__stipend #startStipend .startStipend__item {
  width: 100%;
  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;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 32px 60px;
}
.page__stipend #startStipend .startStipend__item h5.h5 {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}
.page__stipend #advantagesStipend {
  background-color: #C0C6D6;
  margin-top: -1px;
}
.page__stipend #advantagesStipend .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;
  padding: 0 100px;
}
.page__stipend #advantagesStipend h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-top: -23px;
  margin-bottom: 60px;
}
.page__stipend #advantagesStipend .advantagesStipend__block {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: 32px;
  position: relative;
}
.page__stipend #advantagesStipend .advantagesStipend__block::after {
  content: "";
  width: 188px;
  height: 177px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/cube.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: 220px;
  left: 242px;
}
.page__stipend #advantagesStipend .advantagesStipend__item {
  background-color: #fff;
  border-radius: 24px;
  padding: 32px 32px 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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.page__stipend #advantagesStipend .advantagesStipend__item:nth-child(1), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(2), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}
.page__stipend #advantagesStipend .advantagesStipend__item:nth-child(4), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(5) {
  grid-column: span 3;
}
.page__stipend #advantagesStipend .advantagesStipend__item h3.h3 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block > div:first-of-type {
  padding-right: 24px;
  border-right: 1px solid var(--neutral-100);
}
.page__stipend #advantagesStipend .advantagesStipend__item__block > div:last-of-type {
  padding-left: 24px;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block h3.h3 {
  font-weight: 700;
  color: #4EBAE5;
  margin-bottom: 0;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block .text-regular {
  margin: 0;
}
.page__stipend #advantagesStipend .advantagesStipend__item__block .text-regular:first-of-type {
  color: #4EBAE5;
  margin-bottom: 8px;
}
.page__stipend #advantagesStipend .advantagesStipend__item .text-regular {
  margin: 0;
}
.page__stipend #stagesStipend {
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/stages_bg.png");
  background-repeat: no-repeat;
  background-size: 1330px auto;
  background-position: bottom center;
}
.page__stipend #stagesStipend .container {
  padding: 100px;
  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;
  gap: 100px;
}
.page__stipend #stagesStipend .stagesStipend__block {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px;
  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: 60px;
  background-color: var(--neutral-900);
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantages_students_bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 40px;
  position: relative;
}
.page__stipend #stagesStipend .stagesStipend__block:after {
  content: "";
  width: 521px;
  height: 521px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_stipend.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  right: -36px;
  top: -200px;
}
.page__stipend #stagesStipend .stagesStipend__block h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
}
.page__stipend #stagesStipend .stagesStipend__viewport {
  width: calc(100% + 120px);
  padding-left: 60px;
  margin-left: -60px;
  height: 203px;
  overflow: hidden;
  position: relative;
}
.page__stipend #stagesStipend .stagesStipend__viewport .swiper-slide {
  width: 501px;
  height: 203px;
}
.page__stipend #stagesStipend .stagesStipend__viewport .swiper-wrapper {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.page__stipend #stagesStipend .stagesStipend__track {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.page__stipend #stagesStipend .stagesStipend__track::-webkit-scrollbar {
  display: none;
}
.page__stipend #stagesStipend .stagesStipend__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  scroll-snap-align: start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 501px;
          flex: 0 0 501px;
  -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;
  height: 203px;
  padding: 36px;
  width: 501px;
  min-width: 501px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 32px;
  border-radius: 20px;
  background: rgba(47, 52, 65, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
}
.page__stipend #stagesStipend .stagesStipend__item:after {
  content: url("/local/templates/astraAcademy/assets/img/svg/arrow_slider.svg");
  width: 17px;
  height: 65px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -41px;
}
.page__stipend #stagesStipend .stagesStipend__item__header {
  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;
}
.page__stipend #stagesStipend .stagesStipend__item__header h4.h4 {
  font-weight: 400;
  margin-bottom: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(3.52%, #C0C6D6), to(#FF85A1));
  background: linear-gradient(90deg, #C0C6D6 3.52%, #FF85A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page__stipend #stagesStipend .stagesStipend__item__header .stage__date {
  height: 42px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 6px 16px;
  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: 40px;
  background-color: #FF85A1;
}
.page__stipend #stagesStipend .stagesStipend__item__header .stage__date h6.h6 {
  font-weight: 400;
  margin: 0;
}
.page__stipend #stagesStipend .stagesStipend__item__header h6.h6 {
  font-weight: 400;
  margin: 0;
}
.page__stipend #stagesStipend .stagesStipend__tail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max(0px, 100% - 501px);
          flex: 0 0 max(0px, 100% - 501px);
}
.page__stipend #stagesStipend .stagesStipend__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-left: 0;
  margin-top: -26px;
}
.page__stipend #stagesStipend .stagesDot {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  -webkit-transition: width 300ms ease, background 300ms ease;
  transition: width 300ms ease, background 300ms ease;
}
.page__stipend #stagesStipend .stagesDot:hover {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 8px rgba(255, 133, 161, 0.5);
          box-shadow: 0 0 8px rgba(255, 133, 161, 0.5);
}
.page__stipend #stagesStipend .stagesDot.is-active {
  width: 60px;
  background: #FF85A1;
}
.page__stipend #stagesStipend .stagesDot.is-active:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page__stipend #stagesStipend .results__block {
  width: calc(100% - 246px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
}
.page__stipend #stagesStipend .results__block__info {
  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;
}
.page__stipend #stagesStipend .results__block__info h3.h3 {
  color: var(--neutral-700);
  text-transform: uppercase;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  margin-bottom: 0;
}
.page__stipend #stagesStipend .results__block__info h1.h1 {
  color: var(--neutral-700);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 60px;
  line-height: 64px;
  margin-bottom: 40px;
}
.page__stipend #stagesStipend .results__block__img img {
  width: 523px;
  height: auto;
}
.page__stipend #stagesStipend .results__block .submit-btn {
  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: 12px;
  width: auto;
  height: 60px;
  padding: 18px 84px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #24A7D9;
  position: relative;
}
.page__stipend #stagesStipend .results__block .submit-btn p {
  font-weight: 400;
}
.page__stipend #stagesStipend .results__block .submit-btn svg {
  width: 16px;
  height: 16px;
}
.page__stipend #stagesStipend .results__block .submit-btn:hover {
  background-color: var(--blue-500);
}
.page__stipend #stagesStipend .results__block .submit-btn:active {
  background-color: var(--blue-700);
}
.page__stipend #proofsStipend {
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/proof_bg.png");
  background-repeat: no-repeat;
  background-position: bottom 110px center;
  background-size: 1022px auto;
}
.page__stipend #proofsStipend .container {
  padding: 0 100px;
  z-index: 2;
}
.page__stipend #proofsStipend .proofsStipend__block {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  grid-template-columns: minmax(505px, 1fr) minmax(505px, 1fr);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 32px;
}
.page__stipend #proofsStipend .proofsStipend__block h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
  z-index: 10;
}
.page__stipend #proofsStipend .proofsStipend__block__item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  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;
  padding: 32px 32px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  z-index: 2;
}
.page__stipend #proofsStipend .proofsStipend__block__item:first-child {
  max-width: 505px;
  position: relative;
}
.page__stipend #proofsStipend .proofsStipend__block__item:first-child:after {
  content: "";
  height: 89px;
  width: 77px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/Duck.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  top: -48px;
  left: -51px;
}
.page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2) {
  width: 662px;
  margin-left: -78px;
  position: relative;
}
.page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2):after {
  content: "Пруфы";
  height: 44px;
  width: 94px;
  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;
  background-color: var(--neutral-900);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  position: absolute;
  top: 150px;
  left: -29px;
  -webkit-transform: rotate(-11deg);
      -ms-transform: rotate(-11deg);
          transform: rotate(-11deg);
}
.page__stipend #proofsStipend .proofsStipend__block__item ul {
  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;
  margin: 0;
  padding: 0;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.page__stipend #proofsStipend .proofsStipend__block__item li {
  background-color: #fff;
  border-radius: 32px;
  padding: 12px 8px 12px 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: 40px;
  position: relative;
}
.page__stipend #proofsStipend .proofsStipend__block__item li .text-regular,
.page__stipend #proofsStipend .proofsStipend__block__item li .text-large {
  color: var(--neutral-700);
  margin: 0;
}
.page__stipend #proofsStipend .proofsStipend__block__item li::before {
  content: url("/local/templates/astraAcademy/assets/img/svg/check_blue.svg");
  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;
  background-color: #F2F4F7;
  width: 32px;
  min-width: 32px;
  height: 32px;
  border-radius: 20px;
  margin-right: 16px;
  position: absolute;
  left: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.page__stipend #proofsStipend .proofsStipend__block__item .proof-label {
  background-color: #F2F4F7;
  border-radius: 30px;
  padding: 10px 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;
}
.page__stipend #proofsStipend .proofsStipend__block__item h5.h5 {
  font-weight: 400;
  margin-bottom: 0;
}
.page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title {
  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;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title > div {
  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;
}
.page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title .text-large {
  color: var(--neutral-800);
}
.page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title h2.h2 br:first-child {
  display: none;
}
.page__stipend #feedbackStudents {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/feedback-stipend.png"), url("/local/templates/astraAcademy/assets/img/png/students/page_stipend_bottom.png"), linear-gradient(to top, #FF85A1 0px, #FF85A1 330px, #C0C6D6 100%);
  background-position: bottom 327px center, bottom center, top center;
  background-repeat: no-repeat;
  background-size: 1400px auto, auto 327px, cover;
  padding-top: 200px;
  margin-top: -100px;
}
.page__stipend #feedbackStudents .feedback__page.is-active {
  background: var(--neutral-800);
}

/* Астра-Паспорт */
.page__passport #bannerPassport {
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/passport_bottom.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: auto 249px;
  margin-top: 16px;
  height: 249px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.page__passport .levelsPassportCheckSertificate {
  padding: 60px 100px 332px 100px !important;
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/levels_img.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 634px;
}
.page__passport .levelsPassportCheckSertificate .container {
  max-width: calc(var(--container-width) - 200px) !important;
}
.page__passport #aboutPassport {
  background-color: #C0C6D6;
  position: relative;
}
.page__passport #aboutPassport .container {
  padding: 100px 54px 30px 54px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page__passport #aboutPassport .aboutPassport__details {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 72px;
  padding: 14px 0 47px 0;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_white.png");
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto 451px;
}
.page__passport #aboutPassport .aboutPassport__details__block {
  width: 100%;
  position: relative;
  min-height: 300px;
}
.page__passport #aboutPassport .aboutPassport__details__item {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  padding: 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;
  gap: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  will-change: transform, opacity;
  opacity: 0;
  -webkit-transform: translate3d(0, -80px, 0);
          transform: translate3d(0, -80px, 0);
  -webkit-transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  transition: opacity 1400ms ease, transform 3800ms cubic-bezier(0.08, 1, 0.18, 1), -webkit-transform 3800ms cubic-bezier(0.08, 1, 0.18, 1);
  width: 539px;
  top: 0;
  left: 0;
}
.page__passport #aboutPassport .aboutPassport__details__item h5.h5 {
  margin: 0;
  font-weight: 400;
}
.page__passport #aboutPassport .aboutPassport__details__item h5.h5:first-child {
  color: var(--blue-400);
}
.page__passport #aboutPassport .aboutPassport__details__title {
  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;
}
.page__passport #aboutPassport h2.h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  margin-right: 32px;
}
.page__passport #aboutPassport .img__wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.page__passport #aboutPassport .img__wrap img {
  width: 550px;
  height: auto;
}
.page__passport #aboutPassport.is-revealed .aboutPassport__details__item {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.page__passport #advantagesPassport {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg.png"), -webkit-gradient(linear, left bottom, left top, from(#61DB7B), to(#C0C6D6));
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg.png"), linear-gradient(0deg, #61DB7B 0%, #C0C6D6 100%);
  background-repeat: no-repeat;
  background-position: bottom 54px center, bottom center;
  background-size: 614px auto, cover;
  position: relative;
}
.page__passport #advantagesPassport .container {
  padding: 60px 160px 70px 160px;
}
.page__passport #advantagesPassport .advantagesPassport__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;
}
.page__passport #advantagesPassport .advantagesPassport__group {
  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;
}
.page__passport #advantagesPassport .advantagesPassport__group:first-child {
  width: 362px;
}
.page__passport #advantagesPassport .advantagesPassport__group:last-child {
  width: 388px;
  padding-top: 40px;
}
.page__passport #advantagesPassport .advantagesPassport__item {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  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: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 32px;
}
.page__passport #advantagesPassport .advantagesPassport__item h2.h2 {
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}
.page__passport #advantagesPassport .advantagesPassport__item .text-xlarge {
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}
.page__passport #advantagesPassport .advantagesPassport__decoration {
  width: 100vw;
  height: 249px;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/pink_pattern.png");
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 249px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -92px;
}
.page__passport #levelsPassport {
  margin-top: -1px;
  background-color: #C0C6D6;
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/levels_bg.png");
  background-repeat: no-repeat;
  background-position: top -138px center;
  background-size: auto 825px;
}
.page__passport #levelsPassport .container {
  padding: 60px 100px 60px 100px;
  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;
}
.page__passport #levelsPassport .container > h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
}
.page__passport #levelsPassport .levelsPassport__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: 54px;
  margin-bottom: 154px;
  height: 186px;
}
.page__passport #levelsPassport .levelsPassport__block__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #fff;
  border-radius: 24px;
  padding: 32px;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-transition: -webkit-transform ease 0.5s;
  transition: -webkit-transform ease 0.5s;
  transition: transform ease 0.5s;
  transition: transform ease 0.5s, -webkit-transform ease 0.5s;
  position: relative;
  cursor: pointer;
}
.page__passport #levelsPassport .levelsPassport__block__item h3.h3 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 0;
}
.page__passport #levelsPassport .levelsPassport__block__item .text-regular {
  margin: 0;
}
.page__passport #levelsPassport .levelsPassport__block__item:last-child {
  background: linear-gradient(112.29deg, rgba(255, 133, 161, 0.8) 5.57%, #7CDAFE 100%);
}
.page__passport #levelsPassport .levelsPassport__block__item:last-child h3.h3,
.page__passport #levelsPassport .levelsPassport__block__item:last-child .text-regular {
  color: #fff;
}
.page__passport #levelsPassport .levelsPassport__block__item:hover {
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          transform: scale(1.12);
}
.page__passport #levelsPassport .levelsPassport__block__item img {
  position: absolute;
  height: 94px;
  width: auto;
  bottom: 0;
  right: -14px;
}
.page__passport #levelsPassport .levelsPassport__levels {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px;
  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: 0;
  background-color: var(--neutral-900);
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green_rotate.png"), url("/local/templates/astraAcademy/assets/img/png/students/advantages_students_bg.png");
  background-repeat: no-repeat;
  background-position: top -132px right -214px, center;
  background-size: 600px auto, cover;
  border-radius: 40px;
  position: relative;
}
.page__passport #levelsPassport .levelsPassport__levels h2.h2 {
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 60px;
}
.page__passport #levelsPassport .levelsPassport__levels__viewport {
  width: calc(100% + 120px);
  padding-left: 60px;
  margin-left: -60px;
  height: 278px;
  overflow: hidden;
  position: relative;
}
.page__passport #levelsPassport .levelsPassport__levels__viewport .swiper-slide {
  width: 326px;
  height: 278px;
}
.page__passport #levelsPassport .levelsPassport__levels__track {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 68px;
  overflow: hidden;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.page__passport #levelsPassport .levelsPassport__levels__track::-webkit-scrollbar {
  display: none;
}
.page__passport #levelsPassport .levelsPassport__levels__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  scroll-snap-align: start;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 326px;
          flex: 0 0 326px;
  -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;
  height: 278px;
  padding: 36px 36px 48px 36px;
  width: 326px;
  min-width: 326px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 32px;
  border-radius: 20px;
  background: rgba(47, 52, 65, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
}
.page__passport #levelsPassport .levelsPassport__levels__item:after {
  content: url("/local/templates/astraAcademy/assets/img/svg/arrow_slider.svg");
  width: 17px;
  height: 65px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -41px;
}
.page__passport #levelsPassport .levelsPassport__levels__item h3.h3 {
  font-weight: 400;
  margin-bottom: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(3.52%, #C0C6D6), to(#FF85A1));
  background: linear-gradient(90deg, #C0C6D6 3.52%, #FF85A1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page__passport #levelsPassport .levelsPassport__levels__item h6.h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  margin: 0;
}
.page__passport #levelsPassport .stagesStipend__tail {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 max(0px, 100% - 501px);
          flex: 0 0 max(0px, 100% - 501px);
}
.page__passport #levelsPassport .levelsPassport__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding-left: 0;
  margin-top: 32px;
}
.page__passport #levelsPassport .levelsDot {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  -webkit-transition: width 300ms ease, background 300ms ease;
  transition: width 300ms ease, background 300ms ease;
}
.page__passport #levelsPassport .levelsDot:hover {
  -webkit-transform: scale(1.4);
      -ms-transform: scale(1.4);
          transform: scale(1.4);
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0 0 8px rgba(255, 133, 161, 0.5);
          box-shadow: 0 0 8px rgba(255, 133, 161, 0.5);
}
.page__passport #levelsPassport .levelsDot.is-active {
  width: 60px;
  background: #61DB7B;
}
.page__passport #levelsPassport .levelsDot.is-active:hover {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.page__passport #bottomPassport {
  background-image: url("/local/templates/astraAcademy/assets/img/png/students/page_bottom.png"), linear-gradient(to top, #C0C6D6, #C0C6D6 calc(100% - 80px), transparent calc(100% - 80px), transparent);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: auto 327px, cover;
  margin-top: -80px;
  height: 327px;
}

/* Для экранов 1200-1399px */
@media (max-width: 1399px) {
  #aboutStudents .container.aboutStudents__details {
    padding-left: 100px;
    padding-right: 60px;
    top: -140px;
  }
  #feedbackStudents .feedback__viewport {
    max-width: calc(var(--container-width) - 60px);
    height: 450px;
  }
  #feedbackStudents .feedback__item {
    height: 450px;
  }
  #feedbackStudents h2.h2 {
    margin-left: 0;
  }
  #advantagesStudents .container:last-child {
    max-width: calc(var(--container-width) - 240px);
    padding: 60px 110px 120px 110px;
    background-position: top -50px right -90px;
    background-image: none;
  }
  #advantagesStudents .joinUsStudents__block {
    position: relative;
  }
  #advantagesStudents .joinUsStudents__block:after {
    content: "";
    width: 582px;
    height: 474px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: 116px;
    right: -240px;
  }
  #advantagesStudents .joinUsStudents__block__tg {
    z-index: 10;
  }
  /* Астра-Стипендия */
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(1) {
    width: 334px;
    top: -147px;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(2) {
    width: 352px;
    top: 74px;
    margin-left: 115px;
  }
  .page__stipend #aboutStipend .btn__wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn {
    padding: 18px 140px;
  }
  .page__stipend #startStipend .container {
    padding: 60px 160px 352px 160px;
  }
  .page__stipend #advantagesStipend .advantagesStipend__block {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 20px;
  }
  .page__stipend #advantagesStipend .advantagesStipend__block::after {
    content: "";
    width: 188px;
    height: 177px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/cube.png");
    position: absolute;
    top: 390px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .page__stipend #advantagesStipend .advantagesStipend__item {
    padding: 32px 20px 40px 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(1), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(2), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(3) {
    grid-column: span 2;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(1) {
    grid-row: span 4;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(2) {
    grid-row: span 6;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(3) {
    grid-row: span 5;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(4) {
    grid-column: span 2;
    grid-row: span 3;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(5) {
    grid-column: 5/7;
    grid-row: span 3;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item h3.h3 {
    text-align: center;
    font-size: 18px;
    line-height: 130%;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item__block > div {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item__block > div:first-of-type {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: none;
    border-bottom: 1px solid var(--neutral-100);
  }
  .page__stipend #advantagesStipend .advantagesStipend__item__block > div:last-of-type {
    padding-left: 0;
    padding-top: 16px;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item__block h3.h3 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 42px;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item .text-regular {
    text-align: center;
  }
  .page__stipend #stagesStipend .stagesStipend__block {
    overflow: hidden;
  }
  .page__stipend #stagesStipend .stagesStipend__block:after {
    right: -272px;
    top: -200px;
  }
  .page__stipend #stagesStipend .results__block {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page__stipend #stagesStipend .results__block__img img {
    width: 420px;
    height: auto;
  }
  .page__stipend #proofsStipend .proofsStipend__block {
    grid-template-columns: repeat(2, 1fr);
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:first-child {
    max-width: 100%;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2) {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2):after {
    top: 180px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item li {
    gap: 16px;
  }
  .page__stipend #feedbackStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feedback-stipend_tablet.png"), url("/local/templates/astraAcademy/assets/img/png/students/page_stipend_bottom.png"), linear-gradient(to top, #FF85A1 0px, #FF85A1 330px, #C0C6D6 100%);
    background-size: 880px auto, auto 327px, cover;
  }
  .page__passport #levelsPassport {
    margin-top: -1px;
  }
  .page__passport #levelsPassport .levelsPassport__block {
    gap: 30px;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page__passport #levelsPassport .levelsPassport__block__item {
    width: calc((100% - 60px) / 3);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-positive: 1;
        flex-grow: 1;
    padding: 32px 24px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item img {
    bottom: -40px;
    right: -18px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
}
/* Для экранов 1025-1199px */
@media (max-width: 1199px) {
  #bannerStudents {
    margin-top: 0;
  }
  #aboutStudents .container.aboutStudents__details {
    padding-left: 40px;
    padding-right: 40px;
    top: -210px;
  }
  #aboutStudents .container.aboutStudents__details {
    gap: 60px;
  }
  #advantagesStudents .container:first-child {
    background-color: var(--neutral-900);
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/star_tablet.png"), url("/local/templates/astraAcademy/assets/img/png/students/plazma_tablet.png");
    background-repeat: no-repeat;
    background-position: top -60px right -100px, bottom 120px right;
    background-size: 274px auto, 444px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #advantagesStudents .container:first-child h2.h2 {
    text-align: center;
    padding-left: 0;
  }
  #advantagesStudents .container:first-child h2.h2 br {
    display: none;
  }
  #advantagesStudents .container:first-child h5.h5 {
    text-align: center;
  }
  #advantagesStudents .container:first-child .text-regular {
    text-align: center;
  }
  #advantagesStudents .container:last-child {
    max-width: calc(var(--container-width) - 240px);
    padding: 60px 20px 120px 20px;
  }
  #advantagesStudents .advantagesStudents__block {
    -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;
  }
  #advantagesStudents .advantagesStudents__block__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 36px 20px 48px 20px;
    width: 100%;
  }
  #advantagesStudents .advantagesStudents__block__item__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #advantagesStudents .advantagesStudents__block__item .submit-btn {
    width: 50%;
  }
  #feedbackStudents .feedback__item {
    width: calc((100% - 20px) / 2);
    min-width: calc((100% - 20px) / 2);
    height: 420px;
  }
  #feedbackStudents .feedback__viewport {
    max-width: calc(var(--container-width) - 100px);
    height: 420px;
  }
  #feedbackStudents h2.h2 {
    margin-left: 20px;
  }
  .page__stipend #bannerStudents {
    margin-top: 0;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item h5.h5 {
    text-align: center;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(1) {
    width: 334px;
    top: -200px;
    right: 0;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(2) {
    width: 334px;
    top: -10px;
    right: 0;
    margin-left: 0;
  }
  .page__stipend #aboutStipend .btn__wrap {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn {
    padding: 18px 100px;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn::after {
    right: -30px;
  }
  .page__stipend #proofsStipend .proofsStipend__block {
    grid-template-rows: span(4, 1fr);
    grid-template-columns: 1fr;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:first-child {
    max-width: 100%;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:first-child:after {
    left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2) {
    width: auto;
    margin-left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2):after {
    top: 108px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title h2.h2 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title > div {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .page__passport #bannerPassport {
    margin-top: 0;
  }
  .page__passport #aboutPassport .container {
    padding-left: 40px;
    padding-right: 40px;
    gap: 0;
  }
  .page__passport #aboutPassport .img__wrap {
    -webkit-box-flex: 1.2;
        -ms-flex: 1.2;
            flex: 1.2;
  }
  .page__passport #aboutPassport .aboutPassport__details {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background-position: bottom left;
  }
  .page__passport #aboutPassport .aboutPassport__details__item {
    width: 420px;
    left: -20px;
  }
  .page__passport #aboutPassport .aboutPassport__details__item h5.h5 {
    text-align: center;
  }
  .page__passport #advantagesPassport .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page__passport #levelsPassport .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  .page__passport #levelsPassport .levelsPassport__block {
    gap: 20px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item {
    padding: 20px 20px 70px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc((100% - 40px) / 3);
    cursor: default;
    min-height: 240px;
    overflow: hidden;
  }
  .page__passport #levelsPassport .levelsPassport__block__item h3.h3 {
    font-size: 20px;
    line-height: 42px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item:hover {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .page__passport #levelsPassport .levelsPassport__block__item img {
    bottom: -25px;
    right: -20px;
  }
}
/* Для экранов 992-1024px */
@media (max-width: 1024px) {
  #bannerStudents {
    background-size: auto 203px, 1024px auto, cover;
    height: 500px;
  }
  #bannerStudents .container {
    padding-top: 122px;
    padding-left: 24px;
    padding-right: 24px;
  }
  #bannerStudents img {
    max-width: 617px;
  }
  #aboutStudents .container.aboutStudents__details {
    width: 100%;
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    top: -80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #aboutStudents .aboutStudents__details__item {
    padding: 20px;
    min-height: 130px;
  }
  #aboutStudents .aboutStudents__details__item h5.h5 {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(1) {
    width: calc((100% - 40px) / 3);
    margin-right: 0;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(2) {
    width: calc((100% - 40px) / 3);
    margin-top: 0;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(3) {
    width: calc((100% - 40px) / 3);
    margin-top: 0;
  }
  #aboutStudents .container:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    padding: 40px 40px 0 40px;
  }
  #aboutStudents .container:last-child > div:first-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  #aboutStudents .container:last-child > div:last-child {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    padding-right: 0;
    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;
    padding: 0 60px;
  }
  #aboutStudents h2.h2,
  #aboutStudents .text-large {
    text-align: center;
  }
  #featuresStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_2.png"), url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), -webkit-gradient(linear, left top, left bottom, from(#7CDAFE), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_2.png"), url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), linear-gradient(180deg, #7CDAFE 0%, #C0C6D6 100%);
    background-repeat: no-repeat;
    background-position: top 20px right, top 80px center, center;
    background-size: 168px auto, 445px auto, cover;
  }
  #featuresStudents .container {
    background-image: none;
    padding: 100px 20px 60px 20px;
  }
  #featuresStudents .featuresStudents__block {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    gap: 20px;
  }
  #featuresStudents .featuresStudents__block__item {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #featuresStudents .featuresStudents__block__item h3.h3 {
    text-align: center;
  }
  #featuresStudents .featuresStudents__block__item .text-regular {
    text-align: center;
  }
  #featuresStudents .featuresStudents__block__item__info {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #featuresStudents .featuresStudents__block__item .submit-btn {
    width: 100%;
  }
  #advantagesStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantagesContainer_bg.png");
    background-position: bottom left;
    background-repeat: no-repeat;
    gap: 60px;
  }
  #advantagesStudents .container:first-child {
    max-width: calc(var(--container-width) - 40px);
    padding: 60px 20px;
  }
  #advantagesStudents .container:last-child {
    max-width: calc(var(--container-width) - 240px);
    padding: 60px 180px 120px 180px;
  }
  #advantagesStudents .joinUsStudents__block {
    -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;
  }
  #advantagesStudents .joinUsStudents__block__info {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  #advantagesStudents .joinUsStudents__block__info h2.h2 {
    text-align: center;
  }
  #advantagesStudents .joinUsStudents__block__tg {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  #feedbackStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feedback-students_tablet.png"), url("/local/templates/astraAcademy/assets/img/png/students/page_bottom.png"), linear-gradient(to top, #C0C6D6, #C0C6D6 calc(100% - 50px), transparent calc(100% - 50px), transparent);
    background-position: bottom 327px center, bottom center, top center;
    background-size: auto 758px, auto 327px, cover;
    margin-top: -51px;
  }
  #feedbackStudents .feedback__nav {
    padding-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  /* Астра-Стипендия */
  .page__stipend #bannerStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/stipend_bottom_tablet.png");
    background-size: auto 193px;
    height: 193px;
  }
  .page__stipend #aboutStipend .container {
    width: 100%;
    padding: 40px 20px 0 20px;
    gap: 40px;
  }
  .page__stipend #aboutStipend .aboutStipend__img__mobile {
    display: block;
  }
  .page__stipend #aboutStipend .aboutStipend__img__desktop {
    display: none;
  }
  .page__stipend #aboutStipend .aboutStipend__details {
    -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;
    gap: 80px;
  }
  .page__stipend #aboutStipend .aboutStipend__details__block {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    min-height: 166px;
    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: 20px;
  }
  .page__stipend #aboutStipend .aboutStipend__details__block:after {
    content: "";
    width: 130px;
    height: 112px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/lego.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -82px;
    right: -44px;
    z-index: 10;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item {
    position: relative;
    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;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item h5.h5 {
    text-align: center;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(1) {
    width: calc((100% - 20px) / 2);
    top: auto;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(2) {
    width: calc((100% - 20px) / 2);
    top: auto;
    margin-left: 0;
  }
  .page__stipend #aboutStipend .aboutStipend__details__title {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
  }
  .page__stipend #aboutStipend .aboutStipend__join {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .page__stipend #aboutStipend h2.h2 {
    margin-right: 0;
  }
  .page__stipend #aboutStipend .img__wrap {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .page__stipend #aboutStipend .img__wrap img {
    width: 514px;
  }
  .page__stipend #aboutStipend .btn__wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn {
    width: 100%;
    margin-bottom: 0;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn::after {
    display: none;
  }
  .page__stipend #startStipend {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/blue_pattern.png"), url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), -webkit-gradient(linear, left bottom, left top, from(#C0C6D6), color-stop(28%, #C0C6D6), color-stop(28%, #FF85A1), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/blue_pattern.png"), url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), linear-gradient(to top, #C0C6D6 0%, #C0C6D6 28%, #FF85A1 28%, #C0C6D6 100%);
    background-position: bottom center, bottom 74px center, center;
    background-size: auto 249px, 413px auto, cover;
  }
  .page__stipend #startStipend .container {
    width: 100%;
    padding: 40px 20px 352px 20px;
  }
  .page__stipend #advantagesStipend .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;
    width: 100%;
    padding: 0 20px;
  }
  .page__stipend #advantagesStipend h2.h2 {
    text-align: center;
  }
  .page__stipend #stagesStipend {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/stages_bg_tablet.png");
    background-size: 1024px auto;
    background-position: bottom center;
  }
  .page__stipend #stagesStipend .container {
    width: 100%;
    padding: 100px 20px;
    gap: 60px;
  }
  .page__stipend #stagesStipend .results__block {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 40px;
  }
  .page__stipend #stagesStipend .results__block__info {
    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;
  }
  .page__stipend #stagesStipend .results__block__img img {
    width: 328px;
    height: auto;
  }
  .page__stipend #proofsStipend .container {
    width: 100%;
    padding: 0 20px;
  }
  .page__stipend #feedbackStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/page_stipend_bottom.png"), linear-gradient(to top, #FF85A1 0px, #FF85A1 330px, #C0C6D6 100%);
    background-position: bottom center, top center;
    background-repeat: no-repeat;
    background-size: auto 327px, cover;
  }
  /* Астра-Паспорт */
  .page__passport #bannerPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/passport_bottom_tablet.png");
    background-size: auto 193px;
    height: 193px;
  }
  .page__passport #aboutPassport .container {
    padding: 40px 40px 120px 40px;
    gap: 0;
  }
  .page__passport #aboutPassport .aboutPassport__details {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 0 47px 0;
    background-image: none;
  }
  .page__passport #aboutPassport .aboutPassport__details__block {
    padding-right: 85px;
    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;
  }
  .page__passport #aboutPassport .aboutPassport__details__item {
    width: 360px;
    top: auto;
    left: auto;
  }
  .page__passport #aboutPassport .aboutPassport__details__item h5.h5:last-child {
    font-size: 20px;
    line-height: 30px;
  }
  .page__passport #aboutPassport .aboutPassport__details__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .page__passport #aboutPassport h2.h2 {
    margin-right: 0;
  }
  .page__passport #aboutPassport .img__wrap {
    position: absolute;
    top: 104px;
    left: 50%;
    -webkit-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
            transform: translateX(-400px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .page__passport #aboutPassport .img__wrap img {
    min-width: 550px;
  }
  .page__passport #advantagesPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg_tablet.png"), -webkit-gradient(linear, left bottom, left top, from(#61DB7B), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg_tablet.png"), linear-gradient(0deg, #61DB7B 0%, #C0C6D6 100%);
    background-position: bottom center, bottom center;
    background-size: 1122px auto, cover;
  }
  .page__passport #advantagesPassport .container {
    padding: 60px 20px 70px 20px;
  }
  .page__passport #advantagesPassport .advantagesPassport__block {
    -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;
    gap: 20px;
  }
  .page__passport #advantagesPassport .advantagesPassport__group {
    -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: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page__passport #advantagesPassport .advantagesPassport__group:first-child {
    width: 100%;
  }
  .page__passport #advantagesPassport .advantagesPassport__group:first-child .advantagesPassport__item {
    width: calc((100% - 20px) / 2);
  }
  .page__passport #advantagesPassport .advantagesPassport__group:last-child {
    width: 100%;
    padding-top: 0;
  }
  .page__passport #advantagesPassport .advantagesPassport__group:last-child .advantagesPassport__item {
    width: calc((100% - 40px) / 3);
  }
  .page__passport #advantagesPassport .advantagesPassport__item {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex: 1;
        flex: 1;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 24px;
  }
  .page__passport #advantagesPassport .advantagesPassport__item h2.h2 {
    text-align: center;
  }
  .page__passport #advantagesPassport .advantagesPassport__item .text-xlarge {
    text-align: center;
  }
  .page__passport #advantagesPassport .advantagesPassport__decoration {
    display: none;
  }
  .page__passport #levelsPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/levels_palm.png"), url("/local/templates/astraAcademy/assets/img/png/students/levels_img.png"), url("/local/templates/astraAcademy/assets/img/png/students/levels_bg_tablet.png");
    background-position: bottom center, bottom center, top -92px center;
    background-size: auto 412px, auto 444px, auto 775px;
  }
  .page__passport #levelsPassport .container {
    padding: 60px 20px 260px 20px;
  }
  .page__passport #levelsPassport .levelsPassport__levels {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green_rotate.png"), url("/local/templates/astraAcademy/assets/img/png/students/advantages_students_bg.png");
    background-position: top -60px right -40px, center;
    background-size: 360px auto, cover;
  }
}
/* Для экранов 768-991px */
@media (max-width: 991px) {
  #advantagesStudents .container:last-child {
    max-width: 404px;
    padding: 60px 20px 120px 20px;
  }
  #feedbackStudents .feedback__item {
    height: 460px;
  }
  #feedbackStudents .feedback__viewport {
    max-width: calc(var(--container-width) - 100px);
    height: 460px;
  }
  #feedbackStudents h2.h2 {
    margin-left: 20px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2):after {
    top: 150px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  #bannerStudents {
    background-color: var(--neutral-200);
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/students_bottom_mobile.png"), url("/local/templates/astraAcademy/assets/img/png/students/students_figuras_mobile.png"), url("/local/templates/astraAcademy/assets/img/png/students/students_bg_mobile.png");
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: auto 193px, 768px auto, cover;
    height: 548px;
  }
  #bannerStudents .container {
    max-width: 100%;
    padding-top: 140px;
    padding-left: 26px;
    padding-right: 26px;
  }
  #bannerStudents img {
    width: 100%;
    max-width: 617px;
  }
  #aboutStudents .container.aboutStudents__details {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: -80px;
  }
  #aboutStudents .aboutStudents__details__item {
    padding: 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;
  }
  #aboutStudents .aboutStudents__details__item h5.h5 {
    font-size: 24px;
    line-height: 34px;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(1) {
    width: 100%;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(2) {
    width: 100%;
  }
  #aboutStudents .aboutStudents__details__item:nth-child(3) {
    width: 100%;
  }
  #aboutStudents .container:last-child {
    max-width: 100%;
    gap: 30px;
    padding: 400px 20px 0 20px;
  }
  #aboutStudents .container:last-child > div:first-child img {
    width: 400px;
  }
  #aboutStudents .container:last-child > div:last-child {
    padding: 0 20px;
  }
  #featuresStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_2.png"), url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), -webkit-gradient(linear, left top, left bottom, from(#7CDAFE), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/feature_2.png"), url("/local/templates/astraAcademy/assets/img/png/students/feature_1.png"), linear-gradient(180deg, #7CDAFE 0%, #C0C6D6 100%);
    background-repeat: no-repeat;
    background-position: top 50px right -24px, center center, center;
    background-size: 168px auto, 400px auto, cover;
  }
  #featuresStudents .container {
    max-width: 100%;
  }
  #featuresStudents .featuresStudents__block {
    -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;
    gap: 20px;
  }
  #featuresStudents .featuresStudents__block__item {
    width: 100%;
  }
  #advantagesStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantagesContainer_bg.png");
    background-position: bottom 120px left -120px;
  }
  #advantagesStudents .container:first-child {
    background-position: top -60px right -100px, bottom 120px right -80px;
    max-width: calc(100% - 40px);
  }
  #advantagesStudents .container:last-child {
    width: 100%;
  }
  #advantagesStudents .advantagesStudents__block__item .submit-btn {
    width: 100%;
  }
  #advantagesStudents .joinUsStudents__block:after {
    right: auto;
    left: center;
    -webkit-transform: translateX(120px);
        -ms-transform: translateX(120px);
            transform: translateX(120px);
  }
  #feedbackStudents h2.h2 {
    margin: 0;
    padding-left: 0;
  }
  #feedbackStudents {
    background-size: auto 698px, auto 327px, cover;
  }
  #feedbackStudents .container {
    max-width: calc(100% - 40px);
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-bottom: 50px;
    padding-right: 20px;
    padding-left: 20px;
  }
  #feedbackStudents .feedback__viewport {
    max-width: calc(100% - 40px);
    margin: 0 auto;
    width: 100%;
    height: 460px;
  }
  /* Астра-Стипендия */
  .page__stipend #bannerStudents {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/stipend_bottom_mobile.png");
  }
  .page__stipend #aboutStipend .container {
    max-width: 100%;
  }
  .page__stipend #aboutStipend .aboutStipend__details__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page__stipend #aboutStipend .aboutStipend__details__block:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(1) {
    width: 100%;
  }
  .page__stipend #aboutStipend .aboutStipend__details__item:nth-child(2) {
    width: 100%;
  }
  .page__stipend #aboutStipend .aboutStipend__join {
    gap: 40px;
  }
  .page__stipend #aboutStipend .btn__wrap {
    width: 100%;
  }
  .page__stipend #aboutStipend .btn__wrap .submit-btn {
    padding: 18px 40px;
  }
  .page__stipend #startStipend {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), -webkit-gradient(linear, left bottom, left top, from(#C0C6D6), color-stop(14%, #C0C6D6), color-stop(14%, #FF85A1), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green.png"), linear-gradient(to top, #C0C6D6 0%, #C0C6D6 14%, #FF85A1 14%, #C0C6D6 100%);
    background-position: bottom 40px center, center;
    background-size: 370px auto, cover;
  }
  .page__stipend #startStipend .container {
    max-width: 100%;
    padding: 80px 20px 150px 20px;
  }
  .page__stipend #startStipend .startStipend__item {
    padding: 32px;
  }
  .page__stipend #startStipend h5.h5 {
    font-size: 22px;
    line-height: 30px;
  }
  .page__stipend #advantagesStipend {
    padding-bottom: 1px;
  }
  .page__stipend #advantagesStipend .container {
    max-width: 100%;
  }
  .page__stipend #advantagesStipend .advantagesStipend__block {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: auto;
  }
  .page__stipend #advantagesStipend .advantagesStipend__block::after {
    display: none;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(1), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(2), .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(3) {
    grid-column: span 1;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(1) {
    grid-row: span 1;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(2) {
    grid-row: span 1;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(3) {
    grid-row: span 1;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .page__stipend #advantagesStipend .advantagesStipend__item:nth-child(5) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .page__stipend #stagesStipend {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/stages_bg_mobile.png");
    background-size: 804px auto;
    background-position: bottom center;
    margin-top: -1px;
  }
  .page__stipend #stagesStipend .container {
    max-width: 100%;
  }
  .page__stipend #stagesStipend .stagesStipend__block {
    padding: 60px 20px;
  }
  .page__stipend #stagesStipend .stagesStipend__block:after {
    right: -424px;
    top: -170px;
  }
  .page__stipend #stagesStipend .stagesStipend__viewport .swiper-slide {
    width: 268px;
    height: 250px;
  }
  .page__stipend #stagesStipend .stagesStipend__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 268px;
            flex: 0 0 268px;
    min-width: 268px;
    padding: 36px 24px;
  }
  .page__stipend #stagesStipend .results__block {
    -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;
  }
  .page__stipend #stagesStipend .results__block h3.h3,
  .page__stipend #stagesStipend .results__block h1.h1 {
    text-align: center;
  }
  .page__stipend #stagesStipend .results__block__info {
    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;
  }
  .page__stipend #stagesStipend .results__block__img img {
    width: 390px;
    height: auto;
  }
  .page__stipend #proofsStipend {
    margin-top: -1px;
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/proof_bg_mobile.png");
    background-position: top 210px center;
    background-size: 454px auto;
  }
  .page__stipend #proofsStipend .container {
    max-width: 100%;
  }
  .page__stipend #proofsStipend .proofsStipend__block {
    width: 100%;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item {
    width: 100%;
    max-width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 32px 20px;
    gap: 20px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:first-child {
    max-width: 100%;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:first-child:after {
    left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2) {
    width: 100%;
    margin-left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item:nth-of-type(2)::after {
    display: none;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item h5.h5 {
    font-size: 20px;
    line-height: 30px;
    text-align: center;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title {
    -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;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title h2.h2 {
    text-align: center;
    padding-left: 0;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title h2.h2 br:first-child {
    display: inline;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title h2.h2 br:last-child {
    display: none;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title .text-large {
    text-align: center;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item.proofsStipend__title:after {
    left: 50%;
    -webkit-transform: translateX(-128px);
        -ms-transform: translateX(-128px);
            transform: translateX(-128px);
  }
  .page__stipend #proofsStipend .proofsStipend__block__item li .text-regular {
    font-size: 12px;
    line-height: 18px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item li .text-large {
    font-size: 12px;
    line-height: 18px;
  }
  .page__stipend #proofsStipend .proofsStipend__block__item li {
    gap: 12px;
  }
  /* Астра-Паспорт */
  .page__passport #bannerPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/passport_bottom_mobile.png");
  }
  .page__passport #aboutPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_white.png");
    background-position: top 110px center;
    background-repeat: no-repeat;
    background-size: auto 451px;
  }
  .page__passport #aboutPassport .container {
    max-width: 100%;
    padding: 40px 40px 0 40px;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .page__passport #aboutPassport .aboutPassport__details {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 0;
  }
  .page__passport #aboutPassport .aboutPassport__details__block {
    padding-right: 0;
  }
  .page__passport #aboutPassport .aboutPassport__details__item {
    width: 100%;
  }
  .page__passport #aboutPassport h2.h2,
  .page__passport #aboutPassport .text-large {
    text-align: center;
  }
  .page__passport #aboutPassport .img__wrap {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .page__passport #advantagesPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg_mobile.png"), -webkit-gradient(linear, left bottom, left top, from(#61DB7B), to(#C0C6D6));
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/advantage_passport_bg_mobile.png"), linear-gradient(0deg, #61DB7B 0%, #C0C6D6 100%);
    background-size: 776px auto, cover;
  }
  .page__passport #advantagesPassport .container {
    max-width: 100%;
    padding: 30px 20px 60px 20px;
  }
  .page__passport #advantagesPassport .advantagesPassport__group {
    -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;
  }
  .page__passport #advantagesPassport .advantagesPassport__group:first-child .advantagesPassport__item {
    width: 100%;
  }
  .page__passport #advantagesPassport .advantagesPassport__group:last-child .advantagesPassport__item {
    width: 100%;
  }
  .page__passport #advantagesPassport .advantagesPassport__item {
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    -ms-flex: auto;
        flex: auto;
    width: 100%;
  }
  .page__passport #levelsPassport {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/levels_img.png"), url("/local/templates/astraAcademy/assets/img/png/students/levels_bg.png");
    background-position: bottom right 30%, top -160px right 20px;
    background-size: auto 444px, auto 555px;
    margin-top: -1px;
  }
  .page__passport #levelsPassport .container {
    max-width: 100%;
    padding: 60px 20px 260px 20px;
  }
  .page__passport #levelsPassport .levelsPassport__block {
    -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;
    gap: 20px;
    height: auto;
    margin-bottom: 80px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item {
    -webkit-box-flex: auto;
        -ms-flex-positive: auto;
            flex-grow: auto;
    padding: 32px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    min-height: 166px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item h3.h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .page__passport #levelsPassport .levelsPassport__block__item img {
    bottom: -14px;
    right: -26px;
  }
  .page__passport #levelsPassport .levelsPassport__levels {
    background-image: url("/local/templates/astraAcademy/assets/img/png/students/bubbles_green_rotate.png"), url("/local/templates/astraAcademy/assets/img/png/students/advantages_students_bg.png");
    background-position: top -60px right -225px, center;
    background-size: 360px auto, cover;
    padding: 60px 20px;
    overflow: hidden;
  }
  .page__passport #levelsPassport .levelsPassport__levels__viewport {
    overflow: hidden;
  }
  .page__passport #levelsPassport .levelsPassport__levels__viewport .swiper-slide {
    width: 268px;
    height: 250px;
  }
  .page__passport #levelsPassport .levelsPassport__levels__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 268px;
            flex: 0 0 268px;
    min-width: 268px;
    padding: 36px 24px;
  }
}
@media (max-width: 689px) {
  #advantagesStudents .container:first-child h2.h2 {
    text-align: left;
    -ms-flex-item-align: start;
        align-self: flex-start;
    padding-left: 10px;
  }
  #feedbackStudents .feedback__item {
    width: 100%;
    min-width: calc((100% - 20px) / 2);
  }
  #feedbackStudents .feedback__nav {
    padding-left: 0;
  }
  #feedbackStudents .feedback__page {
    padding: 4px 14px;
    font-size: 14px;
  }
}
@media (max-width: 556px) {
  #advantagesStudents .container:first-child h2.h2 br {
    display: inline;
  }
}
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  margin-top: 20px;
}
.breadcrumbs__item {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: var(--neutral-500);
  -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;
  gap: 8px;
}
.breadcrumbs__item::after {
  content: url("/local/templates/astraAcademy/assets/img/svg/arrow_crumb.svg");
  width: 16px;
  height: 16px;
  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;
  margin-top: 4px;
}
.breadcrumbs__item:hover {
  color: var(--neutral-700);
}
.breadcrumbs__item:active {
  color: var(--neutral-900);
}
.breadcrumbs__item.current {
  color: var(--blue-700);
  pointer-events: none;
}
.breadcrumbs__item.current::after {
  display: none;
}
.breadcrumbs__item.current br {
  display: none;
}
.breadcrumbs__item.current h3, .breadcrumbs__item.current p {
  display: inline;
}

.course-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.course-page .text-regular {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  margin-top: 0;
}
.course-page h3 {
  margin-bottom: 0;
}
.course-page h4 {
  margin-bottom: 0;
  font-weight: 700;
}
.course-page__header {
  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: 40px;
  border-bottom: 1px solid var(--neutral-100);
  padding-bottom: 60px;
}
.course-page__title {
  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: 20px;
  padding: 40px 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: var(--neutral-50);
  background-image: url("/local/templates/astraAcademy/assets/img/svg/course_title.svg"), url("/local/templates/astraAcademy/assets/img/svg/astra_linux_logo.svg");
  background-repeat: no-repeat;
  background-position: top right, center right 60px;
  border-radius: 32px;
}
.course-page__title h3 {
  font-size: 32px;
  line-height: 42px;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 0;
  max-width: 700px;
}
.course-page__title p {
  font-size: 32px;
  line-height: 42px;
  font-weight: 400;
  color: var(--neutral-900);
  margin-bottom: 0;
  max-width: 700px;
}
.course-page__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.course-page__details__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-sizing: border-box;
          box-sizing: border-box;
  padding: 16px 24px;
  gap: 10px;
  border-radius: 16px;
  background-color: var(--neutral-50);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.course-page__details__item img {
  min-width: 24px;
  margin-top: -2px;
}
.course-page__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 32px 60px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.course-page__info__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: 8px;
}
.course-page__info__item .text-regular {
  color: var(--neutral-400);
}
.course-page__info__item .text-large {
  color: var(--neutral-900);
}
.course-page__docs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 20px;
}
.course-page__docs__btn {
  height: 66px;
  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: 32px;
  border-radius: 16px;
  background-color: #616E8F;
  padding: 16px 32px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.course-page__docs__btn:first-child {
  background-color: var(--blue-500);
}
.course-page__docs__btn:first-child:hover {
  background-color: var(--blue-400);
}
.course-page__docs__btn:first-child:active {
  background-color: var(--blue-700);
}
.course-page__docs__btn:hover {
  background-color: var(--blue-500);
}
.course-page__docs__btn:active {
  background-color: var(--blue-700);
}
.course-page__requirements {
  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: 40px;
}
.course-page__requirements div, .course-page__requirements p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.course-page__requirements a {
  color: var(--blue-700);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  font-weight: 400 !important;
}
.course-page__requirements a:hover {
  color: var(--blue-500);
}
.course-page__requirements a:active {
  color: var(--blue-800);
}
.course-page__requirements h3 {
  max-width: 650px;
}
.course-page__requirements__block {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}
.course-page__requirements__block li {
  padding: 32px 40px;
  border-radius: 16px;
  border: 1px solid var(--neutral-100);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
}
.course-page__requirements__block li::before {
  content: "";
  width: 6px;
  min-width: 6px;
  height: 6px;
  border-radius: 3px;
  background-color: var(--blue-600);
  margin-top: 8px;
}
.course-page__knowledge {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 60px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 40px 60px;
  border-radius: 32px 80px 32px 32px;
  background-color: var(--neutral-800);
  background-image: url(/local/templates/astraAcademy/assets/img/png/knowledges_bg.png);
  background-size: 1336px auto;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.course-page__knowledge .h3 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.course-page__knowledge__wrapper {
  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: 60px;
  -webkit-box-flex: 2.3;
      -ms-flex: 2.3;
          flex: 2.3;
  max-width: 820px;
}
.course-page__knowledge__toggle {
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 160px;
  background-color: var(--neutral-700);
  border-radius: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--blue-300);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.course-page__knowledge__toggle:hover, .course-page__knowledge__toggle:active {
  background-color: var(--neutral-900);
}
.course-page__knowledge__block {
  padding-left: 28px;
}
.course-page__knowledge__block li {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  list-style-type: disc;
}
.course-page__programm {
  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: 40px;
  padding-top: 60px;
  background-image: url("/local/templates/astraAcademy/assets/img/svg/program_bg.svg"), url("/local/templates/astraAcademy/assets/img/svg/program_bottom.svg");
  background-repeat: no-repeat;
  background-position: top right, bottom left;
}
.course-page__programm > div p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
.course-page__programm__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: 20px;
}
.course-page__programm__block__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px;
  border-radius: 32px;
  background-color: #fff;
  border: 1px solid var(--neutral-100);
}
.course-page__programm__block__item__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
  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;
  position: relative;
  max-width: calc((100% - 24px) / 2);
}
.course-page__programm__block__item__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 8px;
}
.course-page__programm__block__item__title > div:not(:last-child) {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--neutral-800);
}
.course-page__programm__block__item__title > div:last-child {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  color: var(--neutral-800);
}
.course-page__programm__block__item__details {
  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: 8px;
}
.course-page__programm__block__item__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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-sizing: border-box;
          box-sizing: border-box;
  padding: 12px 16px;
  gap: 16px;
  background-color: var(--neutral-50);
  border-radius: 16px;
}
.course-page__programm__block__item__label .text-regular {
  color: var(--neutral-300);
  margin-bottom: 0;
}
.course-page__programm__block__item__label div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.course-page__programm__block__item__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-positive: 1;
      flex-grow: 1;
}
.course-page__programm__block__item__desc ul {
  padding-left: 18px;
}
.course-page__programm__block__item__desc li {
  font-size: 16px;
  line-height: 24px;
  color: var(--neutral-800);
  list-style-type: disc;
}

/* Для экранов меньше 1399px */
@media (max-width: 1399px) {
  .course-page__knowledge {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .course-page__knowledge__block {
    padding-left: 0;
  }
}
/* Для экранов меньше 1199px */
@media (max-width: 1199px) {
  .course-page__title {
    margin-top: 0;
  }
  .course-page__title p {
    font-size: 24px;
    line-height: 34px;
  }
  .course-page__details {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
/* Для экранов меньше 768-991px */
@media (max-width: 991px) {
  .course-page__header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .course-page__title {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    padding: 40px 20px 140px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/course_title_mobile.svg"), url("/local/templates/astraAcademy/assets/img/svg/astra_linux_logo.svg");
    background-repeat: no-repeat;
    background-position: bottom right, bottom 40px center;
  }
  .course-page__title h3 {
    text-align: center;
  }
  .course-page__title p {
    text-align: center;
  }
  .course-page__details {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .course-page__details__item {
    text-align: center;
  }
  .course-page__requirements {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .course-page__requirements h3 {
    font-size: 28px;
    line-height: 38px;
    max-width: 100%;
    text-align: center;
  }
  .course-page__requirements__block {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 20px;
  }
  .course-page__requirements__block li {
    padding: 32px 20px;
  }
  .course-page__knowledge {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    padding: 40px 32px 60px;
    background-color: var(--neutral-800);
    background-image: url(/local/templates/astraAcademy/assets/img/png/knowledges_bg_mobile.png);
    background-size: 906px auto;
    background-repeat: no-repeat;
    background-position: bottom left;
  }
  .course-page__knowledge iframe {
    width: 640px !important;
    height: 360px !important;
  }
  .course-page__knowledge .h3 {
    font-size: 28px;
    line-height: 38px;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
  }
  .course-page__knowledge__wrapper {
    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: 60px;
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    max-width: 100%;
  }
  .course-page__knowledge__toggle {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 12px 0;
  }
  .course-page__programm {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 0;
    background-image: url("/local/templates/astraAcademy/assets/img/svg/program_bg.svg"), url("/local/templates/astraAcademy/assets/img/svg/program_bottom.svg");
    background-repeat: no-repeat;
    background-position: top right, bottom left;
  }
  .course-page__programm h3 {
    font-size: 28px;
    line-height: 38px;
    text-align: center;
  }
  .course-page__programm__block__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 40px;
    padding: 40px 28px 60px;
  }
  .course-page__programm__block__item__details {
    width: 100%;
  }
  .course-page__programm__block__item__info {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    -ms-flex-positive: 0;
        flex-grow: 0;
    width: 100%;
    max-width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 32px;
    position: relative;
  }
  .course-page__programm__block__item__label {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .course-page__programm__block__item__desc {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    -ms-flex-positive: 0;
        flex-grow: 0;
    width: 100%;
  }
  .course-page__programm__block__item__desc li {
    font-size: 14px;
    line-height: 22px;
  }
}
/* Для экранов до 768px */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
  .course-page__docs {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .course-page__docs__btn {
    width: 100%;
  }
  .course-page__programm__block__item__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .course-page__knowledge iframe {
    width: 100% !important;
    height: auto !important;
  }
  .breadcrumbs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .breadcrumbs a:last-of-type {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.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 */
