.hero {
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  filter: blur(1px);
  -webkit-filter: blur(1px);
  -webkit-animation: moveBg 500s linear infinite;
  animation: moveBg 500s linear infinite;
  top: -5px;
  left: -5px;
  will-change: transform;
}
@media all and (min-width: 768px) {
  .hero__bg {
    background: url("../../images/2025/home/hero/hero_bg.jpg") 0 0/3200px auto
        no-repeat,
      #03001d;
  }
}
@media (max-width: 768px) {
  .hero__bg {
    filter: none;
    -webkit-filter: none;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
      url("../../images/2025/home/hero/hero_bg_tablet.jpg") 1000px 0/1500px auto
        no-repeat,
      #03001d;
    -webkit-animation: moveBgMobile 100s linear infinite;
    animation: moveBgMobile 100s linear infinite;
    top: 0;
    left: 0;
  }
}
@media (max-width: 580px) {
  .hero__bg {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
      url("../../images/2025/home/hero/hero_bg_mobile.jpg") 1000px 0/1500px auto
        no-repeat,
      #03001d;
  }
}
.hero__body {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -ms-flex-line-pack: end;
  align-content: end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 42px;
  color: var(--white);
}

.button-highlight {
  position: relative;
  display: flex;
  overflow: hidden;
  align-items: stretch;
  gap: 0.5rem;
  background-color: #5045c8;
  padding: 0.25rem 1rem 0.25rem 0.25rem;
  border-radius: 500px;
  margin: 0 auto 16px;
  text-align: left;
  text-decoration: none;
  transition: background 0.3s ease;
}

.button-highlight::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 200%;
  width: 0;
  background-color: var(--violet-darker);
  border-radius: 500px;
  transition: width 0.3s ease-in-out;
  z-index: 0;
}

.button-highlight:hover::before {
  width: 100%;
}

.button-highlight__badge {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--white);
  color: var(--violet-darker);
  padding: 0.125rem 0.75rem;
  border-radius: 500px;
  font-size: 14px;
  font-weight: 400;
}

.button-highlight__badge.button-highlight__badge--second {
  display: none;
}

@media (max-width: 768px) {
  .button-highlight {
    padding-left: 1.25rem;
  }
  .button-highlight__badge.button-highlight__badge--second {
    display: none;
  }
  .button-highlight__badge {
    display: none;
  }
}

.button-highlight__title {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--white);
  font-weight: 400;
  font-size: 14px;
  z-index: 1;
}

.button-highlight svg {
  width: 24px;
  height: 24px;
  position: relative;
  z-index: 1;
}

.hero__title {
  text-align: center;
  font-weight: 300;
  width: 100%;
  line-height: 100%;
  margin-bottom: clamp(20px, 10vw, 32px);
  font-size: 130px;
}
@media all and (max-width: 810px) {
  .hero__title {
    font-size: 80px;
  }
}
@media all and (max-width: 580px) {
  .hero__title {
    font-size: 56px;
  }
}
.hero__descr {
  line-height: 125%;
  letter-spacing: 0.04em;
  text-align: center;
}
.hero__button {
  max-width: 190px;
  margin-left: auto;
  margin-right: auto;
  line-height: 100%;
}
.about__top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__top-row svg {
  height: auto;
}
.about__items {
  display: -ms-grid;
  display: grid;
}
.about__item {
  position: relative;
}
.about__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--violet-darker);
}
.about__item--orange::after,
.about__item:nth-child(1)::after {
  background-color: var(--orange);
}
.about__item--violet::after,
.about__item:nth-child(2)::after {
  background-color: var(--violet-bg);
}
.about__item--pink::after,
.about__item:nth-child(3)::after {
  background-color: var(--pink);
}
.about__item--light-orange::after,
.about__item:nth-child(4)::after {
  background-color: var(--orange-light);
}
.about__item--red::after,
.about__item:nth-child(5)::after {
  background-color: var(--red-dark);
}
.item-about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: var(--border-radius);
  overflow: hidden;
  color: var(--white);
}
.item-about__body {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  position: relative;
  z-index: 2;
  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: flex-start;
  gap: 40px;
  border-radius: var(--border-radius);
}
.item-about__body:focus-within,
.item-about__body:focus,
.item-about__body:focus-visible {
  border: 2px solid var(--black);
}
.item-about__suplabel {
  letter-spacing: 0.04em;
  line-height: 120%;
  text-transform: uppercase;
}
.item-about__label {
  letter-spacing: 0.02em;
}
.item-about__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.item-about__logo {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.item-about__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-about__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  gap: 30px;
  margin-top: auto;
}
.item-about__icon {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 1;
  flex-shrink: 1;
}
.item-about__icon img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100px !important;
  height: auto !important;
}
.item-about__plus {
  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;
  margin-bottom: 10px;
}
.item-about__plus img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.programs__top {
  position: relative;
  justify-content: center !important;
}
.programs__title-wrapper {
  text-align: center;
}
.programs__title {
  display: inline-block;
  max-width: 80%;
  margin-inline: auto;
}
@media all and (max-width: 810px) {
  .programs__title {
    max-width: 100%;
  }
}

