:root {
  --a-color_white: #fff;
  --a-color_red: #FF0A47;
  --a-color_yellow: #FFD11A;
  --a-color_green: #2DC044;
  --a-color_dark: #0D1140;
  --a-color_dark-RGB: 13, 17, 64;
  --a-color_text: var(--a-color_dark);
  --a-color_secondary: #3D4166;
  --a-color_text--description: rgba(var(--a-color_dark-RGB), .8);
  --a-color_text--grey: #6E708C;
  --a-color_text--light: #9EA0B3;
  --a-color_text--blue: #CDD9ED;
  --a-color_text--blue-RGB: 205, 217, 237;
  --a-color_text--white: var(--a-color_white);
  --a-color_text--secondary: #707C8B;
  --a-color_link: var(--a-color_red);
  --a-color_active: #A8B2C7;
  --a-color_thumbnail: #cfd3d8;
  --a-color_disabled: #f5f5f5;
  --a-color_bg--white: var(--a-color_white);
  --a-color_bg--blue: #f7f9fd;
  --a-color_bg--blue-alpha: #f7f9fd00;
  --a-color_bg--dark-blue: #EFF2F9;
  --a-color_bg--grey: #F5F5F7;
  --a-color_bg--dark: var(--a-color_dark);
  --a-color_bg--red: var(--a-color_red);
  --a-color_bg--yellow: var(--a-color_yellow);
  --a-color_bg--input: #f4f4f4;
  --a-color_border--darkgrey: #6A7291;
  --a-color_border--grey: #A8B2C7;
  --a-color_border--lightgrey: #D3D8E3;
  --a-color_metro-green: #05A18F;
  --a-color_metro-blue: #6983E2;
}

:root {
  --a-padding--x1: 0.25rem;
  --a-padding--x2: 0.5rem;
  --a-padding--x3: 0.75rem;
  --a-padding--x4: 1rem;
  --a-padding--x5: 1.25rem;
  --a-padding--x6: 1.5rem;
  --a-padding--x7: 1.75rem;
  --a-padding--x8: 2rem;
  --a-padding--x9: 2.25rem;
  --a-padding--x10: 2.5rem;
  --a-padding--x11: 2.75rem;
  --a-padding--x12: 3rem;
  --a-padding--x13: 3.25rem;
  --a-padding--x14: 3.5rem;
  --a-padding--x15: 3.75rem;
  --a-padding--x16: 4rem;
  --a-padding--x17: 4.25rem;
  --a-padding--x18: 4.5rem;
  --a-padding--x19: 4.75rem;
  --a-padding--x20: 5rem;
  --layout-v-padding: 2.5rem;
  --layout-h-padding: 1rem;
}

:root {
  --a-borderRadius--x1: 0.25rem;
  --a-borderRadius--x2: 0.5rem;
  --a-borderRadius--x3: 0.75rem;
  --a-borderRadius--x4: 1rem;
  --a-borderRadius--x5: 1.25rem;
  --a-borderRadius--x6: 1.5rem;
  --a-borderRadius--x7: 1.75rem;
  --a-borderRadius--x8: 2rem;
  --a-borderRadius--def: var(--a-borderRadius--x3);
}

.s-intro {
  margin: 0;
}

.s-intro .l-section__inner {
  overflow: hidden;
  padding: 1.5rem var(--layout-h-padding) 1.5rem;
  background-repeat: no-repeat;
  background-image: none;
}

.s-intro .l-wide {
  position: relative;
  display: flex;
  flex-direction: column;
}

.s-intro__title {
  margin: 0 0 1.25rem;
}

.s-intro__place,
.s-intro__partner {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  background-color: var(--a-color_bg--white);
  color: var(--a-color_red);
}

.s-intro__place svg,
.s-intro__partner svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.s-intro__place:not(:last-child),
.s-intro__partner:not(:last-child) {
  margin-right: 0.625rem;
}

.s-intro__description {
  margin: 0 0 0.5rem;
  color: var(--a-color_secondary);
}

.s-intro__btn {
  display: flex;
  width: 100%;
  max-width: 22.5rem;
  margin: 1.25rem auto 0;
}

.s-intro__img {
  position: relative;
  display: block;
  height: 15rem;
  width: 15rem;
  margin: 3rem auto;
}

.s-intro__img-pic {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 1.5rem;
  transform: rotate(-15deg);
}

