:root {
  --contrast-grey: #6e7173;
  --light-purple: #b9b9d9;
  --blue: #001c4c;
  --light-blue: rgba(224, 232, 244, 0.5);
  --purple: #50519e;
  --font-a: "RundDisplay", sans-serif;
}

.button-white {
  border: 1px solid var(--white) !important;
  background-color: var(--white) !important;
  color: var(--black) !important;
}

.button-border-white {
  border: 1px solid var(--white) !important;
  color: var(--white) !important;
}

.button-black {
  border: 1px solid var(--black) !important;
  background-color: var(--black) !important;
  color: var(--white) !important;
}
.button-black:focus,
.button-black:focus-visible {
  outline: 1px solid var(--purple) !important;
}

/* banner */
.banner {
  position: fixed;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: min(4%, 1.2rem) min(5%, 3rem);
  background-color: var(--black);
  color: var(--white);
  border-radius: 1.875rem 1.875rem 0 0;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s;
}
.banner.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.banner__wrapper:has(.banner__wrapper__price) {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}

.banner__wrapper__price {
  font-size: clamp(1.5rem, 2vw, 3rem);
  font-weight: 400;
  color: var(--white);
}

.banner__wrapper a {
  width: fit-content;
  padding-inline: 1.5rem;
}

.banner__wrapper__discount {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
}

.banner__wrapper__price--second {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.8;
}

/* header */
.header.header--simple {
  position: absolute;
  z-index: 100;
}

.header .header__media-wrapper {
  padding: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  max-width: calc(235px + 70px);
  margin: 0 auto;
}

.header .header__media-wrapper img {
  width: 100%;
  height: auto;
}

.header .header__media-wrapper a {
  max-width: 240px;
  cursor: pointer;
}

@media all and (max-width: 580px) {
  .header .header__media-wrapper {
    flex-direction: column;
    gap: 8px;
  }

  .header .header__media-wrapper a {
    max-width: 150px;
  }
}

@media all and (max-width: 580px) {
  .header .header__media-wrapper {
    max-width: calc(150px + 80px);
  }
}

/* hero */
.hero {
  position: relative;
  padding: 12.5rem 0 10rem;
  font-family: var(--font-a);
}

@media all and (max-width: 1024px) {
  .hero {
    padding: 10rem 0 8rem;
  }
}

@media all and (max-width: 580px) {
  .hero {
    padding-bottom: 2rem;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero__bg__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__container {
  display: flex;
  gap: 2rem;
}

@media all and (max-width: 1024px) {
  .hero__container {
    max-width: 810px;
    flex-wrap: wrap;
  }
}

.hero__left-items {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.is-open .hero .hero__left-items {
  flex: 0 0 55%;
}

@media all and (max-width: 1024px) {
  .is-open .hero .hero__left-items,
  .hero__left-items {
    flex: 0 0 100%;
  }
}

.hero__left-items__hd {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--white);
}

.hero__left-items__hd__label {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
}

.hero__left-items__hd__title {
  font-size: clamp(3.375rem, 5vw, 6rem);
  font-weight: 300;
}

.hero__left-items__hd__subtitle {
  position: relative;
  display: flex;
  align-items: center;
}

.hero__left-items__hd__subtitle:before,
.hero__left-items__hd__subtitle:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--white);
}

.hero__left-items__hd__subtitle .hero__left-items__hd__subtitle__wrapper {
  border: 1px solid;
  padding: 0.625rem 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  border-radius: 10rem;
  flex: 0 0 auto;
  text-align: center;
}

.hero__left-items__bd * {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--white);
}

.hero__left-items__bd p:not(:last-child) {
  margin-bottom: 1rem;
}

.hero__left-items__ft {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  border: 1px solid var(--white);
  padding: 1rem;
  border-radius: 1rem;
  width: 100%;
}

.hero__left-items__ft__price {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--white);
}

.hero__left-items__ft__link {
  width: fit-content;
  padding-inline: 1.5rem;
}

.hero__left-items__ft__discount {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 1rem;
}

.hero__left-items__ft__price--second {
  font-size: clamp(1.5rem, 2vw, 3rem);
  text-decoration: line-through;
  opacity: 0.8;
}

.hero__right-items {
  flex: 1;
  border-radius: 1.875rem;
  overflow: hidden;
  background-color: var(--white);
  padding: 2rem;
}

.hero__right-items .hero__right-items__title {
  color: var(--purple);
  font-size: clamp(2rem, 2vw, 2.5rem);
  margin-bottom: 1rem;
}

.hero__right-items .hero__right-items__subtitle {
  color: var(--purple);
  font-size: 1rem;
  text-wrap: balance;
  margin-bottom: 2rem;
}

/* bonus */
.page__bonus {
  padding: 6rem 0;
  background-color: var(--black);
  color: #fff;
}

.page__bonus .bonus__container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.page__bonus .bonus__container:before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% - 50px - 4rem);
  border: 0.7px solid white;
  border-radius: 20px;
  z-index: 0;
}