.page__programs {
  padding-block: clamp(2rem, 10vw, 4rem);
}

.slide-programs {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--white);
}
.slide-programs .label_discount {
  color: var(--color_promo_1);
  background-color: var(--color_promo_3);
  padding: 5px 10px;
  border-radius: 10rem;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  translate: 20% -50%;
}
.slide-programs:not([hidden]) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100% !important;
}
.slide-programs__top {
  position: relative;
  z-index: 1;
}
.slide-programs__bottom {
  position: relative;
  z-index: 1;
}
.slide-programs__inner {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 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;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.slide-programs__inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 35.2811466373%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(57%, #000)
  );
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #000 57%);
}
.slide-programs__top:has(svg) .slide-programs__suplabel {
  margin-right: 40px;
}
.slide-programs__suplabel {
  line-height: 138%;
  letter-spacing: 0.04em;
}

.slide-programs__top svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
}
.slide-programs__label {
  max-width: 90%;
  letter-spacing: 0.02em;
}
.slide-programs__name {
  border-top: var(--border-width) solid var(--white);
  border-bottom: var(--border-width) solid var(--white);
}
.slide-programs__price * {
  display: inline;
}
.slide-programs__price .price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.slide-programs__price .price__off {
  font-size: 20px;
  opacity: 0.5;
  text-decoration: line-through;
}
.slide-programs__image {
  position: absolute;
  width: 100%;
  height: calc(100% + 5px);
  top: -5px;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}
.section {
  padding: 60px 0;
}
.index {
  color: var(--black);
}

.index__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.index__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 60%;
  margin-inline: auto;
}

.index__wrapper__title {
  font-size: clamp(2rem, 10vw, 3.5rem);
  line-height: 1.2;
  text-wrap: balance;
}

.index__wrapper__subtitle {
  font-size: clamp(1rem, 5vw, 1.5rem);
  line-height: 1.2;
  text-wrap: balance;
}

.index__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.slide-programs.index__list__item {
  flex: 0 0 calc(33.333% - 1rem);
  height: auto !important;
}

@media all and (max-width: 1024px) {
  .index__wrapper {
    max-width: 100%;
  }
  .slide-programs.index__list__item {
    flex: 0 0 calc(50% - 1rem);
  }
}

@media all and (max-width: 580px) {
  .slide-programs.index__list__item {
    flex: 0 0 calc(100%);
  }
}
.partners-programs__label {
  line-height: 120%;
  letter-spacing: 0.02em;
}
.partners-programs__items {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -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;
  margin-bottom: 15px;
  margin-top: 42px;
}
.partners-programs__item,
.partners-programs__item img {
  max-height: 30px;
}
.partners-programs__item img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  object-position: left;
}
.ceo-quote {
  background: url("../../images/2025/home/ceo-quote/cq-bg.jpg") 0 0 / cover
    no-repeat;
}
.ceo-quote__body {
  display: -ms-grid;
  display: grid;
  -ms-flex-line-pack: center;
  align-content: center;
  color: var(--purple);
}

.ceo-quote__body a {
  text-decoration: none;
}

