@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

textarea {
  resize: none;
}

button,
label {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(address) {
  font-style: normal;
}

html,
body {
  height: 100%;
  scrollbar-gutter: stable;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
  user-select: none;
  pointer-events: none;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут fill со значением 'none' или начинается с 'url')
*/
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
Приводим к единому цвету svg-элементы
(за исключением тех, у которых уже указан
атрибут stroke со значением 'none')
*/
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
Чиним баг задержки смены цвета при взаимодействии с svg-элементами
*/
svg * {
  transition-property: fill, stroke;
}

.not_implemented {
  filter: grayscale(1) !important;
  pointer-events: none !important;
  opacity: 0.5 !important;
}

@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest/Onest-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ruberoid";
  src: url("../fonts/Ruberoid/Ruberoid-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #FFFFFF;
  --color-dark: #10173C;
  --color-accent: #20419A;
  --color-accent-dark: #2a2078;
  --color-gray: #5F6275;
  --color-yellow: #F4E600;
  --color-green: #0FAE00;
  --color-background: #F4F5F7;
  --color-border: #DCE1E8;
  --color-orange: #ecbf00;
  --border: 0.0625rem solid var(--color-border);
  --font-family-base: "Onest", sans-serif;
  --font-family-accent: "Ruberoid";
  --container-width: 85rem;
  --container-padding-x: clamp(0.75rem, 0.25rem + 2.5vw, 2.5rem);
  --transition-duration: 0.2s;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 85rem;
  }
}

.container {
  box-sizing: border-box;
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

@media (width <= 63.99875rem) {
  .desktop-visible {
    display: none !important;
  }
}

.section-corners, .background-accent {
  --sectionCutSize: 1.875rem;
  margin-top: calc(var(--sectionCutSize) * -1);
  clip-path: polygon(var(--sectionCutSize) 0%, calc(100% - var(--sectionCutSize)) 0, 100% var(--sectionCutSize), 100% 100%, 0 100%, 0% var(--sectionCutSize));
}
@media (width <= 47.99875rem) {
  .section-corners, .background-accent {
    --sectionCutSize: 1rem;
  }
}

.background-accent {
  display: grid;
  row-gap: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  padding-block: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  background-color: var(--color-dark);
}

html.is-lock {
  overflow: hidden;
}

body {
  font-family: var(--font-family-base);
  color: var(--color-gray);
  background-color: var(--color-light);
  font-size: clamp(0.9375rem, 0.8839285714rem + 0.2678571429vw, 1.125rem);
  line-height: 1.38;
  position: relative;
  scroll-behavior: smooth;
}

a,
button,
select {
  color: inherit;
  background-color: transparent;
  transition-duration: var(--transition-duration);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  font-weight: 600;
  color: var(--color-dark);
}

h1, .h1 {
  font-family: var(--font-family-accent);
  font-size: clamp(2rem, 1.6071428571rem + 1.9642857143vw, 3.375rem);
  line-height: 1.07;
}

h2, .h2 {
  font-family: var(--font-family-accent);
  font-size: clamp(1.875rem, 1.4464285714rem + 2.1428571429vw, 3.375rem);
}

h3, .h3 {
  font-size: clamp(1.375rem, 1.2678571429rem + 0.5357142857vw, 1.75rem);
}

h4, .h4 {
  font-size: clamp(1rem, 0.8928571429rem + 0.5357142857vw, 1.375rem);
}

.button {
  --cornerCutSize: clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem);
  --textColor: var(--color-light);
  --bgColor: var(--color-accent);
  --textColorHover: var(--color-light);
  --bgColorHover: var(--color-accent-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(var(--cornerCutSize) 0%, 100% 0, 100% calc(100% - var(--cornerCutSize)), calc(100% - var(--cornerCutSize)) 100%, 0 100%, 0% var(--cornerCutSize));
  max-width: 13.125rem;
  padding: 0.075rem;
  background-color: var(--bgColor);
}
.button .button__content {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(calc(var(--cornerCutSize) - 0.03125rem) 0%, 100% 0, 100% calc(100% - (var(--cornerCutSize) - 0.03125rem)), calc(100% - (var(--cornerCutSize) - 0.03125rem)) 100%, 0 100%, 0% calc(var(--cornerCutSize) - 0.03125rem));
  width: 100%;
  column-gap: 1rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--textColor);
  font-size: 1rem;
  padding: 1.0625rem 1.875rem;
  transition: var(--transition-duration);
}
.button .button__content::after {
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  mask-image: url("../../icons/plus.svg");
  mask-position: center;
  mask-size: cover;
  background-color: var(--textColor);
  transition: var(--transition-duration);
}
@media (width <= 47.99875rem) {
  .button .button__content {
    padding-block: 0.8125rem;
  }
}
.button:hover {
  background-color: var(--bgColorHover);
}
.button:hover .button__content {
  color: var(--textColorHover);
  background-color: var(--bgColorHover);
}
.button:hover .button__content::after {
  transform: rotate(90deg);
  background-color: currentColor;
}
.button_yellow {
  --textColor: var(--color-dark);
  --bgColor: var(--color-yellow);
  --textColorHover: var(--color-dark);
  --bgColorHover: var(--color-orange);
}
.button_yellow-transparent {
  --textColor: var(--color-yellow);
  --bgColor: transparent;
  --textColorHover: var(--color-dark);
  --bgColorHover: var(--color-yellow);
  position: relative;
  border: 0.125rem solid var(--color-yellow);
}
.button_yellow-transparent::before {
  width: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  height: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  content: "";
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  background-color: var(--yellow-color);
  border-left: 0.125rem solid var(--color-yellow);
  transform: rotate(45deg);
}
@media (width <= 30.06125rem) {
  .button_yellow-transparent::before {
    top: 0.0625rem;
    left: 0.0625rem;
  }
}
.button_yellow-transparent::after {
  width: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  height: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  content: "";
  position: absolute;
  bottom: 0.1rem;
  right: 0.1rem;
  background-color: var(--yellow-color);
  border-right: 0.1375rem solid var(--color-yellow);
  transform: rotate(45deg);
}
@media (width <= 30.06125rem) {
  .button_yellow-transparent::after {
    bottom: 0.0625rem;
    right: 0.0625rem;
  }
}
.button_gray {
  --textColor: var(--color-accent);
  --bgColor: var(--color-accent);
  --textColorHover: var(--color-light);
  --bgColorHover: var(--color-accent);
}
.button_gray .button__content {
  background-color: var(--color-background);
}