.page__bonus .bonus__container .bonus__pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 24px;
  border-radius: 50px;
  background-color: var(--green);
  color: var(--black);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  width: fit-content;
  margin-top: calc(-4rem - 12px - 1.25rem);
  z-index: 1;
}
.page__bonus .bonus__container .bonus__pill .bonus__pill__media {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.page__bonus .bonus__container .bonus__pill:hover .bonus__pill__media {
  animation: shake 0.5s ease-in-out;
}
.page__bonus .bonus__container .bonus__title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.3;
  max-width: 500px;
  text-align: center;
  margin: 0 auto;
  z-index: 1;
}
.page__bonus .bonus__container .bonus__title strong {
  color: var(--green);
}
.page__bonus .bonus__container .bonus__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  z-index: 1;
}
.page__bonus .bonus__container .bonus__wrapper .bonus__wrapper__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 22px;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: #e0daef;
  color: var(--purple);
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__pill
  .bonus__wrapper__item__pill__media {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__pill:hover
  .bonus__wrapper__item__pill__media {
  animation: shake 0.5s ease-in-out;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__pill
  .bonus__wrapper__item__pill__title {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__info {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  width: 100%;
  border-bottom: 1px solid #aaa;
  padding-bottom: 1.15rem;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__info
  .bonus__wrapper__item__info__media {
  width: 114px;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  overflow: hidden;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__info
  .bonus__wrapper__item__info__title {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 1rem;
  width: calc(100% - 114px);
  padding-right: 10%;
  color: var(--black);
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__list {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__list
  .bonus__wrapper__item__list__item {
  max-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__list
  .bonus__wrapper__item__list__item
  h3 {
  color: var(--purple);
  font-size: inherit;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__list
  .bonus__wrapper__item__list__item
  img {
  width: 1.5rem;
  height: auto;
}
.page__bonus
  .bonus__container
  .bonus__wrapper
  .bonus__wrapper__item
  .bonus__wrapper__item__list
  .bonus__wrapper__item__list__item
  p {
  color: var(--black);
  font-size: inherit;
}
.page__bonus .bonus__button__container {
  width: fit-content;
  display: flex;
  justify-content: center;
}
.page__bonus .bonus__button__container a {
  padding-inline: 1.5rem;
}

@keyframes shake {
  0% {
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(-2px) rotate(-2deg);
  }
  50% {
    transform: translateX(2px) rotate(2deg);
  }
  75% {
    transform: translateX(-1px) rotate(-1deg);
  }
  100% {
    transform: translateX(0) rotate(0deg);
  }
}
@media all and (max-width: 1024px) {
  .page__bonus .bonus__container .bonus__title {
    max-width: 80%;
  }
}
@media all and (max-width: 810px) {
  .page__bonus .bonus__container:before {
    left: 2.5%;
    width: 95%;
  }
  .page__bonus .bonus__container .bonus__title {
    max-width: 100%;
  }
  .page__bonus .bonus__container .bonus__wrapper {
    grid-template-columns: 1fr;
  }
}

@media all and (max-width: 580px) {
  .page__bonus .bonus__button__container {
    width: 100%;
  }
}

/* callout */

.callout {
  padding: 3.5rem 0 2.5rem;
  background-color: var(--purple);
  transition: background-color 0.3s ease;
}

@media all and (max-width: 580px) {
  .callout {
    background-color: var(--white);
  }
}

.callout__title {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 780px;
  margin: 0 auto 2rem;
  text-wrap: balance;
  text-align: center;
  transition: color 0.3s ease;
}

@media all and (max-width: 580px) {
  .callout__title {
    color: var(--purple);
  }
}

.callout__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 1.5rem;
  overflow: hidden;
  max-width: 580px;
  margin: 0 auto;
}

.callout__card__hd {
  background: var(--blue);
  padding: 2rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.callout__card__hd {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.callout__card__hd img {
  width: auto;
  height: 50px;
  filter: brightness(0) invert(1);
}

.callout__card__hd__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  text-wrap: balance;
}

.callout__card__media {
  width: 100%;
}

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

/* info */
.info {
  padding: 4.5rem 0 1.5rem;
  background-color: var(--white);
}

.info__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media all and (max-width: 810px) {
  .info__container {
    gap: 0;
  }
}

.info__hd {
  display: flex;
  flex-direction: column;
}

.info__hd__label {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--contrast-grey);
}

.info__hd__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.info__bd {
  display: flex;
  flex-direction: column;
}

.info__bd__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.info__bd__item:not(:last-child) {
  border-bottom: 1px solid var(--light-purple);
}

.info__bd__item__hd {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info__bd__item__hd img {
  width: 1.25rem;
  height: auto;
}

.info__bd__item__hd__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--purple);
}

.info__card {
  position: relative;
  margin-left: auto;
  padding: 7rem 2.5rem 5rem;
  background: var(--purple);
  color: var(--white);
  border-radius: 1.875rem;
  overflow: hidden;
}

.info__card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 65%;
}

.info__card__wrapper__title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--white);
  text-wrap: balance;
}

.info__card__wrapper__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
  color: var(--white);
  text-wrap: balance;
}

.info__card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.5rem;
  width: 120px;
  height: 160px;
  background-color: #b0d8c7;
  position: absolute;
  top: -1px;
  right: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.info__card__media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media all and (max-width: 810px) {
  .info__card {
    margin-top: 1.5rem;
  }
}

/* why slider */
.title-slider {
  background-color: var(--black);
  color: #fff;
  padding: 7rem 0;
}
.title-slider .page__container {
  max-width: 80rem;
  display: flex;
  gap: 5%;
}
.title-slider .page__container > .l {
  flex: 0 0 50%;
}
.title-slider .page__container > .l > .title-slider__title {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 0.91;
  letter-spacing: 0.005em;
  margin-bottom: 2.2rem;
}
.title-slider .page__container .button {
  width: auto;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.title-slider .page__container .button:hover {
  border-color: var(--white);
}
.title-slider .page__container > .r {
  flex: 1;
  min-width: 0;
  padding-top: 0.5rem;
}
.title-slider .page__container > .r .swiper-slide {
  font-size: 2.3rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  font-weight: 100;
}
.title-slider .page__container > .r .slider-controls {
  padding-top: 1.5rem;
}
.title-slider
  .page__container
  > .r
  .slider-controls
  .slider-controls__button:hover {
  color: var(--black);
}

@media (min-width: 651px) {
  .title-slider .button__mobile {
    display: none !important;
  }
}
@media (max-width: 650px) {
  .title-slider .button__desktop {
    display: none !important;
  }
  .title-slider {
    padding: 3rem 0 2.4rem;
  }
  .title-slider .page__container {
    flex-direction: column;
    gap: 0;
  }
  .title-slider .page__container > .l > .why__title {
    line-height: 1;
    margin-bottom: 1.2rem;
  }
  .title-slider .page__container > .r .swiper-slide {
    font-size: 1.315rem;
  }
  .title-slider .page__container > .r .slider-controls {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* specs */
.specs {
  padding-block: clamp(3rem, 4vw, 4rem);
  background: var(--light-blue);
}

.specs__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.specs__wrapper__media {
  width: calc(350px - 20px);
}

.specs__wrapper__media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.specs__wrapper__bd {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  width: calc(100% - 350px - 20px);
}

.specs__wrapper__bd__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}

.specs__wrapper__bd__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.2;
  color: var(--grey);
}

.specs__wrapper__bd .button {
  width: fit-content;
  padding-inline: 1.5rem;
}

@media all and (max-width: 980px) {
  .specs__wrapper {
    gap: 1rem;
  }
  .specs__wrapper__media {
    width: calc(40% - 1rem);
  }
  .specs__wrapper__bd {
    width: calc(60% - 1rem);
  }
}

@media all and (max-width: 580px) {
  .specs__wrapper {
    flex-direction: column;
  }
  .specs__wrapper__media {
    order: 2;
    max-width: 250px;
  }
  .specs__wrapper__bd {
    order: 1;
    text-align: center;
    align-items: center;
  }
  .specs__wrapper__media,
  .specs__wrapper__bd {
    width: 100%;
  }

  .specs__wrapper__bd .button {
    width: 100%;
  }
}

.info__bd__item__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 400;
}
/* proud training services partner */
.partner {
  padding-block: 3.45rem;
}
.partner__container {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
  color: #000;
  font-size: 1.5rem;
}
.partner__label {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  text-transform: uppercase;
}
.partner__media {
  width: auto;
  height: 2rem;
  margin-bottom: 0.2rem;
}
@media (max-width: 650px) {
  .partner {
    padding-block: 4rem;
  }
  .partner__container {
    flex-direction: column;
    gap: 1.3rem;
  }
}

/* marquee */
.marquee {
  background: var(--dark-hard);
  padding: 4rem 0 2.5rem;
}

.marquee .marquee__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

@media all and (max-width: 768px) {
  .marquee {
    padding: 2.5rem 0;
  }
  .marquee .marquee__wrapper {
    gap: 1.5rem;
  }
}

.marquee .marquee__wrapper__title {
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 400;
  color: var(--black);
  text-transform: uppercase;
  text-align: center;
}

.marquee .marquee__logos {
  margin: 2rem 0 0;
  width: 100%;
}

.marquee .marquee__logos__wrapper {
  display: flex;
  transition-timing-function: linear;
  align-items: center;
}

.marquee .marquee__logos__wrapper__item {
  width: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee .marquee__logos__wrapper__item img {
  width: 100%;
  height: auto;
}

/* callout and features */
.callout-bg {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, #483c7a00, #50519e);
}

.callout-bg__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.callout-bg__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout-bg__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  background-color: var(--white);
  border-radius: 2rem;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* title content */
.title-content {
  padding: 4.5rem 0;
  background-color: var(--purple);
}

.title-content .page__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.title-content__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 5rem;
}

@media all and (max-width: 1024px) {
  .title-content {
    padding: 2.5rem 0;
  }
  .title-content__item {
    grid-template-columns: 1fr;
  }
}

.title-content__item__left-items__title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  color: var(--white);
  text-wrap: balance;
}

@media all and (max-width: 1024px) {
  .title-content__item__left-items__title {
    text-align: center;
  }
}

.title-content__item__right-items__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media all and (max-width: 1024px) {
  .title-content__item__right-items__list {
    gap: 1.5rem;
  }
}

.title-content__item__right-items__list__item {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 1rem;
}

.title-content__item__right-items__list__item img {
  width: 1rem;
  height: auto;
  margin-top: 0.5rem;
}

.title-content__item__right-items__list__item span {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--light-purple);
}

@media all and (max-width: 810px) {
  .callout-bg__card {
    padding: 2rem 1.5rem;
  }
}

.callout-bg__card__title,
.callout-bg__card__subtitle {
  color: var(--black);
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-align: center;
}

.callout-bg__card__title {
  font-weight: 600;
}

/* temario */
.syllabus {
  padding-block: 4.5rem 5rem;
  background-color: var(--black);
  color: var(--white);
}
.syllabus > .page__container {
  max-width: 81.5rem;
}
.syllabus > .page__container > .t {
  text-align: center;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  max-width: 450px;
  margin: 0 auto 2.5rem;
}
.syllabus > .page__container > .inside {
  display: flex;
  gap: 4vw;
  padding-bottom: 2rem;
  border-bottom: 1px solid #737373;
}
.syllabus > .page__container > .inside > .l {
  flex: 0 0 25%;
  border-top: 1px solid;
  padding-right: 2.3vw;
  border-color: #737373;
}
.syllabus > .page__container > .inside > .l > .syllabus_button {
  display: block;
  font-size: 1.5rem;
  margin-block: 2rem 2.2rem;
  cursor: pointer;
  transition: all 0.25s;
  color: #919191;
  text-align: left;
}
@media all and (max-width: 1024px) {
  .syllabus > .page__container > .inside > .l > .syllabus_button {
    font-size: 1.25rem;
  }
}
.syllabus > .page__container > .inside > .l > .syllabus_button:hover,
.syllabus > .page__container > .inside > .l > .syllabus_button.current {
  color: var(--white);
}
.syllabus > .page__container > .inside > .r {
  flex: 1;
}
.syllabus > .page__container > .inside > .r > .syllabus_item.hide {
  display: none;
}
.syllabus > .page__container > .inside > .r > .syllabus_item {
  display: flex;
  justify-content: space-around;
}
.syllabus > .page__container > .inside > .r > .syllabus_item > .summary {
  display: none;
}
.syllabus > .page__container > .inside > .r > .syllabus_item > .tx > .inner {
  display: flex;
  gap: 4vw;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt {
  border-top: 1px solid;
  border-color: #737373;
  padding-top: 2rem;
  flex: 1;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .t {
  font-size: clamp(1.125rem, 2vw, 1.6rem);
  margin-bottom: 2.5rem;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .p {
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  line-height: 1.3;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .p
  ul
  > li {
  position: relative;
  padding-left: 45px;
  margin-bottom: 1.3rem;
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
  font-weight: 100;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .p
  ul
  > li::before {
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='18' viewBox='0 0 25 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.5812 7.32283L14.8687 2.61033C14.5707 2.31242 14.4218 1.96033 14.4218 1.55408C14.4218 1.14783 14.564 0.788978 14.8483 0.477519C15.1598 0.166061 15.5254 0.00694766 15.9452 0.000176607C16.365 -0.00659444 16.7306 0.145749 17.0421 0.457208L24.3546 7.76971C24.666 8.08117 24.8218 8.44002 24.8218 8.84627C24.8218 9.25252 24.666 9.61138 24.3546 9.92284L17.0218 17.2556C16.7103 17.5671 16.3481 17.7161 15.9351 17.7025C15.522 17.689 15.1598 17.5265 14.8483 17.215C14.564 16.9036 14.4218 16.5447 14.4218 16.1385C14.4218 15.7322 14.5707 15.3801 14.8687 15.0822L19.5812 10.3697L1.52334 10.3697C1.10355 10.3697 0.744693 10.2207 0.446776 9.92283C0.14886 9.62492 -9.84445e-05 9.26606 -9.84078e-05 8.84627C-9.83711e-05 8.42648 0.14886 8.06762 0.446776 7.76971C0.744693 7.47179 1.10355 7.32283 1.52334 7.32283L19.5812 7.32283Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  translate: 0 0.3rem;
  position: absolute;
  left: 0;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .p
  ul
  > li
  > ul {
  padding: 24px 0 0;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .txt
  > .p
  > *:not(:last-child) {
  margin-bottom: 1rem;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers {
  border-top: 1px solid;
  padding-top: 2rem;
  flex: 0 0 16vw;
  border-color: #737373;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .t {
  font-size: clamp(1.125rem, 2vw, 1.6rem);
  margin-bottom: 2.5rem;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.7rem;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher:last-child {
  margin-bottom: 0;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .img {
  flex: 0 0 clamp(2.4rem, 6vw, 2.7rem);
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .img
  > .i {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  border-radius: 100%;
  overflow: hidden;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .img
  > .i
  > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .txt {
  flex: 1;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .txt
  > .t {
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.syllabus
  > .page__container
  > .inside
  > .r
  > .syllabus_item
  > .tx
  > .inner
  > .teachers
  > .teacher
  > .txt
  > .s {
  color: #b8b8b8;
  font-weight: 400;
  font-size: 90%;
  line-height: 1.2;
}
@media (max-width: 650px) {
  .syllabus {
    padding-block: 3rem;
  }
  .syllabus > .page__container > .inside {
    border-bottom: 0;
  }
  .syllabus > .page__container > .inside > .l {
    display: none;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item.hide {
    display: flex;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item > .summary {
    display: block;
    color: #919191;
    font-size: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid;
    margin-bottom: 1rem;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item:hover > .summary,
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item.active
    > .summary {
    color: var(--white);
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item {
    flex-direction: column;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item > .tx {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s linear;
    overflow: hidden;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item > .tx > .inner {
    flex-direction: column;
    min-height: 0;
    transition: visibility 1s;
    visibility: hidden;
    gap: 1rem;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .txt {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 1rem;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .txt
    > .t {
    margin-bottom: 2rem;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .txt
    > .p
    ul
    > li {
    padding-left: 35px;
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
    gap: 0.8rem;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .txt
    > .p
    ul
    > li::before {
    width: 15px;
    height: 12px;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .teachers {
    border-top: 0;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item
    > .tx
    > .inner
    > .teachers
    > .teacher {
    margin-bottom: 1rem;
  }
  .syllabus > .page__container > .inside > .r > .syllabus_item.active > .tx {
    grid-template-rows: 1fr;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item.active
    > .tx
    .inner {
    visibility: visible;
  }
  .syllabus
    > .page__container
    > .inside
    > .r
    > .syllabus_item.active
    > .tx
    .inner
    a {
    color: inherit;
  }
}

.syllabus__wrapper {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.syllabus__wrapper__title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 500;
}

.syllabus__wrapper__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.syllabus__wrapper__list__item {
  flex: 0 0 70px;
  border: 0.5px solid #bfbfbf;
  border-radius: 14px;
}

.syllabus__wrapper__list__item .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* teachers */
.teachers {
  padding-block: 4rem;
}

.teachers__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 2rem;
}

.teachers__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}

@media all and (max-width: 1024px) {
  .teachers__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media all and (max-width: 650px) {
  .teachers__list__item:first-child,
  .teachers__list__item:nth-child(2) {
    padding-inline: 1rem;
    grid-column: span 2;
  }

  .teachers__list__item:first-child .teachers__list__item__info,
  .teachers__list__item:nth-child(2) .teachers__list__item__info {
    aspect-ratio: 276/269;
  }
}

.teachers__list__item__info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 1.875rem;
  overflow: hidden;
  aspect-ratio: 310/551;
}
.teachers__list__item__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%
  );
}
.teachers__list__item__about {
  position: relative;
  z-index: 4;
  line-height: 125%;
  letter-spacing: 0.04em;
  color: var(--white);
}
.teachers__list__item__about__title {
  text-transform: uppercase;
}
.teachers__list__item__media img {
  max-width: 100%;
  width: auto;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}
.teachers__list__item__info__media {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 47.99875em) {
  .teachers__list__item__info {
    padding: 53px 30px;
  }
  .teachers__list__item__info:not(:last-child) {
    margin-bottom: 40px;
  }
  .teachers__list__item__media {
    max-width: 165px;
  }
}
@media (min-width: 61.99875em) {
  .teachers__list__item__about {
    font-size: 24px;
  }
  .teachers__list__item__about p {
    font-size: 18px;
    line-height: 1.4;
  }
}
@media (max-width: 47.99875em) {
  .teachers__list__item__info {
    padding: 26px 14px;
  }
  .teachers__list__item__info:not(:last-child) {
    margin-bottom: 0.5rem;
  }
  .teachers__list__item__media {
    max-width: 85px;
  }
  .teachers__list__item__about {
    font-size: 12px;
  }
}
@media (min-width: 29.99875em) and (max-width: 61.99875em) {
  .teachers__list__item__about {
    font-size: 18px;
  }
  .teachers__list__item__about p {
    font-size: 16px;
    line-height: 1.4;
  }
}

/* signup */
.signup {
  position: relative;
  padding: 5rem 0 7rem;
}
.signup .signup__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.signup .text_inscriptions {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
  color: var(--white);
}
.signup .text_inscriptions > .c {
  border: 1px solid;
  padding: 0.625rem 1.25rem;
  font-size: clamp(1rem, 1.5vw, 1.3125rem);
  border-radius: 10rem;
  flex: 0 0 auto;
  text-align: center;
}
.signup .text_inscriptions:before,
.signup .text_inscriptions:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .signup .text_inscriptions {
    margin-bottom: 2rem;
  }
  .signup .text_inscriptions > .c {
    flex-basis: 50%;
    padding: 0.3125rem 0.625rem;
  }
}
.signup .page__container {
  position: relative;
  max-width: 69rem;
}
.signup .page__container.format-small {
  max-width: 42.125rem;
}
.signup .page__container > .inside {
  border-radius: 1.875rem;
  padding: 2.7rem 3.2rem 2rem;
  background-color: var(--white);
}
.signup .page__container > .inside > .top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}
.signup .page__container.format-small > .inside > .top {
  margin-bottom: 1rem;
}
.signup .page__container.format-small > .inside > .top {
  flex-direction: column;
}
.signup .page__container > .inside > .top > .l > .signup__title {
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.signup .page__container > .inside > .top > .l > .subtitle {
  max-width: 26rem;
  font-size: 1.23rem;
}
.signup .page__container > .inside .pprice > .price {
  font-size: clamp(2.5rem, 4vw, 3.4rem);
  border: 1px solid;
  padding: 1.4rem 1.4rem;
  border-radius: 10rem;
  display: inline-block;
  line-height: 1;
}
.signup .page__container > .inside .discount {
  font-size: clamp(1.125rem, 2vw, 1.3rem);
  padding-top: 1rem;
}
.signup .page__container > .inside .discount div {
  display: inline;
}
.signup .page__container > .inside .discount > .text_2 {
  font-weight: 300;
  color: #a2a2a2;
}
.signup .page__container > .inside .discount > .price {
  text-decoration: line-through;
}
.signup .page__container.format-large > .inside > .top > .r,
.signup .page__container.format-large > .inside > .top > .r > .discount {
  text-align: right;
}
@media (max-width: 768px) {
  .signup .page__container > .inside > .top {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--white);
  }
  .signup .page__container > .inside > .top > .l {
    text-align: center;
  }
  .signup .page__container > .inside > .top > .l > .subtitle {
    margin-inline: auto;
  }
  .signup .page__container > .inside > .top > .r {
    display: flex;
    gap: 1rem;
    align-items: center;
  }
  .signup .page__container > .inside .discount {
    padding-top: 0;
  }
  .signup .page__container.format-large > .inside > .top > .r {
    display: none;
  }
}
.signup .page__container > .inside > .items > .item {
  display: flex;
  align-items: flex-end;
  gap: 10%;
  padding-block: 3.2rem;
}

.signup .page__container > .inside > .items.items--second > .item {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10%;
  align-items: center;
}

.signup .page__container > .inside > .items > .item > .col {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  flex: 0 0 auto;
}
.signup .page__container > .inside > .items > .item > .col > .l {
  color: #8c8c8c;
  margin-bottom: 0.4rem;
}
.signup .page__container > .inside > .items > .item > .col.date > .t {
  font-weight: 600;
}
.signup .page__container > .inside > .items > .item > .col.modality {
  flex: 1;
}
.signup .page__container > .inside > .items > .item > .col.btn .button {
  padding-inline: 1.5rem;
}
.signup.closed
  .page__container
  > .inside
  > .items
  > .item:not(:last-child)
  > .col.btn
  .button {
  background-color: #aeaeae !important;
  border: 1px solid #aeaeae !important;
}
.signup .page__container.format-small > .inside > .items > .item {
  flex-wrap: wrap;
  border-top: 0;
  gap: 2rem 3rem;
  padding-block: 1rem;
}
.signup .page__container.format-small > .inside > .items > .item > .col.date {
  flex-basis: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.7);
  padding-bottom: 2rem;
}
.signup
  .page__container.format-small
  > .inside
  > .items
  > .item
  > .col.modality {
  flex-basis: auto;
}
.signup .page__container.format-small > .inside > .items > .item > .col.btn {
  flex-basis: 100%;
  padding-top: 2rem;
}
@media (max-width: 900px) {
  .signup .page__container > .inside > .items > .item {
    gap: 5%;
  }
}
@media (min-width: 769px) {
  .signup .page__container > .inside > .items > .pprice {
    display: none;
  }
}
.signup .page__container > .inside .pprice--discount {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 1rem;
}
.signup .page__container > .inside .pprice--discount .price--second {
  font-size: clamp(1.25rem, 4vw, 2.25rem);
  text-decoration: line-through;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .signup {
    padding: 2.7rem 0;
  }
  .signup .page__container > .inside {
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }
  .signup .page__container > .inside > .signup__title {
    text-align: center;
    color: var(--white);
  }
  .signup .page__container > .inside > .subtitle {
    text-align: center;
    color: var(--white);
    margin-bottom: 2.2rem;
  }
  .signup .page__container > .inside > .items {
    border-radius: 1.875rem;
    padding: 0 1.3rem;
    background-color: var(--white);
  }
  .signup .page__container > .inside > .items > .pprice {
    display: flex;
    align-items: center;
    padding: 2rem 0 0;
    gap: 1rem;
  }
  .signup .page__container > .inside .pprice > .price {
    flex: 0 0 auto;
    padding: 1rem;
  }
  .signup .page__container > .inside > .items > .item {
    flex-wrap: wrap;
    padding-block: 2.5rem;
    gap: 1rem 3rem;
  }
  .signup .page__container > .inside > .items.items--second > .item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .signup .page__container > .inside > .items.count-1 > .item {
    border-top: 0;
  }
  .signup .page__container > .inside > .items > .item > .col.modality {
    flex: 0 0 100%;
  }
  .signup .page__container.format-small > .inside > .items > .item {
    gap: 1rem 3rem;
    padding-block: 1rem;
  }
  .signup .page__container.format-small > .inside > .items > .item > .col.date {
    padding-bottom: 1rem;
  }
  .signup .page__container.format-small > .inside > .items > .item > .col.btn {
    padding-top: 0;
  }
}

.methodology {
  padding-block: 5.5rem 0;
  padding-bottom: 4rem;
  background-color: var(--white);
  transition: background-color 0.3s ease;
}
.methodology > .items {
  position: relative;
  padding-inline: 12% 5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}
@media all and (max-width: 1024px) {
  .methodology {
    background-color: var(--purple);
  }
  .methodology > .items {
    grid-template-columns: 1fr;
  }
}

.methodology > .items > .t {
  font-size: clamp(2rem, 4.4vw, 4rem);
  color: var(--purple);
  max-width: 70%;
  transition: color 0.3s ease;
}

@media all and (max-width: 1024px) {
  .methodology > .items > .t {
    max-width: 100%;
    color: var(--white);
  }
}

.methodology > .items > .items > li {
  display: flex;
  gap: 1.5rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1.3;
  letter-spacing: 0.04em;
  padding-top: 1rem;
  color: var(--black);
  transition: color 0.3s ease;
}
.methodology > .items > .items > li > svg {
  flex: 0 0 auto;
  margin-top: 0.25rem;
}

@media all and (max-width: 1024px) {
  .methodology > .items > .items > li {
    color: var(--white);
  }

  .methodology > .items > .items > li > svg path {
    fill: var(--white);
  }
}

@media (max-width: 650px) {
  .methodology {
    padding-block: 2rem;
  }

  .methodology > .items {
    padding-inline: 1.25rem;
  }

  .methodology > .items > .items > li > svg {
    width: 1.3rem;
  }
}

/* opinions */
.opinions {
  padding-block: 6.3rem 6.3rem;
  position: relative;
}
.opinions > .page__container {
  max-width: 78.5rem;
}
.opinions__title {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
  color: var(--purple);
  margin-bottom: 4rem;
  text-align: center;
  text-wrap: balance;
  max-width: 80%;
  margin-inline: auto;
}

.opinions__media-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.opinions__media-wrapper__item {
  height: 40px;
}

.opinions__media-wrapper__item img {
  width: auto;
  height: 100%;
}

.opinions__list {
  width: 100%;
}
.opinions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media all and (max-width: 1024px) {
  .opinions__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media all and (max-width: 810px) {
  .opinions__list {
    grid-template-columns: 1fr;
  }
}

.opinions__list__item {
  display: flex;
  gap: 1.5rem;
  align-items: stretch;
  border: 0.7px solid var(--purple);
  border-radius: 1.875rem;
  margin-inline: auto 0;
  padding: 3rem;
  width: 100%;
}

.opinions__list__item:first-child {
  grid-column: span 3;
  max-width: calc(100% - 2rem);
  margin-inline: auto;
}

@media all and (max-width: 1024px) {
  .opinions__list__item:first-child {
    max-width: 100%;
    grid-column: span 2;
  }
}

@media all and (max-width: 810px) {
  .opinions__list__item:first-child {
    grid-column: span 1;
    position: relative;
    overflow: hidden;
    padding: 1rem;
    width: 100%;
  }
  .opinions__list__item:first-child .opinions__list__item__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }
  .opinions__list__item:first-child .opinions__list__item__media__item {
    position: absolute;
    height: 100%;
  }
  .opinions__list__item:first-child .opinions__list__item__content {
    padding: 0;
    width: 100%;
    color: var(--white);
  }
  .opinions__list__item:first-child .opinions__list__item__content > div > p {
    display: none;
  }
}

.opinions__list__item__media {
  position: relative;
  display: flex;
  gap: 1rem;
  width: calc(30% - 1.5rem);
  border-radius: 1.875rem;
  overflow: hidden;
}
.opinions__list__item__media.opinions__list__item__media--video {
  cursor: pointer;
}
.opinions__list__item__media.opinions__list__item__media--video:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../../../images/2025/home/icons/play-btn.svg) 0 0 / cover
    no-repeat;
  aspect-ratio: 1;
  cursor: pointer;
  width: 44px;
  z-index: 5;
}
.opinions__list__item__media .opinions__list__item__media__item {
  display: block;
  width: 100%;
}
.opinions__list__item__media .opinions__list__item__media__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.opinions__list__item__media.opinions__list__item__media--video
  .opinions__list__item__media__item
  img {
  pointer-events: none;
}
.opinions__list__item__content {
  display: flex;
  flex-direction: column;
  width: calc(70% - 1.5rem);
  justify-content: space-between;
  row-gap: 1.5rem;
}
.opinions__list__item__content > * {
  font-size: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
  margin-block: 3rem;
}
.opinions__list__item__ft {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.7rem;
}
.opinions__list__item__ft:last-child {
  margin-bottom: 0;
}

.opinions__list__item__ft__wrapper {
  flex: 1;
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}
.opinions__list__item__ft__wrapper__title {
  margin-bottom: 0.2rem;
  display: block;
  text-transform: uppercase;
}
.opinions__list__item__ft__wrapper__subtitle {
  font-weight: 300;
}

.opinions__list__item.opinions__list__item--second {
  padding: 2rem;
}

@media all and (max-width: 1024px) {
  .opinions__list__item.opinions__list__item--second {
    padding: 1.5rem;
  }
}

@media all and (max-width: 810px) {
  .opinions__list__item.opinions__list__item--second {
    padding: 1rem;
  }
}

.opinions__list__item.opinions__list__item--second .opinions__list__item__hd {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__media {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 100%;
  overflow: hidden;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__media {
  width: 3.5rem;
  height: 3.5rem;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__media
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__info {
  display: flex;
  flex-direction: column;
  width: calc(100% - 3.5rem);
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__info__title,
.opinions__list__item__hd__info__subtitle {
  font-size: 1rem;
  line-height: 1.2;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__info__title {
  text-transform: uppercase;
}

.opinions__list__item.opinions__list__item--second
  .opinions__list__item__hd__info__subtitle {
  font-weight: 300;
}

.opinions__list__item.opinions__list__item--second .opinions__list__item__bd {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

@media all and (max-width: 810px) {
  .opinions__list__item__media {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
  }
  .opinions__list__item__media,
  .opinions__list__item__bd {
    width: 100%;
  }
  .opinions__list__item__media {
    border-radius: 10px;
  }
  .opinions__list__item__content {
    margin-block: 0;
  }
}
@media (max-width: 650px) {
  .opinions {
    padding-block: 3rem;
  }
  .opinions__list__item__content > * {
    line-height: 1.4;
  }
}

.opinions__button {
  margin-top: 4rem;
  margin-inline: auto;
  width: fit-content;
}

/* faqs */

.faqs {
  padding-block: 4rem 8.7rem;
  color: var(--white);
  background-color: var(--purple);
}
.faqs > .page__container {
  max-width: 72.5rem;
}
.faqs > .page__container > .t {
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1;
  margin-bottom: 4rem;
}
.faqs > .page__container > .inside {
  display: flex;
  gap: 4vw;
}
.faqs > .page__container > .inside > .l {
  flex: 0 0 25rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.faqs > .page__container > .inside > .l > .faqs_button {
  font-size: clamp(1.125rem, 2vw, 1.3125rem);
  cursor: pointer;
  border: 1px solid var(--white);
  border-radius: 1.25rem;
  padding: 0.6rem 1.3rem 0.6rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 4.4rem;
  transition: all 0.25s;
}
.faqs > .page__container > .inside > .l > .faqs_button:hover,
.faqs > .page__container > .inside > .l > .faqs_button.current {
  background-color: var(--white);
  color: var(--black);
}
.faqs > .page__container > .inside > .l > .faqs_button > span {
  flex: 1;
}
.faqs > .page__container > .inside > .l > .faqs_button > svg {
  flex: 0 0 auto;
}
.faqs > .page__container > .inside > .r {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.faqs > .page__container > .inside > .r > .faqs_item.hide {
  display: none;
}
.faqs > .page__container > .inside > .r > .faqs_item {
  display: flex;
}
.faqs > .page__container > .inside > .r > .faqs_item > .summary {
  display: none;
}
.faqs > .page__container > .inside > .r > .faqs_item > .tx {
  width: 100%;
}
.faqs > .page__container > .inside > .r > .faqs_item > .tx > .inner > .details {
  border-bottom: 1px solid;
  --pad: 1rem;
}
.faqs .details > .summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(1rem, 1.125vw, 1.125rem);
  line-height: 1.5;
  padding: var(--pad) 0;
  position: relative;
}
.faqs .details > .summary > .icon > svg {
  display: block;
}
.faqs .details > .summary > .icon > svg > line:first-child {
  transition: all 0.25s;
  transform-origin: center;
}
.faqs .inner .details.active > .summary > .icon > svg > line:first-child {
  rotate: -90deg;
}
.details .tx {
  font-size: 1rem;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s linear;
  overflow: hidden;
}
.details .tx .inner {
  min-height: 0;
  transition: visibility 1s;
  visibility: hidden;
  font-weight: 300;
  line-height: 1.3;
}
.details.active .tx {
  grid-template-rows: 1fr;
}
.details.active .tx .inner {
  visibility: visible;
}
.details .tx .inner * {
  margin-bottom: var(--pad);
}
.details.active .tx .inner a {
  color: inherit;
}
.faqs .page__container .inside .r .b {
  margin-top: auto;
  padding-top: 2rem;
}
.faqs > .page__container > .inside > .r > .b > .t {
  font-size: clamp(1.125rem, 2vw, 1.6rem);
  margin-bottom: 1.7rem;
  color: #a6a6e7;
  max-width: 20vw;
  line-height: 1.2;
}
@media (max-width: 834px) {
  .faqs > .page__container > .inside > .l {
    flex-basis: 16rem;
  }
}
@media (max-width: 650px) {
  .page__professors {
    padding-bottom: 3rem;
  }
  .professors__top {
    padding-bottom: 1.5rem;
  }
  .faqs {
    padding-block: 2.2rem;
  }
  .faqs > .page__container > .t {
    margin-bottom: 3rem;
  }
  .faqs > .page__container > .inside > .l {
    display: none;
  }
  .faqs > .page__container > .inside > .r > .faqs_item.hide {
    display: flex;
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .summary {
    font-size: clamp(1.125rem, 2vw, 1.3125rem);
    cursor: pointer;
    border: 1px solid var(--white);
    border-radius: 1.25rem;
    padding: 1rem 2.3rem 1rem 1.3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .summary:hover {
    background-color: var(--white);
    color: var(--black);
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .summary > span {
    flex: 1;
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .summary > svg {
    flex: 0 0 auto;
  }
  .faqs > .page__container > .inside > .r > .faqs_item {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .tx {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s linear;
    overflow: hidden;
  }
  .faqs > .page__container > .inside > .r > .faqs_item > .tx > .inner {
    flex-direction: column;
    min-height: 0;
    transition: visibility 1s;
    visibility: hidden;
    gap: 1rem;
  }
  .faqs > .page__container > .inside > .r > .faqs_item.active > .tx {
    grid-template-rows: 1fr;
  }
  .faqs > .page__container > .inside > .r > .faqs_item.active > .tx .inner {
    visibility: visible;
  }
  .faqs > .page__container > .inside > .r > .faqs_item.active > .tx .inner a {
    color: inherit;
  }
  .faqs
    > .page__container
    > .inside
    > .r
    > .faqs_item
    > .tx
    > .inner
    > .details {
    --pad: 1rem;
  }
  .faqs
    > .page__container
    > .inside
    > .r
    > .faqs_item
    > .tx
    > .inner
    > .details
    > .summary
    > .icon
    > svg {
    width: 22px;
  }
  .faqs > .page__container > .inside > .r > .b {
    text-align: center;
  }
  .faqs > .page__container > .inside > .r > .b > .t {
    max-width: none;
  }
}

/* footer */

footer.footer {
  padding: 4rem 0;
}

footer .footer__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .footer__top-row {
  margin-bottom: 0;
}

footer .footer__bottom {
  justify-content: center;
}

footer .footer__columns {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

footer .footer__columns .footer__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

footer .footer__columns .footer__list a {
  font-size: clamp(0.8125rem, 2vw, 1rem);
  font-weight: 400;
  color: var(--white);
  transition: opacity 0.3s ease;
}

footer .footer__columns .footer__list a:hover {
  opacity: 0.7;
}

@media all and (max-width: 768px) {
  footer.footer {
    padding: 2rem 0;
  }
  footer .footer__columns .footer__list {
    gap: 1rem;
  }
}

.popup__text {
  aspect-ratio: unset;
}

.popup__wrapper .title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 0.5rem;
}

.popup__wrapper .subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 1rem;
}
