.close-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px 12px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 4px;
  background-color: transparent;
}
.close-btn:hover {
  cursor: pointer;
}
.close-btn--speaker-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  border: none;
}

.confirmation-modal {
  position: fixed;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  inset: 0;
}
.confirmation-modal__content {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: 40px 20px;
  margin: auto;
  border-radius: 8px;
  background: var(--BROWN-ULTRA-LIGHT, #dacdc3);
  color: var(--BROWN-ULTRA-DARK, #2e261f);
  transition: transform 0.4s ease, opacity 0.3s ease;
  font-style: normal;
}
@media (width >= 1024px) {
  .confirmation-modal__content {
    padding: 40px;
  }
}
.confirmation-modal__btn {
  display: block;
  padding: 10px 20px;
  margin-left: auto;
  border: none;
  border-radius: 8px;
  background: var(--BROWN-LIGHT, #b1967e);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--WHITE, #fff);
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.confirmation-modal__btn:hover {
  background-color: var(--BROWN-ULTRA-DARK, #5d4632);
}

@keyframes floatYBg1 {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, -100px);
  }
}
@keyframes floatYBg1-sub-page {
  from {
    transform: translate(-50%, -50px);
  }
  to {
    transform: translate(-50%, -100px);
  }
}
@keyframes floatYBg2 {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, -16px);
  }
}
@keyframes floatY {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}
@keyframes numbersBgSlide {
  0% {
    left: 0;
    transform: translateX(0);
  }
  50% {
    left: 100%;
    transform: translateX(-90%);
  }
  100% {
    left: 0;
    transform: translateX(0);
  }
}
.section-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-wrapper--brown-ultra-dark {
  background: var(--BROWN-ULTRA-DARK, #2e261f);
}
.section-wrapper--statistics {
  background: var(--BROWN-ULTRA-DARK, #2e261f);
}
@media (width >= 1280px) {
  .section-wrapper--statistics {
    background: var(--BLACK, #000);
  }
}
.section-wrapper--brown-ultra-light {
  background: var(--BROWN-ULTRA-LIGHT, #dacdc3);
}
.section-wrapper--brown-medium-light {
  background: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
}
.section-wrapper--brown-light {
  background: var(--BROWN-LIGHT, #b1967e);
}
.section-wrapper--brown {
  background: var(--BROWN, #8d6a4b);
}
.section-wrapper--black {
  background: var(--BLACK);
}
.section {
  padding: 0 20px;
  margin: 0 auto;
}
@media (width >= 1440px) {
  .section {
    max-width: 1400px;
    padding: 0;
  }
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
}
@media (width >= 768px) {
  .top-bar {
    justify-content: space-between;
  }
}
.top-bar__left {
  position: absolute;
  top: 60px;
  left: 20px;
  display: flex;
  align-items: flex-end;
}
@media (width >= 768px) {
  .top-bar__left {
    position: relative;
    top: initial;
    left: initial;
  }
}
.top-bar__links-wr {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
@media (width < 768px) {
  .top-bar__links-wr {
    display: none;
  }
}
.top-bar__link-btn {
  color: var(--WHITE, #fff);
  font-size: 1.6rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  padding: 10px 20px;
}
.top-bar__link-btn--active {
  border: 1px solid var(--BLUE, #2782ac);
}
.top-bar__link-btn:hover {
  border: 1px solid var(--BROWN-ULTRA-LIGHT, #dacdc3);
}
.top-bar__right {
  z-index: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 20px;
}
.top-bar__line {
  position: relative;
  width: 2px;
  height: 54px;
  margin: 0 20px 5px 30px;
  background: var(--BROWN-ULTRA-LIGHT, #dacdc3);
}
.top-bar__desc {
  position: absolute;
  left: 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  text-wrap: nowrap;
}

.header {
  position: relative;
  min-height: 500px;
  margin-top: 20px;
}
.header--sub-page {
  min-height: initial;
  height: 460px;
}
.header__sub-page-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 9.6rem;
  font-weight: 600;
  color: var(--BROWN-LIGHT, #b1967e);
  text-wrap: nowrap;
}
.header__scroll-down {
  position: absolute;
  top: calc(50% + 4.8rem + 30px);
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 20px;
  background: var(--BLUE, #2782ac);
  display: flex;
  border: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.header__scroll-down--main {
  position: initial;
  transform: initial;
  background: var(--BROWN, #8D6A4B);
  margin: 40px 0 0;
}
.header__wrapper {
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 700px;
  margin: 0 auto;
}
@media (width >= 768px) {
  .header__wrapper {
    flex-direction: row;
    gap: 70px;
  }
}
@media (width >= 1024px) {
  .header__wrapper {
    gap: 170px;
  }
}
.header__left {
  display: flex;
  justify-content: center;
}
@media (width >= 768px) {
  .header__left {
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    min-height: 100%;
  }
}
.header__right {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 60px;
}
@media (width >= 768px) {
  .header__right {
    align-items: flex-start;
    width: 50%;
    min-height: 100%;
  }
}
.header__logo {
  z-index: 2;
  width: 280px;
}
@media (width >= 768px) {
  .header__logo {
    width: 374px;
  }
}
.header__shield {
  z-index: 1;
  width: 220px;
  height: 272px;
  margin: 100px 0 0;
  animation: floatY 2s ease-in-out infinite alternate;
}
@media (width >= 768px) {
  .header__shield {
    width: 409px;
    height: 507px;
    margin: 0;
  }
}
.header__bg-img {
  position: absolute;
  top: 70px;
  left: 50%;
  animation: floatYBg1 4s ease-in-out infinite alternate;
}
@media (width >= 768px) {
  .header__bg-img {
    top: 170px;
    animation: floatYBg1-sub-page 4s ease-in-out infinite alternate;
  }
}
.header__bg-img--menu {
  z-index: -1;
  animation: none;
  left: 50%;
  transform: translateX(-50%);
}
.header__bg-img2 {
  position: absolute;
  bottom: 100px;
  left: 50%;
  animation: floatYBg2 5s ease-in-out infinite alternate;
}
@media (width >= 768px) {
  .header__bg-img2 {
    bottom: -50px;
  }
}
.header__bg-img2--sub-page {
  bottom: -300px;
}

.header-sub {
  position: relative;
  z-index: 2;
}
.header-sub__title {
  margin: 30px 0;
  font-size: 2.9rem;
  font-weight: 600;
  color: var(--white);
}
.header-sub__title sup {
  font-size: 2rem;
  font-weight: 400;
}
.header-sub__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 280px;
  padding: 15px 15px 49px;
  margin: 0 auto;
  border-radius: 8px;
  background: var(--BLUE, #2782ac);
  box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.5);
}
@media (width >= 768px) {
  .header-sub__wrapper {
    width: 374px;
  }
}
.header-sub__desc {
  width: 60px;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}
.header-sub__send-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: var(--BLACK, #000);
}
.header-sub__form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.header-sub__form input {
  width: 120px;
  height: 40px;
  padding: 10px 10px 10px 12px;
  border: 1px solid var(--white);
  border-radius: 4px;
  background: transparent;
  opacity: 0.75;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
}
.header-sub__form input::placeholder {
  opacity: 1;
  color: var(--white);
}
.header-sub__form input::placeholder {
  opacity: 1;
}
@media (width >= 768px) {
  .header-sub__form input {
    width: 200px;
  }
}
.header-sub__terms {
  position: absolute;
  bottom: 15px;
  display: flex;
  align-items: center;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: var(--white);
  gap: 10px;
}
@media (width >= 768px) {
  .header-sub__terms {
    font-size: 1.2rem;
  }
}
.header-sub__check-box {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: var(--black);
}
.header-sub__error {
  position: absolute;
  bottom: -25px;
  left: 50%;
  visibility: hidden;
  margin-top: 10px;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--RED, #f00);
  transform: translateX(-50%);
  text-wrap: nowrap;
}
.header-sub__error--show {
  visibility: visible;
}

.menu-modal {
  position: fixed;
  z-index: 3;
  display: flex;
  visibility: hidden;
  overflow: hidden;
  padding: 20px;
  background: var(--BROWN-DARK, #5d4632);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.05s ease, visibility 0.05s ease;
  inset: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.menu-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.menu-modal__top {
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 1440px;
  padding: 0 20px;
  transform: translateX(-50%);
}
.menu-modal__dialog {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 100px;
}
.menu-modal__close {
  position: absolute;
  top: 0;
  right: 20px;
  display: flex;
  padding: 12px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 4px;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.menu-modal__list {
  margin-top: 155px;
}
.menu-modal__item {
  margin-bottom: 40px;
  transition: transform 0.1s ease;
}
.menu-modal__item:hover {
  transform: scale(1.01);
}
.menu-modal__link {
  font-size: 6.6rem;
  font-weight: 700;
  color: var(--WHITE, #fff);
}
.menu-modal__list-sm {
  margin: 40px 0;
  padding-bottom: 100px;
}
.menu-modal__item-sm {
  display: inline-block;
  margin-right: 20px;
}
.menu-modal__link-sm img {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}
.menu-modal__link-sm:hover img {
  transform: scale(1.1);
}
.menu-modal__hybrid {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 8px;
}
@media (width >= 768px) {
  .menu-modal__hybrid {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media (width >= 768px) {
  .menu-modal__hybrid--header {
    width: 374px;
    padding: 10px 10px 10px 20px;
  }
}
.menu-modal__hybrid-title {
  max-width: 140px;
  font-size: 1.6rem;
  font-weight: 700;
}
.menu-modal__reg-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}
@media (width >= 768px) {
  .menu-modal__reg-wrapper {
    margin-top: 0;
    gap: 20px;
  }
}
.menu-modal__reg-item, .menu-modal__location-btn {
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--WHITE, #fff);
  height: 40px;
  padding: 10px 20px;
  align-items: center;
  align-self: stretch;
  border-radius: 4px;
  background: var(--BLUE, #2782ac);
  justify-content: center;
  width: 100%;
}
.menu-modal__reg-item:hover, .menu-modal__location-btn:hover {
  cursor: pointer;
}
.menu-modal__reg-item--site {
  background: var(--BROWN-LIGHT, #b1967e);
}
@media (width >= 768px) {
  .menu-modal__reg-item, .menu-modal__location-btn {
    height: 40px;
    text-wrap: nowrap;
    width: 241px;
  }
}
@media (width >= 768px) {
  .menu-modal__reg-item--header {
    width: 180px;
  }
}
.menu-modal__location-btn {
  margin: 40px 0;
  background: var(--PURPLE, #994daf);
}
@media (width >= 768px) {
  .menu-modal__location-btn {
    max-width: 299px;
  }
}
.menu-modal__questions {
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  font-size: 2.4rem;
  font-weight: 400;
}
.menu-modal__mail {
  color: var(--WHITE, #fff);
  font-size: 2.4rem;
  font-weight: 700;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  height: 100%;
}

.speakers__left {
  position: relative;
  width: 100%;
  min-height: 100%;
  padding: 56px 34px;
}
.speakers__left::before {
  position: absolute;
  z-index: 0;
  background: linear-gradient(128.82deg, rgba(0, 0, 0, 0) 60.94%, rgba(0, 0, 0, 0.25) 100%);
  pointer-events: none;
  content: "";
  inset: 0;
}
@media (width >= 1280px) {
  .speakers__left {
    padding: 60px 100px 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 488px;
  }
}
.speakers__title {
  max-width: 200px;
  margin-bottom: 30px;
  font-size: 36px;
  font-weight: 600;
  line-height: normal;
  color: var(--WHITE, #fff);
  font-style: normal;
}
@media (width >= 1280px) {
  .speakers__title {
    font-size: 4.8rem;
    max-width: 330px;
  }
}
.speakers__read-more {
  height: 40px;
  padding: 10px 20px;
  margin-right: auto;
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
}
.speakers__read-more--all {
  position: absolute;
  bottom: 60px;
  left: 80px;
}

.speakers__right {
  position: relative;
  max-width: 813px;
}
.speakers__info {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}
.speakers__name {
  max-width: 480px;
  font-size: 3.6rem;
  font-weight: 600;
  color: var(--WHITE, #fff);
}
.speakers__desc {
  display: inline-flex;
  max-width: 480px;
  padding: 5px;
  margin-top: 10px;
  border-radius: 5px;
  background: var(--BLUE, #2782ac);
}
.speakers__modal-name {
  max-width: 480px;
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
  font-style: normal;
}
.speakers__modal-desc {
  max-width: 480px;
  margin: 30px 0;
  opacity: 0.5;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--BROWN-DARK, #5d4632);
}
.speakers__modal-bio {
  max-width: 480px;
  opacity: 0.5;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
}
.speakers__modal-info {
  display: none;
}
.speakers__modal-info--confirm {
  display: block;
}
.speakers__modal-link {
  display: block;
  width: 280px;
  height: 40px;
  max-width: 480px;
  padding: 0 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: var(--BROWN-LIGHT, #b1967e);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 40px;
  text-align: left;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (width >= 1280px) {
  .speakers__modal-link {
    display: inline-block;
    width: initial;
    max-width: initial;
    text-overflow: initial;
  }
}
.speakers__modal-image {
  display: none;
}
@media (width >= 1280px) {
  .speakers__modal-image {
    position: absolute;
    top: 100px;
    right: 60px;
    display: block;
    width: 300px;
    height: 300px;
    border: 2px solid var(--BROWN-ULTRA-LIGHT, #dacdc3);
    border-radius: 20px;
    background: linear-gradient(186deg, rgba(0, 0, 0, 0) 37.7%, rgba(0, 0, 0, 0) 61.41%) #fff;
    object-fit: cover;
  }
}
.speakers__modal-image--confirm {
  border-radius: 0;
  border: none;
  margin: 0 auto 40px;
  display: block;
  width: 150px;
  height: auto;
  background: transparent;
}
@media (width >= 1280px) {
  .speakers__modal-image--confirm {
    width: 200px;
    margin: 0 auto;
  }
}

.speakers-slider {
  position: relative;
  margin: 100px 0 100px 80px;
}
@media (width >= 1024px) {
  .speakers-slider {
    margin: 88px 120px 130px 80px;
  }
}
.speakers-slider .splide__arrow {
  display: none;
}
.speakers-slider .splide__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 300px;
  height: 300px;
  border: 2px solid var(--BROWN-ULTRA-LIGHT, #dacdc3);
  border-radius: 20px;
  background: linear-gradient(186deg, rgba(0, 0, 0, 0) 37.7%, rgba(0, 0, 0, 0.7) 61.41%);
  cursor: pointer;
  overflow: hidden;
}
.speakers-slider .splide__slide img {
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.speakers-slider .custom-arrows {
  position: absolute;
  top: 50%;
  right: 0;
  left: -70px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  width: auto;
  pointer-events: none;
  transform: translateY(-50%);
}
@media (width >= 1440px) {
  .speakers-slider .custom-arrows {
    display: none;
  }
}
.speakers-slider .custom-arrows .custom-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--BLUE, #2782ac);
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
}
.speakers-slider .custom-arrows .custom-arrow svg {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
}
.speakers-slider .custom-arrows .custom-arrow--right svg {
  transform: rotate(0deg);
}

.speakers-modal {
  position: fixed;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  inset: 0;
}

.speakers-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.speakers-modal__content {
  width: 100%;
  max-width: 500px;
  padding: 40px 20px;
  background: var(--BROWN-ULTRA-LIGHT, #dacdc3);
  transition: transform 0.4s ease, opacity 0.3s ease;
}

@media (width <= 1280px) {
  .speakers-modal {
    align-items: flex-end;
    padding: 0;
  }
  .speakers-modal__content {
    border-radius: 12px 12px 0 0;
    margin-top: 40px;
    max-height: calc(100dvh - 60px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateY(100%);
    transition: transform 0.4s ease;
  }
  .speakers-modal.is-open .speakers-modal__content {
    transform: translateY(0);
  }
}
@media (width >= 1280px) {
  .speakers-modal {
    align-items: center;
  }
  .speakers-modal__content {
    min-width: 1024px;
    padding: 100px 60px 75px;
    border-radius: 8px;
    opacity: 0;
    transform: scale(1);
  }
  .speakers-modal__content--confirm {
    min-width: 700px;
  }
  .speakers-modal.is-open .speakers-modal__content {
    opacity: 1;
    transform: scale(1);
  }
}
@media (width >= 1440px) {
  .speakers__right:hover .custom-arrows {
    display: initial;
  }
}

.speakers {
  position: relative;
  z-index: 1;
  padding: 0;
}
.speakers__wrapper {
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
@media (width >= 1024px) {
  .speakers__wrapper {
    flex-direction: row;
  }
}
.speakers__bg-text {
  position: absolute;
  top: 15px;
  left: 30px;
  opacity: 0.1;
  font-size: 96px;
  font-weight: 500;
  line-height: normal;
  color: var(--WHITE, #fff);
  font-style: normal;
  text-wrap: wrap;
}
.speakers__bg-text--big {
  left: -9px;
  font-size: 12.8rem;
}
@media (width >= 768px) {
  .speakers__bg-text--big {
    left: 40px;
  }
}

.speakers-all {
  max-width: 1280px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
  margin: 100px auto;
  justify-content: center;
}

.numbers__wrapper {
  position: relative;
  z-index: 0;
  padding: 80px 10px;
}
.numbers__bg-shape {
  --numbers-slide-speed: 130s;
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: -1;
  display: block;
  width: auto;
  height: 550px;
  opacity: 0.3;
  pointer-events: none;
  transform: translateX(0);
  animation: numbersBgSlide var(--numbers-slide-speed) linear infinite alternate;
  backface-visibility: hidden;
  will-change: left, transform;
}
@media (width >= 1280px) {
  .numbers__bg-shape {
    display: none;
  }
}
.numbers__bg-shape--register {
  z-index: 1;
  display: block;
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  animation: none;
}
.numbers__title {
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: 500;
  color: var(--BLUE, #2782ac);
}
.numbers__content {
  display: flex;
  flex-direction: column;
  gap: 65px;
}
@media (width >= 1024px) {
  .numbers__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 100px;
  }
}
.numbers__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.numbers__item--link {
  display: none;
  justify-content: center;
  width: 211px;
  padding: 10px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--WHITE, #fff);
  text-wrap: wrap;
}
@media (width >= 1280px) {
  .numbers__item--link {
    display: flex;
  }
}
.numbers__item--link:hover {
  cursor: pointer;
}
.numbers__number {
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.8;
  color: var(--WHITE, #fff);
}
.numbers__desc {
  opacity: 0.5;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--WHITE, #fff);
}

.statistics {
  padding: 60px 10px;
}
.statistics__wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (width >= 1280px) {
  .statistics__wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.statistics__top {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  gap: 65px;
}
@media (width >= 1280px) {
  .statistics__top {
    flex-direction: row;
    align-items: flex-start;
    padding: 0;
    gap: 75px;
  }
}
@media (width >= 1280px) {
  .statistics__item {
    position: relative;
    width: 264px;
    padding-top: 90px;
  }
}
.statistics__title {
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: 500;
  color: var(--PURPLE, #994daf);
}
@media (width >= 1280px) {
  .statistics__title {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.statistics__value {
  font-size: 8rem;
  font-weight: 700;
}
.statistics__desc {
  opacity: 0.5;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (width >= 1280px) {
  .statistics__bottom {
    display: flex;
    justify-content: end;
    width: 100%;
  }
}

.reference {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  padding: 40px 30px;
  margin: 0 auto;
  border: 1px solid var(--BROWN, #8d6a4b);
  border-radius: 20px;
  gap: 24px;
}
@media (width >= 1280px) {
  .reference {
    width: 625px;
    max-width: 625px;
    margin: 0;
  }
}
.reference__title {
  font-size: 4rem;
  font-weight: 500;
  color: var(--BROWN-LIGHT, #b1967e);
}

.sta-slider__image {
  height: 160px;
  min-width: 250px;
  max-width: 250px;
  border-radius: 5px;
  object-fit: cover;
}
@media (width >= 1280px) {
  .sta-slider__text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.sta-slider__desc {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 400;
}
@media (width >= 1280px) {
  .sta-slider__desc {
    max-width: 292px;
    margin: 0;
  }
}
.sta-slider__name {
  font-size: 20px;
  font-weight: 400;
  color: var(--BROWN, #8d6a4b);
}

.sta-slider {
  position: relative;
}
.sta-slider .splide__track {
  overflow: hidden;
}
.sta-slider .splide__list {
  display: flex;
}
.sta-slider .splide__slide {
  width: 100% !important;
}
@media (width >= 1280px) {
  .sta-slider .splide__slide {
    display: flex;
    gap: 40px;
  }
}
.sta-slider__pagination {
  position: static;
  display: flex;
  justify-content: flex-start;
  padding: 0 0 24px;
  margin: 8px 0 0;
  gap: var(--line);
  list-style: none;
  --bullet-size: 36px;
  --line: 15px;
  --ring-size: 12px;
}
@media (width >= 1280px) {
  .sta-slider__pagination {
    position: absolute;
    top: -230px;
    left: 290px;
  }
}
.sta-slider__pagination li {
  position: relative;
}
.sta-slider__pagination li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  left: var(--bullet-size);
  width: var(--line);
  height: 1px;
  background: var(--BROWN, #8d6a4b);
  transform: translateY(-50%);
  content: "";
}
.sta-slider__pagination .splide__pagination__page {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--bullet-size);
  height: var(--bullet-size);
  padding: 0;
  margin: 0;
  border: 1px solid var(--BROWN--LIGHT, #b1967e);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.sta-slider__pagination .splide__pagination__page::before {
  display: block;
  width: var(--ring-size);
  height: var(--ring-size);
  border: 2px solid var(--BROWN, #8d6a4b);
  border-radius: 50%;
  background: transparent;
  content: "";
}
.sta-slider__pagination .splide__pagination__page:hover, .sta-slider__pagination .splide__pagination__page:focus-visible {
  border-color: var(--BROWN, #8d6a4b);
}
.sta-slider__pagination .splide__pagination__page.is-active {
  transform: scale(1);
}
.sta-slider__pagination .splide__pagination__page.is-active::before {
  border: 0;
  background: var(--BROWN-ULTRA-LIGHT, #dacdc3);
}

.description-section {
  display: grid;
  grid-template-columns: 1fr;
}
@media (width >= 1024px) {
  .description-section {
    grid-template-columns: 1fr 1fr;
  }
}
.description-section__item {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.description-section__item--right {
  justify-content: flex-start;
}

.description {
  position: relative;
  z-index: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 60.94%, rgba(0, 0, 0, 0.05) 100%);
}
.description--right {
  background: none;
}
.description__bg-text {
  position: absolute;
  top: 0;
  left: -5px;
  z-index: -1;
  opacity: 0.1;
  font-size: 220px;
  font-weight: 500;
}
@media (width >= 1024px) {
  .description__bg-text {
    left: 10px;
  }
}
.description__bg-img {
  position: absolute;
  bottom: -200px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.description__bg-img--right {
  bottom: 200px;
  left: 400px;
}
.description__wrapper {
  max-width: 720px;
  padding: 60px 20px;
}
@media (width >= 1024px) {
  .description__wrapper {
    padding: 135px 100px;
  }
}
.description__title {
  margin-bottom: 40px;
  font-size: 4rem;
  font-weight: 700;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
}
@media (width >= 1024px) {
  .description__title {
    font-size: 4.8rem;
  }
}
.description__desc {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
}
.description__desc--small {
  font-size: 2rem;
}
@media (width >= 1024px) {
  .description__desc--small {
    font-size: 2.4rem;
  }
}

.partners {
  position: relative;
  width: 100%;
  isolation: isolate;
  overflow: hidden;
}
.partners__title {
  position: absolute;
  top: 50%;
  left: -15px;
  opacity: 0.25;
  font-size: 220px;
  font-weight: 500;
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  pointer-events: none;
  transform: translateY(-50%);
  user-select: none;
  white-space: nowrap;
}
.partners__title--sub-page {
  top: 100px;
}
@media (width >= 768px) {
  .partners {
    max-width: 1280px;
    padding: 40px 0 40px 100px;
  }
}
.partners--sub-page {
  padding: 0;
}
.partners__body {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 60px 20px;
  overflow: auto hidden;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
}
.partners__body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}
.partners__rows {
  display: flex;
  flex-direction: column;
  width: max-content;
  gap: 60px;
}
@media (width >= 768px) {
  .partners__rows {
    display: contents;
    margin-left: 100px;
  }
}
.partners__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
.partners img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  scroll-snap-align: start;
}
@media (width >= 768px) {
  .partners img {
    padding-right: 60px;
  }
}

.partners-slider {
  padding: 60px 20px;
}
@media (width >= 768px) {
  .partners-slider {
    padding: 60px 0 60px 100px;
  }
}
.partners-slider--sub-page {
  padding: 30px 0;
}
.partners-slider .splide__track {
  overflow: visible;
}
.partners-slider .splide__list {
  align-items: center;
}
.partners-slider .splide__slide {
  display: grid;
  place-items: center;
}
.partners-slider img {
  display: block;
  width: auto;
  height: 80px;
  object-fit: contain;
}
@media (width >= 768px) {
  .partners-slider img {
    height: 80px;
  }
}

.awards {
  padding: 80px 10px;
}
@media (width >= 1280px) {
  .awards__wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
}

.awards-slider {
  position: relative;
}
.awards-slider__track {
  overflow: hidden;
}
.awards-slider__list {
  display: flex;
  padding: 0;
  margin: 0;
  gap: 0;
  list-style: none;
}
.awards-slider__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 300px;
  height: 165px;
  padding: 20px;
  margin: 0 auto;
  border-radius: 15px;
  background: var(--BLACK, #000);
}
@media (width >= 1280px) {
  .awards-slider__item {
    width: 520px;
    height: 250px;
  }
}
.awards-slider__title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--WHITE, #fff);
}
@media (width >= 1280px) {
  .awards-slider__title {
    font-size: 3.8rem;
  }
}
.awards-slider__hashtag {
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}
@media (width >= 1280px) {
  .awards-slider__hashtag {
    font-size: 3rem;
  }
}
.awards-slider__link {
  font-size: 1.2rem;
  font-weight: 400;
  text-align: right;
  color: var(--BROWN-LIGHT, #b1967e);
}
@media (width >= 1280px) {
  .awards-slider__link {
    font-size: 2.4rem;
  }
}
.awards-slider__image-wr {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--BROWN, #8d6a4b);
}
.awards-slider__image {
  width: 260px;
  height: 100%;
  object-fit: cover;
}
@media (width >= 1280px) {
  .awards-slider__image {
    width: 100%;
  }
}
.awards-slider__arrows {
  position: absolute;
  bottom: -40px;
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 130px;
  min-width: 130px;
  transform: translateX(-50%);
}
@media (width >= 1280px) {
  .awards-slider__arrows {
    display: none;
  }
}
.awards-slider__arrows .splide__arrow {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 20px;
  background: var(--BLUE, #2782ac);
  font-size: 1.2rem;
  cursor: pointer;
  gap: 10px;
}
.awards-slider__arrows .splide__arrow svg {
  width: 20px;
  height: 20px;
  transform: rotate(0deg);
}
.awards-slider__arrows .splide__arrow--right svg {
  transform: rotate(180deg);
}
.awards-slider__arrows .splide__arrow path {
  stroke: var(--brown-ultra-dark, #333);
}
.awards-slider__pagination {
  position: absolute;
  top: -230px;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 10px 0;
  gap: var(--line);
  list-style: none;
  --bullet-size: 36px;
  --line: 30px;
  --ring-size: 12px;
}
.awards-slider__pagination li {
  position: relative;
}
.awards-slider__pagination li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  width: var(--line);
  height: 1px;
  background: var(--BROWN, #8d6a4b);
  transform: translateY(-50%);
  content: "";
}
.awards-slider__pagination .splide__pagination__page {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--bullet-size);
  height: var(--bullet-size);
  padding: 0;
  margin: 0;
  border: 2px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  outline: none;
}
.awards-slider__pagination .splide__pagination__page::before {
  display: block;
  width: var(--ring-size);
  height: var(--ring-size);
  border: 2px solid var(--BLUE, #2782ac);
  border-radius: 50%;
  background: transparent;
  content: "";
}
.awards-slider__pagination .splide__pagination__page:hover, .awards-slider__pagination .splide__pagination__page:focus-visible {
  border-color: var(--BROWN, #8d6a4b);
}
.awards-slider__pagination .splide__pagination__page.is-active {
  transform: scale(1);
}
.awards-slider__pagination .splide__pagination__page.is-active::before {
  border: 0;
  background: var(--BLUE, #2782ac);
}
@media (width >= 1280px) {
  .awards-slider__pagination {
    top: 260px;
  }
}

.gallery {
  padding: 80px 0;
  margin: 0 auto;
  overflow: hidden;
}
@media (width >= 1280px) {
  .gallery {
    max-width: 1200px;
  }
}
.gallery__viewport {
  cursor: grab;
  overflow: auto hidden;
  -webkit-overflow-scrolling: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: auto;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: none;
}
.gallery__viewport.is-dragging {
  cursor: grabbing;
}
.gallery__viewport::-webkit-scrollbar {
  display: none;
}
.gallery__rows {
  display: flex;
  flex-direction: column;
  margin-left: -20px;
  gap: 10px;
}
.gallery__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}
.gallery__image {
  position: relative;
  z-index: 1;
  display: block;
  flex: 0 0 auto;
  height: 200px;
  border-radius: 20px;
  background: lightgray 50%/cover no-repeat;
  cursor: pointer;
  pointer-events: auto;
  transition: filter 0.3s ease;
  object-fit: cover;
  scroll-snap-align: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
  user-select: none;
}
.gallery__image:hover {
  filter: brightness(1.4);
}
.gallery__nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 110px;
  min-width: 110px;
  transform: translateX(-50%);
}
@media (width >= 1280px) {
  .gallery__nav {
    display: none;
  }
}
.gallery__nav--modal {
  bottom: -20px;
  width: 130px;
  min-width: 130px;
}
@media (width >= 1280px) {
  .gallery__nav--modal {
    display: initial;
  }
}
.gallery__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 20px;
  background: var(--BLUE, #2782ac);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--brown-ultra-dark, #333);
  cursor: pointer;
  transition: transform 0.1s ease, filter 0.2s ease, opacity 0.2s ease;
}
.gallery__btn:hover {
  filter: brightness(1.05);
}
.gallery__btn svg {
  width: 16px;
  height: 16px;
  transform: rotate(0deg);
}
.gallery__btn path {
  stroke: var(--brown-ultra-dark, #333);
}
.gallery__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.gallery-modal__overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  inset: 0;
}
.gallery-modal__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 90%;
  max-height: 90%;
}
.gallery-modal__image {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 10px;
}
.gallery-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  border: none;
  background: transparent;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
.gallery-modal__nav {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: var(--BLUE, #2782ac);
  font-size: 1.6rem;
  color: var(--BROWN-ULTRA-DARK, #2e261f);
  cursor: pointer;
  outline: none;
}
.gallery-modal__nav--prev {
  left: 10px;
}
.gallery-modal__nav--next {
  right: 10px;
}

.footer {
  padding: 40px 20px;
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  gap: 40px;
}
@media (width >= 768px) {
  .footer__wrapper {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
}
.footer__logo-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
.footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__desc {
  padding-top: 2px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
}
.footer__link-label {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--PURPLE, #994daf);
  gap: 0.5rem;
  text-wrap: nowrap;
}
.footer__link-label a {
  font-weight: 700;
}
.footer__info-links {
  display: inline;
}
@media (width >= 768px) {
  .footer__info-links {
    display: flex;
  }
}
.footer__info-links li {
  margin: 0 0 20px;
}
@media (width >= 768px) {
  .footer__info-links li {
    display: flex;
    margin: 0 20px 0 0;
  }
  .footer__info-links li:last-of-type {
    margin: 0;
  }
}
.footer__info-links li:last-of-type a {
  color: var(--brown-medium-light);
}
.footer__info-links a {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown-light);
  text-decoration: none;
  text-wrap: nowrap;
}
.footer__info-links a:hover {
  text-decoration: underline;
}
.footer__line {
  width: 60px;
  height: 2px;
  margin: 20px 0;
  background-color: var(--brown-medium-light);
}
.register {
  padding: 90px 0 120px;
}
.register__wrapper {
  max-width: 641px;
  margin: 0 auto;
}
.register__desc {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 400;
}
@media (width < 768px) {
  .register__desc {
    padding: 0 15px;
  }
}
.register__desc span {
  font-weight: 700;
}
.register__btn-locations, .register__btn-confirm {
  display: flex;
  width: 280px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: var(--PURPLE, #994daf);
  color: var(--WHITE, #fff);
  font-size: 1.6rem;
  font-weight: 600;
  border: none;
  margin: 60px auto;
  cursor: pointer;
}
.register__btn-confirm {
  margin-bottom: 0;
  width: 299px;
  background: var(--BLUE, #2782ac);
  cursor: pointer;
}
.register__privacy-desc {
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 10px;
}
.register__title {
  color: var(--BROWN-LIGHT, #b1967e);
  text-align: center;
  margin: 60px 0;
  font-size: 4rem;
  font-weight: 600;
}
@media (width < 768px) {
  .register__title {
    padding: 0 15px;
  }
}
.register__form {
  display: flex;
  flex-direction: column;
  max-width: 536px;
  margin: 0 auto;
}
.register__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  max-width: 536px;
}
.register__label {
  flex: 0 0 125px;
  text-align: left;
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  font-size: 1.6rem;
  font-weight: 700;
}
.register__input {
  width: 392px;
  color: var(--WHITE, #fff);
  font-size: 1.6rem;
  text-align: center;
  display: flex;
  height: 40px;
  padding: 10px 10px 10px 12px;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: var(--BROWN-ULTRA-DARK, #2e261f);
}
.register__input::placeholder {
  color: var(--WHITE, #fff);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.register select.register__input {
  text-align: left;
  text-align-last: left;
  padding-left: 12px;
  color: var(--WHITE, #fff);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
}
.register__row--name .register__input {
  width: 186px;
}
.register__row--checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.register__row--checkbox:last-of-type {
  margin-bottom: 60px;
}
.register__checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.register__label--checkbox {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--WHITE, #fff);
  font-weight: 400;
}
.register__label--checkbox a {
  color: var(--WHITE, #fff);
  text-decoration: underline;
}
.register__label--checkbox::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid var(--WHITE, #fff);
  border-radius: 4px;
  background: transparent;
}
.register__label--checkbox::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 45%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--WHITE, #fff);
  border-bottom: 2px solid var(--WHITE, #fff);
  opacity: 0;
}
.register__checkbox:checked + .register__label--checkbox::after {
  opacity: 1;
}
.register__row--switch {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 40px;
  overflow: hidden;
  width: fit-content;
  margin-bottom: 60px;
}
.register__switch-input {
  display: none;
}
.register__switch-label {
  text-align: center;
  color: var(--BROWN-LIGHT, #b1967e);
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  border-radius: 30px;
}
.register__switch-input:checked + .register__switch-label {
  background: var(--PURPLE, #994daf);
  color: var(--WHITE, #fff);
}
.register__error {
  color: var(--RED, #e04f4f);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 0.4rem;
  text-align: center;
}
@media (max-width: 767px) {
  .register .register__form {
    max-width: 100%;
    padding: 0 30px;
  }
  .register .register__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-width: 100%;
  }
  .register .register__label {
    flex: 0 0 auto;
    width: 100%;
    text-align: left;
  }
  .register .register__input,
  .register .register select.register__input {
    width: 100%;
    text-align: left;
  }
  .register .register__row--name .register__input {
    width: 100%;
  }
  .register .register__row--switch {
    margin: 0 auto 40px;
  }
}
@media (min-width: 768px) {
  .register .register__label {
    flex: 0 0 125px;
  }
  .register .register__input {
    width: 392px;
  }
  .register .register__row--name .register__input {
    width: 186px;
  }
  .register .register__row--switch {
    margin-bottom: 60px;
  }
}

.agenda {
  position: relative;
  padding: 190px 10px;
}
@media (max-width: 1023px) {
  .agenda {
    padding: 190px 0 100px;
  }
}
.agenda__wrapper {
  margin: 0 auto;
  position: relative;
}
.agenda__bg-text {
  position: absolute;
  color: var(--WHITE, #fff);
  top: 0;
  z-index: 1;
  opacity: 0.07;
  font-size: 10rem;
  font-weight: 500;
  left: -10px;
}
@media (width >= 1024px) {
  .agenda__bg-text {
    left: -30px;
    font-size: 22rem;
    font-weight: 500;
  }
}
.agenda__bg-img2 {
  position: absolute;
  top: 95px;
  left: 0;
}
@media (width < 1024px) {
  .agenda__bg-img2 {
    top: -300px;
    left: -50px;
  }
}
.agenda {
  --time-col: 180px;
  --sep-w: 2px;
  --radius: 6px;
}
.agenda__switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  border: 1px solid var(--BROWN-LIGHT, #b1967e);
  border-radius: 40px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 60px;
}
.agenda__switch-input {
  display: none;
}
.agenda__switch-label {
  text-align: center;
  color: var(--BROWN-LIGHT, #b1967e);
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 10px;
  border-radius: 30px;
}
.agenda__switch-label span {
  font-weight: 700;
}
.agenda__switch-input:checked + .agenda__switch-label {
  background: var(--PURPLE, #994daf);
  color: var(--WHITE, #fff);
}
@media (max-width: 1024px) {
  .agenda__switch {
    margin: 0 auto 40px;
  }
}
@media (min-width: 1024px) {
  .agenda__switch {
    display: none;
  }
}
.agenda__wrap {
  position: relative;
  overflow-x: auto;
  max-width: 1280px;
  margin: 0 auto;
  overscroll-behavior-x: contain;
}
.agenda__wrap::before, .agenda__wrap::after {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 0;
  width: var(--sep-w);
  pointer-events: none;
}
.agenda__wrap::before {
  background: linear-gradient(0deg, rgba(39, 130, 172, 0) 0%, var(--BLUE, #2782ac) 100%);
}
.agenda__wrap::after {
  background: linear-gradient(0deg, rgba(153, 77, 175, 0) 0%, var(--PURPLE, #994daf) 100%);
}
.agenda__head {
  display: grid;
  grid-template-columns: var(--time-col) 1fr 1fr;
  align-items: end;
  justify-content: flex-start;
  gap: 0;
  min-width: 720px;
}
.agenda__head-col {
  text-align: left;
  font-size: 3.2rem;
  font-weight: 400;
  margin: 0 0 40px 40px;
}
.agenda__head-col--a {
  color: var(--BLUE, #2782ac);
}
.agenda__head-col--a span {
  font-weight: 700;
}
.agenda__head-col--b {
  color: var(--PURPLE, #994daf);
}
.agenda__head-col--b span {
  font-weight: 700;
}
.agenda__list {
  display: grid;
  gap: 10px;
}
.agenda__row {
  display: grid;
  grid-template-columns: var(--time-col) 1fr 1fr;
  align-items: stretch;
  min-width: 720px;
}
.agenda__cell {
  font-size: 1.6rem;
  background: rgba(46, 38, 31, 0.75);
  padding: 12px 13px;
}
.agenda__cell--room {
  display: flex;
  gap: 40px;
  padding: 12px 40px;
}
.agenda__cell--time {
  border-top-left-radius: var(--radius);
  border-bottom-left-radius: var(--radius);
}
.agenda__time-title {
  color: var(--BROWN-LIGHT, #b1967e);
  font-weight: 400;
}
.agenda__room-desc {
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  font-weight: 400;
}
.agenda__cell-left {
  flex: 0 0 35%;
  max-width: 35%;
}
.agenda__cell-right {
  max-width: 65%;
  overflow: hidden;
}
.agenda__speaker {
  color: var(--BLUE, #2782ac);
  font-weight: 400;
  margin-bottom: 10px;
  text-wrap: nowrap;
}
.agenda__speaker-name {
  margin-top: 10px;
  color: var(--BROWN-LIGHT, #b1967e);
  font-weight: 700;
  text-wrap: nowrap;
}
.agenda__speaker-desc {
  color: var(--BROWN, #8d6a4b);
  font-weight: 400;
  margin-bottom: 10px;
}
.agenda__time-hours {
  color: var(--BROWN-MEDIUM-LIGHT, #c8b7a7);
  font-weight: 700;
}
.agenda__cell--b {
  border-top-right-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
}
@media (width >= 1024px) {
  .agenda__cell--b {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1024px) {
  .agenda__switch {
    display: none;
  }
  .agenda__wrap::before {
    left: var(--time-col);
  }
  .agenda__wrap::after {
    left: calc(var(--time-col) + (100% - var(--time-col)) / 2);
  }
  .agenda__head {
    display: grid;
  }
}
@media (max-width: 1024px) {
  .agenda__head {
    display: none;
  }
  .agenda__wrap::before {
    left: 0;
  }
  .agenda__wrap::after {
    left: var(--time-col);
  }
  .agenda .agenda__list.show-a .agenda__cell--b {
    display: none;
  }
  .agenda .agenda__list.show-b .agenda__cell--a {
    display: none;
  }
  .agenda__row {
    grid-template-columns: var(--time-col) 1fr;
  }
  .agenda__cell--time {
    border-radius: var(--radius) 0 0 var(--radius);
  }
  .agenda__cell--a, .agenda__cell--b {
    border-radius: 0 var(--radius) var(--radius) 0;
  }
}

/* Przyklejony switch */
.agenda__switch-spacer {
  display: none;
}

.agenda__switch.is-fixed {
  transition: top 0.2s ease;
}

.agenda__switch.is-fixed + .agenda__switch-spacer {
  display: block;
}

.agenda__switch.is-fixed {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  text-wrap: nowrap;
  z-index: 30;
  display: inline-flex;
  justify-content: center;
  background: black;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.agenda__cell--b .agenda__speaker {
  color: var(--PURPLE, #994daf);
}

:root {
  color-scheme: light;
  --BROWN-ULTRA-DARK: #2e261f;
  --brown-ultra-dark: #2e261f;
  --BROWN-ULTRA-LIGHT: #dacdc3;
  --brown-ultra-light: #dacdc3;
  --brown-medium-light: #c8b7a7;
  --brown-light: #b1967e;
  --purple: #994daf;
  --blue: #2782ac;
  --BLACK: #000;
  --black: #000;
  --white: #fff;
  --brown: #8d6a4b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: Roboto, sans-serif;
  font-size: 1.6rem;
  line-height: normal;
  color: var(--white);
  font-style: normal;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

ul li {
  padding: 0;
  margin: 0;
  font-style: normal;
  list-style: none;
}