.header {
  --textColor: var(--color-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  transition-duration: var(--transition-duration);
  z-index: 2000;
}
.header.is-light, .header.is-active {
  --textColor: var(--color-dark);
  background-color: var(--color-light);
  box-shadow: 0 6px 30px 0 rgba(0, 0, 0, 0.08);
}
.header.is-light .header__button, .header.is-active .header__button {
  background-color: var(--color-border);
  color: var(--color-dark);
}
.header.is-light .header__button-content, .header.is-active .header__button-content {
  background-color: var(--color-light);
}
.header.is-light .header__logo, .header.is-active .header__logo {
  background: url("../../icons/logo-dark.svg") center/cover no-repeat;
}
.header.is-active {
  overflow-y: auto;
}
.header:not(.is-active) .header__mobile {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  margin-top: -0.0625rem;
}
.header__desktop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1.25rem;
  padding-block: 0.875rem;
}
@media (width <= 47.99875rem) {
  .header__desktop {
    padding-block: 0.625rem;
  }
}
.header__contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.625rem;
}
.header__apply .button__content {
  padding: 0.6875rem 1.5rem;
  font-size: 0.875rem;
}
.header__apply .button__content::after {
  width: 0.875rem;
  height: 0.875rem;
}
.header__mail {
  display: grid;
  row-gap: 0.25rem;
}
.header__mail-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--textColor);
}
.header__mail-link:hover {
  color: var(--color-yellow);
}
.header__mail-label {
  font-size: 0.875rem;
  color: var(--textColor);
  opacity: 0.6;
}
.header__logo {
  width: clamp(7.75rem, 6.8035714286rem + 4.7321428571vw, 11.0625rem);
  height: clamp(1.5rem, 1.3214285714rem + 0.8928571429vw, 2.125rem);
  background: url("../../icons/logo-light.svg") center/cover no-repeat;
}
.header__navigation-list {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1.25rem;
}
.header__navigation-link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--textColor);
}
.header__navigation-link:hover {
  color: var(--color-yellow);
}
.header__button {
  clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(100% - 0.5rem), calc(100% - 0.5rem) 100%, 0 100%, 0% 0.5rem);
  padding: 0.075rem;
  color: var(--color-light);
  background-color: rgba(255, 255, 255, 0.2);
}
.header__button svg * {
  fill: currentColor;
  stroke: currentColor;
}
.header__button:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
}
.header__button-content {
  --size: 2.5rem;
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0.4375rem 0%, 100% 0, 100% calc(100% - 0.4375rem), calc(100% - 0.4375rem) 100%, 0 100%, 0% 0.4375rem);
  flex-direction: column;
  row-gap: 0.4375rem;
  background-color: rgba(28, 28, 28, 0.1);
}
@media (width <= 47.99875rem) {
  .header__button-content {
    --size: 2.25rem;
  }
}
@media (width > 63.99875rem) {
  .header__button-burger {
    display: none;
  }
}
.header__button-burger.is-active {
  position: relative;
}
.header__button-burger.is-active .header__button-line {
  transform-origin: 0;
}
.header__button-burger.is-active .header__button-line:first-child {
  transform: rotate(45deg);
  translate: 0.25em -0.1em;
}
.header__button-burger.is-active .header__button-line:last-child {
  transform: rotate(-45deg);
  translate: 0.25em 0.1em;
}
.header__button-line {
  position: relative;
  display: block;
  width: 1.0625rem;
  height: 0.125rem;
  background-color: currentColor;
  border-radius: 0.125rem;
  transition-duration: var(--transition-duration);
}
.header__mobile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1.25rem;
  padding-block: 1.25rem 1.5rem;
  background-color: var(--color-light);
  width: 100%;
  max-height: calc(100dvh - 3.6875rem);
  min-height: calc(100dvh - 3.6875rem);
  transition: var(--transition-duration);
}
.header__mobile-list {
  display: grid;
}
.header__mobile-item {
  display: flex;
  align-items: center;
  border-bottom: var(--border);
}
.header__mobile-item::after {
  width: 1rem;
  height: 1rem;
  content: "";
  mask-image: url("../../icons/plus.svg");
  mask-position: center;
  mask-size: cover;
  background-color: var(--color-accent-dark);
  transition: var(--transition-duration);
}
.header__mobile-link {
  flex-grow: 1;
  padding-block: 1rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-dark);
}
.header__mobile-actions {
  display: grid;
  row-gap: 1.25rem;
}
.header__mobile-mail {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 0.875rem;
}
.header__mobile-mail__telegram {
  grid-row: -1/3;
  justify-self: start;
  align-self: start;
}
.header__mobile-mail__link {
  font-size: 0.9375rem;
  color: var(--color-dark);
  font-weight: 500;
}
.header__mobile-mail__label {
  font-size: 0.8125rem;
}
.header__mobile-apply {
  max-width: 100%;
}