.ceo-quote__title {
  position: relative;
}
.ceo-quote__title::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -2px;
  -webkit-transform: translate(-100%, 0%);
  -ms-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
}
.ceo-quote__title::after {
  content: "”";
}
.ceo-quote__name {
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.125rem, 1.5vw, 1.5rem);
}
.ceo-quote__position {
  opacity: 0.7;
  font-weight: 500;
}
.page__professors {
  padding-block: clamp(60px, 4vw, 150px);
}
.professors__top {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-line-pack: center;
  align-content: center;
  gap: 40px;
}
.professors__slide {
  max-width: 320px;
}
.slide-professors {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.slide-professors__info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 310/551;
}
.slide-professors__info::after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(60%, rgba(0, 0, 0, 0.6))
  );
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(0, 0, 0, 0.6) 60%
  );
}
.slide-professors__about {
  position: relative;
  z-index: 4;
  line-height: 125%;
  letter-spacing: 0.04em;
  color: var(--white);
}
.slide-professors__label {
  text-transform: uppercase;
}
.slide-professors__company img {
  max-width: 100%;
  height: 50px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.slide-professors__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
.slide-professors__video {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black);
  -webkit-transition: color 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: color 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
._video-is-showing .slide-professors__video {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.slide-professors__video video,
.slide-professors__video iframe,
.slide-professors__video object,
.slide-professors__video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  pointer-events: none;
}
.community {
  background-color: #ebebeb;
  overflow: hidden;
}
.community__items.swiper {
  overflow: visible;
}
.community__swiper.swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
.community__swiper.swiper-wrapper:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}
.community__swiper._pause-animation {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}
.community__item {
  cursor: pointer;
}
.community__descr {
  letter-spacing: 0.04em;
}
.item-community {
  overflow: hidden;
}
.item-community__photo {
  width: 100%;
  aspect-ratio: 317/302;
}
.item-community__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.item-community__photo {
  position: relative;
}
.item-community__photo:not(.no-icon)::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  aspect-ratio: 1;
  cursor: pointer;
  background: url("../../images/2025/home/icons/play-btn.svg") 0 0 / cover
    no-repeat;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease,
    -webkit-transform 0.4s ease;
  width: 44px;
}
.item-community__descr {
  background-color: var(--white);
}
.item-community__text {
  position: relative;
}
.item-community__text::before {
  content: "“";
  position: absolute;
  top: 0;
  left: -1px;
  -webkit-transform: translate(-100%, 0%);
  -ms-transform: translate(-100%, 0%);
  transform: translate(-100%, 0%);
}
.item-community__text::after {
  content: "”";
}
.item-community__name {
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.item-community__position {
  font-weight: 300;
  letter-spacing: 0.04em;
}

html[lang="en-US"] .item-community__photo:not(.no-icon)::after {
  display: none;
}

html[lang="en-US"] .community__item {
  cursor: default;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cta-left-aligned {
  padding-bottom: clamp(60px, 120px, 150px);
  background: #ebebeb;
}
.cta-left-aligned__title {
  max-width: 560px;
  margin-bottom: clamp(24px, 50px, 60px);
  font-size: clamp(18px, 24px, 32px);
  line-height: 125%;
  color: var(--black);
}
.cta-left-aligned__button {
  width: fit-content;
  padding-inline: 48px;
}

@media all and (max-width: 580px) {
  .cta-left-aligned__button {
    width: 100%;
  }
}

@-webkit-keyframes ticker {
  from {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3D(-80%, 0px, 0);
    transform: translate3D(-80%, 0px, 0);
  }
}
@keyframes ticker {
  from {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3D(-80%, 0px, 0);
    transform: translate3D(-80%, 0px, 0);
  }
}
.swiper {
  overflow: hidden;
}
.swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-initialized.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-button-lock {
  display: none !important;
}
.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) {
  margin: toRem(25) 0 0 0;
  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;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) span {
  width: 10px;
  height: 10px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10px;
  flex: 0 0 10px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock) span:not(:last-child) {
  margin: 0 toRem(10) 0 0;
}
.swiper-pagination-bullets:not(.swiper-pagination-lock)
  span.swiper-pagination-bullet-active {
  background-color: var(--add-color);
}
.community__title {
  margin-bottom: clamp(80px, 120px, 150px);
}
@media (min-width: 29.99875em) {
  :root {
    --main-offsize: 1.0625rem;
    --border-radius: 1.875rem;
  }
  .hero__body {
    padding-top: 160px;
  }
  .hero__descr {
    max-width: 605px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 47.99875em) {
  .page__about:not(:last-child) {
    margin-bottom: 5.1875rem;
  }
  .about__top-row {
    gap: 22px;
  }
  .about__top-row svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 37px;
    flex: 0 0 37px;
  }
  .about__item {
    min-height: 400px;
  }
  .item-about__body {
    padding: 40px 35px;
  }
  .item-about__plus {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 43px;
    flex: 0 0 43px;
  }
  .programs__top {
    position: relative;
    margin-bottom: 60px;
  }
  .programs__navigate {
    position: absolute;
    top: 125%;
    right: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .programs__slider_wrap {
    position: relative;
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .programs__slider_wrap > .slider-controls__button {
    background-color: var(--green);
    pointer-events: auto;
    display: grid;
    padding: 0 10.5px;
  }
  .programs__show-more {
    display: none;
  }
  .slide-programs__inner {
    padding: 54px 24px 26px;
  }
  .slide-programs__top {
    margin-bottom: 40px;
  }
  .slide-programs__suplabel {
    margin-bottom: 24px;
    font-size: 24px;
  }
  .slide-programs__label {
    line-height: 90%;
  }
  .slide-programs__descr {
    font-size: 24px;
  }
  .slide-programs__period {
    margin-bottom: 16px;
  }
  .slide-programs__name {
    --border-width: 0.7px;
    margin-bottom: 22px;
    padding: 15px 0;
  }
  .partners-programs__label {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .ceo-quote__title {
    margin-bottom: 40px;
  }
  .ceo-quote__name {
    margin-bottom: 2px;
    line-height: 110%;
  }
  .ceo-quote__position {
    font-size: 18px;
    line-height: 110%;
  }
  .professors__top {
    margin-bottom: 60px;
  }
  .slide-professors__info {
    padding: 53px 30px;
  }
  .slide-professors__info:not(:last-child) {
    margin-bottom: 40px;
  }
  .slide-professors__company {
    max-width: 165px;
  }
  .community {
    padding: 60px 0 48px;
  }
  .community__descr {
    max-width: 367px;
    margin-bottom: 50px;
    font-size: 24px;
    line-height: 125%;
  }
  .community__button {
    max-width: 210px;
  }

  .item-community {
    border-radius: 15px;
  }
  .item-community__descr {
    padding: 27px 24px 14px;
  }
  .item-community__text {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 111%;
  }
  .item-community__name {
    font-size: 16px;
    line-height: 125%;
  }
  .item-community__position {
    font-size: 16px;
    line-height: 125%;
  }
}
@media (min-width: 61.99875em) {
  :root {
    --title-offsize: 60px;
  }
  .hero__descr {
    font-size: 24px;
  }
  .about__items {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 17px;
  }
  .about__item {
    min-height: 400px;
  }
  .about__item:nth-child(4n + 2) {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
  .about__item:nth-child(4n + 3) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .about__item:nth-child(4n + 4) {
    -ms-grid-column-span: 1;
    grid-column: span 1;
  }
  .about__item_f_2,
  .lang-en .about__item:nth-child(3) {
    -ms-grid-column-span: 2 !important;
    grid-column: span 2 !important;
  }
  .item-about__suplabel {
    margin-bottom: 23px;
    font-size: 18px;
  }
  .slide-programs {
    min-height: clamp(620px, 84vh, 730px);
  }
  .ceo-quote__body {
    height: 100vh;
    max-height: 700px;
  }
  .slide-professors__about {
    font-size: 24px;
  }
  .slide-professors__about p {
    font-size: 18px;
    line-height: 1.4;
  }
  .community__items {
    margin-bottom: 20px;
    padding-bottom: 88px;
  }
  .community__swiper.swiper-wrapper {
    -webkit-animation: ticker 16s linear infinite;
    animation: ticker 16s linear infinite;
  }
  .community__item:nth-child(4n + 1) {
    margin-right: 35px !important;
  }
  .community__item:nth-child(4n + 2) {
    margin-top: 87px;
  }
  .community__item:nth-child(4n + 3) {
    margin-top: 87px;
    margin-right: 160px !important;
  }
  .community__item:nth-child(4n + 4) {
    margin-top: -44px;
    margin-right: 70px !important;
  }
}
@media (min-width: 74.99875em) {
  .hero__body {
    height: 100svh;
    min-height: 670px;
    padding-bottom: clamp(40px, 14vh, 140px);
  }
  .ceo-quote__body {
    padding: 102px 72px;
  }
}
@media (min-width: 87.5em) {
  .page__hero:not(:last-child) {
    margin-bottom: 7.1875rem;
  }
  /*.page__community:not(:last-child){
        margin-bottom: 7.3125rem;
    }*/
  .about__top-row {
    margin-bottom: 60px;
  }
  .item-about__label {
    font-size: 2.5rem;
  }
  .item-about__logo {
    -ms-flex-preferred-size: 13.75rem;
    flex-basis: 12.75rem;
  }
  .item-about__logo.uam {
    -ms-flex-preferred-size: 20rem;
    flex-basis: 19rem;
  }
  .item-about__icon {
    -ms-flex-preferred-size: 7.5rem;
    flex-basis: 7.5rem;
  }
  .slide-programs__label {
    font-size: 3.75rem;
  }
}
@media (max-width: 20em) {
  .page__hero:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  /*.page__community:not(:last-child){
        margin-bottom: 3.125rem;
    }*/
  .about__top-row {
    margin-bottom: 1.5rem;
  }
  .item-about__label {
    font-size: 1.3125rem;
  }
  .item-about__logo {
    -ms-flex-preferred-size: 5.9375rem;
    flex-basis: 5.9375rem;
  }
  .item-about__icon {
    -ms-flex-preferred-size: 2.3125rem;
    flex-basis: 2.3125rem;
  }
  .slide-programs__label {
    font-size: 2.75rem;
  }
}
@media (max-width: 61.99875em) {
  .about__items {
    gap: 12px;
  }
  .about__item {
    min-height: 202px;
  }
  .item-about__suplabel {
    margin-bottom: 12px;
  }
  .partners-programs__item,
  .partners-programs__item img {
    max-height: 22px;
  }
  .ceo-quote__body {
    min-height: 410px;
  }
  .community__items {
    margin-bottom: 37px;
  }
  .community__swiper.swiper-wrapper {
    display: -ms-grid !important;
    display: grid !important;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    -webkit-animation: ticker 60s linear infinite;
    animation: ticker 60s linear infinite;
  }
  .swiper-slide {
    min-width: 220px;
  }
  .community__item {
    height: auto !important;
    margin: 0 !important;
  }
  .community__item:nth-child(4n + 1) {
    margin-bottom: 155px !important;
    margin-right: 25px !important;
  }
  .community__item:nth-child(4n + 2) {
    margin-right: 25px !important;
  }
  .community__item:nth-child(4n + 3) {
    margin-top: 47px !important;
    margin-right: 25px !important;
  }
  .community__item:nth-child(4n + 4) {
    margin-right: 45px !important;
    margin-top: -71px !important;
  }
  .slide-programs .label_discount {
    translate: 0;
    top: 1rem;
    right: 1rem;
  }
}
@media (max-width: 47.99875em) {
  .page__about:not(:last-child) {
    margin-bottom: 45px;
  }
  .about__top-row {
    gap: 12px;
  }
  .about__top-row svg {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 19px;
    flex: 0 0 19px;
  }
  .item-about__body {
    padding: 20px;
  }
  .item-about__plus {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26px;
    flex: 0 0 26px;
  }
  .programs__top {
    margin-bottom: 20px;
  }
  .programs__button {
    display: none;
  }
  .programs__slider {
    display: -ms-grid;
    display: grid;
    gap: 12px;
  }
  .slide-programs__inner {
    padding: 40px 20px 14px;
  }
  .slide-programs__top {
    padding-bottom: 100px;
  }
  .slide-programs__suplabel {
    padding-bottom: 18px;
    font-size: 16px;
  }
  .slide-programs__label {
    line-height: 120%;
  }
  .slide-programs__descr {
    padding-bottom: 40px;
    font-size: 18px;
  }
  .slide-programs__period {
    padding-bottom: 11px;
  }
  .slide-programs__name {
    --border-width: 0.5px;
    padding: 11px 0;
  }
  .slide-programs__price {
    padding-top: 16px;
  }
  .partners-programs__label {
    margin-bottom: 14px;
    font-size: 14px;
    opacity: 0.7;
  }
  .ceo-quote__container {
    padding: 0 1.5rem;
  }
  .ceo-quote__title {
    margin-bottom: 20px;
    font-size: 1.7rem;
  }
  .ceo-quote__name {
    font-size: 16px;
    line-height: 125%;
  }
  .ceo-quote__position {
    font-size: 16px;
    line-height: 125%;
  }
  .professors__top {
    margin-bottom: 25px;
  }
  .slide-professors__info {
    padding: 26px 14px;
  }
  .slide-professors__info:not(:last-child) {
    margin-bottom: 20px;
  }
  .slide-professors__company {
    max-width: 85px;
  }
  .community {
    padding: 32px 0 42px;
  }
  .community__descr {
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 23px;
    font-size: 16px;
    line-height: 106%;
    text-align: center;
  }
  .community__button {
    max-width: 117px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--black);
    color: var(--white);
  }
  .item-community {
    border-radius: 8px;
  }
  .item-community__descr {
    padding: 12px 12px;
  }
  .item-community__text {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 100%;
  }
  .item-community__name {
    font-size: 14px;
    line-height: 107%;
    color: rgba(0, 0, 0, 0.7);
  }
  .item-community__position {
    font-size: 14px;
    line-height: 107%;
    color: rgba(0, 0, 0, 0.7);
  }
}

@media (max-width: 29.99875em) {
  :root {
    --main-offsize: 0.875rem;
    --title-offsize: 1.5625rem;
    --border-radius: 1.375rem;
  }
  .hero__body {
    min-height: 94vh;
    padding: 95px 0 50px;
  }
  .hero__title {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__descr {
    font-size: 16px;
  }
  .item-about__body:has(.item-about__logos) {
    gap: 14px;
  }
  .item-about__suplabel {
    font-size: 12px;
  }
  .item-about__label {
    max-width: 74.2857142857%;
  }
  .ceo-quote__body {
    padding: 28px 14px;
  }
  .slide-professors__about {
    font-size: 12px;
  }
}
@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  :root {
    --title-offsize: 3rem;
  }
  .hero__descr {
    font-size: 20px;
  }
  .item-about__suplabel {
    font-size: 16px;
  }
  .slide-professors__about {
    font-size: 18px;
  }
  .slide-professors__about p {
    font-size: 16px;
  }
}
@media (min-width: 20em) and (max-width: 87.5em) {
  .page__hero:not(:last-child) {
    margin-bottom: clamp(2.5rem, 1.1111111111rem + 6.9444444444vw, 7.1875rem);
  }

  .page__hero:not(:last-child) {
    margin-bottom: calc(2.5rem + 4.6875 * (100vw - 20rem) / 67.5);
  }

  .about__top-row {
    margin-bottom: clamp(1.5rem, 0.3333333333rem + 5.8333333333vw, 3rem);
  }

  .item-about__label {
    font-size: clamp(1.3125rem, 0.9606481481rem + 1.7592592593vw, 2.5rem);
  }

  .item-about__logo {
    -ms-flex-preferred-size: 9rem;
    flex-basis: 9rem;
    margin-top: 0.3rem;
  }
  .item-about__logo.uam {
    -ms-flex-preferred-size: 14rem;
    flex-basis: 14rem;
    margin-top: 0.1rem;
  }

  .item-about__icon {
    -ms-flex-preferred-size: clamp(
      2.3125rem,
      0.775462963rem + 7.6851851852vw,
      7.5rem
    );
    flex-basis: clamp(2.3125rem, 0.775462963rem + 7.6851851852vw, 7.5rem);
  }

  .slide-programs__label {
    font-size: clamp(2.75rem, 2.4537037037rem + 1.4814814815vw, 3.75rem);
  }
}
@media (min-width: 40.62375em) {
  .hero__body {
    min-height: 100dvh;
  }
}
@media (min-width: 29.99875em) and (max-width: 74.99875em) and (min-width: 87.5em) {
  .hero__body {
    padding-bottom: 8.75rem;
  }
}
@media (min-width: 29.99875em) and (max-width: 74.99875em) and (min-width: 20em) and (max-width: 87.5em) {
  @supports (
    padding-bottom: clamp(3.125rem, 1.4583333333rem + 8.3333333333vw, 8.75rem)
  ) {
    .hero__body {
      padding-bottom: 15vh;
    }
  }
  .hero__body {
    min-height: 100dvh;
  }
}
@media (min-width: 29.99875em) and (max-width: 74.99875em) and (max-width: 20em) {
  .hero__body {
    padding-bottom: 3.125rem;
  }
}
@media (min-width: 29.99875em) and (max-width: 74.99875em) {
  .ceo-quote__body {
    padding: 60px 14px;
  }
}
@media (any-hover: hover) {
  .item-about:hover .item-about__plus img {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  .slide-programs:hover .slide-programs__image {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}
.page__black_friday__hero {
  position: relative;
  overflow: hidden;
  padding: 15rem 0 5rem;
}
.page__black_friday__hero + .page__about {
  margin-top: 7.1875rem;
}
.page__black_friday__hero > .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page__black_friday__hero > .bg:before {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.page__black_friday__hero > .bg:after {
  content: "";
  z-index: 1;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgba(17, 17, 21, 0) 0%,
    rgba(17, 17, 21, 0.565603) 16.91%,
    rgba(17, 17, 21, 0.859504) 45.82%,
    #111115 81.89%
  );
}
.page__black_friday__hero > .bg > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__black_friday__hero > .hero__container {
  position: relative;
  z-index: 1;
}
.page__black_friday__hero > .hero__container > .inner {
  max-width: 48rem;
  color: #fff;
}
.page__black_friday__hero > .hero__container > .inner > .tt {
  font-weight: 700;
  font-size: clamp(6rem, 12vw, 11.919rem);
  line-height: 81%;
  margin-bottom: 1rem;
}
.page__black_friday__hero > .hero__container > .inner > .tt span {
  color: #fea339;
}
.page__black_friday__hero > .hero__container > .inner > .text_1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 4.65rem);
  margin-bottom: 5px;
}
.page__black_friday__hero > .hero__container > .inner > .text_2 {
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 3.3rem);
  color: #fea339;
  margin-bottom: 5px;
}
.page__black_friday__hero > .hero__container > .inner > .text_3 {
  font-weight: 300;
  font-size: clamp(1.2rem, 2.5vw, 2.345rem);
}
.page__black_friday__hero > .hero__container > .inner > .button {
  display: inline-flex;
  width: auto;
  margin-top: 4rem;
}
@media (max-width: 650px) {
  .page__black_friday__hero {
    padding: 10rem 0 3rem;
    margin-bottom: clamp(2.5rem, 1.1111111111rem + 6.9444444444vw, 7.1875rem);
  }
  .page__black_friday__hero + .page__about {
    margin-top: clamp(2.5rem, 1.1111111111rem + 6.9444444444vw, 7.1875rem);
  }
  .page__black_friday__hero > .bg:after {
    width: 90%;
  }
  .page__black_friday__hero > .hero__container > .inner > .button {
    margin-top: 2rem;
  }
}
.page__third_party {
  position: relative;
  background: #000;
  padding: 100px 0;
}
.page__third_party .third_party__container > .tt {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.005em;
  margin-bottom: 40px;
  color: #fff;
}
.page__third_party .third_party__container > .swiper-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page__third_party .third_party__container > .swiper-wrap > .swiper {
  padding: 10px;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  > .slider-controls__button {
  pointer-events: auto;
  display: flex;
  padding: 0 10.5px;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  > .slider-controls__button:not(:hover) {
  color: #fff;
}
.page__third_party .third_party__container > .swiper-wrap .swiper-slide {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: 15px;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-direction: column;
  transition: scale 0.2s ease;
}
.page__third_party .third_party__container > .swiper-wrap .swiper-slide:hover {
  scale: 1.05;
}
.page__third_party .third_party__container > .swiper-wrap .swiper-slide > .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 20px 0;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  .swiper-slide
  > .top
  > .logo {
  flex: 1;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  .swiper-slide
  > .top
  > .logo
  > img {
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 90px;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  .swiper-slide
  > .top
  > .more {
  flex: 0 0 auto;
  font-size: 12.9512px;
  line-height: 14px;
  text-align: center;
  letter-spacing: 0.01em;
  padding: 10px 15px;
  border: 0.719512px solid #1a1a1a;
  border-radius: 21.5854px;
}
.page__third_party
  .third_party__container
  > .swiper-wrap
  .swiper-slide
  > .text {
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.005em;
  color: #000000;
  margin-top: auto;
}
.page__third_party .third_party__container > .swiper-wrap .swiper-slide > img {
  width: 100%;
  height: auto;
}
@media (max-width: 650px) {
  .page__third_party .third_party__container > .tt {
    font-size: 26px;
  }
  .page__third_party .third_party__container > .swiper-wrap {
    gap: 10px;
  }
  .page__third_party
    .third_party__container
    > .swiper-wrap
    > .slider-controls__button {
    padding: 0 5px;
  }
  .page__third_party
    .third_party__container
    > .swiper-wrap
    .swiper-slide
    > .top {
    gap: 10px;
    padding: 10px 10px 0;
  }
  .page__third_party
    .third_party__container
    > .swiper-wrap
    .swiper-slide
    > .text {
    padding: 10px;
    font-size: 16px;
  }
}
.page-template-home-2025 .page__blog {
  padding-bottom: 0 !important;
}
.page__newsletter {
  position: relative;
  padding-block: 5rem;
}
.page__newsletter .newsletter__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page__newsletter .page__container {
  position: relative;
  max-width: 69rem;
}
.page__newsletter .page__container > .tt {
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  text-align: center;
  color: var(--white);
  margin-bottom: 2rem;
}
.page__newsletter .page__container > .form {
  padding: 1.5rem;
  border-radius: 30px;
  background-color: var(--white);
  max-width: 21rem;
  margin: 0 auto;
}
.page__newsletter .hbspt-form .hs-submit .hs-button {
  background-color: var(--black);
}
.page__newsletter .hbspt-form .hs-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page__newsletter .hbspt-form .hs-submit {
  padding-top: 10px;
}
@media (max-width: 650px) {
  .page__newsletter {
    padding-block: 3rem;
    margin-top: 3rem;
  }
}

/* blog */
.page__blog .page__recommended {
  padding-block: 3.5rem 7rem;
}
.page__blog .page__recommended > .recommended__container {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2.4rem;
}
.page__blog .page__recommended > .recommended__container > svg {
  flex: 0 0 auto;
}
.page__blog .page__recommended > .recommended__container > .tt {
  flex: 1;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.page__blog .page__recommended > .swiper {
  padding: 0 0 0 2.5rem;
}
.page__blog .page__recommended > .swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.page__blog .page__recommended > .swiper .swiper-wrapper .swiper-slide {
  --width: 77%;
  width: var(--width);
}
.page__blog
  .page__recommended
  > .swiper
  .swiper-wrapper
  .swiper-slide
  .blog-post
  .entry-title {
  font-weight: 700;
}
@media (min-width: 651px) {
  .page__blog .page__recommended > .swiper .swiper-wrapper .swiper-slide {
    --width: 31.25%;
  }
  .page__blog
    .page__recommended
    > .swiper
    .swiper-wrapper
    .swiper-slide.featured {
    width: calc(var(--width) * 2) !important;
  }
}
@media (min-width: 835px) {
  .page__blog .page__recommended > .swiper .swiper-wrapper .swiper-slide {
    --width: 26.32%;
  }
}
@media (min-width: 1201px) {
  .page__blog .page__recommended > .swiper .swiper-wrapper .swiper-slide {
    --width: 25%;
  }
}
.page__blog .page__recommended .blog-post > .entry-content > .f {
  padding-right: 1rem;
}
@media (min-width: 651px) {
  .page__blog
    .page__recommended
    > .recommended__container
    > .slider-controls:not(.show-navigation) {
    display: none;
  }
}
@media (max-width: 650px) {
  .page__blog .page__recommended {
    padding-block: 2rem;
  }
  .page__blog .page__recommended > .recommended__container {
    padding-bottom: 2rem;
  }
  .page__blog .page__recommended > .recommended__container > svg {
    display: none;
  }
}
@media (max-width: 29.9988em) {
  .page__blog .page__recommended > .swiper {
    padding: 0 0 0 1.25rem;
  }
}

.page__blog .blog-post > .img {
  position: relative;
  margin-bottom: 1.5rem;
}
.page__blog .blog-post > .img > .post-categories {
  position: absolute;
  top: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.page__blog .blog-post > .img > .post-categories a {
  display: block;
  border: 1px solid #000;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  color: var(--black);
}
.page__blog .blog-post > .img > .post-categories a:hover {
  background-color: #e8c6f5;
}
.page__blog .blog-post > .img > .entry-thumbnail {
  display: block;
  position: relative;
  height: 0;
  padding-bottom: 99%;
  border-radius: clamp(1.25rem, 2vw, 1.875rem);
  overflow: hidden;
}
@media (min-width: 651px) {
  .page__blog .swiper-slide.featured .blog-post > .img > .entry-thumbnail {
    padding-bottom: 49.5%;
  }
}
.page__blog .blog-post > .img > .entry-thumbnail > img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.page__blog .blog-post:hover > .img > .entry-thumbnail > img {
  transform: scale(1.1);
}
.page__blog .blog-post > .entry-content > .f {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.page__blog .blog-post > .entry-content > .f > .l {
  flex: 1;
}
.page__blog .blog-post > .entry-content > .f > .r {
  flex: 0 0 auto;
}
.page__blog .blog-post > .entry-content > .f > .r > a,
.page__blog .blog-post > .entry-content > .f > .r > a > svg {
  display: block;
}
.page__blog .blog-post > .entry-content > .f > .r > a > svg {
  transition: rotate 0.3s ease;
  rotate: 45deg;
}
.page__blog .blog-post:hover > .entry-content > .f > .r > a > svg {
  rotate: 0deg;
}
.page__blog .blog-post > .entry-content > .f > .r > a > svg > circle {
  transition: opacity 0.3s ease;
  opacity: 0;
}
.page__blog .blog-post:hover > .entry-content > .f > .r > a > svg > circle {
  opacity: 1;
}
.page__blog .blog-post .entry-title {
  font-size: clamp(1.125rem, 1.5vw, 1.3125rem);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.page__blog .blog-post .entry-meta {
  font-size: 1rem;
  color: #828282;
}
.page__blog .blog-post .entry-meta .bsf-rt-display-label {
  display: none;
}