.s-intro__img-pic:after {
  content: '';
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  display: block;
  width: 4.375rem;
  height: 3.5625rem;
  background: url("/assets/dist/images/s_program_intro/angle.svg") no-repeat 100% 0;
  background-size: contain;
}

.s-intro__img-pic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-intro__img-ico {
  position: absolute;
  top: auto;
  right: -5rem;
  bottom: -2.5rem;
  left: auto;
  width: 10rem;
  height: auto;
}

.s-triggers .l-section__inner {
  padding: 1.25rem var(--layout-h-padding);
}

.s-triggers__slide {
  width: 17.5rem;
  height: auto;
  min-height: 5.125rem;
  margin-right: 1rem;
  padding: 1rem;
  border: 0.0625rem solid var(--a-color_white);
  border-radius: var(--a-borderRadius--x3);
  background-color: var(--a-color_white);
}

.s-triggers__slide:last-child {
  margin-right: 0 !important;
}

.s-triggers__slide-title {
  display: block;
  color: var(--a-color_text--grey);
}

.s-triggers__slide-text {
  display: block;
  margin-top: 0.5rem;
}

.s-triggers__slide-text span {
  display: block;
}

.s-why-learn__bottom {
  margin-top: 1.5rem;
}

.s-why-learn__trigger {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1rem;
}

.s-why-learn__trigger-img {
  display: block;
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  margin-right: 0.5rem;
}

.s-why-learn__trigger-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-why-learn__trigger-num {
  margin-right: 0.75rem;
}

.s-why-learn__trigger-text {
  flex: none;
  width: 100%;
}

.s-why-learn__trigger:first-child .s-why-learn__trigger-text {
  padding-right: 1.25rem;
}

.s-video-block {
  max-height: 50rem;
}

.s-video-block .l-section__inner {
  position: relative;
  height: 100%;
  padding: 0;
  aspect-ratio: 16 / 9;
}

.s-video-block.open .s-video-block__bg {
  opacity: 0;
  -webkit-transition: all 0.6s 0.8s;
  transition: all 0.6s 0.8s;
  visibility: hidden;
}

.s-video-block.open .s-video-block__inner {
  height: 100%;
  opacity: 1;
  -webkit-transition: all 0.6s 0.8s;
  transition: all 0.6s 0.8s;
}

.s-video-block__box {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
}

.s-video-block__bg {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.s-video-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-video-block__bg::after {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
}

.s-video-block__text {
  display: none;
}

.s-video-block__play {
  z-index: 2;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='80' height='80' rx='40' fill='%23FF0040'/%3E%3Cpath d='M51.5 36.5359C54.1667 38.0755 54.1667 41.9245 51.5 43.4641L39.5 50.3923C36.8333 51.9319 33.5 50.0074 33.5 46.9282L33.5 33.0718C33.5 29.9926 36.8333 28.0681 39.5 29.6077L51.5 36.5359Z' fill='white'/%3E%3C/svg%3E%0A");
}

.s-video-block__inner {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}

.s-video-block__inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.s-how-proceed__slide {
  position: relative;
  width: fit-content;
  height: auto;
  margin-right: 1rem;
  padding: 0 1rem;
}

.s-how-proceed__slide:last-child {
  margin-right: 0;
}

.s-how-proceed__slide:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: auto;
  right: -0.5rem;
  width: 0.0625rem;
  height: 100%;
  transform: translateY(-50%);
  background-color: var(--a-color_border--lightgrey);
}

.s-how-proceed__item {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: center;
  flex-direction: column;
  cursor: default;
}

.s-how-proceed__item-title {
  margin: 0 0 0.25rem;
}

.s-how-proceed__item-number {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 2.5rem;
  height: 3.375rem;
  margin: 0 0 0.75rem;
}

.s-how-proceed__item-number svg {
  width: 100%;
  height: 100%;
  fill: var(--a-color_red);
  color: var(--a-color_white);
  transition: 0.2s;
}

.s-how-proceed__item:hover svg {
  color: var(--a-color_red);
}

.s-what-learn__slider {
  overflow: visible;
}

.s-what-learn__slide {
  width: 17.5rem;
  min-width: min-content;
  height: auto;
  margin-right: 1.25rem;
}

.s-what-learn__slide:last-child {
  margin-right: 0;
}