.hero {
  position: relative;
  display: grid;
  background-color: #000305;
  max-height: calc(56.25rem + 1.875rem);
}
@media (width <= 63.99875rem) {
  .hero {
    min-height: calc(37.5rem + 1rem);
  }
}
.hero__video-wrapper {
  width: 100%;
  height: 100%;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: calc(56.25rem + 1.875rem);
}
.hero__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  align-items: start;
  padding-bottom: clamp(2.5rem, 1.0714285714rem + 7.1428571429vw, 7.5rem);
}
@media (width <= 47.99875rem) {
  .hero__content {
    bottom: 1.875rem;
  }
}
.hero__info {
  color: var(--color-light);
  margin-bottom: 1.875rem;
}
@media (width > 47.99875rem) {
  .hero__info {
    max-width: 41.25rem;
  }
}
.hero__descriptor {
  margin-bottom: 1.5rem;
}
@media (width <= 63.99875rem) {
  .hero__descriptor {
    margin-bottom: 1.25rem;
  }
}
.hero__title {
  color: var(--color-light);
  margin-bottom: 0.75rem;
}
@media (width <= 63.99875rem) {
  .hero__title {
    margin-bottom: 0.625rem;
  }
}
@media (width <= 63.99875rem) {
  .hero__subtitle br {
    display: none;
  }
}
.hero__actions {
  display: grid;
}
@media (width > 47.99875rem) {
  .hero__actions {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1.25rem;
    max-width: 27.5rem;
  }
}
@media (width <= 47.99875rem) {
  .hero__actions {
    flex-direction: column;
    row-gap: 0.625rem;
  }
}
.hero__button {
  width: 100%;
  max-width: 100%;
}

