

/* Start:/local/templates/grasserschool/public/css/index.css?1760957874218816*/
@charset "UTF-8";

.grid {
  display: -ms-grid;
  display: grid;
  width: 100%;
  gap: 8px;
  row-gap: 48px;
}

.grid.grid_col-2 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.grid.grid_col-2--1-to-2 {
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}

.grid.grid_col-3 {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[1];
  grid-template-rows: repeat(1, 1fr);
}

.grid.grid_col-4 {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

.grid.grid_column-gap-8 {
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.grid.grid_row-gap-24 {
  row-gap: 24px;
}

.grid.grid_gap-15 {
  gap: 15px;
}

.grid.grid_gap-4 {
  gap: 8px;
}

.grid.grid--teacher {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-top: 48px;
  -webkit-column-gap: 0;
  -moz-column-gap: 0;
  column-gap: 0;
  row-gap: 32px;
}

.grid.grid--teacher .grid__column:not(:first-child) {
  padding-left: 48px;
}

.grid.grid--teacher .grid__column:not(:last-child) {
  padding-right: 48px;
  border-right: 1px solid rgba(33, 33, 33, 0.2);
}

.grid.grid--teacher .grid__column :first-child {
  margin-top: 0;
}

.label {
  background-color: #FF3900;
  color: #FFFFFF;
  border-radius: 4px;
  font-family: HalvarBreit;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-transform: uppercase;
}

.label._size_lg {
  font-size: 18px;
  line-height: 24px;
  padding: 4px 12px;
}

.label._size_md {
  font-size: 12px;
  line-height: 12px;
  padding: 6px 8px;
}

.label._size_sm {
  font-size: 8px;
  line-height: 12px;
  padding: 2px 4px;
  border-radius: 2px;
}

.label.label--color-white {
  background-color: #F0EDE3;
  color: #333333;
}

.label.label--status {
  text-transform: initial;
}

.layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-weight: 400;
  overflow: hidden;
}

.layout__header {
  position: sticky;
  top: 0;
}

.layout__main {
  margin-top: 240px;
  padding: 0 48px;
}

.layout button {
  color: #212121;
}

.layout .h1,
.layout .h2,
.layout .h3,
.layout .h4,
.layout .h5 {
  font-family: HalvarBreit;
  text-transform: uppercase;
  font-weight: 500;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

.layout .h1 {
  font-size: 44px;
  line-height: 60px;
  letter-spacing: 1.76px;
}

.layout .h2 {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 1.44px;
}

.layout .h3 {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.layout .h4 {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.96px;
}

.layout .h5 {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
}

.layout p,
.layout li {
  font-family: inherit;
  font-size: 20px;
  line-height: 28px;
}

.layout .text {
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
}

.layout .description {
  font-family: inherit;
  font-size: 14px;
  line-height: 20px;
}

.layout a {
  text-decoration: none;
  color: inherit;
}

.layout a:hover {
  cursor: pointer;
}

.layout .underline {
  text-decoration: underline;
}

.layout .red {
  color: #FF3900;
}

.layout .hide {
  display: none;
}

.layout .horizontal-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.layout .vertical-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.layout .flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}

.layout .flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

.layout .flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.layout .flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.layout .center {
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.layout .space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.layout .width-max {
  width: 100%;
}

.layout .nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.layout .w-50 {
  width: 50%;
}

.layout .gap-128 {
  gap: 128px;
}

.layout .gap-96 {
  gap: 96px;
}

.layout .gap-68 {
  gap: 68px;
}

.layout .gap-64 {
  gap: 64px;
}

.layout .gap-60 {
  gap: 60px;
}

.layout .gap-48 {
  gap: 48px;
}

.layout .gap-40 {
  gap: 40px;
}

.layout .gap-32 {
  gap: 32px;
}

.layout .gap-24 {
  gap: 24px;
}

.layout .gap-20 {
  gap: 20px;
}

.layout .gap-15 {
  gap: 15px;
}

.layout .gap-12 {
  gap: 12px;
}

.layout .gap-10 {
  gap: 10px;
}

.layout .gap-8 {
  gap: 8px;
}

.layout .gap-0 {
  gap: 0;
}

.layout .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.layout .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.layout .margin-auto {
  margin: auto;
}

.layout .p-l-48 {
  padding-left: 48px;
}

.layout .p-r-48 {
  padding-right: 48px;
}

.layout .with-max-width {
  max-width: 1214px;
}

.layout .without-padding-top {
  padding-top: 0 !important;
}

.layout .without-padding {
  padding: 0 !important;
}

.layout .without-padding-bottom {
  padding-bottom: 0 !important;
}

.layout .without-margin {
  margin: 0;
}

.layout .is-disabled {
  opacity: 0.6;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.layout .is-loading {
  position: relative;
  opacity: 0.8;
}

.layout .is-loading._primary {
  background-color: #ffccbe !important;
  border-color: #ffccbe !important;
}

.layout .is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAyMDAgMjAwJz4KPHJhZGlhbEdyYWRpZW50IGlkPSdhMTInIGN4PScuNjYnIGZ4PScuNjYnIGN5PScuMzEyNScgZnk9Jy4zMTI1JyBncmFkaWVudFRyYW5zZm9ybT0nc2NhbGUoMS41KSc+CjxzdG9wIG9mZnNldD0nMCcgc3RvcC1jb2xvcj0nI0ZGMzkwMCc+PC9zdG9wPgo8c3RvcCBvZmZzZXQ9Jy4zJyBzdG9wLWNvbG9yPScjRkYzOTAwJyBzdG9wLW9wYWNpdHk9Jy45Jz48L3N0b3A+CjxzdG9wIG9mZnNldD0nLjYnIHN0b3AtY29sb3I9JyNGRjM5MDAnIHN0b3Atb3BhY2l0eT0nLjYnPjwvc3RvcD4KPHN0b3Agb2Zmc2V0PScuOCcgc3RvcC1jb2xvcj0nI0ZGMzkwMCcgc3RvcC1vcGFjaXR5PScuMyc+PC9zdG9wPgo8c3RvcCBvZmZzZXQ9JzEnIHN0b3AtY29sb3I9JyNGRjM5MDAnIHN0b3Atb3BhY2l0eT0nMCc+PC9zdG9wPgo8L3JhZGlhbEdyYWRpZW50Pgo8Y2lyY2xlIHRyYW5zZm9ybS1vcmlnaW49J2NlbnRlcicgZmlsbD0nbm9uZScgc3Ryb2tlPSd1cmwoI2ExMiknIHN0cm9rZS13aWR0aD0nMTUnIHN0cm9rZS1saW5lY2FwPSdyb3VuZCcgc3Ryb2tlLWRhc2hhcnJheT0nMjAwIDEwMDAnIHN0cm9rZS1kYXNob2Zmc2V0PScwJyBjeD0nMTAwJyBjeT0nMTAwJyByPSc3MCc+CjxhbmltYXRlVHJhbnNmb3JtIHR5cGU9J3JvdGF0ZScgYXR0cmlidXRlTmFtZT0ndHJhbnNmb3JtJyBjYWxNb2RlPSdzcGxpbmUnIGR1cj0nMicgdmFsdWVzPSczNjA7MCcga2V5VGltZXM9JzA7MScga2V5U3BsaW5lcz0nMCAwIDEgMScgcmVwZWF0Q291bnQ9J2luZGVmaW5pdGUnPjwvYW5pbWF0ZVRyYW5zZm9ybT4KPC9jaXJjbGU+CjxjaXJjbGUgdHJhbnNmb3JtLW9yaWdpbj0nY2VudGVyJyBmaWxsPSdub25lJyBvcGFjaXR5PScuMicgc3Ryb2tlPScjRkYzOTAwJyBzdHJva2Utd2lkdGg9JzE1JyBzdHJva2UtbGluZWNhcD0ncm91bmQnIGN4PScxMDAnIGN5PScxMDAnIHI9JzcwJz48L2NpcmNsZT4KPC9zdmc+");
  background-repeat: no-repeat;
  z-index: 99;
}

.layout .no-wrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.layout .underline {
  text-decoration: underline;
}

.layout .border {
  border: 1px solid #212121;
}

.layout .border.border--right {
  border-top: none;
  border-left: none;
  border-bottom: none;
}

.layout .border.border--left {
  border-top: none;
  border-right: none;
  border-bottom: none;
}

.layout:has(.filter-block.is-opened)::after {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1001;
}

.section {
  max-width: 100%;
  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;
  padding: 64px 0;
  gap: 48px;
  margin: auto;
}

.section:first-child {
  padding-top: 48px;
}

.section__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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.section__description {
  color: #181818;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.section__description p {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.section__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.section__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.section__body {
  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;
  width: 100%;
}

.section__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section__subtitle {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.section__article-main {
  margin: auto;
}

.section__article-main p {
  margin: 24px 0;
}

.section__article-main h3 {
  font-family: HalvarBreit;
  text-transform: uppercase;
  font-weight: 500;
  margin: 60px 0 24px 0;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.section__article-main h4 {
  font-family: HalvarBreit;
  text-transform: uppercase;
  font-weight: 500;
  margin: 48px 0 24px 0;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.96px;
}

.section__article-main ul,
.section__article-main li {
  font-family: inherit;
  font-size: 20px;
  line-height: 32px;
}

.section__article-main ul {
  padding-left: 20px;
}

.section__article-main li {
  margin: 12px 0;
  list-style-type: disc;
  list-style-position: outside;
  text-indent: -11px;
  padding-left: 23px;
}

.section__article-main li p {
  margin: 0;
}

.section__article-main li::marker {
  color: #FF3900;
}

.section__article-main a {
  color: #FF3900;
}

.section__article-main picture {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.section__article-main picture img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.section__article-main blockquote {
  border-radius: 8px;
  background-color: #F0EDE3;
  padding: 56px 64px 56px 260px;
  background-image: url(/local/templates/grasserschool/public/css/../../assets/media/quote.svg);
  background-repeat: no-repeat;
  background-position: 40px -10px;
  background-size: 180px;
  font-family: HalvarBreit;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.72px;
}

.section__article-main > *:first-child {
  margin-top: 0;
}

.section__article-main > *:last-child {
  margin-bottom: 0;
}

.section__image-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.section__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.section--error {
  padding: 0;
  width: 100vw;
  height: 100vh;
  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;
}

.section--sm-paddings {
  padding: 24px 0 !important;
  gap: 32px;
}

.section--m-paddings {
  padding: 0 0 32px 0;
}

.section--m-paddings .section__body {
  gap: 24px;
}

.section--padding-top-32 {
  padding-top: 32px !important;
}

.section-courses {
  padding: 0;
}

.section-courses__sort-btn .button__title {
  display: none;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #212121;
  text-transform: uppercase;
}

.section-courses__sort-btn.button {
  background-color: transparent;
  border-color: #212121;
}

.section-courses__faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.section-courses .section__body:has(.course-nav) {
  gap: 64px;
}

.section-courses .section__body .col a.red {
  font-weight: 500;
  font-size: 18px;
  line-height: 161%;
}

.section-courses .section__body .section__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.section-courses .section__nav .button:first-of-type {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.section-faq {
  padding: 0;
}

.section-faq__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.section-profile.section {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.section-profile__container {
  max-width: calc(100% - 388px - 48px);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.section-profile .input {
  max-width: 250px;
  width: 100%;
}

.section-profile .input__field {
  margin-top: 5px;
}

.section-align-center.section .section__header {
  text-align: center;
  gap: 24px;
}

.section-align-center.section .section__body {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section-align-center.section .section__body .horizontal-flex {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.section-align-center.section .section__body a {
  display: block;
}

.section-align-center.section .section__body a img {
  width: 100%;
  height: auto;
}

.section-feedback {
  padding-bottom: 0;
}

.section-personal {
  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;
  height: 100vh;
  width: 33.33%;
}

.layout__main:has(.section-personal) {
  margin: 0 !important;
}

.menu-item {
  list-style-type: none;
  color: #212121;
  list-style: none;
}

.menu-item:hover {
  cursor: pointer;
  color: #FF3900;
  fill: #FF3900;
}

.menu-item._open,
.menu-item._active {
  color: #FF3900;
  fill: #FF3900;
}

.menu-item__link {
  color: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu-item__title {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.menu-button {
  width: 100%;
  padding: 28px 0;
  min-height: 112px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  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;
  gap: 20px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #212121;
}

.menu-button:hover {
  cursor: pointer;
  color: #FF3900;
  fill: #FF3900;
}

.menu-button__text {
  text-align: start;
  font-family: HalvarBreit;
}

.menu-button__subtitle {
  text-transform: uppercase;
  font-weight: 300;
}

.menu-button__icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.button {
  font-family: HalvarBreit;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border: 1px solid #FF3900;
  background-color: #FF3900;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.button:hover {
  cursor: pointer;
}

.button._primary {
  color: #FFFFFF;
  fill: #FFFFFF;
}

.button._primary:hover {
  cursor: pointer;
  border-color: #BD2A00;
  background-color: #E83400;
}

.button._primary:focus {
  border-color: #F0EDE3;
  outline: 1px solid #FF3900;
}

.button._primary:active {
  border-color: #BD2A00;
  background-color: #BD2A00;
}

.button._secondary {
  background-color: #212121;
  border-color: #212121;
  color: #FFFFFF;
  fill: #FFFFFF;
}

.button._secondary:hover {
  background-color: #000;
}

.button._secondary:focus {
  border-color: #F0EDE3;
  outline: 1px solid #161616;
}

.button._secondary:active {
  border-color: #161616;
  background-color: #161616;
}

.button._outline {
  background-color: transparent;
  color: #FF3900;
  fill: #FF3900;
}

.button._outline:hover,
.button._outline:active {
  border-color: #BD2A00;
  color: #BD2A00;
  fill: #BD2A00;
}

.button._outline-secondary {
  background-color: transparent;
  border-color: #212121;
  color: #212121;
  fill: #212121;
  white-space: nowrap;
}

.button._disabled {
  background-color: rgba(33, 33, 33, 0.0509803922);
  border-color: rgba(33, 33, 33, 0.0509803922);
  color: rgba(33, 33, 33, 0.6);
  fill: rgba(33, 33, 33, 0.6);
  cursor: not-allowed;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.button._minimalistic {
  background-color: transparent;
  border: none;
  color: #212121;
  fill: #212121;
}

.button._minimalistic .button__icon {
  padding: 0;
}

.button._minimalistic-red {
  background-color: transparent;
  border: none;
  color: #FF3900;
  fill: #FF3900;
}

.button._link {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #FF3900;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.button._link-big {
  padding: 0;
  background-color: transparent;
  border: none;
  color: #FF3900;
  font-family: HalvarBreit;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: uppercase;
}

.button._link-big .button__title {
  margin: 0;
}

.button._white {
  background-color: #F0EDE3;
  border-color: #F0EDE3;
  color: #FF3900;
}

.button._white:hover,
.button._white:active {
  color: #FFFFFF;
  background-color: #FF3900;
  border-color: #FF3900;
}

.button._size_max,
.button._size_lg {
  padding: 20px;
  gap: 8px;
  line-height: 24px;
  font-size: 18px;
  font-weight: 500;
}

.button._size_max,
.button._size_old-max {
  width: 100%;
}

.button._size_lg,
.button._size_old-lg {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.button._size_old-max,
.button._size_old-lg {
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  text-align: start;
  min-height: 70px;
}

.button._size_icon-md {
  padding: 14px;
}

.button._size_icon-md .button__icon {
  width: 20px !important;
  height: 20px !important;
}

.button._size_md {
  padding: 12px;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

.button._size_sm {
  padding: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

.button._size_old-lg {
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.button__title {
  margin: 0 8px;
}

.button__count {
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 161%;
  margin-left: 10px;
}

.button.no-radius {
  border-radius: 0;
}

.exercise-button .button__title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input--banners {
  position: relative;
  font-family: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  border-radius: 4px;
  padding: 16px 20px;
  border: none;
  width: 100%;
}

.input--banners input::-webkit-input-placeholder {
  color: rgba(33, 33, 33, 0.6);
}

.input--banners input::-moz-placeholder {
  color: rgba(33, 33, 33, 0.6);
}

.input--banners input:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.6);
}

.input--banners input::-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.6);
}

.input--banners input::placeholder {
  color: rgba(33, 33, 33, 0.6);
}

.input {
  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%;
  text-align: start;
}

.input__label {
  position: relative;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  line-height: 32px;
}

.input__field {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid rgba(33, 33, 33, 0.2);
  background-color: #FFFFFF;
  overflow: hidden;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  line-height: 20px;
  font-size: 14px;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease, border-left-color 0.3s ease, border-top-color 0.3s ease, border-right-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-bottom-color 0.3s ease, border-left-color 0.3s ease, border-top-color 0.3s ease, border-right-color 0.3s ease;
  max-height: 40px;
  margin-top: 8px;
  border-radius: 4px;
  margin-top: 8px;
}

.input__field--textarea {
  max-height: none;
  height: 120px;
  resize: none;
}

.input__field:hover,
.input__field:focus {
  border: 1px solid rgba(33, 33, 33, 0.6);
  outline: none;
}

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

.input__link {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 14px;
  line-height: 16px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.input__link:hover {
  color: #FF3900;
}

.input__button {
  width: 24px;
  height: 24px;
  position: relative;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.input__button.is-off::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: #181818;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.input__error {
  display: none;
}

.input__field-input {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  line-height: 20px;
  text-overflow: ellipsis;
}

.input__field-input:focus {
  outline: none;
}

.input__field-input:-ms-input-placeholder {
  color: red;
}

.input__field-input::-ms-input-placeholder {
  color: red;
}

.input__field-input::placeholder,
.input__field-input:-ms-input-placeholder,
.input__field-input::-ms-input-placeholder {
  color: red;
}

.input__text {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 12px;
  line-height: 14px;
  display: none;
}

.input__result {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.input._type_textarea .input__wrapper {
  position: relative;
}

.input._type_textarea .input__counter {
  color: rgba(33, 33, 33, 0.2);
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 16px;
  line-height: 24px;
}

.input._error .input__text {
  display: inline;
}

.input._error .input__field {
  color: #FF3900;
}

.input._width_sm {
  width: 32%;
}

.input._focus .input__field {
  border: 1px solid rgba(33, 33, 33, 0.6);
}

.input._focus .input__password-toggler {
  display: block;
}

.input._filled .input__password-toggler {
  display: block;
}

.input__dropdown {
  position: absolute;
  max-height: 264px;
  top: 100%;
  left: 0;
  width: 100%;
  border: 1px solid rgba(33, 33, 33, 0.6);
  background: #FFFFFF;
  padding: 14px 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  display: none;
  z-index: 1000;
}

.input__dropdown._active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-dropdown {
  position: relative;
  width: 100%;
}

.input-dropdown__input {
  border: 1px solid #212121;
  outline: 0;
  min-width: 0;
  width: 100%;
  padding: 7px 18px 7px 8px;
  text-overflow: ellipsis;
  font-family: BasisGrotesqueArabicPro, sans-serif;
}

.input-dropdown__checkbox:not(:first-child) {
  margin-top: 8px;
}

.input-dropdown__checkbox input[type=checkbox] {
  position: absolute;
  height: 1px;
  width: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.input-dropdown__checkbox span {
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  padding-left: 28px;
  position: relative;
  font-family: BasisGrotesqueArabicPro, sans-serif;
}

.input-dropdown__checkbox span::before {
  content: "";
  border: 1px solid rgba(33, 33, 33, 0.6);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.input-dropdown__list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 100%;
  border: 1px solid rgba(33, 33, 33, 0.6);
  padding: 7px 24px 7px 8px;
  background-color: #fff;
  max-height: 200px;
  overflow: auto;
  z-index: 20;
}

.input-dropdown.open .input-dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input.is-error .input__label,
.input.is-error .input__field {
  color: #FF3900;
}

.input.is-error .input__field {
  border-color: #FF3900;
}

.input.is-error .input__error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 24px;
  z-index: 10;
}

.input.is-error .input__error-bubble {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(120%);
  -ms-transform: translateY(120%);
  transform: translateY(120%);
  font-size: 16px;
  line-height: 24px;
  padding: 16px;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #212121;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.12);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 10;
  -webkit-animation: bubbleAnimation 0.5s ease-in;
  animation: bubbleAnimation 0.5s ease-in;
}

.input.is-error .input__error-bubble::before {
  content: "";
  position: absolute;
  top: -15px;
  display: block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #FFFFFF;
}

@-webkit-keyframes bubbleAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes bubbleAnimation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.file-upload {
  width: 100%;
}

.file-upload__header {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 20px;
}

.file-upload__body {
  width: 100%;
  height: 100px;
  position: relative;
  border-radius: 8px;
  background-color: rgba(33, 33, 33, 0.0509803922);
  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;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  text-transform: uppercase;
  font-family: HalvarBreit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
}

.file-upload__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(33, 33, 33, 0.6)), color-stop(50%, transparent)), -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(33, 33, 33, 0.6)), color-stop(50%, transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(33, 33, 33, 0.6)), color-stop(50%, transparent)), -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(33, 33, 33, 0.6)), color-stop(50%, transparent));
  background-image: linear-gradient(to right, rgba(33, 33, 33, 0.6) 50%, transparent 50%), linear-gradient(to right, rgba(33, 33, 33, 0.6) 50%, transparent 50%), linear-gradient(to bottom, rgba(33, 33, 33, 0.6) 50%, transparent 50%), linear-gradient(to bottom, rgba(33, 33, 33, 0.6) 50%, transparent 50%);
  background-position: 0 0, 0 100%, 0 0, 100% 0;
  background-size: 12px 2px, 12px 2px, 2px 12px, 2px 12px;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  padding: 2px;
}

.file-upload__body svg {
  color: #FF3900;
}

.file-upload__content {
  text-align: center;
  padding: 20px;
}

.file-upload__text {
  text-transform: uppercase;
  font-family: HalvarBreit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
}

.file-upload__button {
  color: #FF3900;
  text-transform: uppercase;
  font-family: HalvarBreit;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  margin-right: 8px;
  margin-left: 20px;
}

.file-upload__footer {
  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;
  margin-top: 12px;
  color: rgba(33, 33, 33, 0.8);
  gap: 10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.file-upload__alert {
  color: #FF3900;
  width: 100%;
  font-size: 20px;
  line-height: 32px;
  display: none;
}

.file-upload__files {
  margin-top: 16px;
}

.file-upload__file-item {
  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;
  padding: 8px 12px;
  background-color: rgba(33, 33, 33, 0.0509803922);
  border-radius: 4px;
  margin-bottom: 8px;
  font-size: 14px;
  word-break: break-all;
}

.file-upload__remove-btn {
  color: #FF3900;
  cursor: pointer;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 20px;
  line-height: 14px;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1051;
  background-color: rgba(33, 33, 33, 0.6);
  display: none;
  padding-top: 20px;
  padding-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: initial;
  cursor: initial;
}

.modal.in {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal .modal-dialog {
  margin: auto;
  max-width: 920px;
  height: 100%;
  width: auto;
  -webkit-transform: translateY(-50px) scale(0.95);
  -ms-transform: translateY(-50px) scale(0.95);
  transform: translateY(-50px) scale(0.95);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.modal .modal-content {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.modal__container {
  width: 100%;
  height: auto;
  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;
  gap: 40px;
  border-radius: 8px;
  background-color: #FFFFFF;
}

.modal__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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.modal__header-content {
  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;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.modal__info {
  font-family: HalvarBreit;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.modal__date {
  color: rgba(33, 33, 33, 0.6);
  font-size: 16px;
  line-height: 24px;
}

.modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal__title {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.modal__subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-top: 20px;
}

.modal__close {
  margin-top: 6px;
  font-size: 30px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: 40px;
}

.modal__close:hover {
  opacity: 0.75;
}

.modal__avatar {
  width: 80px;
  height: 80px;
}

.modal__image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.modal__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}

.modal__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.modal__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}

.modal__additional {
  color: rgba(33, 33, 33, 0.4);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.modal__additional span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.modal .preview-card__video-wrapper {
  border-radius: 8px;
  overflow: hidden;
}

.modal .preview-card__video-wrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  border: none;
}

.modal .preview-card__video-preview img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal .preview-card__button-wrapper {
  border-radius: 8px;
}

.modal__description {
  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__description p {
  line-height: 1.5;
}

.modal__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.modal__text span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.modal .input__label {
  font-size: 16px;
  line-height: 24px;
}

.modal .select__wrapper {
  border-radius: 4px;
}

.modal__shade {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#FFFFFF));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
  z-index: 101;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
}

.modal .course-label {
  margin-top: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal--course-format .modal-dialog {
  max-width: 622px;
}

.modal--course-format .modal-content {
  margin: 0 8px;
}

.modal--course-format .modal__body {
  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;
}

.layout .modal__tab-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.layout .modal__tab-wrapper {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}

.layout .modal__tab-wrapper.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.layout .modal__tab-button {
  cursor: pointer;
  pointer-events: all;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: HalvarBreit;
  color: rgba(33, 33, 33, 0.2);
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
}

.layout .modal__tab-button span {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.layout .modal__tab-button.is-active {
  pointer-events: none;
  color: #212121;
  cursor: default;
}

.layout .modal .checkbox__text {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.layout .modal .feedback-button {
  margin-top: 25px;
}

.modal.modal--size-md .modal-dialog {
  max-width: 610px;
  width: 100%;
}

.modal.modal--size-lg .modal-dialog {
  max-width: 936px;
  width: 100%;
}

.modal--read-feedback .modal__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 32px;
  margin-right: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal--read-feedback .modal__body {
  position: relative;
}

.modal--read-feedback .modal__description {
  overflow-y: scroll;
  padding-right: 24px;
  margin-right: -24px;
}

.modal--read-feedback .modal__description::-webkit-scrollbar {
  width: 8px;
}

.modal--read-feedback .modal__description::-webkit-scrollbar-track {
  background: rgba(33, 33, 33, 0.0509803922);
  border-radius: 5px;
}

.modal--read-feedback .modal__description::-webkit-scrollbar-thumb {
  background: #212121;
  border-radius: 5px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

.tabs__button {
  font-family: HalvarBreit;
  border-radius: 4px;
  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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #212121;
  padding: 16px;
  gap: 4px;
  cursor: pointer;
  background: none;
}

.tabs__button._outline {
  color: #212121;
  fill: #212121;
  border: 1px solid #212121;
  background-color: #FFFFFF;
}

.tabs__button._outline:hover:not(.tabs__item--active) {
  color: #FF3900;
  fill: #FF3900;
  border-color: #FF3900;
}

.tabs__button._solid {
  color: #FFFFFF;
  fill: #FFFFFF;
  background-color: #212121;
  border-color: #212121;
}

.tabs__button._solid:hover:not(.tabs__item--active) {
  border-color: #FF3900;
  background-color: #FF3900;
}

.tabs__button._milk {
  border-radius: 2px;
  border: 1px solid #F0EDE3;
  padding: 5px 10px;
  color: #212121;
  fill: #212121;
  background-color: #F0EDE3;
  border-color: #F0EDE3;
}

.tabs__button._milk:hover:not(.tabs__item--active) {
  border-color: #FF3900;
  background-color: #FF3900;
  color: #FFFFFF;
  fill: #FFFFFF;
}

.tabs__button._milk .tabs__title {
  font-size: 16px;
  line-height: 161%;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  text-transform: none;
}

.tabs__button.tabs__item--active {
  color: #FFFFFF;
  fill: #FFFFFF;
  border-color: #FF3900;
  background-color: #FF3900;
}

.tabs__title {
  padding: 0 4px;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tabs__icon {
  width: 28px;
  height: 28px;
  padding: 2px;
  fill: inherit;
}

.tabs__svg {
  width: 24px;
  height: 24px;
}

.tabs--old .tabs__item {
  width: calc(50% - 10px);
  border-radius: 0;
  border: none;
  color: #FF3900;
  background-color: #F0EDE3;
}

.tabs--old .tabs__item.tabs__item--active,
.tabs--old .tabs__item:hover {
  color: #FFFFFF;
  background-color: #FF3900;
}

.tabs--old .tabs__title {
  font-size: 16px;
  text-transform: unset;
}

.double-tabs {
  width: 100%;
  background-color: #F0EDE3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.double-tabs :hover {
  cursor: pointer;
}

.double-tabs__button {
  border: none;
  background-color: transparent;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 24px 0;
  color: rgba(33, 33, 33, 0.6);
}

.double-tabs__button--active {
  color: #212121;
}

.double-tabs__title {
  text-transform: uppercase;
  width: 100%;
  padding: 0 48px;
  font-size: 16px;
  font-weight: 500;
  line-height: 161%;
  border-right: 1px solid rgba(33, 33, 33, 0.6);
}

.double-tabs__button:last-child .double-tabs__title {
  border-right: none;
}

.slider-button {
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid #212121;
  fill: #212121;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, fill 0.2s ease;
  transition: border-color 0.2s ease, fill 0.2s ease;
}

.slider-button:hover:not(.slider-button--disabled):not([disabled]) {
  border-color: #FF3900;
  color: #FF3900;
  fill: #FF3900;
}

.slider-button.slider-button--lg {
  padding: 20px;
  width: 64px;
  height: 64px;
}

.slider-button.slider-button--lg .slider-button__icon {
  width: 24px;
  height: 24px;
}

.slider-button.slider-button--sm {
  padding: 14px;
}

.slider-button.slider-button--sm .slider-button__icon {
  width: 20px;
  height: 20px;
}

.slider-button.slider-button--left .slider-button__icon {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.slider-button.swiper-button-disabled {
  border-color: rgba(33, 33, 33, 0.0509803922) !important;
  background-color: rgba(33, 33, 33, 0.0509803922) !important;
  fill: rgba(33, 33, 33, 0.2);
  color: rgba(33, 33, 33, 0.2);
  cursor: not-allowed;
  pointer-events: none;
}

.slider-button__icon {
  fill: inherit;
}

.slider-button__icon path {
  fill: inherit !important;
}

.icon {
  width: 24px;
  height: 24px;
  fill: inherit;
}

.icon--size-lg {
  width: 48px;
  height: 48px;
}

.icon--size-md {
  width: 40px;
  height: 40px;
}

.accordion-item {
  cursor: pointer;
  width: 100%;
  padding: 48px 0;
  border-bottom: 1px solid #212121;
}

.accordion-item:first-child {
  padding-top: 0;
}

.accordion-item__header {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  background: #fff;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-align: start;
}

.accordion-item__header .h5 {
  text-align: start;
}

.accordion-item__icon {
  -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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

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

.accordion-item__content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
  padding-right: 40px;
}

.accordion-item__content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

.accordion-item__content p a {
  color: #FF3900;
}

.accordion-item__links {
  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;
}

.accordion-item__link-block {
  padding: 0 16px;
  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;
}

.accordion-item__link-block._active {
  color: #FF3900;
}

.accordion-item__subtitle {
  font-family: HalvarBreit;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}

.accordion-item--active .accordion-item__header .h5 {
  color: #FF3900;
}

.accordion-item--active .accordion-item__icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-filter: brightness(0) saturate(100%) invert(32%) sepia(56%) saturate(7493%) hue-rotate(10deg) brightness(108%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(32%) sepia(56%) saturate(7493%) hue-rotate(10deg) brightness(108%) contrast(107%);
}

.accordion-item--active .accordion-item__content {
  max-height: 1500px;
  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;
  margin-top: 12px;
}

.accordion-item--menu {
  list-style: none;
}

.accordion-item--menu:first-child {
  padding-top: 24px;
}

.accordion-item--menu .accordion-item__content {
  padding-right: 0;
  row-gap: 24px;
}

.accordion-item--menu.accordion-item--active .accordion-item__content {
  margin-top: 24px;
}

.accordion-item--menu.accordion-item--active .accordion-item__links {
  padding: 8px 0;
}

.info-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.info-block__title {
  font-family: HalvarBreit;
  font-weight: 500;
}

.info-block._primary-font .info-block__title {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-weight: 700;
}

.info-block._size_lg {
  gap: 10px;
  font-size: 20px;
  line-height: 32px;
}

.info-block._size_sm {
  gap: 5px;
  font-size: 14px;
  line-height: 161%;
}

.info-block._size_sm .info-block__title {
  font-family: HalvarBreit;
  font-weight: 500;
}

.links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.links__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  max-width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.links__item:hover {
  cursor: pointer;
  color: #FF3900;
  fill: #FF3900;
}

.links__item:hover span {
  color: #F0EDE3;
  border-color: #FF3900;
  background-color: #FF3900;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.links__item.is-active {
  cursor: default;
  pointer-events: none;
  color: #FF3900;
  fill: #FF3900;
}

.links__item.is-active span {
  color: #F0EDE3;
  border-color: #FF3900;
  background-color: #FF3900;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.links__item span {
  display: inline-block;
  text-align: center;
  min-width: 32px;
  padding: 1px 8px;
  margin-left: 8px;
  border: 1px solid #212121;
  border-radius: 100px;
  font-family: inherit;
  font-weight: inherit;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: inherit;
  text-transform: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.links__item-text {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  /* запрет переноса */
  overflow: hidden;
  text-overflow: ellipsis;
  /* многоточие */
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  /* занимает всё доступное пространство */
  min-width: 0;
}

.color_white {
  color: #F0EDE3;
}

.payment-icon {
  width: 50px;
  height: 50px;
}

.payment-icon img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.select {
  width: 100%;
}

.select__wrapper {
  position: relative;
  border: 1px solid rgba(33, 33, 33, 0.2);
  background-color: #FFFFFF;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 12px;
  width: 100%;
  margin-top: 8px;
}

.select__wrapper:hover,
.select__wrapper:focus {
  border: 1px solid #212121;
}

.select__wrapper:hover .select__toggle-icon,
.select__wrapper:focus .select__toggle-icon {
  color: #212121;
}

.select__wrapper:not(:has(._hidden)) .select__trigger .icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select__label {
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

.select__toggle-icon {
  -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;
  margin-right: 0;
  margin-left: auto;
  color: #212121;
}

.select__toggle-icon._rotate {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.select:disabled,
.select._disabled {
  opacity: 0.5;
  pointer-events: none;
}

.select input[type=radio],
.select input[type=checkbox] {
  display: none;
}

.select__trigger,
.select__selected-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.select__trigger span,
.select__selected-option span {
  color: rgba(33, 33, 33, 0.6);
  font-family: BasisGrotesqueArabicPro, sans-serif;
  line-height: 20px;
  max-width: calc(100% - 28px);
}

.select__trigger .icon {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.select__dropdown {
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  overflow-y: scroll;
  overflow-x: hidden;
  max-height: 210px;
  z-index: 101;
  left: -1px;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  top: calc(100% + 1px);
  scrollbar-width: none;
  padding: 5px 0;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border: 1px solid #212121;
  scrollbar-color: transparent transparent;
  min-width: 80px;
  width: calc(100% + 2px);
}

.select__dropdown::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.select__error {
  display: none;
}

.select__dropdown._hidden {
  display: none;
}

.select__dropdown-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: stretch;
  -ms-grid-row-align: stretch;
  align-self: stretch;
  width: 100%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  background: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.select__dropdown-item:checked,
.select__dropdown-item:hover,
.select__dropdown-item._active {
  background: #FF3900;
  color: #FFFFFF;
}

.select__dropdown-item:disabled,
.select__dropdown-item.disabled {
  opacity: 0.5;
  cursor: initial;
}

.select._type_check .select__dropdown-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-left: 40px;
}

.select._type_check .select__dropdown-item:before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 10px;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 4px;
  border: 2px solid #212121;
  background: #F0EDE3;
  cursor: pointer;
  margin-top: 1px;
}

.select._type_check .select__dropdown-item._checked:before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"><rect width="20" height="20" rx="4" fill="%23BFCFD5"/><path d="M15.63 5.87656C15.1374 5.37448 14.3365 5.37448 13.8439 5.87656L8.42101 11.3956L6.15611 9.0909C5.66346 8.58882 4.8626 8.58882 4.36996 9.0909C3.87668 9.59298 3.87668 10.4069 4.36996 10.9089L7.52794 14.1233C7.77426 14.3746 8.09763 14.5 8.42101 14.5C8.74439 14.5 9.06776 14.3746 9.31409 14.1233L15.63 7.69459C16.1233 7.19251 16.1233 6.37864 15.63 5.87656Z" fill="%23141414"/></svg>') center/20px 20px no-repeat;
  border: none;
}

.select-filter {
  max-width: 130px;
  width: 100%;
}

.select-filter label {
  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;
  color: rgba(0, 32, 51, 0.6);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.select-filter__signature {
  margin-top: 8px;
}

.select-filter__signature button {
  color: #0078d2;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.select-filter__copy-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: 8px;
}

.select-filter__signature:hover {
  cursor: pointer;
}

.select-filter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.select-filter__container img {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 5px;
  width: 12px;
  height: 12px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  border-radius: 4px;
  background: rgba(0, 66, 105, 0.07);
}

.select-filter__container img:hover {
  cursor: pointer;
}

.select2-container {
  max-width: 130px;
}

.select2-results__option:hover {
  background-color: white !important;
  color: #FF3900 !important;
  border-left: 1px solid #be192d !important;
}

.select2-results__option--highlighted {
  background-color: none;
}

.select2-results__option--selectable {
  color: #002033 !important;
  background-color: white !important;
}

.select2-selection--multiple {
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.select-multiple .select2-results__option {
  position: relative !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.select-multiple .select2-results__option span {
  padding-left: 18px;
}

.select-multiple .select2-results__option:hover {
  background-color: white !important;
  color: #FF3900 !important;
  border-left: none !important;
}

.select-multiple .select2-results__option:after {
  content: "";
  position: absolute !important;
  width: 20px;
  height: 20px;
}

.select-multiple .select2-results__option:first-child {
  display: none !important;
}

.select-multiple .select2-results__option--highlighted {
  background-color: white !important;
  color: #002033 !important;
}

.select__title-option {
  color: rgba(0, 32, 51, 0.35) !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.select2-selection {
  height: 40px;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  overflow: visible !important;
}

.select2-selection__rendered {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.select2-selection__rendered[title="Выберите тип"] {
  color: rgba(0, 32, 51, 0.35) !important;
}

.select2-selection__rendered[title="Укажите место"] {
  color: rgba(0, 32, 51, 0.35) !important;
}

.select2-selection__rendered[title="Укажите город"] {
  color: rgba(0, 32, 51, 0.35) !important;
}

.select2-selection__rendered[title="Выберите кол-во звезд отеля"] {
  color: rgba(0, 32, 51, 0.35) !important;
}

.select2-selection__arrow {
  top: 0 !important;
  border-left: 1px solid var(--control-default-bg-border, rgba(0, 66, 105, 0.28));
  width: 40px !important;
  height: 40px !important;
}

.select._modal {
  width: 100%;
}

.select._pt_md {
  padding-top: 24px;
}

.select._width_max {
  width: 800px;
}

.select2-selection__choice:not([title]) {
  border: none !important;
  background-color: white !important;
  padding-left: 3px !important;
}

.select2-selection__choice:not([title]) span {
  display: none !important;
}

.select2-selection__choice:not([title]) button {
  display: none !important;
}

.select2-selection__choice:not([title]) li {
  background-color: white !important;
}

.select._tag .select2-selection__choice:not([title])::after {
  content: "Выберите теги для дальнейшего удобного поиска";
  color: rgba(0, 32, 51, 0.35);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.select._town .select2-selection__choice:not([title])::after {
  content: "Укажите города";
  color: rgba(0, 32, 51, 0.35);
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.select._hotel .select2-selection__choice:not([title])::after {
  content: "Выберите кол-во звезд отеля";
}

.select2-selection__choice[title] {
  border-radius: 4px !important;
  background: rgba(0, 66, 105, 0.07) !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
  border: none !important;
  padding-left: 8px !important;
}

.select2-selection__choice[title] button {
  position: relative !important;
  width: 16px;
  height: 16px;
  border-right: none !important;
}

.select2-selection__choice[title] button span {
  display: none !important;
}

.select2-selection__choice[title] button:after {
  content: "";
  background-image: url("/local/templates/grasserschool/public/css/../assets/media/IconClose.svg");
  position: absolute;
  width: 16px;
  height: 16px;
  right: 5px;
  top: 5px;
}

.select._logic .select__signature {
  margin-top: 0px;
}

.select._logic label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.select2-selection__clear {
  display: none;
}

.select2-search {
  display: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.select2-container .selection {
  overflow: hidden;
  width: 100%;
  display: block;
}

.select2-selection__choice__display,
.select-filter-dropdown {
  font-family: BasisGrotesqueArabicPro, sans-serif;
}

.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--single {
  min-height: 40px;
}

.select2-container--default .select2-selection--multiple {
  height: auto;
}

.select2-container--default .select2-selection--multiple {
  border: 1px solid #BFCFD5;
  border-radius: 0;
}

.select2-results__option {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.75' y='0.75' width='18.5' height='18.5' rx='3.25' stroke='%23BFCFD5' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left;
  background-position: 12px center;
}

.select2-results__option--selected {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='20' height='20' rx='4' fill='%23BFCFD5'/%3E%3Cpath d='M15.63 5.87656C15.1374 5.37448 14.3365 5.37448 13.8439 5.87656L8.42101 11.3956L6.15611 9.0909C5.66346 8.58882 4.8626 8.58882 4.36996 9.0909C3.87668 9.59298 3.87668 10.4069 4.36996 10.9089L7.52794 14.1233C7.77426 14.3746 8.09763 14.5 8.42101 14.5C8.74439 14.5 9.06776 14.3746 9.31409 14.1233L15.63 7.69459C16.1233 7.19251 16.1233 6.37864 15.63 5.87656Z' fill='%23141414'/%3E%3C/svg%3E");
}

.select2-selection__choice[title] button:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cscript xmlns=''/%3E%3Cg id='IconClose' opacity='0.4'%3E%3Cpath id='Vector' fill-rule='evenodd' clip-rule='evenodd' d='M3.75699 2.34314L2.34277 3.75735L6.58541 7.99999L2.34277 12.2426L3.75699 13.6568L7.99963 9.41421L12.2423 13.6568L13.6565 12.2426L9.41384 7.99999L13.6565 3.75735L12.2423 2.34314L7.99963 6.58578L3.75699 2.34314Z' fill='%2300395C' fill-opacity='0.8'/%3E%3C/g%3E%3Cscript xmlns=''/%3E%3C/svg%3E");
  right: 3px;
  top: 4px;
}

.select2-selection__choice:first-child {
  display: none !important;
}

.select.is-error .select__label {
  color: #FF3900;
}

.select.is-error .select__error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  font-size: 16px;
  line-height: 24px;
  color: #FF3900;
}

.section-documents {
  max-width: 100%;
  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;
  padding: 64px 0;
  gap: 48px;
  margin: auto;
}

.section-documents .section__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;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

.section-documents__body {
  gap: 0;
}

.section-documents__body a {
  color: #FF3900;
}

.section-documents__body a:hover {
  cursor: pointer;
}

.section-documents__body p {
  margin: 10px 0;
}

.section-documents__body .h2 {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  margin: 48px 0 0 0;
  text-transform: none;
  letter-spacing: 0;
}

.section-documents__body li {
  font-family: inherit;
  font-size: 20px;
  line-height: 32px;
}

.section-documents__body li:first-child {
  margin-top: 14px;
}

.section-documents__body li:not(:last-child) {
  margin-bottom: 10px;
}

.section-documents__body ol li {
  margin-top: 10px;
}

.section-documents__body ol {
  list-style-type: none;
  counter-reset: item;
  padding-left: 0;
}

.section-documents__body ol > li {
  counter-increment: item;
}

.section-documents__body ol > li:before {
  content: counters(item, ".") ". ";
}

.section-documents__body ol ol > li:before {
  content: counters(item, ".") " ";
}

.section-documents__body ul li {
  margin-top: 20px;
  list-style: none;
}

.section-documents__body > *:first-child {
  margin-top: 0;
}

.section-documents__body > *:last-child {
  margin-bottom: 0;
}

.selection-picture {
  height: 820px;
  overflow: hidden;
  border-radius: 8px;
  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;
}

.selection-picture picture {
  height: 100%;
  width: 100%;
}

.selection-picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.status {
  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;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.status__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.status__date::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #D2D0E7;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.status__left {
  color: rgba(33, 33, 33, 0.4);
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  margin-left: 28px;
}

.status--red .status__date::before {
  background-color: #FF3900;
}

.status--green .status__date::before {
  background-color: #29CC1B;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.checkbox:hover::before {
  border-color: #FF3900;
}

.checkbox:has(input:checked)::before {
  background-color: #FF3900;
  background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.2965 4.87656C14.8039 4.37448 14.003 4.37448 13.5104 4.87656L8.08751 10.3956L5.82261 8.0909C5.32997 7.58882 4.52911 7.58882 4.03646 8.0909C3.54318 8.59298 3.54318 9.40685 4.03646 9.90894L7.19444 13.1233C7.44076 13.3746 7.76414 13.5 8.08751 13.5C8.41089 13.5 8.73427 13.3746 8.98059 13.1233L15.2965 6.69459C15.7898 6.19251 15.7898 5.37864 15.2965 4.87656Z' fill='white'/%3E%3C/svg%3E");
}

.checkbox::before {
  content: "";
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid rgba(33, 33, 33, 0.2);
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.checkbox__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
}

.checkbox input[type=checkbox] {
  display: none;
}

.progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #F0EDE3;
}

.progress.progress--white {
  background-color: #F0EDE3;
}

.progress.progress--green {
  background-color: #29CC1B;
}

.progress.progress--red {
  background-color: #FF3900;
}

.alert {
  color: rgba(33, 33, 33, 0.6);
  background-color: rgba(33, 33, 33, 0.0509803922);
  border: 1px solid rgba(33, 33, 33, 0.0509803922);
  padding: 10px 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

.alert span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.modal-letter .modal__header {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
  -ms-flex-direction: unset;
  flex-direction: unset;
  -webkit-box-pack: unset;
  -ms-flex-pack: unset;
  justify-content: unset;
}

.modal-letter .modal__title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-letter .modal__title .icon {
  margin-left: 6px;
}

.modal-letter .modal__container {
  gap: 20px;
}

.modal-letter .modal__wrapper {
  gap: 40px;
}

.modal-recovery .modal__wrapper {
  gap: 40px;
}

.modal-feedback .modal__wrapper {
  gap: 15px;
}

.modal-course-feedback .modal__wrapper {
  gap: 32px;
}

.modal-course-feedback .button {
  margin-top: 8px;
}

.modal-auth .modal__title {
  display: none;
}

.modal-comment .modal__wrapper {
  gap: 32px;
}

.modal-comment .button {
  margin-top: 8px;
}

.header {
  width: 100%;
  padding: 0 48px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1001;
}

.header--scrolled .header__top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  display: none;
}

.header__top {
  width: 100%;
  padding: 48px 0;
  border-bottom: 1px solid #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.header__top svg {
  display: block;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

.header__main {
  padding: 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
}

.header__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  padding: 24px 48px 48px 48px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.header__cart-and-profile {
  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;
  color: #212121;
}

.header__cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__enter {
  color: #212121;
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  max-width: calc((100vw - 1355px) / 1.72);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.header__enter .button__title {
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.header menu {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0;
}

.header:has(.menu-item._open) ~ .footer::after {
  content: "";
  display: block;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.145);
  z-index: 9;
}

.header-dropdown {
  display: -ms-grid;
  display: grid;
  gap: 48px;
  max-height: calc(100vh - 124px);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.header-dropdown__menu {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}

.header-dropdown__menu-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.header-dropdown__bottom-banner {
  max-height: 388px;
}

.header-dropdown__bottom-banners {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 48px;
  -moz-column-gap: 48px;
  column-gap: 48px;
}

.header-dropdown__aside {
  min-width: 285px;
}

.header-dropdown._lg-aside {
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  width: 100%;
}

.header-dropdown._lg-aside .header-dropdown__aside {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.header-dropdown._lg-aside .header-dropdown__menu {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.header-dropdown._sm-aside {
  -ms-grid-columns: 7fr 3fr;
  grid-template-columns: 7fr 3fr;
}

.header-dropdown._sm-aside .header-dropdown__aside {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.header-dropdown._sm-aside .header-dropdown__menu {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.header-dropdown._lg-aside .header-dropdown__two-banners-aside,
.header-dropdown._sm-aside .header-dropdown__two-banners-aside {
  max-height: 824px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 2fr 1fr;
  grid-template-rows: 2fr 1fr;
  gap: 8px;
}

.header-dropdown._contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-dropdown._contact .header-dropdown__menu {
  width: 100%;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.mobile-header {
  display: none;
  width: 100%;
  padding: 0 16px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1001;
}

.mobile-header--scrolled .mobile-header__top {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  opacity: 0;
  display: none !important;
}

.mobile-header__top {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #212121;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.mobile-header__top svg {
  display: block;
  width: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

.mobile-header__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 20px 0;
  height: 60px;
}

.mobile-header__burger-and-profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
  margin-left: 16px;
}

.mobile-header__burger,
.mobile-header__profile {
  border: none;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-header__button--active .icon {
  fill: #FF3900;
  color: #FF3900;
}

.mobile-header .icon {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: #FFFFFF;
  z-index: 1001;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -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;
  padding: 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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  opacity: 0;
}

.mobile-menu--open {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  top: 60px;
  overflow-y: auto;
  height: calc(100dvh - 60px);
  opacity: 100%;
}

.mobile-menu__link {
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid #212121;
  list-style: none;
}

.mobile-menu__link._active {
  color: #FF3900;
  fill: #FF3900;
  pointer-events: none;
}

.mobile-cart-preview {
  width: 100%;
  border-radius: 8px;
  padding: 16px;
  background-color: rgba(33, 33, 33, 0.0509803922);
}

.mobile-cart-preview__title {
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  font-family: HalvarBreit;
  color: rgba(33, 33, 33, 0.6);
}

.mobile-cart-preview__content {
  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;
  margin-bottom: 16px;
}

.promotion-card {
  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;
  color: #212121;
}

.promotion-card:hover {
  cursor: pointer;
  color: #FF3900;
}

.promotion-card img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
}

.promotion-card__title {
  width: 100%;
  padding: 0 40px 0 24px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.menu {
  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;
  margin: 0 40px;
}

.banner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 64px;
  gap: 64px;
  border-radius: 8px;
}

.banner__title {
  font-family: HalvarBreit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.banner__title strong {
  color: #FF3900;
}

.banner--contact {
  background-color: #212121;
}

.banner--contact .banner__text .h1 {
  color: #FFFFFF;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.96px;
}

.banner--contact .banner__text svg {
  fill: #FF3900;
  display: inline-block;
  width: 52px;
  height: 52px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.banner--contact .form__additional {
  color: #F0EDE3;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  opacity: 0.6;
}

.banner--subscribe {
  background-color: rgba(33, 33, 33, 0.0509803922);
}

.banner--subscribe .banner__text {
  color: #212121;
  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;
}

.banner--subscribe .banner__text .h1 {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: 0.96px;
}

.banner--subscribe .banner__text span {
  font-size: 24px;
  line-height: 32px;
}

.banner--link {
  background-color: rgba(33, 33, 33, 0.0509803922);
  padding: 40px;
}

.banner--link .banner__title {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.8px;
}

.banner--link .banner__form {
  max-width: 320px;
  width: 100%;
}

.banner--link .button {
  margin-left: auto;
}

.banner__text,
.banner__form {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}

.banner__form {
  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;
  width: 100%;
}

.banner__inputs {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
}

.banner__inputs input {
  width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.banner__button-wrapper {
  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;
}

.banner__confirm-text {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.banner--contact .banner__confirm-text {
  color: #FFFFFF;
  opacity: 0.6;
}

.banner--subscribe .banner__confirm-text {
  color: rgba(33, 33, 33, 0.6);
  opacity: 0.6;
}

.banner-card {
  position: relative;
  padding: 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-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1.4;
}

.banner-card__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.banner-card__image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(46.42%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 46.42%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-card__image picture,
.banner-card__image img {
  width: inherit;
  height: inherit;
  -o-object-fit: inherit;
  object-fit: inherit;
}

.banner-card__text {
  font-weight: 500;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: 0.04em;
  font-family: HalvarBreit;
  text-align: right;
  text-transform: uppercase;
  color: #FFFFFF;
}

.banner-card__text span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.course-selection {
  position: relative;
  height: 620px;
  border-radius: 8px;
  overflow: hidden;
  -ms-hyphens: auto;
  hyphens: auto;
  hyphenate-character: "-";
}

.course-selection__content {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
  height: 100%;
  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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.course-selection__text {
  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;
  color: #FFFFFF;
}

.course-selection__text--black {
  color: #212121;
}

.course-selection__title {
  font-family: HalvarBreit;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.course-selection__title-highlight {
  color: #FF3900;
}

.course-selection__description {
  font-family: inherit;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
}

.course-selection picture {
  width: 100%;
  height: 100%;
}

.course-selection img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.course-selection._max-size {
  height: 100%;
  width: 100%;
  min-height: 0;
}

.course-selection._unset-height {
  height: unset;
}

.course-selection.course-selection-slide {
  height: 824px;
}

.course-selection__button {
  width: 242px;
}

.course-selection._height-124 {
  height: 124px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-selection._height-228 {
  height: 228px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-selection._height-244 {
  height: 244px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-card {
  position: relative;
  height: 632px;
  width: 450px;
  border-radius: 8px;
  overflow: hidden;
}

.course-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44.29%, rgba(243, 243, 243, 0)), color-stop(60.27%, rgba(243, 243, 243, 0.7)), color-stop(85.42%, #F3F3F3));
  background: linear-gradient(180deg, rgba(243, 243, 243, 0) 44.29%, rgba(243, 243, 243, 0.7) 60.27%, #F3F3F3 85.42%);
  z-index: 1;
}

.course-card img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.course-card__labels {
  position: absolute;
  top: 24px;
  left: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course-card__image-wrapper {
  height: 100%;
  aspect-ratio: 1/1.4;
}

.course-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px;
  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;
  font-family: HalvarBreit;
  text-transform: uppercase;
  z-index: 2;
}

.course-card__info {
  font-family: inherit;
  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;
}

.course-card__title {
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.96px;
}

.course-card__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-column-gap: 19px;
  -moz-column-gap: 19px;
  column-gap: 19px;
  row-gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course-card__tag {
  font-family: inherit;
  font-size: 14px;
  line-height: 16px;
  position: relative;
}

.course-card__tag:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -11px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  border-radius: 100px;
  background: #212121;
}

.course-card__price {
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.96px;
}

.course-card__buttons {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
  text-transform: none;
}

.course-card__buttons .button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.course-card__buttons button {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.course-card__buttons a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

a.course-card {
  display: block;
}

.grid .course-card {
  width: 100%;
  height: 100%;
}

.course-label {
  width: 100%;
  padding: 20px;
  margin-top: 40px;
  border-radius: 8px;
  background-color: rgba(33, 33, 33, 0.0509803922);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 16px;
}

.course-label__image-wrapper {
  border-radius: 12px;
  overflow: hidden;
  width: 88px;
  height: 88px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-label__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.course-label__content {
  height: 88px;
  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;
  text-transform: uppercase;
  font-family: HalvarBreit;
}

.course-label__title {
  font-size: 18px;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.course-label__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-column-gap: 14px;
  -moz-column-gap: 14px;
  column-gap: 14px;
  row-gap: 4px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.course-label__tag {
  font-size: 12px;
  line-height: 20px;
  position: relative;
}

.course-label__tag:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: -10px;
}

.course-label.dark {
  background-color: rgba(33, 33, 33, 0.6);
}

.course-label.dark .course-label__content {
  color: #FFFFFF;
}

.footer {
  width: 100%;
  padding: 64px 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.footer__left {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
  padding-right: 80px;
  border-right: 1px solid #212121;
  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;
}

.footer__logo {
  max-width: 520px;
}

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

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

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

.footer__text,
.footer span,
.footer a {
  font-size: 20px;
  line-height: 32px;
}

.footer__text--red {
  color: #FF3900 !important;
}

.footer__socials {
  padding: 8px 0;
  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;
}

.footer__social-icon {
  max-height: 40px;
}

.footer__copyright {
  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;
  font-size: 20px;
  line-height: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__right {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
  padding-left: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: start;
  align-content: start;
  gap: 48px;
}

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

.footer__links {
  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;
  list-style: none;
}

.footer a {
  color: #212121;
}

.footer a:hover {
  color: #FF3900;
}

.footer__block-socials {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
}

.slider {
  --autoplay-duration: 4s;
  position: relative;
}

.slider__header {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -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;
  margin-bottom: 60px;
}

.slider__title {
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

.slider__external-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.slider__external-navigation--banner-gallery {
  position: absolute;
  right: 64px;
  bottom: 64px;
  z-index: 5;
}

.slider__content {
  height: 100%;
}

.slider__inner {
  height: 100%;
}

.slider__navigation {
  position: absolute;
  top: 50%;
  left: 12px;
  z-index: 2;
  width: calc(100% - 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;
  pointer-events: none;
  gap: 20px;
}

.slider__button {
  pointer-events: all;
  position: static;
  z-index: 2;
  width: 48px;
  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;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 16px;
}

.slider--cards .swiper {
  overflow: visible;
  max-width: 100vw;
  width: 100%;
}

.slider--cards .slider__slide {
  height: auto;
  width: 450px;
}

.slider__teacher-slide .swiper {
  width: 100%;
}

.slider__card-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
}

.slider__card-slide .swiper {
  overflow: visible;
  width: auto;
}

.slider__card-slide .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.swiper-pagination-fraction {
  width: unset;
}

.case-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px;
  -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;
  gap: 32px;
  border-radius: 8px;
  border: 1px solid #212121;
  height: 442px;
}

.case-card__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: 32px;
}

.case-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  overflow: hidden;
}

.case-card__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.case-card__main {
  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;
}

.case-card__info {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  line-height: 30px;
}

.case-card__title {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.case-card.case-card--course {
  height: 820px;
  gap: 0;
}

.case-card.case-card--course .case-card__avatar {
  width: 80px;
  height: 80px;
}

.case-card.case-card--course .case-card__title {
  color: #212121;
  font-family: HalvarBreit;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card.case-card--course .case-card__info {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.case-card.case-card--course .case-card__date {
  color: rgba(33, 33, 33, 0.6);
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -20px;
}

.case-card.case-card--course .case-card__text {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  overflow: hidden;
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  text-transform: initial;
  display: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: unset;
  text-overflow: unset;
}

.case-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: -webkit-line-clamp 0.3s ease;
}

.case-card--course .case-card__text {
  -webkit-line-clamp: unset;
}

@supports (-webkit-line-clamp: 1) or (line-clamp: 1) {
  .case-card__text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.case-card.case-card--message {
  height: 100%;
  padding: 48px;
  max-height: 820px;
}

.case-card.case-card--message .case-card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.case-card.case-card--message .case-card__main {
  row-gap: 0;
}

.case-card.case-card--message .case-card__avatar {
  width: 180px;
  height: 180px;
}

.case-card.case-card--message .case-card__title {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.case-card.case-card--message .case-casd__subtitle {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  font-family: HalvarBreit;
  margin: 16px 0 40px 0;
}

.case-card.case-card--message .case-card__text:not(:last-child) {
  margin-bottom: 20px;
}

.filter {
  width: 100%;
  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;
  margin-top: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid #212121;
}

.filter__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.filter__side button {
  text-transform: uppercase;
}

.filter.without-margin-top {
  margin-top: 0;
}

.feedback-card {
  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: 32px;
  max-width: 1366px;
}

.feedback-card__avatar {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  overflow: hidden;
}

.feedback-card__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.feedback-card__content {
  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;
}

.feedback-card__info {
  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;
}

.feedback-card__author {
  font-family: HalvarBreit;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.feedback-card__date {
  font-size: 20px;
  line-height: 32px;
  color: rgba(33, 33, 33, 0.6);
}

.feedback-card__course-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  font-family: HalvarBreit;
  color: #FF3900;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
}

.feedback-card__text {
  font-size: 20px;
  line-height: 32px;
}

.feedback-card__text--collapsed {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.feedback-card__more {
  border: none;
  background-color: transparent;
  color: #FF3900 !important;
  padding-top: 4px;
  font-size: 20px;
  line-height: 32px;
}

.feedback-card__more--hidden {
  display: none;
}

.preview-card {
  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;
  width: 100%;
}

.preview-card:hover {
  cursor: pointer;
  color: #FF3900;
}

.preview-card__heading,
.preview-card--without-modal {
  border-radius: 8px;
  overflow: hidden;
}

.preview-card__video-preview {
  position: relative;
  aspect-ratio: 16/9;
}

.preview-card__video-preview img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.preview-card__button-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 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;
  background-color: rgba(33, 33, 33, 0.6);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 32px;
}

.preview-card__button-wrapper :hover {
  cursor: pointer;
}

.preview-card__button-wrapper button {
  border: none;
  background-color: transparent;
}

.preview-card__icon {
  width: 64px;
  height: 64px;
}

.preview-card__title {
  padding: 0 24px;
  font-family: HalvarBreit;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

.preview-card__label-wrapper {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}

.preview-card__preview-text {
  color: #FFFFFF;
  font-family: HalvarBreit;
  font-size: 18px;
  line-height: 26px;
  text-transform: uppercase;
}

.preview-card--with-max-height {
  height: 820px;
}

.preview-card--with-max-height .preview-card__video-preview {
  aspect-ratio: auto;
  height: 100%;
}

.preview-card--with-max-height .preview-card__video-preview img {
  aspect-ratio: auto;
  height: 100%;
}

.preview-card--with-max-height .preview-card__image-wrapper {
  height: 100%;
}

.preview-card--with-max-height .preview-card__video-wrapper iframe {
  aspect-ratio: auto !important;
}

.preview-card--xl-aspect-ratio .preview-card__video-preview img {
  -o-object-position: top;
  object-position: top;
}

.preview-card--without-dark-shadow .preview-card__button-wrapper {
  background-color: transparent;
}

.teacher-card {
  width: 100%;
}

.teacher-card :hover {
  cursor: pointer;
}

.teacher-card__image {
  width: 100%;
  aspect-ratio: 5/7;
  border-radius: 8px;
  overflow: hidden;
}

.teacher-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.teacher-card__content {
  padding: 24px 40px 24px 0;
  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;
  color: #212121;
}

.teacher-card__title {
  font-family: HalvarBreit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.teacher-card__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.article-card {
  color: #212121;
}

.article-card:hover {
  color: #FF3900;
}

.article-card__image {
  aspect-ratio: 3/2;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.article-card__image img {
  width: 100%;
  height: 100%;
}

.article-card__main {
  width: 100%;
  padding: 24px 40px 24px 0;
  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;
}

.article-card__title {
  font-family: HalvarBreit;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.article-card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.contact-card {
  background-color: rgba(33, 33, 33, 0.0509803922);
  border-radius: 8px;
  max-width: 721px;
  height: 100%;
  padding: 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-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.contact-card__content {
  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: 40px;
}

.contact-card__text {
  margin: 0 !important;
}

.contact-card__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: 24px;
  color: #212121;
  font-family: HalvarBreit;
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.accordion {
  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%;
  padding-top: 12px;
}

.accordion--mobile {
  padding-top: 0;
}

.feedback-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;
  gap: 40px;
}

.feedback-form__subtitle {
  margin-top: 16px;
}

.feedback-form__body {
  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: 16px;
}

.feedback-form__info {
  text-align: start;
  margin-top: 40px;
}

.feedback-form__text-confirm {
  font-size: 14px;
  line-height: 20px;
  color: rgba(33, 33, 33, 0.6);
  margin-top: 24px;
}

.feedback-form.with-border {
  padding-right: 48px;
  border-right: 1px solid #212121;
}

.feedback-form.gaps-sm {
  gap: 20px;
}

.feedback-form.gaps-sm .feedback-form__main {
  gap: 20px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 5px;
  color: rgba(33, 33, 33, 0.6);
  margin-top: 48px;
  margin-bottom: 24px;
}

.breadcrumbs__item {
  position: relative;
  padding-right: 10px;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M5.31446 6.49703L1.54733 10.814C1.3077 11.0888 0.919172 11.0888 0.679653 10.814C0.440116 10.5395 0.440116 10.0943 0.679653 9.81981L4.01298 5.99991L0.67975 2.18015C0.440212 1.90552 0.440212 1.46034 0.67975 1.18583C0.919288 0.911203 1.30779 0.911203 1.54743 1.18583L5.31456 5.50291C5.43432 5.64023 5.49414 5.82002 5.49414 5.99989C5.49414 6.17985 5.43421 6.35977 5.31446 6.49703Z' fill='%23212121' fill-opacity='0.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.breadcrumbs__item:last-child {
  color: #FF3900;
  padding-right: 0;
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.comment__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-bottom: auto;
}

.comment__avatar img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.comment__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 5px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.comment__author {
  font-size: 16px;
  font-weight: 500;
  line-height: 161%;
}

.comment__date,
.comment__text {
  font-size: 14px;
  line-height: 161%;
  color: rgba(33, 33, 33, 0.6);
}

.comment__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.comment__button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.comment__button .button__title {
  color: #FF3900;
  font-weight: 400;
  font-size: 16px;
  line-height: 161%;
  text-decoration: underline;
  margin: 0;
}

.comment--answer {
  padding-left: 24px;
}

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

.comments__title {
  font-family: HalvarBreit;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.2px;
}

.comments__subtitle {
  margin-top: 15px;
  color: rgba(33, 33, 33, 0.6);
  font-size: 16px;
  line-height: 24px;
}

.comments__subtitle a {
  color: #FF3900;
}

.comments__main {
  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: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #D2D0E7;
}

.comments__share {
  font-family: HalvarBreit;
  font-size: 16px;
  font-weight: 500;
}

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

.teachers-list {
  width: 100%;
}

.teachers-list__item {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0;
}

.teachers-list__item picture {
  width: 100%;
}

.teachers-list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.aside.aside_size-sm {
  max-width: 33.33%;
  width: 100%;
}

.aside.aside_size-md {
  max-width: 50%;
  width: 100%;
  gap: 32px;
}

.back-button {
  cursor: pointer;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  background-color: transparent;
}

.hero {
  width: 100%;
  height: auto;
  padding: 64px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.hero__background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
}

.hero__background picture,
.hero__background img {
  width: inherit;
  height: inherit;
  aspect-ratio: inherit;
  -o-object-fit: inherit;
  object-fit: inherit;
}

.hero__content {
  margin-top: auto;
  max-width: 580px;
  width: 100%;
}

.hero__content .h2 {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 72px;
  line-height: 88px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__controls {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 12px;
}

.hero__controls .button {
  min-width: 220px;
}

.hero--narrow {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 48px;
}

.hero--narrow .h2 {
  font-size: 44px;
  line-height: 60px;
  letter-spacing: 1.76px;
  margin-bottom: 32px;
}

.hero--narrow p:not(:first-child) {
  margin-top: 16px;
}

.hero--narrow .hero__content {
  max-width: 700px;
}

.info-card {
  background-color: rgba(33, 33, 33, 0.0509803922);
  padding: 32px;
  border-radius: 8px;
  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;
}

.info-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 34px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
}

.info-card__title {
  font-family: HalvarBreit;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
}

.info-card__main {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.info-card--secondary .info-card__body {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.info-card--accent .info-card__main {
  color: #FF3900;
}

.info-group {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (1fr)[2];
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}

.info-group > *:nth-child(1) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.advantages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
}

.advantages__title {
  max-width: 30%;
  width: 100%;
  font-family: HalvarBreit;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
  color: #212121;
}

.advantages__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: 20px;
}

.advantages__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: 32px;
  padding: 24px 48px;
  border-left: 1px solid #212121;
}

.advantages__item-title {
  font-family: HalvarBreit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #212121;
}

.advantages__item-description {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #212121;
}

.image-card {
  position: relative;
  height: 820px;
}

.image-card__wrapper {
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
}

.image-card__wrapper img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.image-card__label-wrapper {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
}

.author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  padding: 48px;
  border-radius: 8px;
  border: 1px solid #212121;
}

.author__photo {
  width: 186px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.author__photo picture,
.author__photo img {
  width: inherit;
  height: inherit;
  aspect-ratio: inherit;
  -o-object-fit: inherit;
  object-fit: inherit;
  border-radius: inherit;
}

.author__description {
  font-family: HalvarBreit;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  color: #212121;
}

.author__name {
  font-family: HalvarBreit;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
  color: #212121;
  margin-top: 12px;
}

.author__text {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #212121;
  margin-top: 24px;
}

.map {
  width: 100%;
  height: 820px;
  border-radius: 8px;
  overflow: hidden;
}

.map__marker {
  width: 50px;
  height: 50px;
}

.schedule-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 48px 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#000), color-stop(50%, #000), color-stop(50%, transparent), to(transparent));
  background-image: linear-gradient(to right, #000 0%, #000 50%, transparent 50%, transparent 100%);
  background-size: 36px 2px;
  background-position: bottom;
  background-repeat: repeat-x;
}

.schedule-item__main {
  width: calc(100% - 396px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}

.schedule-item__main.is-opened .schedule-item__col:nth-child(n+3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.schedule-item__main .schedule-item__col:nth-child(1) {
  max-width: 604px;
  width: 100%;
}

.schedule-item__main .schedule-item__col:nth-child(2) {
  max-width: 320px;
  width: 100%;
}

.schedule-item__main .schedule-item__col:nth-child(3) {
  max-width: 180px;
  width: 100%;
}

.schedule-item__main :not(:last-child) {
  word-break: break-word;
  -ms-hyphens: auto;
  hyphens: auto;
  min-width: 100px;
}

.schedule-item__main .schedule-item__col:first-child {
  min-width: 150px;
}

.schedule-item__main .schedule-item__col:last-child {
  white-space: nowrap;
}

.schedule-item__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
}

.schedule-item__col:first-of-type {
  max-width: 250px;
  width: 100%;
}

.schedule-item__col:last-of-type {
  max-width: 220px;
  width: 100%;
}

.schedule-item__title {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0.72px;
  text-transform: uppercase;
}

.schedule-item__value {
  font-family: HalvarBreit;
  color: rgba(33, 33, 33, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}

.schedule-item__value:has(.schedule-item__tag) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.schedule-item__tag {
  position: relative;
}

.schedule-item__tag::before {
  content: "";
  position: absolute;
  right: -10px;
  top: calc(50% - 2px);
  display: block;
  width: 3px;
  height: 3px;
  background-color: rgba(33, 33, 33, 0.6);
  border-radius: 50%;
}

.schedule-item__tag:last-of-type::before {
  display: none;
}

.schedule-item__trigger {
  display: none;
  font-family: HalvarBreit;
  font-weight: 400;
  font-size: 8px;
  line-height: 10px;
  text-transform: uppercase;
  color: #FF3900;
}

.schedule-item button.button {
  min-width: 220px;
  width: 100%;
}

.sidebar {
  max-width: 388px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.sidebar__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  list-style: none;
  gap: 20px;
}

.sidebar__nav-item {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.sidebar__nav-item a:hover {
  color: #FF3900;
}

.sidebar__nav-item.active {
  color: #FF3900;
}

.sidebar__nav-count {
  color: #FF3900;
  margin-left: 8px;
}

.user {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 20px;
}

.user__avatar {
  max-width: 152px;
  width: 100%;
}

.user__avatar-img {
  width: 140px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
}

.user__avatar-img img {
  width: inherit;
  height: inherit;
  aspect-ratio: inherit;
}

.user__avatar-description {
  color: #828282;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 126.5%;
  margin-top: 10px;
}

.user__info {
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.user__info-grid {
  display: -ms-grid;
  display: grid;
  gap: 20px 40px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.user__info-name {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 161%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.user__controls {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}

.user__controls .button {
  min-width: 184px;
}

.user__info .input__label {
  font-weight: 500;
  font-size: 16px;
  line-height: 161%;
}

.user.is-editable .user__info-grid {
  gap: 10px 20px;
}

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

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

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

.form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 24px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.form__row .button__title {
  padding: 2px 0;
}

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

.form__title {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 44px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: 1.76px;
  text-transform: uppercase;
}

.form__subtitle {
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.form__additional {
  color: rgba(33, 33, 33, 0.6);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  margin-top: 10px;
}

.form__additional span {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.form.form-feedback {
  gap: 30px;
}

.form.form-feedback .form__body {
  gap: 30px;
}

.form.form-feedback .form__footer .button {
  max-width: 562px;
  width: 100%;
}

.form.form-brief {
  padding: 48px;
  border-radius: 8px;
  gap: 48px;
  background-color: rgba(33, 33, 33, 0.0509803922);
}

.form.form-brief .form__body {
  gap: 40px;
}

.form.form-brief .form__subtitle {
  color: rgba(33, 33, 33, 0.8);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.form.form-brief .input__field {
  padding: 16px 20px;
  font-size: 20px;
  line-height: 32px;
  min-height: 64px;
}

.form.form-brief .input::-webkit-input-placeholder {
  font-size: 20px;
  line-height: 32px;
}

.form.form-brief .input::-moz-placeholder {
  font-size: 20px;
  line-height: 32px;
}

.form.form-brief .input:-ms-input-placeholder {
  font-size: 20px;
  line-height: 32px;
}

.form.form-brief .input::-ms-input-placeholder {
  font-size: 20px;
  line-height: 32px;
}

.form.form-brief .input::placeholder {
  font-size: 20px;
  line-height: 32px;
}

.form.form-banner {
  gap: 40px;
}

.form.form-banner .form__row {
  gap: 20px;
}

.form.form-banner .form__additional {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  margin-top: 24px;
}

.form.form-banner .input text {
  display: none;
}

.form.form-banner .input__label {
  font-size: 0;
  line-height: 0;
}

.form.form-banner .input__field {
  margin: 0;
  max-height: unset;
  padding: 16px 20px;
  font-size: 20px;
  line-height: 32px;
}

.form.form-filter {
  height: 100vh;
  padding: 40px;
  gap: 48px;
  background-color: #FFFFFF;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.form.form-filter .form__title {
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form.form-filter .form__subtitle {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form.form-filter .form__header {
  -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;
}

.form.form-filter .form__body {
  gap: 32px;
}

.form.form-filter .form__block {
  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;
}

.form.form-filter .form__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.form.form-profile {
  padding: 40px 0;
  border-top: 1px solid #D2D0E7;
  gap: 10px;
}

.form.form-profile .form__title {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 16px;
  line-height: 161%;
  text-transform: unset;
}

.form.form-profile .form__body {
  padding-bottom: 40px;
  border-bottom: 1px solid #D2D0E7;
}

.form.form-profile .form__body .input__label {
  font-weight: 400;
  font-size: 16px;
  line-height: 161%;
}

.form.form-profile .form__footer {
  margin-top: 54px;
}

.form.form-profile .form__row .button {
  margin-top: auto;
}

.order-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  width: 100%;
  border: 1px solid #D2D0E7;
}

.order-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #D2D0E7;
}

.order-card__info .button {
  margin-left: auto;
}

.order-card__gallery {
  width: 100%;
  padding-top: 24px;
}

.order-card__info-col {
  max-width: 18%;
  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: 5px;
}

.order-card__title {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 150% */
}

.order-card__slide {
  width: 176px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.order-card__slide img {
  width: inherit;
  height: inherit;
  aspect-ratio: inherit;
  -o-object-fit: inherit;
  object-fit: inherit;
}

.brief-form {
  width: 100%;
  background-color: rgba(33, 33, 33, 0.0509803922);
  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;
  border-radius: 8px;
  padding: 48px;
}

.brief-form__header {
  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;
}

.brief-form__body {
  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;
}

.list-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 44px;
}

.list-block__item:not(:first-child) {
  padding-top: 100px;
}

.list-block__item:nth-child(2) {
  background-image: url(/local/templates/grasserschool/public/css/../../assets/media/design-element.svg);
  background-repeat: no-repeat;
  background-position: 8% 75px;
  background-size: 418px;
}

.list-block__title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 255px;
}

.list-block__main {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}

.list-block__main li {
  list-style: none;
  border-left: 1px solid #212121;
  padding: 16px 48px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-family: HalvarBreit;
}

.list-block__main li:not(:last-child) {
  margin-bottom: 20px;
}

.profile-comment {
  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;
  width: 100%;
}

.profile-comment__title {
  color: #212121;
  font-family: HalvarBreit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.profile-comment__container {
  padding: 20px 30px;
  border: 1px solid #D2D0E7;
  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;
}

.profile-comment__name {
  max-width: 227px;
  width: 100%;
  color: #212121;
  font-family: HalvarBreit;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.profile-comment__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.search {
  min-width: 348px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -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: 10px;
}

.search__label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 16px;
  border: 1px solid #D2D0E7;
}

.search__field {
  width: 100%;
  border: none;
  outline: none;
  color: #212121;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
  caret-color: #212121;
}

.search__field::-webkit-input-placeholder {
  color: #828282;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.search__field::-moz-placeholder {
  color: #828282;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.search__field:-ms-input-placeholder {
  color: #828282;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.search__field::-ms-input-placeholder {
  color: #828282;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.search__field::placeholder {
  color: #828282;
  font-family: HalvarBreit;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 24px;
}

.course-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 184px;
  padding: 20px 32px;
  padding-right: 0;
  border-top: 1px solid #BFCFD5;
  border-bottom: 1px solid #BFCFD5;
}

.course-nav__links {
  width: 100%;
  list-style: none;
  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;
}

.course-nav__item {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}

.course-nav__item a {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.course-nav__item.is-active,
.course-nav__item:hover {
  color: #FF3900;
}

.course-nav__item.is-active {
  cursor: default;
  pointer-events: none;
}

.course-nav__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.course-order {
  padding: 24px;
  width: 100%;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  background-color: rgba(33, 33, 33, 0.0509803922);
}

.course-order__info {
  width: 50%;
  padding: 32px;
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 8px;
}

.course-order__form {
  width: 50%;
  background-color: transparent;
}

.course-order__form .form__additional {
  color: rgba(33, 33, 33, 0.6);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-top: 0;
}

.course-order__form .form__additional a {
  text-decoration: underline;
}

.course-order__form .select__wrapper {
  padding: 16px 20px;
}

.course-order__form .select__label {
  font-size: 20px;
  line-height: 32px;
}

.course-order__form .radio-area {
  margin: 20px 0;
}

.course-order__form .radio-area__title {
  font-size: 20px;
  line-height: 32px;
}

.course-order__form .button__title {
  margin: 0;
}

.course-order__title {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.course-order__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: 20px;
  padding-left: 22px;
}

.course-order__list-item {
  color: #181818;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.course-order__list-item p {
  display: inline;
}

.course-order__info-btn {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 20px;
  line-height: 30px;
}

.course-order--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #212121;
}

.course-order--vertical .course-order__info,
.course-order--vertical .course-order__form {
  width: 100%;
}

.course-order--vertical .course-order__form {
  margin-top: auto;
}

.section__body:has(> .course-order--vertical) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 8px;
}

.radio-area {
  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;
}

.radio-area__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.radio-area__item {
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid #212121;
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.radio-area__item input[type=radio] {
  display: none;
}

.radio-area__item:has(input:checked) {
  background-color: #FF3900;
  color: #FFFFFF;
  border-color: #FF3900;
}

.payment-info {
  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;
}

.payment-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.payment-info__main {
  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;
  padding: 24px;
  background-color: #FFFFFF;
  border: 1px solid rgba(33, 33, 33, 0.2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.payment-info__title {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

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

.payment-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.payment-info__subtitle {
  overflow: hidden;
  color: rgba(33, 33, 33, 0.8);
  text-overflow: ellipsis;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
}

.payment-info__total {
  border: 1px solid rgba(33, 33, 33, 0.2);
  background-color: transparent;
  padding: 24px;
  border-radius: 0 0 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.payment-info__total-subtitle {
  overflow: hidden;
  color: #212121;
  text-overflow: ellipsis;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.payment-info__value,
.payment-info__total-value {
  font-family: HalvarBreit;
  color: #212121;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.payment-info__alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 12px;
  gap: 12px;
  border-radius: 4px;
  border: 1px solid rgba(33, 33, 33, 0.0509803922);
  background-color: rgba(33, 33, 33, 0.0509803922);
  color: rgba(33, 33, 33, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.payment-info__alert span {
  color: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.payment-info__alert .icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.file-card {
  max-width: 450px;
  width: 100%;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #212121;
  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;
}

.file-card__icon {
  margin: 8px 0;
}

.file-card__name {
  color: #181818;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  min-height: 64px;
}

.file-card__weight {
  color: rgba(33, 33, 33, 0.6);
  font-family: HalvarBreit;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  margin-top: 8px;
}

.file-card.type-pdf {
  max-width: 585px;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border: none;
  gap: 5px;
}

.file-card.type-pdf .file-card__name {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 161%;
  min-height: unset;
}

.file-card.type-pdf .file-card__weight {
  font-family: BasisGrotesqueArabicPro, sans-serif;
  color: #212121;
  font-weight: 400;
  font-size: 14px;
  line-height: 161%;
  margin-top: unset;
}

.error-block {
  padding: 96px 0;
}

.error-block__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.error-block__text {
  font-size: 14px;
  line-height: 20px;
  color: #333;
}

.error-block__footer {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner-block {
  display: -ms-grid;
  display: grid;
  width: 100%;
  gap: 8px;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: (406px)[2];
  grid-template-rows: repeat(2, 406px);
}

.banner-block > *:nth-child(1) {
  -ms-grid-row-span: 2;
  grid-row: span 2;
}

.banner-block--four-banners {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (460px)[2];
  grid-template-rows: repeat(2, 460px);
}

.banner-block--four-banners > *:nth-child(1) {
  -ms-grid-row-span: 1;
  grid-row: span 1;
  -ms-grid-column-span: 3;
  grid-column: span 3;
}

.banner-block--four-banners > *:nth-child(4) {
  display: block;
}

.banner-block--three-in-row {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
  -ms-grid-rows: (620px)[1];
  grid-template-rows: repeat(1, 620px);
}

.banner-block--three-in-row > *:nth-child(1) {
  -ms-grid-row-span: 1;
  grid-row: span 1;
}

.filter-block {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
}

.filter-block.is-opened {
  -webkit-user-select: unset;
  -moz-user-select: unset;
  -ms-user-select: unset;
  user-select: unset;
  visibility: visible;
  z-index: 1002;
}

.filter-block.is-opened .form-filter {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.range {
  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;
  height: 50px !important;
}

.range .noUi-connects,
.range .noUi-base,
.range .noUi-target {
  border-radius: 4px;
  background-color: #BFCFD5;
  height: 6px;
  border: none;
}

.range .noUi-touch-area {
  background-color: #FF3900;
  border-radius: 50%;
}

.range .noUi-connect {
  background: #FF3900;
  left: 2px;
}

.range .noUi-handle {
  border-radius: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 16px !important;
  height: 16px !important;
  cursor: pointer;
  border: none;
  top: -5px !important;
}

.range .noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
  border: none;
}

.range .noUi-handle-upper::before,
.range .noUi-handle-upper::after {
  content: none;
}

.range .noUi-handle::before,
.range .noUi-handle::after {
  content: none;
}

.range .noUi-handle-lower {
  -webkit-transform: translateX(-3px);
  -ms-transform: translateX(-3px);
  transform: translateX(-3px);
}

.range .noUi-handle-upper {
  -webkit-transform: translateX(-13px);
  -ms-transform: translateX(-13px);
  transform: translateX(-13px);
}

.range__container {
  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;
  background: transparent;
  border: none;
  outline: none;
}

.range__container:after,
.range__container:before {
  display: none;
}

.range__container.slider-nose {
  padding-top: 0;
}

.range__input {
  display: none;
}

.range__value {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #212121;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 161%;
  text-align: center;
}

.range__value-min,
.range__value-max {
  font-family: inherit;
}

.range__value-max::after {
  content: " ₽";
}

.range__value span {
  font-family: HalvarBreit;
  margin: 0 5px;
}

.range__value span:last-of-type {
  margin-right: 0;
}

.range__input._active {
  color: #212121;
}

.range__input._min {
  text-align: end;
}

.range__input._max {
  text-align: start;
}

.range.noUi-target {
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.sort {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.sort__header {
  display: none;
}

.sort__title {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sort__block {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 99;
}

.sort__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: -10px;
  right: 0;
  pointer-events: none;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  row-gap: 6px;
  border-radius: 8px;
  padding: 12px 0;
  z-index: 99;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 0 0 1px #212121;
  box-shadow: 0 0 0 1px #212121;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.sort input {
  display: none;
}

.sort__item {
  cursor: pointer;
  padding: 12px 42px;
  padding-left: 50px;
  color: #212121;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.615112' width='19' height='19' rx='9.5' stroke='%23212121' stroke-opacity='0.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center left 20px;
}

.sort__item:has(input:checked) {
  pointer-events: none;
  color: #FF3900;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.615112' width='19' height='19' rx='9.5' fill='white'/%3E%3Crect x='0.5' y='0.615112' width='19' height='19' rx='9.5' stroke='%23FF3900'/%3E%3Crect x='4' y='4.11511' width='12' height='12' rx='6' fill='%23FF3900'/%3E%3C/svg%3E");
}

.sort.is-opened .sort__block {
  pointer-events: all;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.sort.is-opened .sort__block:hover {
  color: #212121;
}

.sort.is-opened .sort__list {
  pointer-events: all;
}

.sort.is-opened .sort__item:hover {
  color: #FF3900;
  background-image: url("data:image/svg+xml,%3Csvg width='21' height='20' viewBox='0 0 21 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.833252' y='0.5' width='19' height='19' rx='9.5' stroke='%23FF3900'/%3E%3C/svg%3E");
}

.sort.is-opened .sort__item:has(input:checked) {
  pointer-events: none;
  color: #FF3900;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.615112' width='19' height='19' rx='9.5' fill='white'/%3E%3Crect x='0.5' y='0.615112' width='19' height='19' rx='9.5' stroke='%23FF3900'/%3E%3Crect x='4' y='4.11511' width='12' height='12' rx='6' fill='%23FF3900'/%3E%3C/svg%3E");
}

.accordion-lesson {
  padding-top: 30px;
}

.accordion-lesson__title {
  position: relative;
  padding-right: 30px;
  margin-bottom: 30px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 30px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-transform: uppercase;
}

.accordion-lesson__title::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 11.71L15 19.71L7 11.71L8.42 10.29L15 16.87L21.58 10.29L23 11.71Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-lesson__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #BFCFD5;
  gap: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.accordion-lesson__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 10px;
  line-height: 24px;
  white-space: nowrap;
}

.accordion-lesson__status {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.accordion-lesson__body {
  overflow: hidden;
  height: 0px;
  -webkit-transition: height 0.3s;
  transition: height 0.3s;
}

.accordion-lesson__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 30px;
}

.accordion-lesson.is-opened .accordion-lesson__title {
  color: #FF3900;
}

.accordion-lesson.is-opened .accordion-lesson__title::after {
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 11.71L15 19.71L7 11.71L8.42 10.29L15 16.87L21.58 10.29L23 11.71Z' fill='%23FF3900'/%3E%3C/svg%3E%0A");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-lesson.is-opened .accordion-lesson__info {
  border-color: #FF3900;
}

.accordion-lesson.is-done .accordion-lesson__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.accordion-lesson.accordion--lessons {
  padding: 30px 30px 0 30px;
  margin: 0;
}

.accordion-lesson__title strong {
  color: #FF3900;
}

.lesson {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 30px;
  border-bottom: 1px solid #BFCFD5;
  gap: 30px;
}

.lesson__title {
  position: relative;
  margin: 0;
  color: #181818;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 29px;
  text-transform: uppercase;
}

.lesson__title::after {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3211_2016)'%3E%3Ccircle cx='15' cy='15' r='15' fill='%2329CC1B'/%3E%3Cpath d='M23.8232 7.5H22.2813C22.0652 7.5 21.86 7.60484 21.7277 7.78423L12.6332 19.9524L8.27233 14.1164C8.20636 14.028 8.12227 13.9565 8.02638 13.9072C7.93049 13.858 7.82529 13.8324 7.71867 13.8322H6.17682C6.02903 13.8322 5.94742 14.0116 6.03786 14.1328L12.0795 22.2169C12.3619 22.5944 12.9045 22.5944 13.189 22.2169L23.9621 7.79821C24.0526 7.67939 23.971 7.5 23.8232 7.5Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3211_2016'%3E%3Crect width='30' height='30' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
}

.lesson__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 20px;
  line-height: 24px;
}

.lesson__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #181818;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: nowrap;
}

.lesson__info-item img {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.lesson__count {
  margin-left: 10px;
}

.lesson__type {
  margin-left: 6px;
}

.lesson__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.lesson__controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 15px;
}

.lesson__controls .button {
  width: 100%;
  height: 43px;
}

.lesson__status {
  display: none;
  font-size: 18px;
  font-weight: 500;
  gap: 10px;
  line-height: 27px;
  white-space: nowrap;
}

.lesson.is-success .lesson__title::after {
  display: block;
}

.lesson.is-disabled {
  opacity: 0.5;
}

.lesson.is-done .lesson__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.test {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: 1px solid #BFCFD5;
  border-bottom: none;
  padding: 32px;
}

.test:last-of-type {
  border-bottom: 1px solid #BFCFD5;
}

.test__col {
  max-width: 365px;
  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: 16px;
}

.test__col:has(.button) {
  gap: 24px;
}

.test__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.test__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}

.test__info-item span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.test__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.04;
  text-transform: uppercase;
}

.test__subtitle {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
}

.test__subtitle strong {
  display: inline-block;
  font-weight: 700;
}

.test__description {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
  margin-top: 8px;
}

.test__themes {
  font-weight: 400;
  font-size: 16px;
  line-height: 148%;
}

.test__button {
  width: 100%;
  padding: 12px;
}

.test__button .button__title {
  font-size: 16px;
}

.test__complete {
  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: 100%;
  height: 100%;
  gap: 6px;
  background-color: #F0EDE3;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
}

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

.test__result .button {
  margin-top: 16px;
}

.test__result-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}

.test__result-left {
  font-weight: 500;
  font-size: 16px;
  line-height: 148%;
}

.exercise-card {
  padding: 20px;
  border: 1px solid #D2D0E7;
}

.exercise-card h3 {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 18px;
  line-height: 145%;
  letter-spacing: 0.04;
  text-transform: uppercase;
}

.exercise-card ol {
  font-weight: 400;
  font-size: 16px;
  line-height: 161%;
  padding-left: 18px;
  margin-top: 10px;
}

.exercise-card ol li {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.exercise-card strong {
  font-weight: 500;
  font-size: 16px;
  line-height: 161%;
  margin-top: 20px;
}

.exercise-card span {
  font-weight: 400;
  font-size: 18px;
  line-height: 161%;
}

.exercise-card__description {
  display: inline-block;
  margin-top: 24px;
}

.exercise-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.exercise-card__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: 16px;
}

.exercise-card__button {
  margin-top: 24px;
  padding: 12px;
  min-width: 417px;
}

.comments--lessons .comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.comments--lessons .comment__author {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-transform: uppercase;
}

.comments--lessons .comment__date {
  font-family: HalvarBreit;
  font-weight: 300;
  font-size: 14px;
  line-height: 131%;
  text-transform: uppercase;
}

.comments--lessons .comment__header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: unset;
  -ms-flex-align: unset;
  align-items: unset;
  gap: 5px;
}

.comments--lessons .comment__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.course__title {
  cursor: pointer;
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16L12 6L2 16L3.775 17.775L12 9.55L20.225 17.775L22 16Z' fill='%23181818'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right top;
  padding-bottom: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.course__left {
  position: absolute;
  top: -23px;
  left: 0;
}

.course__list {
  max-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 42px;
  overflow: hidden;
  -webkit-transition: max-height 0.4s;
  transition: max-height 0.4s;
}

.course__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;
  padding: 20px 30px;
  gap: 24px;
  border: 1px solid transparent;
}

.course__item-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.course__item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.course__item-main {
  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;
}

.course__item-title {
  font-family: HalvarBreit;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.04;
  text-transform: uppercase;
}

.course .progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

.course.is-opened .course__title {
  padding-bottom: 60px;
}

.course.is-opened .course__left {
  opacity: 1;
}

.course.is-opened .course__list {
  overflow: unset;
}

.course.is-opened .course__item {
  border: 1px solid #D2D0E7;
}

.course.is-opened .progress {
  opacity: 1;
}

.bottom-banner {
  width: 100%;
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  -webkit-box-shadow: 0 -14px 42px 0 rgba(33, 33, 33, 0.08);
  box-shadow: 0 -14px 42px 0 rgba(33, 33, 33, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 48px;
  padding: 48px;
  background-color: #FFFFFF;
}

.bottom-banner__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -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;
  position: relative;
}

.bottom-banner__text {
  font-family: HalvarBreit;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.bottom-banner__controls {
  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;
}

.bottom-banner__close {
  background-color: transparent;
  border: none;
  color: #FFFFFF;
}

.bottom-banner button {
  max-width: 337px;
}

.bottom-banner__course {
  z-index: 100;
  color: #FFFFFF;
  background: url(/local/templates/grasserschool/public/css/../../assets/media/banner-curve.svg) no-repeat 68% 40%/640px 271px, url(/local/templates/grasserschool/public/css/../../assets/media/banner-laptop.png) no-repeat 63% 50%/386px 335px, #212121;
}

.bottom-banner__course .bottom-banner__close:hover {
  cursor: pointer;
}

.bottom-banner__course .icon {
  color: #FFFFFF;
}

.cookie-banner {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1000;
}

.cookie-banner.visible {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.news-card {
  width: 100%;
  padding: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid rgba(33, 33, 33, 0.4);
}

.news-card__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-card__main {
  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;
}

.news-card__info {
  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: 24px;
}

.news-card__title {
  font-family: HalvarBreit;
  font-weight: 500;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-card__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.news-card__date {
  font-weight: 400;
  font-size: 16px;
  line-height: 145%;
}

.news-card__content {
  font-weight: 400;
  font-size: 16px;
  line-height: 155%;
}

.news-card__content span {
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

.news-card__footer a.news-card__link {
  color: #FF3900;
  font-weight: 400;
  font-size: 16px;
  line-height: 161%;
  text-decoration: underline;
  text-decoration-style: solid;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Hl.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Hl.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-XTh.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-XTh.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Th.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Th.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Rg.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Md.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Bd.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-Bd.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HalvarBreit";
  src: local("HalvarBreit"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-XBd.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/HalvarBreit/HalvarBreit-XBd.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BasisGrotesqueArabicPro";
  src: local("BasisGrotesqueArabicPro"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Light.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BasisGrotesqueArabicPro";
  src: local("BasisGrotesqueArabicPro"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Regular.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BasisGrotesqueArabicPro";
  src: local("BasisGrotesqueArabicPro"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Medium.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BasisGrotesqueArabicPro";
  src: local("BasisGrotesqueArabicPro"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Bold.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BasisGrotesqueArabicPro";
  src: local("BasisGrotesqueArabicPro"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Black.woff2") format("woff2"), url("/local/templates/grasserschool/public/css/../assets/fonts/BasisGrotesqueArabicPro/BasisGrotesqueArabicPro-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: BasisGrotesqueArabicPro, sans-serif;
  color: #212121;
}

body:has(.cover.active),
body:has(.modal.open),
body:has(.header-mobile.active) {
  overflow: hidden;
}

@media only screen and (min-width: 576px) {
  .layout .show-mobile {
    display: none;
  }

  .button._desk-margin-left {
    margin-left: 132px;
  }

  .modal .modal-dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media only screen and (min-width: 769px) {
  .slider__teacher-slide .swiper {
    overflow: visible !important;
  }

  .slider__teacher-slide .swiper .swiper-wrapper {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .slider__teacher-slide .swiper .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .slider__teacher-slide .swiper-pagination {
    display: none !important;
  }

  .teachers-list__item {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
  }

  .teachers-list__item.teachers-list__item--active {
    -webkit-box-flex: 3;
    -ms-flex: 3;
    flex: 3;
  }
}

@media only screen and (max-width: 1600px) {
  .header-dropdown._contact .header-dropdown__menu {
    width: 100%;
  }

  .section__body:has(> .course-order--vertical) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media only screen and (max-width: 1560px) {
  .header .logo__image {
    max-width: 242px;
    max-height: 20px;
  }

  .header .header__enter {
    display: none;
  }

  .header .menu {
    -webkit-column-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
}

@media only screen and (max-width: 1439px) {
  .grid.grid_col-2--1-to-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .grid.grid_col-4 {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }

  .section-personal {
    width: 50%;
  }

  .menu-button__title {
    word-break: break-word;
    -ms-hyphens: auto;
    hyphens: auto;
  }

  .menu {
    gap: 20px;
  }

  .slider__card-slide .swiper-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: auto;
  }

  .case-card.case-card--message {
    padding: 0;
    border: none;
  }

  .preview-card--xl-aspect-ratio {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto !important;
  }

  .preview-card--xl-aspect-ratio .preview-card__video-preview {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }

  .bottom-banner__text {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }
}

@media only screen and (max-width: 1390px) {
  .header .logo {
    margin-right: 48px;
    width: 38vw;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .header .logo__image {
    max-width: none;
    max-height: none;
  }

  .header .menu {
    margin-left: 0;
    -webkit-column-gap: 28px;
    -moz-column-gap: 28px;
    column-gap: 28px;
  }

  .header .menu-item__title {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .header .menu-item__link {
    -webkit-column-gap: 8px;
    -moz-column-gap: 8px;
    column-gap: 8px;
  }
}

@media only screen and (max-width: 1300px) {
  .schedule-item {
    gap: 16px;
  }

  .schedule-item__main {
    gap: 16px;
  }
}

@media only screen and (max-width: 1279px) {
  .grid.grid_col-3.grid_col-3--bp-tablet {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .grid.grid_col-3.grid_col-3--bp-lg {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .header-dropdown__menu {
    -ms-grid-columns: (1fr)[2] !important;
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .header-dropdown._contact .header-dropdown__menu {
    -ms-grid-columns: (1fr)[1] !important;
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .list-block__item:nth-child(2) {
    background-position: 1% 10%;
    background-size: 30vw;
  }
}

@media only screen and (max-width: 1100px) {
  .section__main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .section-profile__container {
    max-width: 100%;
  }

  .section-profile .sidebar {
    display: none;
  }

  .file-upload__body svg {
    color: inherit;
  }

  .file-upload__body {
    background-color: transparent;
    color: #FF3900;
    fill: #FF3900;
    border: 1px solid #FF3900;
    gap: 12px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 12px;
    border-radius: 4px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .file-upload__body:hover,
  .file-upload__body:active {
    border-color: #BD2A00;
    color: #BD2A00;
    fill: #BD2A00;
  }

  .file-upload__body::before {
    display: none;
  }

  .file-upload__body .file-upload__button {
    display: none;
  }

  .file-upload__text {
    text-transform: none;
    font-size: 18px;
    line-height: 24px;
  }

  .icon--size-lg {
    width: 24px;
    height: 24px;
  }

  .icon--size-md {
    width: 24px;
    height: 24px;
  }

  .banner-card__text {
    font-size: 28px;
    line-height: 32px;
  }

  .aside.aside_size-md {
    max-width: 100%;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .user {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .user__controls {
    margin-left: 0;
  }

  .form.form-profile .form__row {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .file-card {
    max-width: unset;
    gap: 16px;
  }

  .file-card__name {
    font-size: 14px;
    line-height: 20px;
    min-height: 60px;
  }

  .file-card__weight {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
  }

  .banner-block--three-in-row {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (464px)[2];
    grid-template-rows: repeat(2, 464px);
  }

  .banner-block--three-in-row > *:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }

  .bottom-banner__course {
    background: url(/local/templates/grasserschool/public/css/../../assets/media/banner-curve.svg) no-repeat 125% 40%/640px 271px, url(/local/templates/grasserschool/public/css/../../assets/media/banner-laptop.png) no-repeat 93% 50%/386px 335px, #212121;
  }
}

@media only screen and (max-width: 1025px) {
  .grid.grid_col-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .section__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .section__body {
    gap: 24px;
  }

  .section-courses__filter-btn {
    border: 0;
  }

  .section-courses__filter-btn .button__title {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .section-courses__sort-btn .button__title {
    display: block;
  }

  .section-courses__sort-btn .icon {
    width: 16px;
    height: 16px;
  }

  .section-courses__sort-btn.button {
    border-color: transparent;
  }

  .section-courses__faq {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .section-faq__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }

  .section-faq__all-btn {
    border: 1px solid #FF3900;
    background-color: #FF3900;
    width: 100%;
    padding: 12px;
  }

  .section-faq__all-btn .tabs__title {
    font-size: 14px;
    line-height: 24px;
    color: #F0EDE3;
    text-transform: unset;
  }

  .section-faq__all-btn .tabs__icon {
    display: none;
  }

  .section-personal {
    width: 66.66%;
  }

  .accordion-item {
    padding: 24px 0;
  }

  .header {
    padding: 0 16px;
  }

  .banner {
    padding: 20px;
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }

  .banner--contact .banner__text .h1 {
    font-size: 28px;
    line-height: 32px;
    padding: 12px 0;
  }

  .banner--contact .banner__text svg {
    width: 26px;
    height: 26px;
  }

  .banner--subscribe .banner__text {
    gap: 8px;
  }

  .banner--subscribe .banner__text .h1 {
    font-size: 28px;
    line-height: 32px;
    padding: 12px 0;
  }

  .banner--subscribe .banner__text span {
    font-size: 18px;
    line-height: 26px;
  }

  .banner--link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: start;
  }

  .banner__form {
    gap: 24px;
  }

  .banner__inputs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .banner__button-wrapper {
    gap: 12px;
  }

  .course-label {
    margin-top: 24px;
  }

  .footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 32px 16px;
  }

  .footer__left {
    border-right: none;
    padding: 32px 0 24px 0;
    border-top: 1px solid #212121;
    border-bottom: 1px solid #212121;
    gap: 24px;
    margin-bottom: 24px;
  }

  .footer__main {
    gap: 24px;
  }

  .footer__info {
    gap: 20px;
  }

  .footer__copyright {
    margin-top: 24px;
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .footer__right {
    padding-left: 0;
  }

  .case-card.case-card--course {
    height: 520px;
    padding: 16px;
  }

  .case-card.case-card--course .case-card__text {
    font-size: 16px;
    line-height: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .filter {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 18px;
    padding-bottom: 20px;
  }

  .filter__side {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
  }

  .preview-card--with-max-height {
    height: 520px;
  }

  .teacher-card__content {
    padding-right: 0;
  }

  .aside {
    max-width: 100%;
    width: 100%;
  }

  .aside.aside_size-sm {
    max-width: 100%;
  }

  .advantages {
    gap: 0;
  }

  .advantages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .advantages__title {
    max-width: 100%;
  }

  .advantages__item {
    border-left: none;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 1px solid #212121;
  }

  .image-card {
    height: 520px;
  }

  .author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .author__photo {
    width: 100px;
  }

  .schedule-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px 0;
    gap: 8px;
  }

  .schedule-item__main {
    max-width: calc(100% - 204px);
    width: 100%;
    gap: 8px;
    margin-left: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .schedule-item__main .schedule-item__col:nth-child(1) {
    max-width: 100%;
    position: unset;
  }

  .schedule-item__main .schedule-item__col:nth-child(2) {
    max-width: 100%;
  }

  .schedule-item__main .schedule-item__col:nth-child(3) {
    max-width: 100%;
  }

  .schedule-item__main .schedule-item__col:nth-child(n+3) {
    display: none;
  }

  .schedule-item__col:first-of-type {
    max-width: 204px;
    position: absolute;
  }

  .schedule-item__col:first-of-type .schedule-item__title:has(span) {
    height: unset;
    display: unset;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .schedule-item__col:last-of-type {
    max-width: 100%;
  }

  .schedule-item__col:last-of-type:has(button.button) {
    max-width: calc(100% - 204px);
    margin-left: auto;
  }

  .schedule-item__title {
    font-size: 14px;
    line-height: 20px;
  }

  .schedule-item__value {
    font-size: 10px;
    line-height: 12px;
  }

  .schedule-item__trigger.is-hidden {
    display: none;
  }

  .schedule-item__trigger {
    display: block;
    padding-bottom: 24px;
  }

  .schedule-item button.button {
    min-width: unset;
    max-width: 100%;
    padding: 10px;
    width: 100%;
  }

  .schedule-item button.button .button__title {
    font-size: 12px;
    line-height: 20px;
  }

  .course-order {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 16px;
  }

  .course-order__info {
    width: 100%;
    gap: 24px;
    padding: 16px;
  }

  .course-order__form {
    width: 100%;
  }

  .course-order__form .select__wrapper {
    padding: 12px 16px;
  }

  .course-order__form .select__label {
    font-size: 16px;
    line-height: 24px;
  }

  .course-order__form .radio-area {
    margin: 0;
  }

  .course-order__form .radio-area__title {
    font-size: 16px;
    line-height: 24px;
  }

  .course-order__form .button__title {
    font-size: 16px;
    line-height: 24px;
  }

  .course-order__list {
    gap: 8px;
  }

  .course-order__list-item {
    font-size: 16px;
    line-height: 24px;
  }

  .radio-area__list {
    gap: 8px;
  }

  .radio-area__item {
    padding: 8px;
    font-size: 16px;
    line-height: 24px;
  }

  .payment-info__main {
    padding: 16px;
  }

  .payment-info__title {
    font-size: 18px;
    line-height: 24px;
  }

  .payment-info__list {
    gap: 8px;
  }

  .payment-info__subtitle {
    font-size: 14px;
    line-height: 20px;
  }

  .payment-info__total {
    padding: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 4px;
  }

  .payment-info__total-subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .payment-info__value,
  .payment-info__total-value {
    font-size: 18px;
    line-height: 24px;
  }

  .payment-info__alert {
    padding: 10px 12px;
  }

  .banner-block--four-banners {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .banner-block--four-banners > *:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
}

@media only screen and (max-width: 991px) {
  .accordion-lesson__title {
    padding-right: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 20px;
  }

  .accordion-lesson__title::after {
    width: 20px;
    height: 20px;
  }

  .accordion-lesson__info {
    padding-bottom: 0;
    border: 0px;
    gap: 10px;
  }

  .accordion-lesson__info-item {
    font-size: 14px;
    line-height: 20px;
  }

  .accordion-lesson__status span {
    display: none;
  }

  .accordion-lesson__list {
    padding-left: 0;
    margin-top: 24px;
    gap: 12px;
  }

  .accordion-lesson.accordion--lessons {
    padding: 24px 0 24px 0;
    border-bottom: 1px solid #BFCFD5;
  }

  .lesson {
    padding: 20px;
    border: 1px solid #D2D0E7;
    gap: 20px;
  }

  .lesson__title {
    font-size: 12px;
    line-height: 16px;
  }

  .lesson__title::after {
    width: 16px;
    height: 16px;
  }

  .lesson__info-item {
    font-size: 14px;
    line-height: 20px;
  }

  .lesson__count {
    margin-left: 5px;
  }

  .lesson__type {
    display: none;
  }

  .lesson__status {
    font-size: 12px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 940px) {
  .layout__main {
    margin-top: calc(8vw + 100px);
    padding: 0 16px;
  }

  .header {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .contact-card {
    max-width: none;
  }
}

@media only screen and (max-width: 768px) {
  .grid.grid_col-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .grid.grid_col-3.grid_col-3--bp-tablet {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .grid.grid_col-4 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .grid.grid_gap-4 {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }

  .grid.grid--teacher {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }

  .grid.grid--teacher .grid__column:not(:first-child) {
    padding-left: 0;
  }

  .grid.grid--teacher .grid__column:not(:last-child) {
    padding-right: 0;
    border-right: none;
  }

  .layout .p-l-48 {
    padding-left: 0;
  }

  .layout .p-r-48 {
    padding-right: 0;
  }

  .layout .border {
    border: none;
  }

  .layout:has(.sort.is-opened)::after {
    content: "";
    display: block;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 90;
  }

  .section {
    padding: 24px 0;
    gap: 24px;
  }

  .section__header {
    gap: 24px;
  }

  .section__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }

  .section__article-main blockquote {
    padding: 116px 24px 24px 24px;
    background-position: 20px 24px;
    background-size: 98px;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.64px;
  }

  .section-courses .filter .tabs {
    gap: 8px;
  }

  .section-courses .filter .tabs__title {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    padding: 0;
  }

  .section-courses__filter-btn {
    padding: 0 !important;
  }

  .section-courses__sort-btn {
    padding: 0 !important;
  }

  .section-align-center.section .section__body .horizontal-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .section-align-center.section .section__body a {
    width: 100%;
  }

  .button._size_max,
  .button._size_lg {
    padding: 12px;
    font-size: 14px;
    line-height: 24px;
  }

  .button._smaller-on-mob {
    padding: 8px !important;
    font-size: 12px !important;
    line-height: 20px !important;
  }

  .button._max-on-tablet {
    width: 100%;
  }

  .input--banners {
    padding: 12px;
    font-size: 16px;
    line-height: 20px;
  }

  .tabs__button {
    padding: 8px;
    gap: 2px;
  }

  .tabs__title {
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.48px;
  }

  .links {
    gap: 12px;
  }

  .links__item span {
    padding: 2px 7px 1px;
    min-width: 24px;
    font-size: 12px;
    line-height: 12px;
  }

  .links__item-text {
    font-size: 12px;
    line-height: 16px;
  }

  .section-documents {
    padding: 24px 0;
    gap: 24px;
  }

  .selection-picture {
    height: 394px;
  }

  .header {
    display: none;
  }

  .promotion-card {
    gap: 12px;
  }

  .menu {
    display: none;
  }

  .banner--contact .form__additional {
    font-size: 12px;
    line-height: 16px;
  }

  .banner--link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .banner--link .banner__form {
    max-width: 100%;
  }

  .banner__confirm-text {
    font-size: 12px;
    line-height: 16px;
  }

  .course-selection {
    height: 168px;
  }

  .course-selection__content {
    padding: 16px;
  }

  .course-selection__text {
    gap: 8px;
  }

  .course-selection__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }

  .course-selection__description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    line-height: 16px;
  }

  .course-selection.course-selection-slide {
    height: 362px;
  }

  .course-selection__button {
    padding: 8px !important;
    width: 138px !important;
    font-size: 12px !important;
    line-height: 20px !important;
  }

  .slider--cards {
    margin-bottom: 24px;
  }

  .slider__teacher-slide .swiper .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .slider__teacher-slide .swiper .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .slider__gallery .swiper-slide {
    width: 250px;
    height: 362px;
  }

  .slider__gallery .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover;
  }

  .contact-card {
    padding: 16px;
  }

  .contact-card__content {
    gap: 24px;
  }

  .contact-card__contacts {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
    gap: 8px;
  }

  .feedback-form.with-border {
    padding-right: 0;
    border-right: none;
  }

  .teachers-list {
    width: 100vw;
    margin-left: -16px;
  }

  .teachers-list__item {
    display: block;
    max-height: 364px;
    max-width: 195px;
  }

  .teachers-list__item:first-child {
    margin-left: 16px;
  }

  .teachers-list__item:last-child {
    margin-right: 16px;
  }

  .teachers-list__item.teachers-list__item--active {
    max-width: 273px;
  }

  .hero {
    height: 480px;
  }

  .hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(41.19%, rgba(243, 243, 243, 0)), color-stop(72.5%, rgba(243, 243, 243, 0.7)), color-stop(92.17%, #F3F3F3));
    background: linear-gradient(180deg, rgba(243, 243, 243, 0) 41.19%, rgba(243, 243, 243, 0.7) 72.5%, #F3F3F3 92.17%);
    z-index: -1;
  }

  .hero__content .h2 {
    font-size: 28px;
    line-height: 32px;
  }

  .info-group {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    -ms-grid-rows: (1fr)[3];
    grid-template-rows: repeat(3, 1fr);
  }

  .info-group > *:nth-child(1) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }

  .info-group > *:nth-child(6) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }

  .map {
    height: 400px;
  }

  .user {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  .user__info {
    margin-left: 0;
  }

  .form__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form__title {
    font-size: 28px;
    line-height: 32px;
  }

  .form__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .form.form-brief {
    padding: 24px 16px;
    width: 100vw;
    margin-left: -16px;
    border-radius: 0;
  }

  .form.form-brief .form__subtitle {
    font-size: 16px;
    line-height: 24px;
  }

  .form.form-brief .input__field {
    padding: 12px 16px;
    font-size: 16px;
    line-height: 24px;
    min-height: 48px;
  }

  .form.form-banner {
    gap: 24px;
  }

  .form.form-banner .form__row {
    gap: 12px;
  }

  .form.form-filter {
    width: 100%;
    min-height: 690px;
    height: 100%;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }

  .list-block__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .list-block__item:nth-child(2) {
    background-size: 45vw;
  }

  .banner-block {
    -ms-grid-rows: (168px)[2];
    grid-template-rows: repeat(2, 168px);
  }

  .banner-block--three-in-row {
    -ms-grid-rows: (200px)[2];
    grid-template-rows: repeat(2, 200px);
  }

  .filter-block {
    width: 100%;
    top: unset;
    bottom: 0;
  }

  .sort__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 24px 20px;
  }

  .sort__block {
    pointer-events: none;
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: auto;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    border-radius: 8px 8px 0 0;
    background-color: #FFFFFF;
  }

  .sort__list {
    position: relative;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    -webkit-transition: unset;
    transition: unset;
    width: 100%;
  }

  .sort__item {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .bottom-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .bottom-banner button {
    max-width: none;
  }
}

@media only screen and (max-width: 575px) {
  .grid.grid_col-2--1-to-2 {
    row-gap: 24px;
  }

  .grid.grid_mob-row-2 {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
  }

  .grid.grid_gap-4 {
    gap: 4px;
  }

  .grid.grid--teacher {
    margin-top: 32px;
  }

  .layout .h1 {
    font-size: 28px;
    line-height: 32px;
    letter-spacing: 1.12px;
  }

  .layout .h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.96px;
  }

  .layout .h3 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }

  .layout .h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.72px;
  }

  .layout .h5 {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
  }

  .layout p,
  .layout li {
    font-size: 16px;
    line-height: 24px;
  }

  .layout .text {
    font-size: 14px;
    line-height: 20px;
  }

  .layout .description {
    font-size: 12px;
    line-height: 16px;
  }

  .layout .gap-128 {
    gap: 48px;
  }

  .layout .gap-96 {
    gap: 24px;
  }

  .layout .gap-68 {
    gap: 48px;
  }

  .layout .gap-64 {
    gap: 24px;
  }

  .layout .gap-60 {
    gap: 24px;
  }

  .layout .gap-48 {
    gap: 24px;
  }

  .layout .gap-40 {
    gap: 20px;
  }

  .section__article-main h3 {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
    margin-top: 32px;
  }

  .section__article-main h4 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.72px;
    margin-top: 32px;
  }

  .section__article-main ul,
  .section__article-main li {
    font-size: 16px;
    line-height: 24px;
  }

  .section__article-main li {
    text-indent: -9px;
    padding-left: 17px;
  }

  .section-personal {
    width: 80%;
  }

  .button._link-big .button__title {
    font-size: 16px;
    line-height: 24px;
  }

  .button._max-on-mob {
    width: 100%;
  }

  .input._type_textarea .input__counter {
    font-size: 14px;
    line-height: 20px;
  }

  .file-upload__body .icon {
    width: 20px;
    height: 20px;
  }

  .file-upload__text {
    font-size: 14px;
    line-height: 24px;
  }

  .file-upload__footer {
    gap: 8px;
  }

  .file-upload__alert {
    font-size: 16px;
    line-height: 24px;
  }

  .modal .modal-dialog {
    margin-top: 60px;
  }

  .modal__container {
    padding: 20px 20px 32px 20px;
    gap: 24px;
  }

  .modal__info {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
  }

  .modal__date {
    font-size: 14px;
    line-height: 20px;
  }

  .modal__close {
    top: 20px;
    right: 20px;
  }

  .modal__description {
    gap: 16px;
  }

  .modal--course-format .modal-dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 0;
  }

  .modal--course-format .modal__body {
    gap: 12px;
  }

  .layout .modal__tab-controls {
    width: 100%;
    padding: 2px;
    gap: 0;
    background-color: rgba(33, 33, 33, 0.0509803922);
    margin-top: 12px;
  }

  .layout .modal__tab-button {
    width: 50%;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    text-transform: unset;
    padding: 12px;
    border-radius: 4px;
    color: #212121;
  }

  .layout .modal__tab-button.is-active {
    color: #FFFFFF;
    background-color: #212121;
  }

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

  .modal.modal-bottom .modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  .modal.modal-bottom .modal-dialog {
    margin: 0;
  }

  .modal--read-feedback .modal__container {
    gap: 16px;
  }

  .modal--read-feedback .modal__header {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .modal--read-feedback .modal__description {
    padding-right: 8px;
    margin-right: -8px;
  }

  .double-tabs__button {
    padding: 12px 0;
  }

  .double-tabs__title {
    padding: 0 40px;
  }

  .info-block._size_lg {
    font-size: 16px;
    line-height: 24px;
  }

  .select._mob-dropdown_top .select__dropdown {
    top: -240%;
  }

  .section-documents__body .h2 {
    font-size: 16px;
    line-height: 24px;
    margin-top: 24px;
  }

  .section-documents__body li {
    font-size: 16px;
    line-height: 24px;
    margin-top: 16px;
  }

  .section-documents__body li:first-child {
    margin-top: 6px;
  }

  .modal-auth .modal__title {
    display: unset;
  }

  .modal-auth .modal__close {
    margin-top: 0;
    top: 18px;
  }

  .modal-comment .modal__wrapper {
    gap: 16px;
  }

  .modal-comment .modal__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .modal-comment .button {
    margin-top: 2px;
  }

  .promotion-card__title {
    padding: 0;
  }

  .course-card {
    width: 260px;
    height: 482px;
  }

  .course-card::after {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(25.9%, rgba(243, 243, 243, 0)), color-stop(52.24%, rgba(243, 243, 243, 0.7)), color-stop(85.42%, #F3F3F3));
    background: linear-gradient(180deg, rgba(243, 243, 243, 0) 25.9%, rgba(243, 243, 243, 0.7) 52.24%, #F3F3F3 85.42%);
  }

  .course-card__content {
    padding: 16px;
  }

  .course-card__info {
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .course-card__title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.72px;
  }

  .course-card__tag {
    font-size: 12px;
    line-height: 14px;
    color: rgba(33, 33, 33, 0.6);
  }

  .course-card__tag:not(:last-child)::after {
    background: rgba(33, 33, 33, 0.6);
  }

  .course-card__price {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0.8px;
  }

  .course-card__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .course-card__buttons button {
    width: 100%;
  }

  .course-card__buttons a {
    width: 100%;
  }

  .course-label {
    padding: 8px;
    gap: 8px;
  }

  .course-label__image-wrapper {
    border-radius: 4px;
    width: 48px;
    height: 48px;
  }

  .course-label__content {
    height: 48px;
  }

  .course-label__title {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.24px;
    font-weight: 500;
  }

  .course-label__tag {
    font-size: 8px;
    line-height: 8px;
  }

  .footer__text,
  .footer span,
  .footer a {
    font-size: 14px;
    line-height: 20px;
  }

  .footer__socials {
    gap: 24px;
    padding: 2px 0;
  }

  .footer__social-icon svg {
    height: 24px;
    width: 24px;
  }

  .footer__right {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    row-gap: 24px;
  }

  .footer__block {
    gap: 16px;
  }

  .footer__links {
    gap: 10px;
  }

  .footer__join {
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    font-family: BasisGrotesqueArabicPro, sans-serif !important;
    text-transform: none !important;
  }

  .footer__block-socials {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/span 1;
  }

  .slider__header {
    margin-bottom: 24px;
  }

  .slider__external-navigation {
    display: none;
  }

  .slider .swiper {
    overflow-x: visible;
  }

  .slider--cards .slider__slide {
    width: 260px;
  }

  .case-card {
    padding: 16px;
    gap: 16px;
    height: 296px;
  }

  .case-card__content {
    gap: 16px;
  }

  .case-card__avatar {
    width: 64px;
    height: 64px;
  }

  .case-card__main {
    gap: 8px;
  }

  .case-card__info {
    font-size: 14px;
    line-height: 20px;
  }

  .case-card__title {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
    -webkit-line-clamp: 4;
  }

  .case-card.case-card--course .case-card__date {
    margin-top: 0;
  }

  .case-card.case-card--message .case-card__content {
    gap: 24px;
  }

  .case-card.case-card--message .case-card__avatar {
    width: 104px;
    height: 104px;
  }

  .case-card.case-card--message .case-card__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }

  .case-card.case-card--message .case-casd__subtitle {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.48px;
    margin: 8px 0 24px 0;
  }

  .case-card.case-card--message .case-card__text:not(:last-child) {
    margin-bottom: 16px;
  }

  .filter {
    margin-top: 24px;
  }

  .feedback-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }

  .feedback-card__avatar {
    width: 64px;
    height: 64px;
  }

  .feedback-card__author {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
  }

  .feedback-card__date {
    font-size: 14px;
    line-height: 20px;
  }

  .feedback-card__course-info {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .feedback-card__text {
    font-size: 16px;
    line-height: 24px;
  }

  .feedback-card__more {
    font-size: 16px;
    line-height: 24px;
  }

  .preview-card__button-wrapper {
    gap: 8px;
  }

  .preview-card__icon {
    width: 32px;
    height: 32px;
  }

  .preview-card__title {
    padding: 0;
  }

  .preview-card__preview-text {
    font-size: 14px;
    line-height: 17px;
  }

  .breadcrumbs {
    display: none;
  }

  .breadcrumbs__item:not(:last-child)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='12' viewBox='0 0 6 12' fill='none'%3E%3Cpath d='M5.31446 6.49703L1.54733 10.814C1.3077 11.0888 0.919172 11.0888 0.679653 10.814C0.440116 10.5395 0.440116 10.0943 0.679653 9.81981L4.01298 5.99991L0.67975 2.18015C0.440212 1.90552 0.440212 1.46034 0.67975 1.18583C0.919288 0.911203 1.30779 0.911203 1.54743 1.18583L5.31456 5.50291C5.43432 5.64023 5.49414 5.82002 5.49414 5.99989C5.49414 6.17985 5.43421 6.35977 5.31446 6.49703Z' fill='%23212121' fill-opacity='0.6'/%3E%3C/svg%3E");
  }

  .comments__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
    margin-top: 32px;
  }

  .hero {
    padding: 16px;
  }

  .hero__controls .button {
    min-width: 0;
  }

  .hero__controls {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }

  .hero--narrow .h2 {
    margin-bottom: 16px;
  }

  .hero--narrow p:not(:first-child) {
    margin-top: 8px;
  }

  .info-card {
    padding: 16px;
  }

  .info-card__body {
    gap: 30px;
  }

  .info-card__title {
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.4px;
  }

  .info-card__main {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
  }

  .advantages__title .h3 {
    font-size: 28px !important;
    line-height: 32px !important;
    letter-spacing: 1.12px !important;
  }

  .advantages__item-title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }

  .map {
    height: 300px;
  }

  .brief-form {
    padding: 24px 16px;
    width: 100vw;
    margin-left: -16px;
    border-radius: 0;
  }

  .list-block__item {
    gap: 16px;
  }

  .list-block__item:not(:first-child) {
    padding-top: 24px;
  }

  .list-block__item:nth-child(2) {
    background-position: 1px 24px;
    background-size: 210px;
  }

  .list-block__main li {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.64px;
    padding: 12px 0 12px 24px;
  }

  .list-block__main li:not(:last-child) {
    margin-bottom: 8px;
  }

  .course-order__title {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
  }

  .error-block {
    padding: 0;
  }

  .error-block__body {
    padding: 32px 0;
    gap: 32px;
  }

  .error-block__image {
    width: 218px;
  }

  .error-block__image svg {
    width: 100%;
  }

  .error-block__footer {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 16px;
  }

  .error-block.error-503 {
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 20px;
  }

  .error-block.error-503 .error-block__body {
    -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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 1;
    flex-shrink: 1;
  }

  .error-block.error-503 .error-block__footer {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-bottom: 20px;
  }

  .banner-block {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (168px)[3];
    grid-template-rows: repeat(3, 168px);
  }

  .banner-block > *:nth-child(1) {
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }

  .banner-block--four-banners {
    -ms-grid-rows: (168px)[4];
    grid-template-rows: repeat(4, 168px);
  }

  .banner-block--three-in-row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (200px)[3];
    grid-template-rows: repeat(3, 200px);
  }

  .banner-block--three-in-row > *:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }

  .bottom-banner {
    padding: 16px;
  }

  .bottom-banner__text {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.56px;
  }

  .bottom-banner__course {
    padding: 24px;
    background: url(/local/templates/grasserschool/public/css/../../assets/media/banner-laptop-mob.png) no-repeat right -120px bottom -47px/324px 196px, #212121;
  }

  .bottom-banner__course .bottom-banner__content {
    gap: 24px;
    -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;
  }

  .bottom-banner__course .bottom-banner__text {
    font-size: 20px;
    line-height: 26px;
    letter-spacing: 0.8px;
    margin-right: 30px;
  }

  .bottom-banner__course .bottom-banner__close {
    position: absolute;
    top: 0;
    right: 0;
  }
}

@media only screen and (max-width: 500px) {
  .schedule-item__main {
    max-width: calc(100% - 150px);
  }

  .schedule-item__col:first-of-type {
    max-width: 150px;
  }

  .schedule-item__col:last-of-type:has(button.button) {
    max-width: calc(100% - 150px);
  }
}

@media only screen and (max-width: 345px) {
  .info-group {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    -ms-grid-rows: (1fr)[5];
    grid-template-rows: repeat(5, 1fr);
  }

  .info-group > *:nth-child(1) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }

  .info-group > *:nth-child(6) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
    -ms-grid-row-span: 1;
    grid-row: span 1;
  }
}

@media only screen and (max-width: 1390px) and (min-width: 940px) {
  .layout__main {
    margin-top: calc(3.24vw + 231px);
  }
}
/* End */


/* Start:/local/templates/grasserschool/public/vendors/swiper/swiper-bundle.css?176095787422821*/
/**
 * Swiper 10.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 17, 2023
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}

/* End */


/* Start:/local/templates/grasserschool/public/vendors/bootstrap-modal/bootstrap-modal.min.css?17609578746443*/
/*!
 * Bootstrap  v5.3.2 (https://getbootstrap.com/)
 * Copyright 2011-2023 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.modal{--bs-modal-zindex:1055;--bs-modal-width:500px;--bs-modal-padding:1rem;--bs-modal-margin:0.5rem;--bs-modal-color: ;--bs-modal-bg:var(--bs-body-bg);--bs-modal-border-color:var(--bs-border-color-translucent);--bs-modal-border-width:var(--bs-border-width);--bs-modal-border-radius:var(--bs-border-radius-lg);--bs-modal-box-shadow:var(--bs-box-shadow-sm);--bs-modal-inner-border-radius:calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));--bs-modal-header-padding-x:1rem;--bs-modal-header-padding-y:1rem;--bs-modal-header-padding:1rem 1rem;--bs-modal-header-border-color:var(--bs-border-color);--bs-modal-header-border-width:var(--bs-border-width);--bs-modal-title-line-height:1.5;--bs-modal-footer-gap:0.5rem;--bs-modal-footer-bg: ;--bs-modal-footer-border-color:var(--bs-border-color);--bs-modal-footer-border-width:var(--bs-border-width);position:fixed;top:0;left:0;z-index:var(--bs-modal-zindex);display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:var(--bs-modal-margin);pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - var(--bs-modal-margin) * 2)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - var(--bs-modal-margin) * 2)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;color:var(--bs-modal-color);pointer-events:auto;background-color:var(--bs-modal-bg);background-clip:padding-box;border:var(--bs-modal-border-width) solid var(--bs-modal-border-color);border-radius:var(--bs-modal-border-radius);outline:0}.modal-backdrop{--bs-backdrop-zindex:1050;--bs-backdrop-bg:#000;--bs-backdrop-opacity:0;position:fixed;top:0;left:0;z-index:var(--bs-backdrop-zindex);width:100vw;height:100vh;background-color:var(--bs-backdrop-bg)}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:var(--bs-backdrop-opacity)}.modal-header{display:flex;flex-shrink:0;align-items:center;padding:var(--bs-modal-header-padding);border-bottom:var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);border-top-left-radius:var(--bs-modal-inner-border-radius);border-top-right-radius:var(--bs-modal-inner-border-radius)}.modal-header .btn-close{padding:calc(var(--bs-modal-header-padding-y) * .5) calc(var(--bs-modal-header-padding-x) * .5);margin:calc(-.5 * var(--bs-modal-header-padding-y)) calc(-.5 * var(--bs-modal-header-padding-x)) calc(-.5 * var(--bs-modal-header-padding-y)) auto}.modal-title{margin-bottom:0;line-height:var(--bs-modal-title-line-height)}.modal-body{position:relative;flex:1 1 auto;padding:var(--bs-modal-padding)}.modal-footer{display:flex;flex-shrink:0;flex-wrap:wrap;align-items:center;justify-content:flex-end;padding:calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * .5);background-color:var(--bs-modal-footer-bg);border-top:var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);border-bottom-right-radius:var(--bs-modal-inner-border-radius);border-bottom-left-radius:var(--bs-modal-inner-border-radius)}.modal-footer>*{margin:calc(var(--bs-modal-footer-gap) * .5)}@media (min-width:576px){.modal{--bs-modal-margin:1.75rem;--bs-modal-box-shadow:var(--bs-box-shadow)}.modal-dialog{max-width:var(--bs-modal-width);margin-right:auto;margin-left:auto}.modal-sm{--bs-modal-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{--bs-modal-width:800px}}@media (min-width:1200px){.modal-xl{--bs-modal-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-footer,.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-footer,.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-footer,.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-footer,.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-footer,.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-footer,.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}}
/*# sourceMappingURL=bootstrap.min.css.map */
/* End */


/* Start:/local/templates/grasserschool/public/vendors/fancybox/fancybox.css?176095787415701*/
.carousel{position:relative;box-sizing:border-box}.carousel *,.carousel *:before,.carousel *:after{box-sizing:inherit}.carousel.is-draggable{cursor:move;cursor:grab}.carousel.is-dragging{cursor:move;cursor:grabbing}.carousel__viewport{position:relative;overflow:hidden;max-width:100%;max-height:100%}.carousel__track{display:flex}.carousel__slide{flex:0 0 auto;width:var(--carousel-slide-width, 60%);max-width:100%;padding:1rem;position:relative;overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}.has-dots{margin-bottom:calc(0.5rem + 22px)}.carousel__dots{margin:0 auto;padding:0;position:absolute;top:calc(100% + 0.5rem);left:0;right:0;display:flex;justify-content:center;list-style:none;user-select:none}.carousel__dots .carousel__dot{margin:0;padding:0;display:block;position:relative;width:22px;height:22px;cursor:pointer}.carousel__dots .carousel__dot:after{content:"";width:8px;height:8px;border-radius:50%;position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);background-color:currentColor;opacity:.25;transition:opacity .15s ease-in-out}.carousel__dots .carousel__dot.is-selected:after{opacity:1}.carousel__button{width:var(--carousel-button-width, 48px);height:var(--carousel-button-height, 48px);padding:0;border:0;display:flex;justify-content:center;align-items:center;pointer-events:all;cursor:pointer;color:var(--carousel-button-color, currentColor);background:var(--carousel-button-bg, transparent);border-radius:var(--carousel-button-border-radius, 50%);box-shadow:var(--carousel-button-shadow, none);transition:opacity .15s ease}.carousel__button.is-prev,.carousel__button.is-next{position:absolute;top:50%;transform:translateY(-50%)}.carousel__button.is-prev{left:10px}.carousel__button.is-next{right:10px}.carousel__button[disabled]{cursor:default;opacity:.3}.carousel__button svg{width:var(--carousel-button-svg-width, 50%);height:var(--carousel-button-svg-height, 50%);fill:none;stroke:currentColor;stroke-width:var(--carousel-button-svg-stroke-width, 1.5);stroke-linejoin:bevel;stroke-linecap:round;filter:var(--carousel-button-svg-filter, none);pointer-events:none}html.with-fancybox{scroll-behavior:auto}body.compensate-for-scrollbar{overflow:hidden !important;touch-action:none}.fancybox__container{position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;margin:0;padding:env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);box-sizing:border-box;display:flex;flex-direction:column;color:var(--fancybox-color, #fff);-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;z-index:1050;outline:none;transform-origin:top left;--carousel-button-width: 48px;--carousel-button-height: 48px;--carousel-button-svg-width: 24px;--carousel-button-svg-height: 24px;--carousel-button-svg-stroke-width: 2.5;--carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container :focus{outline:none}body:not(.is-using-mouse) .fancybox__container :focus{box-shadow:0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))}@media all and (min-width: 1024px){.fancybox__container{--carousel-button-width:48px;--carousel-button-height:48px;--carousel-button-svg-width:27px;--carousel-button-svg-height:27px}}.fancybox__backdrop{position:absolute;top:0;right:0;bottom:0;left:0;z-index:-1;background:var(--fancybox-bg, rgba(24, 24, 27, 0.92))}.fancybox__carousel{position:relative;flex:1 1 auto;min-height:0;height:100%;z-index:10}.fancybox__carousel.has-dots{margin-bottom:calc(0.5rem + 22px)}.fancybox__viewport{position:relative;width:100%;height:100%;overflow:visible;cursor:default}.fancybox__track{display:flex;height:100%}.fancybox__slide{flex:0 0 auto;width:100%;max-width:100%;margin:0;padding:48px 8px 8px 8px;position:relative;overscroll-behavior:contain;display:flex;flex-direction:column;outline:0;overflow:auto;--carousel-button-width: 36px;--carousel-button-height: 36px;--carousel-button-svg-width: 22px;--carousel-button-svg-height: 22px}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}@media all and (min-width: 1024px){.fancybox__slide{padding:64px 100px}}.fancybox__content{margin:0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);padding:36px;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);position:relative;align-self:center;display:flex;flex-direction:column;z-index:20}.fancybox__content :focus:not(.carousel__button.is-close){outline:thin dotted;box-shadow:none}.fancybox__caption{align-self:center;max-width:100%;margin:0;padding:1rem 0 0 0;line-height:1.375;color:var(--fancybox-color, currentColor);visibility:visible;cursor:auto;flex-shrink:0;overflow-wrap:anywhere}.is-loading .fancybox__caption{visibility:hidden}.fancybox__container>.carousel__dots{top:100%;color:var(--fancybox-color, #fff)}.fancybox__nav .carousel__button{z-index:40}.fancybox__nav .carousel__button.is-next{right:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-next{right:40px}}.fancybox__nav .carousel__button.is-prev{left:8px}@media all and (min-width: 1024px){.fancybox__nav .carousel__button.is-prev{left:40px}}.carousel__button.is-close{position:absolute;top:8px;right:8px;top:calc(env(safe-area-inset-top, 0px) + 8px);right:calc(env(safe-area-inset-right, 0px) + 8px);z-index:40}@media all and (min-width: 1024px){.carousel__button.is-close{right:40px}}.fancybox__content>.carousel__button.is-close{position:absolute;top:-40px;right:0;color:var(--fancybox-color, #fff)}.fancybox__no-click,.fancybox__no-click button{pointer-events:none}.fancybox__spinner{position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);width:50px;height:50px;color:var(--fancybox-color, currentColor)}.fancybox__slide .fancybox__spinner{cursor:pointer;z-index:1053}.fancybox__spinner svg{animation:fancybox-rotate 2s linear infinite;transform-origin:center center;position:absolute;top:0;right:0;bottom:0;left:0;margin:auto;width:100%;height:100%}.fancybox__spinner svg circle{fill:none;stroke-width:2.75;stroke-miterlimit:10;stroke-dasharray:1,200;stroke-dashoffset:0;animation:fancybox-dash 1.5s ease-in-out infinite;stroke-linecap:round;stroke:currentColor}@keyframes fancybox-rotate{100%{transform:rotate(360deg)}}@keyframes fancybox-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}100%{stroke-dasharray:89,200;stroke-dashoffset:-124px}}.fancybox__backdrop,.fancybox__caption,.fancybox__nav,.carousel__dots,.carousel__button.is-close{opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close{animation:.15s ease backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .carousel__button.is-close{animation:.15s ease both fancybox-fadeOut}.fancybox-fadeIn{animation:.15s ease both fancybox-fadeIn}.fancybox-fadeOut{animation:.1s ease both fancybox-fadeOut}.fancybox-zoomInUp{animation:.2s ease both fancybox-zoomInUp}.fancybox-zoomOutDown{animation:.15s ease both fancybox-zoomOutDown}.fancybox-throwOutUp{animation:.15s ease both fancybox-throwOutUp}.fancybox-throwOutDown{animation:.15s ease both fancybox-throwOutDown}@keyframes fancybox-fadeIn{from{opacity:0}to{opacity:1}}@keyframes fancybox-fadeOut{to{opacity:0}}@keyframes fancybox-zoomInUp{from{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes fancybox-zoomOutDown{to{transform:scale(0.97) translate3d(0, 16px, 0);opacity:0}}@keyframes fancybox-throwOutUp{to{transform:translate3d(0, -30%, 0);opacity:0}}@keyframes fancybox-throwOutDown{to{transform:translate3d(0, 30%, 0);opacity:0}}.fancybox__carousel .carousel__slide{scrollbar-width:thin;scrollbar-color:#ccc rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar{width:8px;height:8px}.fancybox__carousel .carousel__slide::-webkit-scrollbar-track{background-color:rgba(255,255,255,.1)}.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb{background-color:#ccc;border-radius:2px;box-shadow:inset 0 0 4px rgba(0,0,0,.2)}.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content{cursor:move;cursor:grabbing}.fancybox__carousel .fancybox__slide .fancybox__content{cursor:auto}.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content{cursor:zoom-in}.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content{cursor:zoom-out}.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content{cursor:move;cursor:grab}.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__image{transform-origin:0 0;user-select:none;transition:none}.has-image .fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px}.is-closing .has-image .fancybox__content{overflow:visible}.has-image[data-image-fit=contain]{overflow:visible;touch-action:none}.has-image[data-image-fit=contain] .fancybox__content{flex-direction:row;flex-wrap:wrap}.has-image[data-image-fit=contain] .fancybox__image{max-width:100%;max-height:100%;object-fit:contain}.has-image[data-image-fit=contain-w]{overflow-x:hidden;overflow-y:auto}.has-image[data-image-fit=contain-w] .fancybox__content{min-height:auto}.has-image[data-image-fit=contain-w] .fancybox__image{max-width:100%;height:auto}.has-image[data-image-fit=cover]{overflow:visible;touch-action:none}.has-image[data-image-fit=cover] .fancybox__content{width:100%;height:100%}.has-image[data-image-fit=cover] .fancybox__image{width:100%;height:100%;object-fit:cover}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content{width:100%;height:80%}.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content,.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.fancybox__carousel .fancybox__slide.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.fancybox__thumbs{flex:0 0 auto;position:relative;padding:0px 3px;opacity:var(--fancybox-opacity, 1)}.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__thumbs{opacity:0}.fancybox__thumbs .carousel__slide{flex:0 0 auto;width:var(--fancybox-thumbs-width, 96px);margin:0;padding:8px 3px;box-sizing:content-box;display:flex;align-items:center;justify-content:center;overflow:visible;cursor:pointer}.fancybox__thumbs .carousel__slide .fancybox__thumb::after{content:"";position:absolute;top:0;left:0;right:0;bottom:0;border-width:5px;border-style:solid;border-color:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));opacity:0;transition:opacity .15s ease;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after{opacity:.92}.fancybox__thumbs .carousel__slide>*{pointer-events:none;user-select:none}.fancybox__thumb{position:relative;width:100%;padding-top:calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));background-size:cover;background-position:center center;background-color:rgba(255,255,255,.1);background-repeat:no-repeat;border-radius:var(--fancybox-thumbs-border-radius, 4px)}.fancybox__toolbar{position:absolute;top:0;right:0;left:0;z-index:20;background:linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);padding:0;touch-action:none;display:flex;justify-content:space-between;--carousel-button-svg-width: 20px;--carousel-button-svg-height: 20px;opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))}@media all and (min-width: 1024px){.fancybox__toolbar{padding:8px}}.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar{animation:.15s ease-in backwards fancybox-fadeIn}.fancybox__container.is-animated.is-closing .fancybox__toolbar{opacity:0}.fancybox__toolbar__items{display:flex}.fancybox__toolbar__items--left{margin-right:auto}.fancybox__toolbar__items--center{position:absolute;left:50%;transform:translateX(-50%)}.fancybox__toolbar__items--right{margin-left:auto}@media(max-width: 640px){.fancybox__toolbar__items--center:not(:last-child){display:none}}.fancybox__counter{min-width:72px;padding:0 10px;line-height:var(--carousel-button-height, 48px);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased}.fancybox__progress{background:var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));height:3px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:30;user-select:none}.fancybox__container:fullscreen::backdrop{opacity:0}.fancybox__button--fullscreen g:nth-child(2){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1){display:none}.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2){display:block}.fancybox__button--slideshow g:nth-child(2){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1){display:none}.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2){display:block}
/* Grasser EN */
.fancybox__thumbs {
  display: none;
}
.fancybox__progress {
  background: #FF3900;
}
/* End */


/* Start:/local/templates/grasserschool/public/vendors/noUiSlider/nouislider.min.css?17609578744220*/
.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative}.noUi-base,.noUi-connects{width:100%;height:100%;position:relative;z-index:1}.noUi-connects{overflow:hidden;z-index:0}.noUi-connect,.noUi-origin{will-change:transform;position:absolute;z-index:1;top:0;right:0;height:100%;width:100%;-ms-transform-origin:0 0;-webkit-transform-origin:0 0;-webkit-transform-style:preserve-3d;transform-origin:0 0;transform-style:flat}.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin{left:0;right:auto}.noUi-vertical .noUi-origin{top:-100%;width:0}.noUi-horizontal .noUi-origin{height:0}.noUi-handle{-webkit-backface-visibility:hidden;backface-visibility:hidden;position:absolute}.noUi-touch-area{height:100%;width:100%}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:transform .3s;transition:transform .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;right:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;right:-6px;bottom:-17px}.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle{left:-17px;right:auto}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connects{border-radius:3px}.noUi-connect{background:#3FB8AF}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;white-space:nowrap;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-sub{background:#AAA}.noUi-marker-large{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate(-50%,50%);transform:translate(-50%,50%)}.noUi-rtl .noUi-value-horizontal{-webkit-transform:translate(50%,50%);transform:translate(50%,50%)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);padding-left:25px}.noUi-rtl .noUi-value-vertical{-webkit-transform:translate(0,50%);transform:translate(0,50%)}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center;white-space:nowrap}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.noUi-horizontal .noUi-origin>.noUi-tooltip{-webkit-transform:translate(50%,0);transform:translate(50%,0);left:auto;bottom:10px}.noUi-vertical .noUi-origin>.noUi-tooltip{-webkit-transform:translate(0,-18px);transform:translate(0,-18px);top:auto;right:28px}
/* End */


/* Start:/local/templates/grasserschool/custom/css/index.css?17609002028831*/
#grecaptcha-inline-badge{
    visibility: hidden;
    opacity: 0;
    width: 0;
    height: 0;
}
#bx-panel-back{
    display: none !important;
}
#bx-panel.bx-panel-fixed{
    z-index: 99999 !important;
}

.catalog-element > h2, .catalog-element > h3, .catalog-element > h4, .catalog-element > p{
    margin: 20px 0;
}
.catalog-element .sp-image{
    margin: 20px 0;
}
.catalog-element .section__description p {
    margin: 14px 0;
}
.section-constructor > p {
    margin: 14px 0;
}

.section-constructor iframe {
    display: block;
    width: 100%;
    margin: auto;
    aspect-ratio: 2 / 1;
}

@media (max-width: 1600px) {
	.section-profile {
		gap: 60px;
	}
	.section-profile .section-profile__container {
		max-width: 100%;
	}
	.section-profile .sidebar {
		max-width: max-content;
	}
	.section .order-card__info .button {
		min-width: fit-content;
	}
}
@media (max-width: 767px) {
    .section-profile .dostup-mobile p::before {
        flex-shrink: 0;
    }
	.section-profile .lesson-page__one-part {
        font-size: 12px;
    }
	.section-profile .order-card .order-card__info {
		flex-wrap: wrap;
		gap: 36px;
	}
	.section-profile .order-card .order-card__info-col {
		max-width: unset;
		width: 20%;
	}
}
@media (max-width: 600px) {
	.section-profile .order-card .order-card__info-col {
		width: 40%;
	}
}

@media (min-width: 1100px) {
    .section-profile .mobile {
        display: none !important;
    }
}

.courses-link .col-12{
    margin-left: 0 !important;
    margin-bottom: 20px;
}
.courses-link .col-12 a{
    padding-bottom: 0 !important;
}
@media(max-width: 991px){
    .lesson__controls{
        display: flex;
        flex-direction: column;
    }
}
.lesson__controls .button{
    transition: all .3s ease-in-out;
}
.lesson__controls .button.brown-link{
    border: 1px solid #ff3900;
    background-color: #ff3900;
    color: #fff;
}
.lesson__controls .button.brown-link:hover{
    border-color: #181818;
    background-color: #181818;
    color: #fff;
}
.lesson__controls .button.dim-link{
    border: 1px solid #f0ede3;
    background-color: #f0ede3;
    color: #ff3900;
}
.lesson__controls .button.dim-link:hover{
    border-color: #181818;
    background-color: transparent;
    color: #181818;
}
.active-courses__inner .accordion.opened .accordion__title:after{
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.container-personal .inner__heading{
    width: fit-content;
    display: flex;
}
.search {
    position: relative;
    display: flex;
}

.search:hover .search__input {
    border-color: #FF3900;
}

.search:hover .search__submit .search__submit-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.97754 13.5412C4.11157 13.5412 0.977539 10.538 0.977539 6.83291C0.977539 3.12779 4.11157 0.124573 7.97754 0.124573C11.8435 0.124573 14.9775 3.12779 14.9775 6.83291C14.9775 8.46226 14.3713 9.95591 13.3634 11.1183L18.7073 16.2394C19.0979 16.6137 19.0979 17.2206 18.7073 17.595C18.3168 17.9689 17.6836 17.9689 17.2931 17.595L11.8773 12.4046C10.7628 13.1224 9.42126 13.5412 7.97754 13.5412ZM7.97754 11.6246C10.739 11.6246 12.9775 9.47909 12.9775 6.83291C12.9775 4.18673 10.739 2.04124 7.97754 2.04124C5.21606 2.04124 2.97754 4.18673 2.97754 6.83291C2.97754 9.47909 5.21606 11.6246 7.97754 11.6246Z' fill='%23FF3900'/%3E%3C/svg%3E%0A");
}
.container-personal .section__header{
    display: flex;
}
.search__input {
    height: 40px;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 17px;
    padding-right: 50px;
    border: 1px solid #BFCFD5;
    background-color: #FFFFFF;
    font-size: 14px;
    font-family: 'Halvar Breitschrift';
    transition: 0.2s;
}
.search__input::placeholder {
    color: #828282;
    font-weight: 300;
}
.section-profile.section{
    padding: 0 0 0 !important;
}
.search__input:focus {
    border-color: #FF3900;
}

.search__input:focus + .search__submit .search__submit-icon {
    background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.97754 13.5412C4.11157 13.5412 0.977539 10.538 0.977539 6.83291C0.977539 3.12779 4.11157 0.124573 7.97754 0.124573C11.8435 0.124573 14.9775 3.12779 14.9775 6.83291C14.9775 8.46226 14.3713 9.95591 13.3634 11.1183L18.7073 16.2394C19.0979 16.6137 19.0979 17.2206 18.7073 17.595C18.3168 17.9689 17.6836 17.9689 17.2931 17.595L11.8773 12.4046C10.7628 13.1224 9.42126 13.5412 7.97754 13.5412ZM7.97754 11.6246C10.739 11.6246 12.9775 9.47909 12.9775 6.83291C12.9775 4.18673 10.739 2.04124 7.97754 2.04124C5.21606 2.04124 2.97754 4.18673 2.97754 6.83291C2.97754 9.47909 5.21606 11.6246 7.97754 11.6246Z' fill='%23FF3900'/%3E%3C/svg%3E%0A");
}

.search__submit {
    position: absolute;
    top: 0;
    right: 17px;

    width: 28px;
    height: 100%;

    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

.search__submit-icon {
    display: block;
    width: 100%;
    height: 100%;

    background-image: url("data:image/svg+xml,%3Csvg width='19' height='18' viewBox='0 0 19 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.97754 13.5412C4.11157 13.5412 0.977539 10.538 0.977539 6.83291C0.977539 3.12779 4.11157 0.124573 7.97754 0.124573C11.8435 0.124573 14.9775 3.12779 14.9775 6.83291C14.9775 8.46226 14.3713 9.95591 13.3634 11.1183L18.7073 16.2394C19.0979 16.6137 19.0979 17.2206 18.7073 17.595C18.3168 17.9689 17.6836 17.9689 17.2931 17.595L11.8773 12.4046C10.7628 13.1224 9.42126 13.5412 7.97754 13.5412ZM7.97754 11.6246C10.739 11.6246 12.9775 9.47909 12.9775 6.83291C12.9775 4.18673 10.739 2.04124 7.97754 2.04124C5.21606 2.04124 2.97754 4.18673 2.97754 6.83291C2.97754 9.47909 5.21606 11.6246 7.97754 11.6246Z' fill='%23BFCFD5'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;

    transition: 0.2s;
}

.lesson-page__write input[type=submit]{
    margin-bottom: 0 !important;
}
.section__header.section__header--input{
    flex-direction: row;
}
@media(max-width: 1280px){
    .section__header.section__header--input{
        flex-direction: column;
    }
}
.btn-back-search{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.btn-back-search span:not(.lesson-page__prev){
    margin-left: 10px;
}

.opacity-35{opacity:0.35!important;}
.gallery{display:grid;gap:20px;grid-template-columns:repeat(3, 1fr);}
@media (max-width: 991px){
    .gallery{grid-template-columns:repeat(2, 1fr);}
}
@media (max-width: 767px){
    .gallery{grid-template-columns:1fr;}
}
.gallery__item{display:flex;flex-direction:column;gap:12px;}
.gallery__video-wrapper{position:relative;width:100%;height:auto;aspect-ratio:1.6/1;cursor:pointer;object-fit:cover;}
.gallery__video-wrapper iframe{width:100%;height:inherit;aspect-ratio:inherit;}
.gallery__video-preview{position:absolute;top:0;right:0;width:100%;height:100%;background-color:#272727;object-fit:cover;}
.gallery__video-preview::after{position:absolute;top:50%;left:50%;width:18px;height:20px;background-image:url("data:image/svg+xml,%3Csvg width='19' height='20' viewBox='0 0 19 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.668 10L0.667969 0V20' fill='%23FF3900'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:cover;content:"";transform:translate(-50%, -50%);}
.gallery__access-denied{position:absolute;top:0;right:0;display:flex;width:100%;height:100%;flex-direction:column;align-items:center;justify-content:center;background-color:#727272;cursor:default;gap:8px;}
.gallery__access-denied h4{width:100%;color:#FFFFFF;font-family:HalvarBreit, Arial, sans-serif;text-align:center;}
.gallery__access-denied span{display:block;width:100%;color:#c7ccc7;font-family:HalvarBreit, Arial, sans-serif;font-size:14px;text-align:center;}
.gallery__title{color:#181818;cursor:pointer;font-family:HalvarBreit, Arial, sans-serif;font-size:12px;font-weight:500;letter-spacing:0.04em;line-height:14px;text-transform:uppercase;}
.gallery__title:hover{color:#FF3900;}

.exercise{display:inline-flex;width:100%;flex-direction:column;padding:20px;border:1px solid #D2D0E7;margin-top:20px;color:#181818;transition:all 0.3s;}
@media (max-width: 767px){
    .exercise{padding:16px;margin-top:16px;}
}
.exercise:hover{border-color:#FF3900;}
.exercise__header{margin-bottom:10px;font-size:18px;font-weight:500;letter-spacing:0.04em;line-height:26px;}
@media (max-width: 767px){
    .exercise__header{margin-bottom:16px;font-size:16px;line-height:23px;}
}
.exercise a{color:#FF3900;}
/* End */


/* Start:/local/templates/grasserschool/components/bitrix/sale.basket.basket.line/basket/style.css?1722785555377*/
.user-nav li a .count{
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    font-family: Halvar Breitschrift;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.21px;
    padding: 3px;
    margin-left: 6px;
    color: #fff;
    background: #FF3900;
}
/* End */
/* /local/templates/grasserschool/public/css/index.css?1760957874218816 */
/* /local/templates/grasserschool/public/vendors/swiper/swiper-bundle.css?176095787422821 */
/* /local/templates/grasserschool/public/vendors/bootstrap-modal/bootstrap-modal.min.css?17609578746443 */
/* /local/templates/grasserschool/public/vendors/fancybox/fancybox.css?176095787415701 */
/* /local/templates/grasserschool/public/vendors/noUiSlider/nouislider.min.css?17609578744220 */
/* /local/templates/grasserschool/custom/css/index.css?17609002028831 */
/* /local/templates/grasserschool/components/bitrix/sale.basket.basket.line/basket/style.css?1722785555377 */