.s-program .l-section__title {
  margin: 0;
}

.s-program__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.s-program__count {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 0 1rem;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: 0.5rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--a-color_red);
}

.s-program .accordion-item__question {
  align-items: center;
}

.s-program .accordion-item__question-title {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.s-program .--badge {
  white-space: nowrap;
  color: var(--a-color_text--light);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: 0.5rem;
  padding: 0.25rem 0.625rem;
  margin: 0 0 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
}

.s-training-going__headline {
  margin: 0 0 1.5rem;
}

.s-training-going__slide {
  position: relative;
  display: flex;
  align-items: flex-start;
  height: auto;
  width: 10.125rem;
  min-width: fit-content;
  margin-right: 1rem;
  flex: 1;
  flex-direction: column;
}

.s-training-going__slide:last-child {
  margin-right: 0;
}

.s-training-going__slide-img {
  position: relative;
  width: 3.75rem;
  height: 3.75rem;
  margin: 0 0 0.75rem;
}

.s-training-going__slide-img svg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--a-color_red);
}

.s-training-going__slide-img svg:last-child {
  top: 0rem;
  z-index: 0;
  opacity: 0;
  color: var(--a-color_text--blue);
  transition: .2s;
}

.s-training-going__slide.--active-slide svg:last-child {
  top: 6%;
  opacity: 1;
}

.s-training-going__slide-title {
  margin: 0 0 0.5rem;
}

.s-teachers .l-section__inner {
  position: relative;
}

.s-teachers__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.s-teachers__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0 0;
}

.s-teachers__more .a-button {
  width: 100% !important;
  max-width: 20.5rem;
}

.s-teachers__more .a-button i {
  font-style: normal;
}

.s-diploma__description {
  min-width: 0;
  max-width: 41rem;
}

.s-diploma--has-many .s-diploma__description {
  grid-column: 1 / -1;
}

.s-diploma__grid {
  display: grid;
  grid-gap: 1.5rem;
}

.s-diploma--has-many .s-diploma__grid {
  grid-template-columns: 1fr;
}

.s-diploma__slider {
  min-width: 0;
}

.s-diploma__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 17.5rem;
  height: auto;
  margin-right: 1rem;
  padding: 1.5rem 1rem;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--def);
  transition: 0.5s all ease;
  background-color: var(--a-color_bg--blue);
}

.s-diploma__item:first-child:last-child {
  min-width: unset;
}

.s-diploma__item:last-child {
  margin-right: 0;
}

.s-diploma__item img {
  flex: none;
  display: block;
  width: 4.5rem;
  height: 5.25rem;
}

.s-diploma__item p {
  min-width: 0;
  margin: 1rem 0 1.5rem;
}

.s-diploma__item button {
  width: 100%;
  margin: auto 0 0;
  font-weight: 500;
}

.s-manager-support .l-section__inner {
  position: relative;
}

.s-manager-support__text {
  margin-bottom: 1.5rem;
}

.s-manager-support__img {
  height: 15.625rem;
  display: block;
  margin: 0 auto;
}

.s-manager-support p {
  margin-bottom: 0.625rem;
}

.s-synergy-lms__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.s-synergy-lms__text {
  flex: 1 1;
  align-self: center;
  margin: 0 0 1.5rem;
}

.s-synergy-lms__img {
  align-self: center;
}

.s-synergy-lms__img img {
  width: auto;
  height: 11.875rem;
}

.s-synergy-lms__slide {
  min-width: min-content;
  height: 14.875rem;
  width: 17.5rem;
}

.s-synergy-lms .m-card-ico__text {
  margin-right: 0;
}

.s-synergy-lms .m-card-ico__img {
  display: block;
  width: 10.625rem;
  height: 10.625rem;
}

.s-synergy-lms .m-card-ico__img svg {
  stroke: var(--a-color_red);
}

.s-help-employment__list {
  display: grid;
  grid-gap: 1rem;
}

.s-help-employment__item {
  padding: 1.5rem 1rem;
  border-radius: var(--a-borderRadius--def);
  background-color: var(--a-color_red);
  color: var(--a-color_text--white);
}

.s-help-employment__item:last-child {
  background-color: var(--a-color_bg--dark);
}

.s-help-employment__item-title {
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
  line-height: 1.5rem;
}