.features {
  background-color: var(--color-light);
}
@media (width > 90.06125rem) {
  .features {
    border-bottom: var(--border);
  }
}
.features__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (width <= 90.06125rem) {
  .features__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 63.99875rem) {
  .features__items {
    grid-template-columns: 1fr;
  }
}
.features__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-block: clamp(1.125rem, 0.7321428571rem + 1.9642857143vw, 2.5rem);
  gap: 0.875rem;
}
@media (width > 63.99875rem) {
  .features__item:not(:last-child) {
    border-right: var(--border);
  }
}
@media (width <= 90.06125rem) {
  .features__item {
    border-bottom: var(--border);
    flex-direction: row;
    justify-content: flex-start;
    padding-left: clamp(0rem, -0.7142857143rem + 3.5714285714vw, 2.5rem);
  }
}
@media (width <= 63.99875rem) {
  .features__item:first-child {
    padding-top: 1.875rem;
  }
}
.features__icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0.625rem 0%, 100% 0, 100% calc(100% - 0.625rem), calc(100% - 0.625rem) 100%, 0 100%, 0% 0.625rem);
  width: clamp(2.75rem, 2.5714285714rem + 0.8928571429vw, 3.375rem);
  height: clamp(2.75rem, 2.5714285714rem + 0.8928571429vw, 3.375rem);
  background-color: var(--color-accent);
}
.features__icon {
  background-color: var(--color-light);
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0.625rem 0%, 100% 0, 100% calc(100% - 0.625rem), calc(100% - 0.625rem) 100%, 0 100%, 0% 0.625rem);
  width: calc(100% - 0.125rem);
  height: calc(100% - 0.125rem);
}
@media (width > 90.06125rem) {
  .features__info {
    text-align: center;
  }
}
.features__key {
  margin-bottom: clamp(0.375rem, 0.3392857143rem + 0.1785714286vw, 0.5rem);
}
.organizer__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  position: relative;
}
@media (width > 63.99875rem) {
  .organizer__container::before {
    position: absolute;
    content: "";
    width: 0.0625rem;
    height: 100%;
    background-color: var(--color-border);
    left: calc(50% - 0.0625rem);
  }
}
@media (width <= 63.99875rem) {
  .organizer__container {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}
.organizer__background {
  clip-path: polygon(1.5rem 0%, 100% 0, 100% calc(100% - 1.5rem), calc(100% - 1.5rem) 100%, 0 100%, 0% 1.5rem);
  background: url(/imgs/organizer.webp);
  background-position: center;
  background-size: cover;
  padding: clamp(1rem, 0.8571428571rem + 0.7142857143vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 60px);
  height: clamp(18.5rem, 13.4285714286rem + 25.3571428571vw, 36.25rem);
}
@media (width <= 63.99875rem) {
  .organizer__background {
    width: 100%;
    height: 36.25rem;
  }
}
@media (width <= 47.99875rem) {
  .organizer__background {
    height: 25rem;
  }
}
@media (width <= 30.06125rem) {
  .organizer__background {
    height: 18.5rem;
  }
}
.organizer__logo {
  width: clamp(3.8125rem, 3.3303571429rem + 2.4107142857vw, 5.5rem);
  height: clamp(1.5rem, 1.3214285714rem + 0.8928571429vw, 2.125rem);
}
.organizer__about {
  display: flex;
  justify-content: space-between;
  color: var(--color-accent);
  line-height: 1.11;
}
.organizer__name {
  font-size: clamp(1.125rem, 0.9107142857rem + 1.0714285714vw, 1.875rem);
  font-family: var(--font-family-accent);
  background-color: var(--color-light);
  padding-block: 0.3125rem;
  padding-inline: 0.625rem;
  clip-path: polygon(0.6875rem 0%, 100% 0, 100% calc(100% - 0.6875rem), calc(100% - 0.6875rem) 100%, 0 100%, 0% 0.6875rem);
}
.organizer__post {
  font-weight: 500;
  font-size: clamp(0.75rem, 0.6428571429rem + 0.5357142857vw, 1.125rem);
  align-self: flex-end;
  text-align: right;
  background-color: var(--color-light);
  padding-block: 0.3125rem;
  padding-inline: 0.625rem;
  clip-path: polygon(0.6875rem 0%, 100% 0, 100% calc(100% - 0.6875rem), calc(100% - 0.6875rem) 100%, 0 100%, 0% 0.6875rem);
}
.organizer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 60px);
  margin-left: auto;
}
@media (width <= 63.99875rem) {
  .organizer__info {
    width: 100%;
    padding-top: 1.875rem;
    border-top: var(--border);
  }
}
.organizer__descriptor {
  margin-bottom: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
}
.organizer__title {
  line-height: 1;
  margin-bottom: clamp(0.875rem, 0.8035714286rem + 0.3571428571vw, 1.125rem);
}
@media (max-width: 1200px) {
  .organizer__text br:first-child {
    display: none;
  }
}
@media (width <= 63.99875rem) {
  .organizer__text br {
    display: none;
  }
}
.organizer__text:not(:last-child) {
  margin-bottom: 0.625rem;
}
.organizer__buttons {
  display: flex;
  gap: clamp(0.625rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
  margin-top: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
}
@media (width <= 63.99875rem) {
  .organizer__buttons {
    flex-direction: column;
    width: 100%;
  }
}
.organizer__buttons .button {
  width: 100%;
  max-width: 100%;
}
.marquee__container {
  overflow: hidden;
  white-space: nowrap;
  background: white;
  position: relative;
  padding-block: clamp(1.75rem, 1.3571428571rem + 1.9642857143vw, 3.125rem);
  border: var(--border);
}

.marquee {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.marquee span {
  display: inline-block;
  padding-right: 2rem;
  font-weight: 400;
  font-size: clamp(2.125rem, 1.4464285714rem + 3.3928571429vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-family-accent);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.descriptor, .descriptor-yellow_bolt, .descriptor-green, .descriptor-yellow {
  --color: var(--color-accent);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.625rem;
  font-size: 0.8125rem;
  color: var(--color);
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .descriptor, .descriptor-yellow_bolt, .descriptor-green, .descriptor-yellow {
    column-gap: 0.5rem;
    font-size: 0.75rem;
  }
}
.descriptor::before, .descriptor-yellow_bolt::before, .descriptor-green::before, .descriptor-yellow::before {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  background-color: var(--color);
}
.descriptor-yellow {
  --color: var(--color-yellow);
}
.descriptor-green {
  --color: var(--color-green);
}
.descriptor-yellow_bolt {
  --color: var(--color-yellow);
  font-weight: 600;
  font-size: 1.25rem;
  column-gap: initial;
}
.descriptor-yellow_bolt::before {
  content: "";
  width: 0;
  height: 0;
}

.prizes__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 2.5rem;
}
@media (width <= 63.99875rem) {
  .prizes__header {
    margin-bottom: 2.5rem;
  }
}
.prizes__title {
  text-align: center;
  color: var(--color-light);
}
@media (width > 63.99875rem) {
  .prizes__list {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.25rem;
  }
}
@media (width <= 63.99875rem) {
  .prizes__list {
    display: grid;
    row-gap: 0.75rem;
  }
}
.prizes__list-item {
  clip-path: polygon(clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem) 0%, 100% 0, 100% calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)), calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)) 100%, 0 100%, 0% clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem));
  flex: 1 1 27.5rem;
  height: 31.25rem;
  padding: 0.075rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 95%);
}
@media (width <= 63.99875rem) {
  .prizes__list-item {
    width: 100%;
    height: fit-content;
  }
}
.prizes__list-content {
  clip-path: polygon(clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem) 0%, 100% 0, 100% calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)), calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)) 100%, 0 100%, 0% clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem));
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  row-gap: 0.9375rem;
  width: 100%;
  height: 100%;
  padding-top: 1.875rem;
  padding-inline: 1.875rem;
  background-color: #272E4F;
}
@media (width <= 47.99875rem) {
  .prizes__list-content {
    padding-top: 1.25rem;
    padding-inline: 1.25rem;
  }
}
.prizes__list-title {
  max-width: 16.25rem;
  color: var(--color-light);
  text-align: center;
}
.prizes__list-img {
  width: 100%;
  max-width: 16.25rem;
  max-height: 21.875rem;
  object-fit: cover;
  object-position: center top;
}
.prizes__list-details {
  --offset: 1.875rem;
  position: absolute;
  left: var(--offset);
  right: var(--offset);
  bottom: var(--offset);
  background-origin: padding-box;
  display: flex;
  align-items: end;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--color-light);
  opacity: 0.6;
}
@media (width <= 47.99875rem) {
  .prizes__list-details {
    --offset: 1.25rem;
  }
}

.registration {
  background-color: var(--color-background);
  margin-bottom: -0.0625rem;
  border-bottom: var(--border);
}
.registration__container {
  display: grid;
  column-gap: clamp(0.625rem, 0.4464285714rem + 0.8928571429vw, 1.25rem);
}
@media (width > 63.99875rem) {
  .registration__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 63.99875rem) {
  .registration__container {
    padding-block: 3.75rem;
  }
}
.registration__section {
  padding-block: 5.625rem;
}
.registration__section > h3 {
  margin-top: 1.25rem;
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5625rem);
}
@media (width <= 63.99875rem) {
  .registration__section {
    padding-block: 0 2.5rem;
  }
  .registration__section:first-child {
    border-bottom: var(--border);
  }
}
@media (width <= 63.99875rem) and (width > 63.99875rem) {
  .registration__section {
    padding-right: 2.5rem;
    border-right: var(--border);
  }
}
.registration__info {
  width: 100%;
  margin-bottom: clamp(1.5rem, 1.2142857143rem + 1.4285714286vw, 2.5rem);
}
@media (width > 63.99875rem) {
  .registration__info {
    max-width: 34.6875rem;
  }
}
.registration__descriptior {
  margin-bottom: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
}
.registration__title {
  margin-bottom: clamp(0.5rem, 0.3571428571rem + 0.7142857143vw, 1rem);
}
@media (width > 63.99875rem) {
  .registration__img-wrapper {
    max-width: 34.6875rem;
    height: 21.875rem;
  }
}
.registration__img {
  width: 100%;
  height: auto;
  clip-path: polygon(20px 0%, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0% 20px);
}
.registration__form {
  --cornerCutSize: 1.5rem;
  clip-path: polygon(var(--cornerCutSize) 0%, 100% 0, 100% calc(100% - var(--cornerCutSize)), calc(100% - var(--cornerCutSize)) 100%, 0 100%, 0% var(--cornerCutSize));
  padding: 1.875rem;
  background-color: var(--color-light);
}
.registration__form .form__title {
  text-align: center;
}
@media (width <= 47.99875rem) {
  .registration__form {
    --cornerCutSize: 0.75rem;
    padding: 1.25rem;
  }
}

.participants__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 5.625rem;
}
@media (width <= 63.99875rem) {
  .participants__container {
    align-items: stretch;
    flex-direction: column;
    row-gap: 1.5rem;
  }
}
.participants__contents {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 2.5rem;
  max-width: 30rem;
}
.participants__description {
  max-width: 19.375rem;
  font-size: 1rem;
  color: var(--color-light);
  line-height: 1.3;
}
@media (width <= 47.99875rem) {
  .participants__description {
    font-size: 0.9375rem;
  }
}
.participants__descriptor {
  margin-bottom: clamp(1.125rem, 1.0178571429rem + 0.5357142857vw, 1.5rem);
}
.participants__title {
  color: var(--color-light);
  margin-bottom: clamp(1rem, 0.7857142857rem + 1.0714285714vw, 1.75rem);
}
.participants__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 0.4285714286rem + 0.3571428571vw, 0.75rem);
}
.participants__item {
  clip-path: polygon(clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem) 0%, 100% 0, 100% calc(100% - clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem)), calc(100% - clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem)) 100%, 0 100%, 0% clamp(0.625rem, 0.5535714286rem + 0.3571428571vw, 0.875rem));
  padding: 0.0625rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.participants__content {
  clip-path: polygon(clamp(0.5625rem, 0.4910714286rem + 0.3571428571vw, 0.8125rem) 0%, 100% 0, 100% calc(100% - clamp(0.5625rem, 0.4910714286rem + 0.3571428571vw, 0.8125rem)), calc(100% - clamp(0.5625rem, 0.4910714286rem + 0.3571428571vw, 0.8125rem)) 100%, 0 100%, 0% clamp(0.5625rem, 0.4910714286rem + 0.3571428571vw, 0.8125rem));
  padding: 0.75rem 1.5rem;
  color: var(--color-light);
  background-color: var(--color-dark);
}
@media (width <= 47.99875rem) {
  .participants__content {
    padding: 0.625rem 1.125rem;
  }
}
.participants__img-wrapper {
  clip-path: polygon(clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem) 0%, 100% 0, 100% calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)), calc(100% - clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem)) 100%, 0 100%, 0% clamp(0.75rem, 0.5357142857rem + 1.0714285714vw, 1.5rem));
  min-height: 12.5rem;
}
@media (width > 63.99875rem) {
  .participants__img-wrapper {
    flex: 1 1 49.0625rem;
    height: 32.5rem;
  }
}
.participants__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form {
  position: relative;
}
.form__close {
  position: absolute;
  top: 1.125rem;
  right: 1.125rem;
  padding-right: 0.625rem;
}
.form__close svg * {
  stroke: var(--color-gray);
  transition-duration: var(--transition-duration);
}
.form__close:hover svg * {
  stroke: var(--color-dark);
}
@media (width <= 47.99875rem) {
  .form__close {
    top: 0.875rem;
    right: 0.75rem;
  }
}
.form__header {
  display: grid;
  row-gap: 0.75rem;
  margin-bottom: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
}
@media (width <= 47.99875rem) {
  .form__header {
    margin-top: 1.5rem;
    row-gap: 0.625rem;
  }
}
.form__message {
  color: var(--color-green);
}
.form__body {
  display: grid;
  row-gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (width > 63.99875rem) {
  .form__body {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.625rem;
    margin-bottom: 1.25rem;
  }
}
.form__agreement {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 0.625rem;
}
.form__agreement-checkbox {
  --size: 1.25rem;
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  border: var(--border);
  transition-duration: var(--transition-duration);
}
.form__agreement-checkbox:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}
.form__agreement-checkbox:checked::after {
  width: 1rem;
  height: 1rem;
  content: "";
  background: url("../../icons/checkbox.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (width <= 47.99875rem) {
  .form__agreement-checkbox {
    --size: 1.25rem;
  }
}
.form__agreement-label a {
  color: var(--color-accent);
  text-decoration: underline;
}
.form__agreement-label a:hover {
  color: var(--color-accent-dark);
}
.form__item {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 0.625rem;
  padding: clamp(0.875rem, 0.8214285714rem + 0.2678571429vw, 1.0625rem) clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
  border: var(--border);
  transition-duration: var(--transition-duration);
}
@media (width > 63.99875rem) {
  .form__item-wide {
    grid-column: 1/3;
  }
}
.form__item:has(input:focus), .form__item:hover {
  border-color: var(--color-gray);
}
.form__item:has(select)::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  right: clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
  background: url(/icons/arrow.svg) no-repeat;
  width: 0.625rem;
  height: 0.5rem;
}
.form__input {
  flex-grow: 1;
  min-width: 0;
  background-color: transparent;
  appearance: none; /* убирает нативный стиль */
  -webkit-appearance: none; /* для Safari */
  -moz-appearance: none; /* для Firefox */
}
.form__label {
  position: absolute;
  top: -0.625rem;
  left: 1.25rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.8125rem;
  color: var(--color-gray);
  background-color: var(--color-light);
}
@media (width <= 47.99875rem) {
  .form__label {
    padding-inline: 0.25rem;
  }
}
.form__icon {
  stroke: var(--color-gray);
}
.form__button {
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.8125rem;
}