.s-help-employment__subitem {
  display: grid;
  grid-gap: 0.25rem 0.5rem;
  grid-template-columns: auto 1fr;
  margin: 0.5rem 0 0;
}

.s-help-employment__subitem-ico {
  grid-row: 1 / 3;
  width: 2rem;
  height: 2.125rem;
}

.s-help-employment__subitem-ico svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.s-help-employment__subitem-title {
  font-weight: 500;
}

.s-help-employment__subitem-text {
  grid-column: 2;
}

.s-reviews__headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.s-reviews__slider {
  overflow: visible;
}

.s-reviews__slide {
  width: 17.5rem;
  height: auto;
}

.s-reviews__swiper {
  overflow: hidden;
}

.s-reviews__item {
  height: 100%;
  padding: var(--a-padding--x6) var(--a-padding--x4);
  background: var(--a-color_bg--blue);
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--x3);
}

.s-reviews__item-photo {
  flex: none;
}

.s-reviews__item-photo img {
  width: 3rem;
  height: 3rem;
  border-radius: var(--a-borderRadius--x2);
}

.s-reviews__item-headline {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.75rem;
}

.s-reviews__item-name {
  margin-bottom: 0.25rem;
  color: #3d4166;
}

.s-reviews__item-date {
  color: #9ea0b3;
}

.s-reviews__item-text {
  max-width: 31.5625rem;
  color: #3d4166;
}

.s-partners__description {
  margin: 0 0 1.5rem;
}

.s-partners__description p {
  margin: 0 0 0.5rem;
}

.s-partners__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--a-padding--x2);
}

.s-partners__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 4rem;
  border: 0.0625rem solid var(--a-color_border--lightgrey);
  border-radius: var(--a-borderRadius--x2);
  background-color: var(--a-color_bg--blue);
}

.s-partners__item.--partner-hidden {
  display: none;
}

.s-partners__item img {
  display: block;
  margin: 0 auto;
}

.s-partners__btn {
  width: 100%;
  max-width: 20.5rem;
  margin: 1.5rem auto 0;
}

.s-programs-recommend__list {
  display: grid;
  grid-gap: var(--a-padding--x4);
}

.s-programs-recommend__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1.125rem auto 0;
}

.s-programs-recommend__more .a-button {
  width: 15.0625rem;
}

.s-programs-recommend__item--hide {
  display: none;
}

@media (min-width: 576px) {
  .s-diploma__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 576px) {
  .s-programs-recommend__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  :root {
    --layout-v-padding: 3rem;
    --layout-h-padding: 1.875rem;
  }
}

@media (min-width: 768px) {
  .s-intro .l-section__inner {
    display: flex;
    min-height: 28.125rem;
    padding: 0 var(--layout-h-padding);
  }

  .s-intro .l-wide {
    overflow: visible;
    align-items: flex-start;
    justify-content: center;
    padding: 2.25rem 0;
  }

  .s-intro__title {
    margin: 0 0 1rem;
  }

  .s-intro .m-breadcrumbs {
    position: absolute;
    top: 1rem;
    left: 0;
  }

  .s-intro__place,
  .s-intro__partner {
    margin: 0 0 1rem;
  }

  .s-intro__text {
    width: calc(100% - 308px);
    max-width: 60%;
    padding-top: 1.25rem;
  }

  .s-intro__description {
    margin: 0;
  }

  .s-intro__btn {
    width: 15rem;
    margin: 1.5rem 0 0;
  }

  .s-intro__img {
    position: absolute;
    top: 0;
    left: auto;
    bottom: 0;
    right: 1.25rem;
    flex: none;
    margin: auto 0;
  }

  .s-triggers .l-section__inner {
    padding: 1.5rem var(--layout-h-padding);
  }

  .s-why-learn__bottom {
    display: flex;
  }

  .s-why-learn__trigger {
    flex: 1;
    flex-wrap: nowrap;
    margin: 0;
  }

  .s-why-learn__trigger-text {
    flex: 1;
    width: unset;
  }

  .s-how-proceed__slide {
    width: 16.75rem;
  }

  .s-diploma__item {
    display: grid;
    grid-gap: 1.5rem 1rem;
    grid-template-columns: auto 1fr;
    min-width: 20rem;
    padding: 1.5rem 1.25rem;
  }

  .s-diploma__item p {
    margin: 0;
  }

  .s-diploma__item button {
    grid-column: 1 / -1;
    align-self: flex-end;
  }

  .s-manager-support__text {
    max-width: 27.5rem;
    margin-bottom: 0;
  }

  .s-manager-support__img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 1.25rem;
    margin: 0;
  }

  .s-synergy-lms__info {
    flex-direction: row;
  }

  .s-synergy-lms__text {
    margin: 0 1.5rem 0 0;
  }

  .s-synergy-lms__img {
    flex: 0 0 20.375rem;
  }

  .s-help-employment__subitem {
    display: inline-grid;
    width: calc(50% - 16px);
    margin: 0;
  }

  .s-help-employment__subitem:last-child {
    margin-left: 1rem;
  }

  .s-partners__items {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--a-padding--x3);
  }
}