.faq {
  background-color: var(--color-background);
}
.faq__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-block: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  position: relative;
}
@media (width > 63.99875rem) {
  .faq__container::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: var(--color-border);
    left: 50%;
  }
}
@media (width <= 63.99875rem) {
  .faq__container {
    grid-template-columns: 1fr;
    row-gap: 1.875rem;
  }
}
@media (width <= 63.99875rem) {
  .faq__info {
    padding-bottom: 1.875rem;
    border-bottom: var(--border);
  }
}
.faq__descriptor {
  margin-bottom: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
}
.faq__title {
  line-height: 1;
  margin-bottom: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
}
@media (width <= 63.99875rem) {
  .faq__buttons .button {
    width: 100%;
    max-width: 100%;
  }
}
.faq__form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 100dvh;
  width: 100vw;
  background-color: rgba(16, 23, 60, 0.6);
  padding-inline: var(--container-padding-x);
  z-index: 3000;
  transition-duration: var(--transition-duration);
}
.faq__form-container:not(.is-active) {
  visibility: hidden;
  opacity: 0;
  z-index: -99;
}
.faq__form {
  --cornerCutSize: 1.5rem;
  clip-path: polygon(var(--cornerCutSize) 0%, 100% 0, 100% calc(100% - var(--cornerCutSize)), calc(100% - var(--cornerCutSize)) 100%, 0 100%, 0% var(--cornerCutSize));
  transition-duration: var(--transition-duration);
  padding: 1.875rem;
  background-color: var(--color-light);
}
@media (width > 47.99875rem) {
  .faq__form {
    max-width: 35rem;
  }
}
@media (width <= 47.99875rem) {
  .faq__form {
    --cornerCutSize: 0.75rem;
    padding: 1.25rem;
  }
}
@media (width > 63.99875rem) {
  .faq__accordion {
    padding-left: 2.5rem;
  }
}
.faq .accordion {
  width: 100%;
  overflow: hidden;
}
.faq .accordion__item {
  border-top: var(--border);
}
.faq .accordion__header {
  padding-block: clamp(1.5rem, 1.3928571429rem + 0.5357142857vw, 1.875rem);
  font-weight: 500;
  font-size: clamp(1rem, 0.9642857143rem + 0.1785714286vw, 1.125rem);
  line-height: 1.35;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq .accordion__header .icon {
  width: clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
  height: clamp(1.125rem, 1.0892857143rem + 0.1785714286vw, 1.25rem);
  transition: transform 0.3s ease;
  position: relative;
}
.faq .accordion__header .icon::before, .faq .accordion__header .icon:after {
  content: "";
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.faq .accordion__header .icon::after {
  transition-duration: 0.3s;
  transform: rotate(90deg);
}
.faq .accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}
.faq .accordion__content p {
  font-size: clamp(0.875rem, 0.8392857143rem + 0.1785714286vw, 1rem);
  color: var(--color-gray);
  line-height: 1.38;
}
.faq .accordion .active .icon::after {
  transform: rotate(180deg);
}
.faq .accordion .active .icon::before {
  transition-duration: 0.3s;
  height: 0;
}
.faq .accordion .active .accordion__content {
  max-height: 13.75rem;
  padding-bottom: clamp(1.5rem, 1.3928571429rem + 0.5357142857vw, 1.875rem);
}

.footer {
  background-color: var(--color-accent);
}
@media (width > 63.99875rem) {
  .footer__container:not(:last-child) {
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
@media (width <= 63.99875rem) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
  color: var(--color-light);
}
@media (width > 63.99875rem) {
  .footer__item:nth-child(even) {
    padding-left: 2.5rem;
    border-left: 0.0625rem solid rgba(255, 255, 255, 0.2);
    height: 13.125rem;
  }
}
@media (width <= 63.99875rem) {
  .footer__item {
    row-gap: 1.25rem;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.2);
  }
}
.footer__top-content {
  display: flex;
  justify-content: space-between;
}
.footer__top-content .header__button {
  align-self: center;
}
.footer__bottom-content {
  display: flex;
  justify-content: space-between;
}
@media (width <= 63.99875rem) {
  .footer__bottom-content {
    flex-direction: column-reverse;
    row-gap: 1rem;
  }
}
.footer__descriptor {
  font-size: clamp(0.75rem, 0.7142857143rem + 0.1785714286vw, 0.875rem);
  line-height: 1.38;
  text-transform: uppercase;
  opacity: 0.6;
}
@media (width <= 63.99875rem) {
  .footer__descriptor {
    margin-bottom: 0.625rem;
  }
}
@media (width > 63.99875rem) {
  .footer__descriptor-right {
    text-align: right;
  }
}
.footer__text {
  font-size: 0.875rem;
  line-height: 1.35;
  max-width: 29.625rem;
}
.footer__mail-link {
  font-size: clamp(1rem, 0.9285714286rem + 0.3571428571vw, 1.25rem);
}
@media (width <= 63.99875rem) {
  .footer__soc1als {
    justify-content: flex-start;
    align-self: flex-start;
  }
}
.footer__soc1als-button {
  clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(100% - 0.5rem), calc(100% - 0.5rem) 100%, 0 100%, 0% 0.5rem);
  padding: 0.075rem;
  color: var(--color-light);
  background-color: rgba(255, 255, 255, 0.2);
}
.footer__soc1als-button svg * {
  fill: currentColor;
  stroke: currentColor;
}
.footer__soc1als-button:hover {
  background-color: var(--color-light);
  color: var(--color-dark);
}
.footer__soc1als-content {
  --size: 2.5rem;
  width: var(--size);
  height: var(--size);
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0.4375rem 0%, 100% 0, 100% calc(100% - 0.4375rem), calc(100% - 0.4375rem) 100%, 0 100%, 0% 0.4375rem);
  flex-direction: column;
  row-gap: 0.4375rem;
  background-color: rgba(28, 28, 28, 0.1);
}
@media (width <= 47.99875rem) {
  .footer__soc1als-content {
    --size: 2.25rem;
  }
}
.footer__rights-link {
  font-size: 0.875rem;
  line-height: 1.26;
  position: relative;
}
.footer__rights-link:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-light);
  left: 0;
  bottom: 0;
}
.footer__rights {
  font-size: 0.875rem;
  line-height: 1.26;
  align-self: flex-end;
  display: grid;
  row-gap: 0.75rem;
}
.footer__rights a {
  font-weight: 600;
  position: relative;
}
.footer__rights a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.0625rem;
  background-color: var(--color-light);
  left: 0;
  bottom: 0;
}
@media (width <= 63.99875rem) {
  .footer__rights {
    align-self: flex-start;
  }
}
.footer__rights-list {
  display: grid;
  row-gap: 0.75rem;
}
@media (width > 63.99875rem) {
  .footer__rights-item {
    display: flex;
    justify-content: end;
  }
}

@media (width <= 63.99875rem) {
  .logo {
    margin-bottom: 0.25rem;
  }
}

.program__container {
  --sectionCutSize: 1.875rem;
  position: relative;
  display: grid;
  row-gap: clamp(1.875rem, 1.6964285714rem + 0.8928571429vw, 2.5rem);
  justify-items: center;
  padding-block: clamp(3.75rem, 2.6785714286rem + 5.3571428571vw, 7.5rem);
  margin-bottom: var(--sectionCutSize);
}
@media (width <= 47.99875rem) {
  .program__container {
    --sectionCutSize: 1rem;
  }
}
.program__header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 38.75rem;
}
.program__descriptor {
  margin-bottom: clamp(1.25rem, 1.1785714286rem + 0.3571428571vw, 1.5rem);
}
.program__title {
  margin-bottom: clamp(0.5rem, 0.4285714286rem + 0.3571428571vw, 0.75rem);
}
.program__body {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
}
@media (width <= 63.99875rem) {
  .program__timeline {
    position: absolute;
    left: 50%;
    translate: -50%;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 0.075rem;
    background-color: var(--color-border);
  }
}
@media (width <= 63.99875rem) and (width > 63.99875rem) {
  .program__timeline {
    z-index: 9;
  }
}
@media (width <= 63.99875rem) {
  .program__timeline::before, .program__timeline::after {
    width: clamp(1.0625rem, 0.9910714286rem + 0.3571428571vw, 1.3125rem);
    height: clamp(1.0625rem, 0.9910714286rem + 0.3571428571vw, 1.3125rem);
    background-color: var(--color-light);
    border: var(--border);
    border-radius: 50%;
    z-index: 11;
    position: absolute;
    left: 50%;
    translate: -50%;
    content: "";
  }
  .program__timeline::before {
    top: 0;
    transform: translateY(-50%);
    border-color: var(--color-accent);
  }
  .program__timeline::after {
    bottom: 0;
    transform: translateY(50%);
    border-color: var(--color-accent);
  }
}
.program__progress {
  width: 100%;
  height: 0;
  background-color: var(--color-accent);
}
.program__progress:before {
  content: "";
  position: absolute;
  top: 1.3125rem;
  right: 100%;
  bottom: 0;
  width: 1.875rem;
  height: 100%;
  background-color: var(--color-light);
}
.program__progress:after {
  content: "";
  position: absolute;
  top: 1.3125rem;
  left: 100%;
  bottom: 0;
  width: 1.875rem;
  height: 100%;
  background-color: var(--color-light);
}
.program__list {
  display: grid;
  width: 100%;
  padding-top: 3.5rem;
  padding-bottom: 3.125rem;
}
@media (width > 63.99875rem) {
  .program__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}
@media (width <= 63.99875rem) {
  .program__list {
    padding-top: 4.8125rem;
    row-gap: 4.6875rem;
    justify-items: center;
  }
}
.program__list-item {
  position: relative;
  width: 100%;
}
@media (width > 63.99875rem) {
  .program__list-item:nth-child(even) {
    align-self: end;
    justify-self: end;
  }
}
@media (width <= 63.99875rem) {
  .program__list-item::after {
    content: "";
    width: clamp(1.0625rem, 0.9910714286rem + 0.3571428571vw, 1.3125rem);
    height: clamp(1.0625rem, 0.9910714286rem + 0.3571428571vw, 1.3125rem);
    background-color: var(--color-light);
    border: var(--border);
    border-radius: 50%;
    z-index: 11;
    position: absolute;
    top: 50%;
    translate: 0 -50%;
    right: 0;
    transform: translateX(50%);
  }
}
@media (width <= 63.99875rem) and (width <= 63.99875rem) {
  .program__list-item::after {
    right: 50%;
    top: 0;
  }
}
@media (width <= 63.99875rem) {
  .program__list-item.is-active::after {
    border-color: var(--color-accent);
  }
  .program__list-item.is-active::before {
    background-color: var(--color-accent);
  }
  .program__list-item:nth-child(even)::after {
    left: 0;
    transform: translateX(-50%);
  }
}
@media (width <= 63.99875rem) and (width <= 63.99875rem) {
  .program__list-item:nth-child(even)::after {
    left: 50%;
  }
}