@media (min-width: 992px) {
  .s-intro__btn {
    width: 21.25rem;
    margin: 2rem 0 0;
  }

  .s-how-proceed .l-section__inner {
    background-color: var(--a-color_bg--white);
  }

  .s-how-proceed__slide {
    flex: 1;
    width: auto;
  }

  .s-what-learn__slide {
    width: 26.25rem;
  }

  .s-training-going__slide {
    width: auto;
    margin: 0;
    margin-right: 2.5rem;
  }

  .s-training-going__slide-img {
    width: 10rem;
    height: 7.75rem;
    margin: 0 0 1rem;
  }

  .s-diploma__description {
    max-width: 36.25rem;
  }

  .s-diploma--has-many .s-diploma__description {
    max-width: 70.625rem;
  }

  .s-diploma__item {
    grid-gap: 3rem 1.5rem;
    min-width: 40rem;
    padding: 1.75rem 2rem;
  }

  .s-manager-support__text {
    max-width: 43.75rem;
  }

  .s-manager-support__img {
    left: 46.875rem;
    height: 25rem;
  }
}

@media screen and (min-width: 992px) {
  .s-program .accordion-item__question-title {
    display: block;
  }

  .s-program .--badge {
    padding: 0.25rem 0.75rem;
    margin: 0 0.625rem;
    font-size: 1.0625rem;
  }

  .s-programs-recommend__list {
    grid-gap: var(--a-padding--x5);
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (min-width: 1200px) {
  :root {
    --layout-v-padding: 3.75rem;
    --layout-h-padding: 4.375rem;
  }
}

@media (min-width: 1200px) {
  .s-intro {
    margin: 0;
  }

  .s-intro .l-section__inner {
    min-height: 35rem;
    padding: 2rem var(--layout-h-padding);
    background-image: url("/assets/dist/images/s_program_intro/bg-top-speciality.png"), url("/assets/dist/images/s_program_intro/bg-bottom-speciality.png");
    background-position: top center, bottom center;
  }

  .s-intro .l-wide {
    padding: 2.5rem 0;
  }

  .s-intro .m-breadcrumbs {
    top: 0;
  }

  .s-intro__text {
    width: 50%;
    padding-top: 0;
  }

  .s-intro__img {
    top: 0;
    width: 25.9375rem;
    height: 25.9375rem;
  }

  .s-intro__img-pic {
    border-radius: 2rem;
  }

  .s-intro__img-pic:after {
    width: 7.5625rem;
    height: 6.125rem;
  }

  .s-intro__img-ico {
    right: -9.25rem;
    bottom: -1.75rem;
    width: 15rem;
  }

  .s-triggers .l-section__inner {
    padding: 0 var(--layout-h-padding);
  }

  .s-triggers__slide {
    flex: 1;
    min-width: 7rem;
    margin-right: 1.25rem;
    padding: 1.5rem;
  }

  .s-why-learn__top {
    display: flex;
  }

  .s-why-learn__top > * {
    width: 100%;
  }

  .s-why-learn__top > *:first-child {
    padding-right: 1.25rem;
  }

  .s-why-learn__trigger-img {
    width: 3rem;
    height: 3rem;
    margin-right: 1.25rem;
  }

  .s-why-learn__trigger-num {
    margin-right: 1rem;
  }

  .s-why-learn__trigger-text {
    max-width: 18.75rem;
  }

  .s-video-block__text {
    content: "";
    position: absolute;
    top: 1.75rem;
    left: 2.5rem;
    display: block;
    padding: 0.625rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: var(--a-borderRadius--def);
    backdrop-filter: blur(0.3125rem);
    color: var(--a-color_bg--white);
  }

  .s-video-block__play {
    width: 5rem;
    height: 5rem;
  }

  .s-video-block__inner iframe {
    border-radius: var(--a-borderRadius--x3);
  }

  .s-how-proceed__slide {
    margin-right: 2.5rem;
  }

  .s-how-proceed__slide:not(:last-child)::before {
    right: -1.25rem;
    max-height: 6.375rem;
  }

  .s-how-proceed__item-title {
    margin: 0 0 0.5rem;
  }

  .s-how-proceed__item-number {
    width: 3rem;
    height: 4rem;
  }

  .s-program__headline {
    margin-bottom: 2.5rem;
  }

  .s-training-going__headline {
    display: flex;
    margin: 0 0 1.875rem;
  }

  .s-training-going__headline > * {
    width: 100%;
  }

  .s-training-going__headline > *:first-child {
    padding-right: 1.25rem;
  }

  .s-teachers__more {
    margin-top: 2.5rem;
  }

  .s-diploma__grid {
    grid-gap: 2.5rem;
  }

  .s-manager-support__text {
    max-width: 45.3125rem;
  }

  .s-manager-support__img {
    left: 54.75rem;
    height: 26.25rem;
  }

  .s-synergy-lms__info {
    margin-bottom: 3.75rem;
  }

  .s-synergy-lms__text {
    margin: 0 2.25rem 0 0;
  }

  .s-synergy-lms__img {
    flex-basis: 32.75rem;
  }

  .s-synergy-lms__img img {
    width: 32.75rem;
    height: auto;
  }

  .s-synergy-lms__slide {
    width: 35.75rem;
    height: 11.0625rem;
  }

  .s-synergy-lms .m-card-ico__text {
    margin-right: 8.4375rem;
  }

  .s-help-employment__list {
    grid-gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
  }

  .s-help-employment__item {
    min-height: 21.5rem;
    padding: 2rem 1.5rem;
    background-repeat: no-repeat;
    background-position: right 0.75rem top 0.5rem, right bottom;
  }

  .s-help-employment__item:nth-child(1) {
    background-image: url("/assets/dist/images/s-help-employment/1-top.png"), url("/assets/dist/images/s-help-employment/1.png");
  }

  .s-help-employment__item:nth-child(2) {
    background-image: url("/assets/dist/images/s-help-employment/2-top.png"), url("/assets/dist/images/s-help-employment/2.png");
  }

  .s-help-employment__item:nth-child(3) {
    background-image: url("/assets/dist/images/s-help-employment/3-top.png"), url("/assets/dist/images/s-help-employment/3.png");
  }

  .s-help-employment__item-title {
    max-width: 18.75rem;
    margin: 0 0 1.5rem;
    line-height: 2rem;
  }

  .s-help-employment__subitem {
    display: grid;
    width: 100%;
    margin: 0 0 1rem;
  }

  .s-help-employment__subitem:last-child {
    margin: 0;
  }

  .s-reviews__slide {
    width: 40rem;
  }

  .s-reviews__item {
    padding: var(--a-padding--x8) var(--a-padding--x10);
  }

  .s-reviews__item-photo img {
    width: 3.5rem;
    height: 3.5rem;
  }

  .s-partners__description {
    margin: -1rem 0 1.5rem;
  }

  .s-partners__items {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: var(--a-padding--x5);
  }

  .s-partners__item {
    height: 5rem;
  }

  .s-programs-recommend__more {
    margin: 2.5rem auto 0;
  }

  .s-programs-recommend__more .a-button {
    width: 15.0625rem;
  }
}

@media (min-width: 1360px) {
  .s-intro__img {
    right: 5.75rem;
  }
}

@media (max-width: 574px) {
  .s-programs-recommend__more .a-button {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .s-why-learn .l-section__title br {
    display: none;
  }
}

@media screen {
  .px-0 {
    padding-right: 0;
    padding-left: 0;
  }

  .py-0 {
    padding-top: 0;
    padding-bottom: 0;
  }

  .pb-0 {
    padding-bottom: 0;
  }

  .pt-0 {
    padding-top: 0;
  }

  .br-0 {
    border-radius: 0;
  }
}
/*# sourceMappingURL=maps/profession.css.map */