.step-card {
  --textColor: var(--color-accent);
  position: relative;
  height: clamp(15rem, 13.2142857143rem + 8.9285714286vw, 21.25rem);
}
.step-card.is-active {
  --textColor: var(--color-light);
}
.step-card.is-active .step-card__container,
.step-card.is-active .step-card__content,
.step-card.is-active .step-card__format {
  background-color: var(--color-accent);
}
.step-card.is-active .step-card__title,
.step-card.is-active .step-card__date {
  color: var(--color-light);
}
@media (width > 63.99875rem) {
  .step-card:hover {
    --textColor: var(--color-light);
  }
  .step-card:hover .step-card__container,
  .step-card:hover .step-card__content,
  .step-card:hover .step-card__format {
    background-color: var(--color-accent);
  }
  .step-card:hover .step-card__title,
  .step-card:hover .step-card__date {
    color: var(--color-light);
  }
}
.step-card__container, .step-card__content, .step-card__format, .step-card__title {
  transition-duration: var(--transition-duration);
}
@media (max-width: 1292px) {
  .step-card__container br, .step-card__content br, .step-card__format br, .step-card__title br {
    display: none;
  }
}
.step-card__container {
  clip-path: polygon(0.875rem 0%, 100% 0, 100% calc(100% - 0.875rem), calc(100% - 0.875rem) 100%, 0 100%, 0% 0.875rem);
  width: 100%;
  height: 100%;
  padding: 0.075rem;
  background-color: var(--color-border);
}
@media (width <= 47.99875rem) {
  .step-card__container {
    clip-path: polygon(0.8125rem 0%, 100% 0, 100% calc(100% - 0.8125rem), calc(100% - 0.8125rem) 100%, 0 100%, 0% 0.8125rem);
  }
}
.step-card__content {
  clip-path: polygon(0.875rem 0%, 100% 0, 100% calc(100% - 0.875rem), calc(100% - 0.875rem) 100%, 0 100%, 0% 0.875rem);
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2.9375rem 1.875rem 1.875rem;
  background-color: var(--color-background);
}
@media (width <= 47.99875rem) {
  .step-card__content {
    clip-path: polygon(0.8125rem 0%, 100% 0, 100% calc(100% - 0.8125rem), calc(100% - 0.8125rem) 100%, 0 100%, 0% 0.8125rem);
    padding: 2.125rem 1.25rem 1.25rem;
  }
}
.step-card__format {
  clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(100% - 0.5rem), calc(100% - 0.5rem) 100%, 0 100%, 0% 0.5rem);
  position: absolute;
  top: -1.0625rem;
  left: 1.875rem;
  display: inline-flex;
  padding: 0.1rem;
  background-color: var(--color-border);
  z-index: 999;
}
.step-card__format-content {
  clip-path: polygon(0.5rem 0%, 100% 0, 100% calc(100% - 0.5rem), calc(100% - 0.5rem) 100%, 0 100%, 0% 0.5rem);
  display: flex;
  padding: 0.625rem 1.25rem;
  background-color: var(--color-background);
  line-height: 1.1;
}
@media (width <= 47.99875rem) {
  .step-card__format-content {
    padding: 0.5rem 1rem;
  }
}
.step-card__info {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.step-card__date {
  margin-bottom: 0.75rem;
}
@media (width <= 47.99875rem) {
  .step-card__date {
    margin-bottom: 0.625rem;
  }
}
.step-card__title {
  font-size: clamp(1.125rem, 1.0535714286rem + 0.3571428571vw, 1.375rem);
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: auto;
}
.step-card__icon {
  align-self: flex-end;
}
.step-card__icon * {
  fill: var(--textColor);
}
@media (width <= 47.99875rem) {
  .step-card__icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.step-card__counter {
  position: absolute;
  bottom: 0;
  left: 1.875rem;
  font-family: var(--font-family-accent);
  font-size: 11.25rem;
  color: var(--textColor);
  opacity: 0.05;
  transform: translateY(40%);
}

.video-widget.is-active .video-widget__background {
  inset: 0;
  width: 100%;
  min-height: 100dvh;
  padding: 0.75rem;
  background-color: rgba(16, 23, 60, 0.6);
}
.video-widget.is-active .video-widget__video-container {
  width: 100%;
  height: auto;
}
.video-widget.is-active .video-widget__close {
  width: 32px;
  height: 32px;
  top: 1rem;
  right: 1rem;
}
.video-widget.is-hidden {
  display: none !important;
}
.video-widget:not(.is-active) .video-widget__video-container:hover {
  border-color: var(--color-black);
}
.video-widget__background {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: auto;
  right: 1.25rem;
  left: auto;
  bottom: 1.25rem;
  width: 8.125rem;
  height: 10.625rem;
  background-color: transparent;
  z-index: 3000;
}
@media (width <= 47.99875rem) {
  .video-widget__background {
    right: 0.875rem;
    bottom: 0.875rem;
    width: 7.1875rem;
    height: 9.375rem;
  }
}
.video-widget__video-container {
  position: relative;
  display: flex;
  max-width: 62.5rem;
  height: 100%;
  margin-inline: auto;
  border: 0.125rem solid var(--color-light);
  border-radius: 0.625rem;
  overflow: hidden;
  transition-duration: var(--transition-duration);
}
.video-widget__close {
  width: 25px;
  height: 25px;
  display: flex;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 3100;
}
.video-widget__close img {
  width: 100%;
  height: 100%;
}
.video-widget__video {
  object-fit: cover;
  pointer-events: all;
}

/*# sourceMappingURL=main.css.map */
