/* Local fonts */
@font-face {
  font-family: "Onest";
  src: url("../fonts/Onest-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Zen Dots";
  src: url("../fonts/ZenDots-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Reset and base styles */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type=file] {
  max-width: 100%;
}

/* Base styles */
html {
  scroll-behavior: smooth;
  /* Prevent zoom on iOS */
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Fix for iOS Safari viewport issues */
  height: 100%;
  height: -webkit-fill-available;
}

body {
  min-width: 375px;
  margin: 0;
  color: #111;
  background: #fff;
  font-family: "Onest", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* Fix for iOS Safari viewport issues */
  min-height: 100%;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

/* Main content - no padding needed for sticky header */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 75px;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (max-width: 1440px) {
  .container {
    padding: 0 55px;
  }
}
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

.overflow-hidden {
  overflow: hidden;
}

a,
button,
input,
textarea,
div {
  -webkit-tap-highlight-color: transparent;
}

/* Form Styles */
.form__group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .form__group::after {
    right: 8px;
    width: 16px;
    height: 16px;
  }
}
.form__group::after {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  content: "";
  transition: opacity 0.3s ease;
  pointer-events: none;
  opacity: 0;
  background-repeat: no-repeat;
  background-size: contain;
}
.form__group.form__group-input::before {
  position: absolute;
  left: 0;
  content: "*";
  color: #ff383b;
  z-index: 1;
}
.form__group.form__group--success::after {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='20,6 9,17 4,12'%3e%3c/polyline%3e%3c/svg%3e");
}
.form__group.form__group--error::after {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23e74c3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cline x1='18' y1='6' x2='6' y2='18'%3e%3c/line%3e%3cline x1='6' y1='6' x2='18' y2='18'%3e%3c/line%3e%3c/svg%3e");
}
.form__group--full {
  grid-column: 1/-1;
}

.form__label {
  position: relative;
  color: #453c69;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.form__label::before {
  margin-right: 4px;
  content: "*";
  color: #ff383b;
}
.form__label.form__label--optional::after {
  display: none;
}

.form__input,
.form__textarea {
  position: relative;
  width: 100%;
  padding: 0 40px 12px 19px;
  transition: all 0.3s ease;
  color: #333;
  border: none;
  border-bottom: 2px solid #8f8aa5;
  border-radius: 0;
  background-color: transparent;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  margin-bottom: 28px;
}
@media (max-width: 1024px) {
  .form__input,
  .form__textarea {
    padding: 0 40px 10px 19px;
    font-size: 14px;
  }
}
.form__input:focus,
.form__textarea:focus {
  border-bottom-color: #453c69;
  outline: none;
}
.form__input::-moz-placeholder, .form__textarea::-moz-placeholder {
  color: #b2b2b2;
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: #b2b2b2;
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form__row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__section-title {
  padding-bottom: 16px;
  color: #453c69;
  border-bottom: 1px solid rgba(69, 60, 105, 0.1);
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .form__section-title {
    font-size: 18px;
  }
}

.form__group-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.form__group-descr {
  color: rgba(69, 60, 105, 0.7);
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  margin: 0;
}
@media (max-width: 768px) {
  .form__group-descr {
    font-size: 12px;
  }
}

/* File Upload Styles */
.form__file-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}
@media (max-width: 768px) {
  .form__file-upload {
    gap: 12px;
  }
}

.form__file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.form__file-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(69, 60, 105, 0.3);
}
.form__file-input-wrapper:focus-within {
  border-bottom-color: #453c69;
}

.form__file-display {
  display: flex;
  width: 100%;
  flex-direction: column;
  min-height: 20px;
  gap: 10px;
}

.form__file-list {
  max-width: 313px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 768px) {
  .form__file-list {
    max-width: 250px;
  }
}

.form__file-item {
  display: flex;
  align-items: center;
  padding: 4px 0;
  gap: 8px;
}

.form__file-item-name {
  overflow: hidden;
  flex: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #453c69;
  font-size: 16px;
}
@media (max-width: 768px) {
  .form__file-item-name {
    font-size: 14px;
  }
}

.form__file-item-remove {
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 20px;
  height: 20px;
}

.form__file-placeholder {
  display: flex;
  align-items: center;
  min-height: 20px;
}

.form__file-placeholder-text {
  color: rgba(69, 60, 105, 0.5);
  font-size: 16px;
}
.form__file-placeholder-text::before {
  margin-right: 12px;
  content: "*";
  color: #ff383b;
}
@media (max-width: 768px) {
  .form__file-placeholder-text {
    font-size: 14px;
  }
}

.form__file-attach-btn {
  bottom: 10px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 32px;
  padding: 16px 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 300px;
  background-color: #f88532;
}
@media (any-hover: hover) {
  .form__file-attach-btn:hover:not(:disabled) {
    color: #fff;
    background-color: #f0a450;
  }
}
.form__file-attach-btn:active:not(:disabled) {
  background-color: #e2783a;
}
.form__file-attach-btn:disabled {
  background-color: #999;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .form__file-attach-btn {
    height: 28px;
    padding: 14px 17px;
  }
}

.form__file-hint {
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 118%;
}
@media (max-width: 768px) {
  .form__file-hint {
    font-size: 10px;
  }
}

/* Checkbox Styles */
.form__checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #4c4c4c;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
  gap: 8px;
}
@media (max-width: 768px) {
  .form__checkbox-label {
    gap: 12px;
    font-size: 12px;
  }
}

.form__checkbox {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.form__checkbox-custom {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  border: 1px solid #b2b2b2;
  border-radius: 4px;
}
.form__checkbox-custom::after {
  width: 16px;
  height: 16px;
  content: "";
  transition: opacity 0.3s ease;
  flex-shrink: 0;
  opacity: 0;
  background-image: url("../img/ic_check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.form__checkbox:checked + .form__checkbox-custom {
  border-color: #ed8d48;
  background-color: #ed8d48;
}
.form__checkbox:checked + .form__checkbox-custom::after {
  opacity: 1;
}

.form__checkbox-text {
  flex: 1;
}

.form__link {
  text-decoration: underline;
  color: #453c69;
}
@media (any-hover: hover) {
  .form__link:hover {
    text-decoration: none;
  }
}

/* Radio Button Styles */
.form__radio-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  gap: 8px;
  padding: 0 0 0 2px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .form__radio-label {
    gap: 12px;
    font-size: 14px;
    padding: 3px 12px 3px 0;
  }
}

.form__radio {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
}

.form__radio-custom {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.form__radio-custom::after {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.form__radio:checked + .form__radio-custom {
  border: 6px solid #ed8d48;
}
.form__radio:checked + .form__radio-custom::after {
  transform: scale(1);
}

.form__radio-text {
  flex: 1;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #453c69;
  /* Fallback for older browsers */
}
@supports not (position: sticky) {
  .header {
    position: fixed;
    top: 0;
  }
}

.header__inner {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 93px;
  background: #453c69;
  gap: clamp(10px, 10px + (30) * (100vw - 1024px) / (416), 40px);
}

.header__logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  flex-direction: column;
  width: 129px;
  height: 27px;
  gap: 6px;
}

.logo__image,
.logo__subtitle {
  display: block;
  max-width: 100%;
  height: auto;
}

.nav--desktop {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .nav--desktop {
    display: none;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0px, 0px + (20) * (100vw - 1024px) / (416), 20px);
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  transition: background-color 0.3s ease;
  text-decoration: none;
  color: #fff;
  border-radius: 17px;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  padding-left: clamp(15px, 15px + (11) * (100vw - 1024px) / (416), 26px);
  padding-right: clamp(15px, 15px + (11) * (100vw - 1024px) / (416), 26px);
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: #f0a450;
  }
}
.nav__link:active {
  color: #ed8d48;
}

.social--desktop {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: clamp(0px, 0px + (72) * (100vw - 1440px) / (480), 72px);
}
@media (max-width: 1024px) {
  .social--desktop {
    display: none;
  }
}

.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: white;
}
@media (any-hover: hover) {
  .social__link:hover {
    color: #f0a450;
  }
}
.social__link:active {
  color: #ed8d48;
}

/* Burger Menu */
.burger {
  z-index: 101;
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 32px;
  padding: 4px 1px;
  cursor: pointer;
  border: none;
  background: transparent;
}
@media (max-width: 1024px) {
  .burger {
    display: flex;
  }
}

.burger__line {
  width: 30px;
  height: 3px;
  transition: all 0.3s ease;
  border-radius: 2px;
  background: #fff;
}

.burger--active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(7.5px, 7.5px) scale(1.37);
}

.burger--active .burger__line:nth-child(2) {
  opacity: 0;
}

.burger--active .burger__line:nth-child(3) {
  transform: rotate(-45deg) translate(7.5px, -7.5px) scale(1.37);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  z-index: 99;
  top: 100%;
  right: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  width: 297px;
  padding: 40px 20px;
  transition: all 0.3s ease;
  transform: translateY(-100%);
  opacity: 0;
  border-radius: 0 0 0 20px;
  background: #453c69;
  gap: 38px;
}

.mobile-menu--active {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.mobile-menu__item {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-menu__item:first-child {
  padding: 0 0 10px;
}
.mobile-menu__item:last-child {
  padding: 10px 0 0;
  border-bottom: none;
}

.mobile-menu__link {
  padding: 10px 0;
  text-align: right;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
.mobile-menu__link:active {
  color: #ed8d48;
}

.mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 32px;
  padding: 10px;
  gap: 20px;
}

.mobile-menu__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: white;
}
.mobile-menu__social-link:active {
  color: #ed8d48;
}

/* Hero Styles */
.hero {
  position: relative;
  display: flex;
  min-height: clamp(800px, 800px + (180) * (100vw - 1024px) / (896), 980px);
  padding: 60px 0 85px;
  background-image: url("../img/hero-banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .hero {
    min-height: unset;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 40px 0 100px;
  }
}
.hero::before {
  position: absolute;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  inset: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-content: space-between;
  gap: 20px;
  grid-template-columns: 1fr clamp(390px, 390px + 37 * (100vw - 1024px) / 176, 427px);
  grid-template-areas: "content sidebar" "content cta";
}
@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "sidebar" "content" "cta";
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    gap: 28px;
  }
}

.hero__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  grid-area: content;
}
@media (max-width: 1024px) {
  .hero__content {
    width: 100%;
    min-height: auto;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    gap: 27px;
  }
}

.hero__title {
  width: 286px;
  margin: 0;
  color: #ffffff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1024px) {
  .hero__title {
    width: 100%;
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 20px;
  }
}

.hero__main {
  margin-top: auto;
}

.hero__subtitle {
  margin: 0;
  letter-spacing: -0.98px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(56px, 56px + (42) * (100vw - 1024px) / (896), 98px);
}
@media (max-width: 1024px) {
  .hero__subtitle {
    letter-spacing: -0.6px;
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero__subtitle {
    letter-spacing: unset;
    font-size: 30px;
  }
}

.hero__sidebar {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-self: flex-end;
  width: clamp(390px, 390px + (37) * (100vw - 1024px) / (176), 427px);
  height: 100%;
  padding-bottom: 15px;
  grid-area: sidebar;
}
@media (max-width: 1024px) {
  .hero__sidebar {
    width: 100%;
    max-width: 80vw;
    justify-self: center;
    min-height: auto;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .hero__sidebar {
    max-width: 100%;
  }
}

.hero__info-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 6px 6px 12px 0 rgba(0, 0, 0, 0.25);
  gap: 20px;
  backdrop-filter: blur(5px);
}
@media (max-width: 1024px) {
  .hero__info-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .hero__info-card > :nth-child(1) {
    grid-area: 2/1/2/3;
  }
  .hero__info-card > :nth-child(2) {
    grid-area: 1/2/1/3;
  }
  .hero__info-card > :nth-child(3) {
    grid-area: 1/1/1/2;
  }
}

/* Countdown Timer */
.countdown {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d0e6ff;
  background: linear-gradient(122deg, rgba(69, 60, 105, 0) 50.11%, rgba(69, 60, 105, 0.2) 100%), #d0e6ff;
  backdrop-filter: blur(2px);
  gap: 10px;
}
@media (max-width: 768px) {
  .countdown {
    padding: 10px;
  }
}

.countdown__title {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
  color: #453c69;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 1024px) {
  .countdown__title br {
    display: none;
  }
}
@media (max-width: 768px) {
  .countdown__title {
    font-size: 14px;
    line-height: 120%;
  }
}

.countdown__timer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1024px) {
  .countdown__timer {
    justify-content: center;
    gap: 16px;
  }
}

.countdown__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.countdown__number {
  white-space: nowrap;
  color: #453c69;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .countdown__number {
    font-size: 42px;
    line-height: 100%;
  }
}

.countdown__label {
  white-space: nowrap;
  color: #453c69;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .countdown__label {
    font-size: 12px;
    line-height: 118%;
  }
}

.countdown__separator {
  display: flex;
  align-items: flex-start;
  flex: 1;
  justify-content: center;
  text-align: center;
  color: #453c69;
  font-family: "Zen Dots", sans-serif;
  font-size: 36px;
  line-height: 118%;
  animation: blink 2s ease-in-out infinite;
}
@media (max-width: 1024px) {
  .countdown__separator {
    flex: 0;
  }
}

/* Event Info */
.event-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.event-info__item {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #d0e6ff;
  background: linear-gradient(122deg, rgba(69, 60, 105, 0) 50.11%, rgba(69, 60, 105, 0.2) 100%), #d0e6ff;
  backdrop-filter: blur(2px);
  gap: 10px;
}
@media (max-width: 1024px) {
  .event-info__item:last-child {
    display: none;
  }
}
@media (max-width: 768px) {
  .event-info__item {
    justify-content: flex-end;
    padding: 10px;
    gap: 4px;
  }
}
.event-info__item--large {
  flex: 1;
}

.event-info__content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 100%;
}

.event-info__content-end-date {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
}

.event-info__date {
  color: #453c69;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .event-info__date {
    font-size: 26px;
    line-height: 110%;
  }
}

.event-info__meta {
  color: #7d7796;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .event-info__meta {
    font-size: 12px;
    line-height: 118%;
  }
}

.event-info__label {
  color: #453c69;
  font-size: 16px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .event-info__label {
    font-size: 14px;
    line-height: 120%;
  }
}

/* Location */
.location {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  padding: 10px 10px 10px 0;
  border: 1px solid #d0e6ff;
  background: linear-gradient(122deg, rgba(69, 60, 105, 0) 50.11%, rgba(69, 60, 105, 0.2) 100%), #d0e6ff;
  backdrop-filter: blur(2px);
  border-radius: 10px;
  gap: 20px;
}
@media (max-width: 768px) {
  .location {
    align-items: flex-end;
    padding: 10px;
    gap: 4px;
  }
}

.location__content {
  display: flex;
  align-items: flex-start;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}
@media (max-width: 768px) {
  .location__content {
    padding: 0;
  }
}

.location__name {
  white-space: nowrap;
  color: #453c69;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 768px) {
  .location__name {
    font-size: 26px;
    line-height: 110%;
  }
}

.location__address {
  min-width: 100%;
  color: #7d7796;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .location__address {
    font-size: 12px;
    line-height: 118%;
  }
}

.location__image {
  width: 174px;
}
@media (max-width: 1024px) {
  .location__image {
    display: none;
  }
}

.location__img {
  width: 100%;
  border-radius: 10px;
  background: #d0e6ff;
  -o-object-fit: cover;
     object-fit: cover;
  backdrop-filter: blur(2px);
}

/* CTA Button */
.hero__cta {
  display: flex;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  width: 100%;
  height: 42px;
  margin-bottom: 15px;
  padding: 10px 32px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  color: #ffffff;
  border: none;
  border-radius: 300px;
  background: #f88532;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
  grid-area: cta;
}
@media (max-width: 768px) {
  .hero__cta {
    height: 32px;
    margin-top: 13px;
    padding: 10px 26px;
    font-size: 16px;
    line-height: 110%;
  }
}
.hero__cta:hover {
  background: #e6762d;
}
.hero__cta:active {
  background: #d4681f;
}

/* Countdown separator blinking animation */
@keyframes blink {
  0%, 40% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  60%, 100% {
    opacity: 1;
  }
}
/* Footer */
.footer {
  padding: 20px 0;
  background: #383156;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 95px;
}
@media (max-width: 1024px) {
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .footer__inner {
    gap: 20px;
  }
}

.footer__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 129px;
  height: 27px;
}

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

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__link {
  display: flex;
  align-items: center;
  padding: 0;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: #ffffff;
  border-radius: 17px;
  gap: 10px;
}
@media (any-hover: hover) {
  .footer__link:hover {
    opacity: 0.8;
  }
}
.footer__link:active {
  opacity: 0.6;
}

.footer__link-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.footer__link-text {
  white-space: nowrap;
  color: #ffffff;
  font-family: "Onest", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 118%;
}

/* Info Section */
.info {
  display: flex;
  flex-direction: column;
}

.info__inner {
  background: #fff;
}

.info__row-top {
  position: relative;
  z-index: 1;
  height: 480px;
}
@media (max-width: 1024px) {
  .info__row-top {
    height: auto;
  }
}

.info__row-top-content {
  display: flex;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
  padding-left: clamp(0px, 0px + (480) * (100vw - 1440px) / (480), 480px);
}

.info__bg-image-wrap {
  background: #d0e6ff url("../img/pattern-2.svg") left center/cover no-repeat;
  width: clamp(720px, 720px + (-240) * (100vw - 1440px) / (480), 480px);
}
@media (max-width: 1024px) {
  .info__bg-image-wrap {
    display: none;
  }
}

.info__about-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 75px 60px 275px;
  background: #453c69;
  gap: 10px;
  width: clamp(720px, 720px + (240) * (100vw - 1440px) / (480), 960px);
  padding-left: clamp(66px, 66px + (209) * (100vw - 1440px) / (480), 275px);
}
@media (max-width: 1024px) {
  .info__about-content {
    justify-content: flex-start;
    width: 100%;
    padding: 60px 20px 100px 20px;
    gap: 38px;
  }
}

.info__about-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info__about-content-arrow {
  display: none;
}
@media (max-width: 1024px) {
  .info__about-content-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    width: 20px;
    height: 24px;
  }
}

.info__title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .info__title {
    font-size: 20px;
    line-height: 120%;
  }
}

.info__subtitle {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .info__subtitle {
    font-size: 30px;
    line-height: 100%;
  }
}

.info__row-middle {
  display: flex;
  height: 480px;
  background: #d0e6ff;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (max-width: 1024px) {
  .info__row-middle {
    flex-direction: column;
    height: auto;
  }
}

.info__goal-image {
  flex-shrink: 0;
  width: 480px;
}
@media (max-width: 1024px) {
  .info__goal-image {
    width: 100%;
  }
}

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

.info__goal-content {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 960px;
  padding: 60px 75px;
  background: #ed8d48;
}
@media (max-width: 1024px) {
  .info__goal-content {
    align-items: flex-start;
    max-width: 100%;
    height: auto;
    padding: 60px 20px;
    gap: 60px;
  }
}

.info__goal-title {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .info__goal-title {
    font-size: 30px;
    line-height: 100%;
  }
}

.info__description {
  max-width: 546px;
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .info__description {
    font-size: 16px;
    line-height: 110%;
  }
}

/* Schedule Section */
.schedule {
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
.schedule__inner {
  display: flex;
  width: 100%;
}
@media (max-width: 1024px) {
  .schedule__inner {
    flex-direction: column;
    min-height: auto;
  }
}
.schedule__day {
  position: relative;
  display: flex;
  overflow: hidden;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 90px 75px;
}
@media (max-width: 1440px) {
  .schedule__day {
    padding: 60px 55px;
  }
}
@media (max-width: 1024px) {
  .schedule__day {
    min-height: 50vh;
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .schedule__day {
    min-height: auto;
    padding: 40px 20px 60px;
  }
}
.schedule__day--light {
  color: #453c69;
  background-color: #d0e6ff;
}
.schedule__day--dark {
  color: #ffffff;
  background-color: #453c69;
}
.schedule__day-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 150px;
}
@media (max-width: 1024px) {
  .schedule__day-content {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .schedule__day-content {
    gap: 100px;
  }
}
.schedule__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.schedule__date {
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .schedule__date {
    font-size: 20px;
  }
}
.schedule__event {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1440px) {
  .schedule__event {
    font-size: 42px;
  }
  .schedule__event br {
    display: none;
  }
}
@media (max-width: 1024px) {
  .schedule__event {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .schedule__event {
    font-size: 30px;
  }
}
.schedule__event p {
  margin: 0;
}
.schedule__timeline {
  display: flex;
  flex-direction: column;
  padding-left: 75px;
  gap: 20px;
}
@media (max-width: 1440px) {
  .schedule__timeline {
    padding-left: 55px;
  }
}
@media (max-width: 1024px) {
  .schedule__timeline {
    padding-left: 0;
  }
}
.schedule__time-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
  gap: 20px;
}
.schedule__time {
  flex-shrink: 0;
  width: 128px;
}
.schedule__description {
  flex-shrink: 0;
  width: 363px;
}
@media (max-width: 1024px) {
  .schedule__description {
    flex: 1;
    width: auto;
  }
}
.schedule__bg-image {
  position: absolute;
  z-index: 1;
  right: 75px;
  bottom: 75px;
}
@media (max-width: 1440px) {
  .schedule__bg-image {
    right: 55px;
    bottom: 55px;
  }
}
@media (max-width: 1024px) {
  .schedule__bg-image {
    right: 20px;
    bottom: 20px;
    opacity: 0.3;
  }
}
.schedule__bg-image--1 {
  background-image: url("../img/number-one.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 248/480;
  width: clamp(197px, 197px + (51) * (100vw - 1025px) / (415), 248px);
}
@media (max-width: 1024px) {
  .schedule__bg-image--1 {
    width: clamp(150px, 150px + (98) * (100vw - 375px) / (649), 248px);
  }
}
.schedule__bg-image--2 {
  max-width: 502px;
  background-image: url("../img/number-two.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 502/449;
  width: clamp(400px, 400px + (102) * (100vw - 1025px) / (415), 502px);
}
@media (max-width: 1024px) {
  .schedule__bg-image--2 {
    width: clamp(300px, 300px + (202) * (100vw - 375px) / (649), 502px);
  }
}

/* Title Section */
.title-section {
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
  scroll-margin-top: 93px;
  display: flex;
  padding: 60px 75px 300px 75px;
  align-items: flex-start;
  gap: 10px;
  justify-content: space-between;
}
@media (max-width: 1440px) {
  .title-section {
    padding: 60px 55px 200px 55px;
  }
}
@media (max-width: 1024px) {
  .title-section {
    gap: 38px;
  }
}
@media (max-width: 768px) {
  .title-section {
    padding: 60px 20px 100px 20px;
  }
}
.title-section.title-section-3 {
  padding-bottom: 185px;
}
@media (max-width: 1440px) {
  .title-section.title-section-3 {
    padding-bottom: 150px;
  }
}
@media (max-width: 1024px) {
  .title-section.title-section-3 {
    padding-bottom: 136px;
  }
}
@media (max-width: 1024px) {
  .title-section.title-section-4 {
    padding-bottom: 100px;
  }
}

.title-section__content {
  display: flex;
  width: 576px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
@media (max-width: 1440px) {
  .title-section__content {
    width: 599px;
  }
}
@media (max-width: 1024px) {
  .title-section__content {
    width: 100%;
  }
}

.title-section__content-arrow {
  padding-top: 10px;
  width: 132px;
}
@media (max-width: 1440px) {
  .title-section__content-arrow {
    width: 93px;
  }
}
@media (max-width: 1024px) {
  .title-section__content-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    width: 20px;
    height: 24px;
  }
}

.title-section__title {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .title-section__title {
    font-size: 20px;
    line-height: 120%;
  }
}

.title-section__subtitle {
  color: #453c69;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .title-section__subtitle {
    font-size: 30px;
    line-height: 100%;
  }
}

/* Details Section */
.details {
  background-color: #453c69;
  color: #ffffff;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
  padding: 90px 75px;
}
@media (max-width: 1440px) {
  .details {
    padding: 60px 55px;
  }
}
@media (max-width: 1024px) {
  .details {
    padding: 60px 20px;
  }
}
@media (max-width: 768px) {
  .details {
    padding: 40px 20px 60px;
  }
}

.details__inner {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media (max-width: 1440px) {
  .details__inner {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .details__inner {
    gap: 60px;
  }
}

.details__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.details__subtitle {
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
}
@media (max-width: 768px) {
  .details__subtitle {
    font-size: 20px;
  }
}

.details__main-title {
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .details__main-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .details__main-title {
    font-size: 30px;
  }
}

.details__accordion {
  display: flex;
  flex-direction: column;
  padding: 40px 75px 60px;
  gap: 60px;
}
@media (max-width: 1440px) {
  .details__accordion {
    padding: 40px 0 60px;
  }
}
@media (max-width: 1024px) {
  .details__accordion {
    padding: 40px 0 60px;
  }
}
@media (max-width: 768px) {
  .details__accordion {
    padding: 0;
  }
}

.details__accordion-item {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.details__accordion-item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.details__accordion-header {
  display: grid;
  align-items: start;
  gap: 20px;
  width: 100%;
}
@media (max-width: 1024px) {
  .details__accordion-header {
    gap: 10px;
  }
}
.details__accordion-item--expanded .details__accordion-header {
  grid-template-columns: 3.63fr 6.8fr 1fr;
}
@media (max-width: 1024px) {
  .details__accordion-item--expanded .details__accordion-header {
    grid-template-columns: 1fr 54px;
    grid-template-areas: "info toggle" "content content";
    row-gap: 60px;
  }
}
.details__accordion-item:not(.details__accordion-item--expanded) .details__accordion-header {
  grid-template-columns: 3fr 1fr;
}
@media (max-width: 1024px) {
  .details__accordion-item:not(.details__accordion-item--expanded) .details__accordion-header {
    grid-template-columns: 1fr 54px;
    grid-template-areas: "info toggle";
  }
}

.details__section-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1024px) {
  .details__section-info {
    flex: 1;
    min-width: 0;
    grid-area: info;
  }
}

.details__section-number {
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
}
@media (max-width: 768px) {
  .details__section-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 110%;
  }
}

.details__section-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 110%;
}
@media (max-width: 768px) {
  .details__section-title {
    font-size: 20px;
    line-height: 120%;
  }
}
.details__accordion-item:not(.details__accordion-item--expanded) .details__section-title {
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .details__accordion-item:not(.details__accordion-item--expanded) .details__section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .details__accordion-item:not(.details__accordion-item--expanded) .details__section-title {
    font-size: 20px;
    line-height: 120%;
  }
}

.details__section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0 0 726px;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .details__section-content {
    flex: 1;
    min-width: 0;
    grid-area: content;
  }
}
@media (max-width: 768px) {
  .details__accordion-item--expanded .details__section-content {
    width: 100%;
  }
}
.details__accordion-item:not(.details__accordion-item--expanded) .details__section-content {
  display: none;
}

.details__content-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
}
@media (max-width: 768px) {
  .details__content-item p {
    font-size: 14px;
  }
}

.details__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1024px) {
  .details__toggle {
    grid-area: toggle;
  }
}

.details__toggle-btn {
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 300px;
  height: 32px;
  padding: 16px 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .details__toggle-btn {
    height: 28px;
    padding: 11px 18px;
  }
}
@media (any-hover: hover) {
  .details__toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.details__toggle-btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.details__toggle-icon {
  width: 20px;
  height: 20px;
  display: block;
}
@media (max-width: 1024px) {
  .details__toggle-icon {
    width: 16px;
    height: 16px;
  }
}

/* Registration Section */
.participate {
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
  display: flex;
  min-height: 900px;
}

.participate__inner {
  display: flex;
  width: 100%;
}
@media (max-width: 1024px) {
  .participate__inner {
    flex-direction: column;
  }
}

/* Left column */
.participate__conditions {
  display: flex;
  padding: 0 94px 0 75px;
  padding-right: clamp(55px, 55px + (39) * (100vw - 1440px) / (480), 94px);
  background-color: #d0e6ff;
}
@media (max-width: 1440px) {
  .participate__conditions {
    flex: 1;
    padding: 0 55px;
    padding-right: clamp(10px, 10px + (45) * (100vw - 1024px) / (416), 55px);
  }
}
@media (max-width: 1024px) {
  .participate__conditions {
    padding: 60px 20px;
  }
}

.participate__conditions-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 768px) {
  .participate__conditions-header {
    flex-direction: column;
    gap: 20px;
  }
}

.participate__link {
  display: flex;
  height: 42px;
  padding: 5px 32px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  border-radius: 300px;
  border: 1px solid #453c69;
  background: rgba(255, 255, 255, 0.1);
  color: #453c69;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  transition: background-color 0.3s ease;
}
@media (max-width: 1200px) {
  .participate__link {
    height: 32px;
    padding: 4px 26px;
    border-radius: 17px;
    font-size: 16px;
    line-height: 110%;
  }
}
@media (max-width: 768px) {
  .participate__link {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .participate__link:hover {
    color: #7d7796;
    border-color: #7d7796;
    background: rgba(255, 255, 255, 0.1);
  }
}
.participate__link:active {
  color: #453c69;
  border-color: #453c69;
  background: rgba(69, 60, 105, 0.1);
}

.participate__conditions-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 40px 0 90px;
  gap: 131px;
}
@media (max-width: 1024px) {
  .participate__conditions-content {
    padding: 0;
    gap: 67px;
  }
}

.participate__title {
  display: flex;
  flex-direction: column;
  max-width: 576px;
  gap: 10px;
}

.participate__subtitle {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1440px) {
  .participate__subtitle {
    font-size: 20px;
    line-height: 120%;
  }
}

.participate__main-title {
  margin: 0;
  color: #453c69;
  font-size: clamp(42px, 42px + (22) * (100vw - 1440px) / (480), 64px);
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .participate__main-title {
    font-size: 30px;
  }
  .participate__main-title br {
    display: none;
  }
}

.participate__stats {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 1099px;
  gap: clamp(10px, 10px + (50) * (100vw - 1440px) / (480), 60px);
}
@media (max-width: 1550px) {
  .participate__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
@media (max-width: 1440px) {
  .participate__stats {
    -moz-column-gap: clamp(10px, 10px + (0) * (100vw - 1024px) / (416), 10px);
         column-gap: clamp(10px, 10px + (0) * (100vw - 1024px) / (416), 10px);
  }
}
@media (max-width: 1024px) {
  .participate__stats {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .participate__stats {
    display: flex;
    flex-direction: column;
    gap: 47px;
    padding-left: 58px;
  }
}

.participate__stat {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
}
.participate__stat:not(:first-child) {
  padding-left: clamp(10px, 10px + (50) * (100vw - 1440px) / (480), 60px);
  border-left: 1px solid rgba(69, 60, 105, 0.1);
}
@media (max-width: 1550px) {
  .participate__stat:not(:first-child) {
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 1550px) {
  .participate__stat:first-child {
    grid-column: span 2;
  }
}
@media (max-width: 1550px) {
  .participate__stat:last-child {
    padding-left: clamp(10px, 10px + (30) * (100vw - 1440px) / (110), 40px);
    border-left: 1px solid rgba(69, 60, 105, 0.1);
  }
}
@media (max-width: 1440px) {
  .participate__stat:last-child {
    padding-left: clamp(10px, 10px + (30) * (100vw - 1024px) / (416), 40px);
    border-left: 1px solid rgba(69, 60, 105, 0.1);
  }
}
@media (max-width: 768px) {
  .participate__stat:last-child {
    padding-left: 0;
    border-left: none;
  }
}
@media (max-width: 768px) {
  .participate__stat {
    gap: 14px;
  }
}

.participate__stat-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .participate__stat-header {
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
  }
}

.participate__stat-number {
  color: #453c69;
  font-size: 110px;
  font-weight: 600;
  line-height: 0.75;
}
@media (max-width: 1024px) {
  .participate__stat-number {
    font-size: 80px;
  }
}
@media (max-width: 768px) {
  .participate__stat-number {
    font-size: 64px;
  }
}

.participate__stat-label {
  color: #453c69;
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .participate__stat-label {
    width: 100px;
    font-size: 16px;
    line-height: 110%;
    text-transform: lowercase;
  }
}

.participate__stat-description p {
  margin: 0;
  color: #453c69;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .participate__stat-description p {
    font-size: 14px;
    line-height: 110%;
  }
  .participate__stat-description p br {
    display: none;
  }
}

.participate__scroll {
  scroll-margin-top: 92px;
}

/* Right column */
.participate__form {
  position: relative;
  display: flex;
  width: 652px;
  flex-shrink: 0;
  background-color: #453c69;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1440px) {
  .participate__form {
    width: clamp(500px, 500px + (152) * (100vw - 1024px) / (416), 652px);
  }
}
@media (max-width: 1024px) {
  .participate__form {
    width: 100%;
    padding: 60px 20px;
    justify-content: center;
  }
}

.participate__form-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-color: #453c69;
  z-index: -1;
}

.participate__form-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 900px;
  height: 100%;
  background: url("../img/pattern-2.svg") top right/cover no-repeat;
  transform: rotate(-90deg);
  transform-origin: center center;
}
@media (max-width: 1024px) {
  .participate__form-bg::before {
    background: url("../img/pattern-2.svg") center center/cover no-repeat;
    width: 100%;
    transform: none;
  }
}

.participate__form-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 79px 60px 90px 75px;
}
@media (max-width: 1440px) {
  .participate__form-content {
    padding-left: clamp(30px, 30px + (45) * (100vw - 1024px) / (416), 75px);
    padding-right: clamp(30px, 30px + (30) * (100vw - 1024px) / (416), 60px);
  }
}
@media (max-width: 1024px) {
  .participate__form-content {
    justify-content: center;
    max-width: 600px;
    padding: 0;
    gap: 100px;
  }
}

.participate__form-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 42px + (22) * (100vw - 1440px) / (480), 64px);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1024px) {
  .participate__form-title h2 {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .participate__form-title h2 {
    font-size: 30px;
  }
}

.participate__form-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .participate__form-bottom {
    gap: 20px;
  }
}

.participate__form-description p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1440px) {
  .participate__form-description p {
    font-size: 16px;
    line-height: 110%;
  }
}
@media (max-width: 768px) {
  .participate__form-description p {
    font-size: 16px;
  }
}

.participate__form-buttons {
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .participate__form-buttons {
    flex-direction: column;
    gap: 20px;
  }
}

.participate__form-btn {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  height: 42px;
  padding: 10px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 300px;
  background-color: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  line-height: 110%;
}
@media (max-width: 768px) {
  .participate__form-btn {
    height: 32px;
    padding: 6px 26px;
    font-size: 16px;
  }
}
@media (any-hover: hover) {
  .participate__form-btn:hover {
    background-color: #f88532;
  }
}
.participate__form-btn:active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* Modal Styles */
.modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .modal {
    min-width: 375px;
    inset: 0;
  }
}
.modal.modal--active {
  display: flex;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  overflow-y: auto;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  touch-action: none;
  overscroll-behavior: contain;
}
@media (max-width: 1024px) {
  .modal__overlay {
    padding: 0;
    inset: 0;
  }
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 1472px;
  max-height: 90dvh;
  background-color: #fff;
  box-shadow: 8px 8px 16px 0 rgba(0, 0, 0, 0.25);
  touch-action: auto;
}
@media (max-width: 1440px) {
  .modal__content {
    max-width: 1000px;
  }
}
@media (max-width: 1024px) {
  .modal__content {
    position: fixed;
    max-height: 100dvh;
    inset: 0;
  }
}

.modal__close {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #453c69;
  border: none;
  border-radius: 8px;
  background: none;
}
@media (max-width: 1024px) {
  .modal__close--desktop {
    display: none;
  }
}
.modal__close--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .modal__close--mobile {
    display: flex;
    top: 0;
    right: 0;
    width: 75px;
    height: 75px;
    color: #fff;
  }
  .modal__close--mobile svg {
    width: 24px;
    height: 24px;
  }
}
@media (any-hover: hover) {
  .modal__close:hover {
    background-color: rgba(69, 60, 105, 0.1);
  }
}

.modal__layout {
  display: flex;
}
@media (max-width: 1024px) {
  .modal__layout {
    flex-direction: column;
    min-height: 100%;
  }
}

.modal__sidebar {
  display: flex;
  width: 353px;
  padding: 60px 62px;
  background-color: #453c69;
}
@media (max-width: 1024px) {
  .modal__sidebar {
    width: 100%;
    padding: 75px 20px 60px;
  }
}
@media (max-width: 1024px) {
  .modal__sidebar {
    position: sticky;
    top: 0;
    padding: 35px 20px 20px;
    z-index: 10;
  }
}

.modal__sidebar-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__sidebar-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 768px) {
  .modal__sidebar-title {
    font-size: 26px;
  }
}

.modal__sidebar-subtitle {
  color: #fff;
  font-size: 26px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .modal__sidebar-subtitle {
    font-size: 20px;
  }
}

.modal__form-wrapper {
  overflow-y: auto;
  max-height: 90dvh;
  flex: 1;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1024px) {
  .modal__form-wrapper {
    max-height: 100dvh;
    padding-bottom: 60px;
  }
}

.modal__form {
  display: flex;
  flex-direction: column;
  padding: 75px 62px 60px 80px;
  gap: 40px;
}
@media (max-width: 1440px) {
  .modal__form {
    padding: 75px 55px 60px 75px;
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .modal__form {
    padding: 60px 20px 60px;
  }
}
.modal__form .form__input:-webkit-autofill, .modal__form .form__input:-webkit-autofill:hover, .modal__form .form__input:-webkit-autofill:focus, .modal__form .form__input:-webkit-autofill:active,
.modal__form .form__textarea:-webkit-autofill,
.modal__form .form__textarea:-webkit-autofill:hover,
.modal__form .form__textarea:-webkit-autofill:focus,
.modal__form .form__textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #333 !important;
  background-color: #fff !important;
  border-bottom: 2px solid #453c69 !important;
  -webkit-transition: color, background-color 5000s ease-in-out 0s;
  transition: color, background-color 5000s ease-in-out 0s;
}
.modal__form .form__input:-webkit-autofill:focus,
.modal__form .form__textarea:-webkit-autofill:focus {
  border-bottom-color: #453c69 !important;
}
.modal__form .form__input:-moz-autofill,
.modal__form .form__textarea:-moz-autofill {
  background-color: #fff !important;
  color: #333 !important;
}
.modal__form .form__input:-webkit-autofill, .modal__form .form__textarea:-webkit-autofill {
  background-color: #fff !important;
  color: #333 !important;
}
.modal__form .form__input:autofill,
.modal__form .form__textarea:autofill {
  background-color: #fff !important;
  color: #333 !important;
}

.modal__form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 50px + (60) * (100vw - 1440px) / (480), 110px);
}
@media (max-width: 1440px) {
  .modal__form-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.modal__form-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .modal__form-col {
    gap: 15px;
  }
}

.modal__form-col--right {
  gap: 40px;
}

.modal__form-section-title {
  padding-bottom: 16px;
  color: #453c69;
  border-bottom: 1px solid rgba(69, 60, 105, 0.1);
  font-size: 20px;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: 768px) {
  .modal__form-section-title {
    font-size: 18px;
  }
}

.modal__form-group-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.modal__form-group-descr {
  color: #808080;
  font-size: 12px;
  font-weight: 400;
  line-height: 118%;
}

.modal__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .modal__form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.modal__form-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 50px + (60) * (100vw - 1440px) / (480), 110px);
  padding-top: 40px;
  border-top: 1px solid rgba(69, 60, 105, 0.1);
}
@media (max-width: 1440px) {
  .modal__form-footer {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    padding-top: 25px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .modal__form-footer {
    margin-top: 0;
    padding-top: 40px;
    gap: 20px;
  }
}

.modal__form-footer-left {
  grid-column: 1/span 1;
  width: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  .modal__form-footer-left {
    grid-column: auto;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.modal__form-footer-right {
  grid-column: 2/span 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .modal__form-footer-right {
    grid-column: auto;
  }
}

.modal__form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  grid-column: 2/span 1;
}
@media (max-width: 1024px) {
  .modal__form-buttons {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .modal__form-buttons {
    flex-direction: column;
  }
}

.modal__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 8px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: 300px;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  flex: 1;
}
@media (max-width: 768px) {
  .modal__btn {
    height: 32px;
    min-width: auto;
    font-size: 16px;
    line-height: 110%;
  }
}
.modal__btn--primary {
  color: #fff;
  background-color: #f88532;
}
.modal__btn--primary:disabled {
  background-color: #999;
  cursor: initial;
}
@media (any-hover: hover) {
  .modal__btn--primary:hover:not(:disabled) {
    background-color: #f0a450;
  }
}
.modal__btn--primary:active:not(:disabled) {
  background-color: #e2783a;
}
.modal__btn--secondary {
  color: #453c69;
  border: 1px solid #453c69;
  background-color: rgba(255, 255, 255, 0.1);
}
@media (any-hover: hover) {
  .modal__btn--secondary:hover {
    color: #7d7796;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.modal__btn--secondary:active {
  background-color: rgba(69, 60, 105, 0.1);
}

.captcha {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 1440px) {
  .captcha {
    align-items: center;
  }
}
@media (max-width: 768px) {
  .captcha {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
}

.captcha__display {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 208px;
  height: 56px;
  border: 1px solid #e8e8e9;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .captcha__display {
    width: 100%;
  }
}

.captcha__refresh {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  padding: 12px;
  border: none;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
}
.captcha__refresh:hover {
  background-color: transparent;
}
.captcha__refresh svg {
  width: 24px;
  height: 24px;
}

.captcha__image {
  padding-left: 16px;
  max-width: 110px;
}

.captcha__input-group {
  flex: 1;
  min-width: 0;
}
.captcha__input-group .form__group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
.captcha__input-group .form__group::before {
  bottom: 10px;
}

.captcha__input {
  min-width: 0;
  margin-bottom: 0;
  white-space: normal;
  height: 52px;
}
@media (max-width: 1440px) {
  .captcha__input {
    height: auto;
  }
}
.captcha__input::-moz-placeholder {
  white-space: pre-line;
}
.captcha__input::placeholder {
  white-space: pre-line;
}

/* Committee styles */
.committee {
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
.committee__inner {
  display: flex;
  width: 100%;
}
@media (max-width: 1024px) {
  .committee__inner {
    flex-direction: column;
    min-height: auto;
  }
}
.committee__program {
  flex: 1;
  padding: 40px 75px 60px 75px;
  background-color: #d0e6ff;
}
@media (max-width: 1440px) {
  .committee__program {
    padding: 40px 22px 60px 55px;
  }
}
@media (max-width: 1024px) {
  .committee__program {
    padding: 40px 40px 60px 40px;
  }
}
@media (max-width: 768px) {
  .committee__program {
    padding: 40px 20px 60px 20px;
  }
}
.committee__program-inner {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  height: 100%;
  gap: 120px;
}
@media (max-width: 1440px) {
  .committee__program-inner {
    justify-content: space-between;
  }
}
@media (max-width: 1024px) {
  .committee__program-inner {
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .committee__program-inner {
    gap: 60px;
  }
}
.committee__organization {
  width: 652px;
  padding: 40px 75px 60px 75px;
  background-color: #453c69;
}
@media (max-width: 1440px) {
  .committee__organization {
    width: 100%;
    padding: 40px 55px 60px 46px;
  }
}
@media (max-width: 1024px) {
  .committee__organization {
    width: 100%;
    padding: 40px 40px 60px 40px;
  }
}
@media (max-width: 768px) {
  .committee__organization {
    padding: 60px 20px 60px 20px;
  }
}
.committee__organization-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 502px;
  height: 100%;
  gap: 120px;
}
@media (max-width: 1024px) {
  .committee__organization-inner {
    max-width: 100%;
    gap: 80px;
  }
}
@media (max-width: 768px) {
  .committee__organization-inner {
    gap: 60px;
  }
}
.committee__title-section {
  width: 100%;
}
.committee__title {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .committee__title {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .committee__title {
    font-size: 20px;
    line-height: 120%;
  }
}
.committee__title--white {
  color: #ffffff;
}
@media (max-width: 768px) {
  .committee__title--white {
    font-size: 26px;
    line-height: 110%;
  }
}
.committee__members-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 1440px) {
  .committee__members-grid {
    -moz-column-gap: clamp(20px, 20px + (26) * (100vw - 1024px) / (416), 46px);
         column-gap: clamp(20px, 20px + (26) * (100vw - 1024px) / (416), 46px);
    row-gap: clamp(20px, 20px + (20) * (100vw - 1024px) / (416), 40px);
  }
}
@media (max-width: 1024px) {
  .committee__members-grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .committee__members-grid {
    grid-template-columns: 1fr;
  }
}
.committee__members-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 40px;
}
.committee__member {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 59px;
}
@media (max-width: 1440px) {
  .committee__member {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-width: clamp(240px, 240px + (80) * (100vw - 1024px) / (416), 320px);
  }
}
@media (max-width: 1024px) {
  .committee__member {
    align-items: center;
    flex-direction: row;
    width: 100%;
    gap: 59px;
  }
}
@media (max-width: 768px) {
  .committee__member {
    gap: 25px;
  }
}
.committee__member--white {
  max-width: 478px;
}
@media (max-width: 1440px) {
  .committee__member--white {
    align-items: center;
    flex-direction: row;
    gap: 59px;
  }
}
@media (max-width: 768px) {
  .committee__member--white {
    gap: 25px;
  }
}
.committee__member--white .committee__member-name {
  color: #ffffff;
}
.committee__member--white .committee__member-position {
  color: #ffffff;
}
.committee__member-avatar {
  overflow: hidden;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border: 2px solid #ffffff;
  border-radius: 45px;
}
.committee__member-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.committee__member-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1440px) {
  .committee__member-info {
    gap: 0;
  }
  .committee__member--white .committee__member-info {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .committee__member-info {
    gap: 10px;
  }
}
.committee__member-name {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .committee__member-name {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .committee__member-name {
    font-size: 16px;
  }
}
.committee__member-position {
  color: #453c69;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .committee__member-position {
    font-size: 12px;
    line-height: 118%;
  }
}

/* Participants styles */
.participants {
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 180px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .participants {
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .participants {
    padding-bottom: 60px;
  }
}
.participants__inner {
  margin: 0 auto;
}
.participants__slider-container {
  position: relative;
  width: 100%;
}
.participants__swiper {
  width: 100%;
}
.participants__swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
}
.participants__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: 100%;
}
.participants__slide-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 278px;
}
@media (max-width: 768px) {
  .participants__slide-content {
    max-width: 158px;
  }
}
.participants__participant {
  display: flex;
  align-items: center;
  flex: 1;
  flex-direction: column;
  min-width: 200px;
  max-width: 278px;
  min-height: 258px;
  gap: 20px;
}
@media (max-width: 1024px) {
  .participants__participant {
    flex: 0 0 calc(50% - 15px);
    max-width: none;
  }
}
@media (max-width: 768px) {
  .participants__participant {
    flex: none;
    width: 100%;
    min-height: 158px;
    min-width: 158px;
    max-width: 300px;
    gap: 5px;
  }
}
.participants__logo-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 150px;
  background-color: #ffffff;
  gap: 10px;
}
@media (max-width: 768px) {
  .participants__logo-container {
    width: 100%;
    max-width: 118px;
    height: 61.5px;
  }
}
.participants__logo {
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 100px;
}
@media (max-width: 768px) {
  .participants__logo {
    width: 118px;
    height: 61.5px;
  }
}
.participants__logo img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.participants__logo--placeholder {
  text-align: center;
  color: #ffffff;
  border: 2px solid #f0a450;
  border-radius: 10px;
  background-color: #f0a450;
  font-size: 24px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .participants__logo--placeholder {
    font-size: 20px;
  }
}
.participants__logo--placeholder span {
  display: block;
  line-height: 1;
}
.participants__name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 71px;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  color: #453c69;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .participants__name {
    font-size: 10px;
    line-height: 118%;
  }
}
.participants__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 45px;
}
@media (max-width: 1024px) {
  .participants__navigation {
    margin-top: 36px;
  }
}
.participants__pagination {
  display: flex;
  align-items: center;
}
.participants__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  border-radius: 50%;
  background-color: #ecebf0;
}
.participants__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  height: 8px;
  border-radius: 8px;
  background-color: #ed8d48;
}
.participants .swiper-pagination {
  position: static;
  width: auto;
  height: auto;
}

/* FAQ styles */
.faq {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 75px;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (max-width: 1440px) {
  .faq {
    padding: 0 55px;
  }
}
@media (max-width: 1024px) {
  .faq {
    padding: 0 20px;
  }
}
.faq__inner {
  width: 100%;
  padding: 0 75px 60px 75px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .faq__inner {
    padding: 0 0 60px 0;
  }
}
.faq__category {
  width: 100%;
  padding: 40px 0;
}
.faq__category:first-child {
  padding-top: 0;
}
.faq__category:not(:last-child) {
  border-bottom: 1px solid #c7c4d2;
}
.faq__category-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.faq__category--expanded .faq__category-header {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .faq__category-header {
    margin-bottom: 0;
  }
  .faq__category--expanded .faq__category-header {
    margin-bottom: 40px;
  }
}
.faq__category-title {
  flex: 1;
  color: #453c69;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 1024px) {
  .faq__category-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .faq__category-title {
    font-size: 20px;
    line-height: 120%;
  }
}
.faq__category--expanded .faq__category-title {
  font-size: 26px;
  line-height: 110%;
}
@media (max-width: 1024px) {
  .faq__category--expanded .faq__category-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .faq__category--expanded .faq__category-title {
    font-size: 20px;
    line-height: 120%;
  }
}
.faq__category-toggle {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  height: 32px;
  padding: 16px 26px;
  cursor: pointer;
  border: 1px solid #453c69;
  border-radius: 300px;
  background: rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .faq__category-toggle {
    height: 28px;
    padding: 12px 20px;
  }
}
@media (any-hover: hover) {
  .faq__category-toggle:hover {
    background-color: #453c69;
  }
  .faq__category-toggle:hover .faq__category-icon path {
    fill: #ffffff;
  }
}
.faq__category-icon {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .faq__category-icon {
    width: 16px;
    height: 16px;
  }
}
.faq__category-content {
  overflow: hidden;
  max-height: 0;
}
.faq__category-content--expanded {
  max-height: 2000px;
}
.faq__questions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: clamp(200px, 200px + (322) * (100vw - 1024px) / (896), 522px);
}
@media (max-width: 1024px) {
  .faq__questions {
    padding-left: 0;
  }
}
.faq__question {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.faq__question--expanded {
  gap: 27px;
}
@media (max-width: 768px) {
  .faq__question--expanded {
    gap: 20px;
  }
}
.faq__question:not(:last-child) {
  padding-bottom: 20px;
  border-bottom: 1px solid #c7c4d2;
}
@media (max-width: 768px) {
  .faq__question:not(:last-child) {
    padding-bottom: 10px;
    border-color: #ecebf0;
  }
}
.faq__question-header {
  display: flex;
  align-items: flex-start;
  width: 100%;
  cursor: pointer;
  gap: 20px;
}
@media (max-width: 768px) {
  .faq__question-header {
    gap: 10px;
  }
}
.faq__question-number {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: flex-start;
  width: 55px;
  height: 14px;
  color: #453c69;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1440px) {
  .faq__question-number {
    width: 36px;
  }
}
@media (max-width: 768px) {
  .faq__question-number {
    width: 48px;
    font-size: 16px;
    font-weight: 700;
    line-height: 110%;
  }
}
.faq__question-title {
  flex: 1;
  color: #453c69;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .faq__question-title {
    font-size: 16px;
    line-height: 110%;
  }
}
.faq__question-toggle {
  display: flex;
  height: 32px;
  padding: 12px 26px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  background: transparent;
}
@media (max-width: 768px) {
  .faq__question-toggle {
    height: 28px;
    padding: 16px 20px;
  }
}
.faq__question-toggle--up .faq__question-icon {
  transform: rotate(0deg);
}
.faq__question-icon {
  width: 16px;
  transform: rotate(180deg);
}
.faq__question-content {
  overflow: hidden;
  max-height: 0;
  padding-left: 76px;
}
@media (max-width: 1440px) {
  .faq__question-content {
    padding-left: 57px;
  }
}
@media (max-width: 768px) {
  .faq__question-content {
    padding-left: 58px;
    padding-right: 56px;
  }
}
.faq__question-answer {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  color: #453c69;
}
@media (max-width: 768px) {
  .faq__question-answer {
    font-size: 14px;
    line-height: 1.3;
  }
}
.faq__question-answer p {
  margin: 0 0 10px 0;
}
.faq__question-answer p:last-child {
  margin-bottom: 0;
}
.faq__question-answer ol,
.faq__question-answer ul {
  margin: 10px 0;
  padding-left: 20px;
}
.faq__question-answer ol li,
.faq__question-answer ul li {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .faq__question-answer ol li,
  .faq__question-answer ul li {
    font-size: 14px;
    line-height: 1.3;
  }
}
.faq__question-answer ol li:last-child,
.faq__question-answer ul li:last-child {
  margin-bottom: 0;
}
.faq__question-answer ul li {
  list-style: disc;
}
.faq__question--expanded .faq__question-content {
  max-height: 500px;
}
.faq__question--expanded .faq__question-toggle--up .faq__question-icon {
  transform: rotate(0deg);
}
.faq__link {
  text-decoration: underline;
  color: #ed8d48;
  font-weight: 700;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-position: from-font;
}
.faq__link:hover {
  color: #d67a35;
}

/* Reports styles */
.reports {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 75px;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (max-width: 1440px) {
  .reports {
    padding: 0 55px;
  }
}
@media (max-width: 1024px) {
  .reports {
    padding: 0 20px;
  }
}
.reports {
  width: 100%;
  padding-bottom: 180px;
  background-color: #ffffff;
}
@media (max-width: 1440px) {
  .reports {
    padding-bottom: 120px;
  }
}
@media (max-width: 1024px) {
  .reports {
    padding-bottom: 60px;
  }
}
.reports__inner {
  margin: 0 auto;
}
.reports__slider-container {
  position: relative;
  width: 100%;
}
.reports__swiper {
  width: 100%;
}
.reports__swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
}
.reports__swiper .swiper-slide {
  display: flex;
  justify-content: center;
  width: auto;
}
.reports__slide-content {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: auto;
}
.reports__report {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 278px;
  min-height: 284px;
  padding: 20px 30px;
  border-radius: 20px;
  background: #ecebf0;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .reports__report {
    width: 220px;
    min-height: 250px;
    gap: 10px;
  }
}
.reports__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.reports__member-avatar {
  overflow: hidden;
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border: 2px solid #ffffff;
  border-radius: 45px;
}
.reports__member-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.reports__member-info {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.reports__member-name {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .reports__member-name {
    font-size: 20px;
    line-height: 120%;
  }
}
.reports__member-position {
  color: #453c69;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .reports__member-position {
    font-size: 10px;
    line-height: 118%;
  }
}
.reports__theme {
  color: #453c69;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .reports__theme {
    font-size: 14px;
  }
}
.reports__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 8px 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #453c69;
  border: none;
  border: 1px solid #453c69;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .reports__btn {
    width: 100%;
    height: 28px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 400;
    line-height: 110%;
  }
}
@media (any-hover: hover) {
  .reports__btn:hover {
    color: #7d7796;
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.reports__btn:active {
  background-color: rgba(69, 60, 105, 0.1);
}
.reports__navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .reports__navigation {
    margin-top: 36px;
  }
}
.reports .swiper-pagination {
  position: static;
  width: auto;
  height: auto;
}
.reports__pagination {
  display: flex;
  align-items: center;
}
.reports__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
  border-radius: 50%;
  background-color: #ecebf0;
}
.reports__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 32px;
  height: 8px;
  border-radius: 8px;
  background-color: #ed8d48;
}

/* Contacts styles */
.contacts {
  background: #d0e6ff;
  max-width: 1920px;
  margin: 0 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
.contacts__inner {
  display: grid;
  grid-template-columns: 1fr clamp(530px, 530px + 142 * (100vw - 1024px) / 926, 652px);
}
@media (max-width: 1024px) {
  .contacts__inner {
    grid-template-columns: 1fr;
  }
}
.contacts__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 94px 90px 75px;
}
@media (max-width: 1440px) {
  .contacts__info {
    padding: 60px 55px 90px;
  }
}
@media (max-width: 1024px) {
  .contacts__info {
    padding: 60px 20px;
    gap: 100px;
  }
}
.contacts__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contacts__subtitle {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  font-style: normal;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__subtitle {
    font-size: 20px;
    line-height: 120%;
  }
}
.contacts__title {
  color: #453c69;
  font-size: 64px;
  font-weight: 700;
  line-height: 100%;
}
@media (max-width: 1024px) {
  .contacts__title {
    font-size: 46px;
  }
}
@media (max-width: 768px) {
  .contacts__title {
    font-size: 30px;
    line-height: 100%;
  }
}
.contacts__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 768px) {
  .contacts__list {
    gap: 38px;
  }
}
.contacts__item {
  display: flex;
  align-items: flex-start;
  gap: 45px;
}
@media (max-width: 768px) {
  .contacts__item {
    gap: 24px;
  }
}
.contacts__item-icon {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  justify-content: center;
  padding: 2px;
  gap: 10px;
}
.contacts__item-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .contacts__item-content {
    padding-top: 10px;
    gap: 6px;
  }
}
.contacts__item-label {
  color: #453c69;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__item-label {
    font-size: 14px;
  }
}
.contacts__item-name {
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__item-name {
    font-size: 20px;
    line-height: 120%;
    margin-bottom: 10px;
  }
}
.contacts__item-value {
  text-decoration: none;
  color: #453c69;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__item-value {
    font-size: 20px;
    line-height: 120%;
  }
}
.contacts__item-value:hover {
  text-decoration: underline;
}
.contacts__form-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 60px 90px 75px;
  background: #453c69;
  gap: 100px;
}
@media (max-width: 1440px) {
  .contacts__form-section {
    padding: 50px 55px 90px;
  }
}
@media (max-width: 1024px) {
  .contacts__form-section {
    padding: 60px 20px;
    background: #453c69;
  }
}
.contacts__form-title {
  color: white;
  font-size: 26px;
  font-weight: 700;
  line-height: 110%;
}
.contacts__form {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media (max-width: 768px) {
  .contacts__form {
    gap: 24px;
  }
}
.contacts__form .form__input,
.contacts__form .form__textarea {
  color: white !important;
  border-bottom-color: #dad8e1;
  background: transparent;
}
.contacts__form .form__input::-moz-placeholder, .contacts__form .form__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contacts__form .form__input::placeholder,
.contacts__form .form__textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.contacts__form .form__input:focus,
.contacts__form .form__textarea:focus {
  border-bottom-color: #f88532;
}
.contacts__form .form__input:-webkit-autofill, .contacts__form .form__input:-webkit-autofill:hover, .contacts__form .form__input:-webkit-autofill:focus, .contacts__form .form__input:-webkit-autofill:active,
.contacts__form .form__textarea:-webkit-autofill,
.contacts__form .form__textarea:-webkit-autofill:hover,
.contacts__form .form__textarea:-webkit-autofill:focus,
.contacts__form .form__textarea:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #453c69 inset !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
  background-clip: content-box !important;
  background-color: transparent !important;
  border-bottom: 2px solid #dad8e1 !important;
  -webkit-transition: color, background-color 5000s ease-in-out 0s;
  transition: color, background-color 5000s ease-in-out 0s;
}
.contacts__form .form__input:-webkit-autofill:focus,
.contacts__form .form__textarea:-webkit-autofill:focus {
  border-bottom-color: #f88532 !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}
.contacts__form .form__input:-moz-autofill,
.contacts__form .form__textarea:-moz-autofill {
  background-color: transparent !important;
  color: #fff !important;
}
.contacts__form .form__input:-webkit-autofill, .contacts__form .form__textarea:-webkit-autofill {
  background-color: transparent !important;
  color: #fff !important;
}
.contacts__form .form__input:autofill,
.contacts__form .form__textarea:autofill {
  background-color: transparent !important;
  color: #fff !important;
}
.contacts__form .form__textarea {
  resize: none;
  min-height: 90px;
  height: 105px;
}
.contacts__form .form__checkbox-custom {
  border: 1px solid #999;
  background-color: #fff;
  margin: 2px;
}
.contacts__form .form__checkbox:checked + .form__checkbox-custom {
  border-color: #f88532;
  background-color: #f88532;
}
.contacts__form .form__checkbox-text {
  color: white;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__form .form__checkbox-text {
    font-size: 14px;
  }
}
.contacts__form-options {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacts__form-options {
    gap: 10px;
  }
}
.contacts__form-options .form__checkbox-group {
  flex-direction: row;
  gap: 60px;
}
@media (max-width: 768px) {
  .contacts__form-options .form__checkbox-group {
    flex-direction: column;
    gap: 10px;
  }
}
.contacts__form-options-title {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__form-options-title {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 120%;
  }
}
.contacts__footer {
  display: flex;
  flex-direction: column;
  margin-top: 45px;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacts__footer {
    margin-top: 40px;
  }
}
.contacts__form-agree .form__checkbox-label {
  gap: 12px;
}
.contacts__form-agree .form__checkbox-text {
  color: #a29db4;
  font-size: 14px;
  font-weight: 400;
  line-height: 110%;
}
@media (max-width: 768px) {
  .contacts__form-agree .form__checkbox-text {
    font-size: 12px;
    line-height: 118%;
  }
}
.contacts__form-submit {
  display: flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  height: 42px;
  padding: 8px 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  border: none;
  border-radius: 300px;
  background: #f88532;
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 1024px) {
  .contacts__form-submit {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .contacts__form-submit {
    height: 32px;
    padding: 8px 26px;
    font-size: 16px;
    font-weight: 400;
    line-height: 110%;
  }
}
.contacts__form-submit:hover:not(:disabled) {
  background: #f0a450;
}
.contacts__form-submit:active:not(:disabled) {
  background: #e2783a;
}
.contacts__form-submit:disabled {
  cursor: initial;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 1024px) {
  .contacts .captcha__display {
    width: 208px;
  }
}
@media (max-width: 1440px) {
  .contacts .captcha__input {
    height: 52px;
  }
}
@media (max-width: 1024px) {
  .contacts .captcha__input {
    height: auto;
  }
}
.contacts .agree-link {
  color: #a29db4;
  text-decoration: underline;
  transition: color 0.3s ease;
}
@media (any-hover: hover) {
  .contacts .agree-link:hover {
    color: #ed8d48;
  }
}

.toast {
  position: fixed;
  z-index: 100;
  top: 123px;
  right: 30px;
  display: flex;
  visibility: hidden;
  align-items: center;
  flex-shrink: 0;
  justify-content: flex-start;
  max-width: 40px;
  height: 40px;
  margin: auto;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  border: 1.5px solid #ab9ceb;
  border-radius: 45px;
  background: #796ac7;
}
@media (max-width: 1024px) {
  .toast {
    right: 0;
    left: 0;
  }
}

.toast__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  justify-content: center;
  width: 37px;
  height: 37px;
  padding: 5px;
  border: 1.5px solid #ab9ceb;
  border-radius: 45px;
  background: #fff;
  aspect-ratio: 1/1;
}

.toast__desc {
  overflow: hidden;
  padding-left: 15px;
  white-space: nowrap;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 118%;
}

.toast__show {
  visibility: visible;
  animation: scalein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, scaleout 0.5s 4.5s;
}
@keyframes scalein {
  from {
    opacity: 0;
    scale: 0;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}
@keyframes expand {
  from {
    min-width: 40px;
  }
  to {
    min-width: 300px;
  }
}
@keyframes stay {
  from {
    min-width: 300px;
  }
  to {
    min-width: 300px;
  }
}
@keyframes shrink {
  from {
    min-width: 300px;
  }
  to {
    min-width: 40px;
  }
}
@keyframes scaleout {
  from {
    opacity: 1;
    scale: 1;
  }
  to {
    opacity: 0;
    scale: 0;
  }
}
/* Error page Styles */
.error-page {
  display: flex;
  flex-direction: column;
  height: 100dvh;
}
.error-page .main {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.error {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  height: auto;
  min-height: -moz-min-content;
  min-height: min-content;
  padding: 60px 75px 100px 75px;
  background-image: url("../img/hero-banner.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 1024px) {
  .error {
    padding: 40px 20px 100px;
  }
}
.error::before {
  position: absolute;
  z-index: 1;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  inset: 0;
}
.error__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.error__number {
  text-align: center;
  color: #fff;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  font-family: Onest;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  font-size: clamp(160px, 160px + (240) * (100vw - 375px) / (1545), 400px);
  letter-spacing: clamp(-4px, -4px + (2.4) * (100vw - 375px) / (1545), -1.6px);
  margin-bottom: clamp(30px, 30px + (10) * (100vw - 375px) / (1545), 40px);
}
.error__footer {
  max-width: 422px;
}
.error__text {
  text-align: center;
  color: #fff;
  font-family: Onest;
  font-weight: 600;
  font-style: normal;
  line-height: 100%;
  font-size: clamp(20px, 20px + (20) * (100vw - 375px) / (1545), 40px);
  margin-bottom: clamp(15px, 15px + (15) * (100vw - 375px) / (1545), 30px);
}
.error__link {
  display: flex;
  align-items: center;
  align-self: flex-end;
  justify-content: center;
  width: 100%;
  padding: 9px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  color: #ffffff;
  border: none;
  border-radius: 300px;
  background: #f88532;
  font-weight: 700;
  line-height: 120%;
  font-size: clamp(16px, 16px + (4) * (100vw - 375px) / (1545), 20px);
}
.error__link:hover {
  background: #e6762d;
}
.error__link:active {
  background: #d4681f;
}

.back-to-top {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 0;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 55px;
  bottom: 104px;
  border: none;
  border-radius: 32px;
  background: rgba(236, 235, 240, 0.5);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.back-to-top:hover {
  background: #ecebf0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(0) scale(1.05);
}
.back-to-top:hover svg path {
  fill: #585078;
}
.back-to-top:active {
  transform: translateY(0) scale(0.95);
  background: #ecebf0;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.back-to-top svg path {
  fill: white;
  transition: fill 0.2s ease;
}
@media (max-width: 768px) {
  .back-to-top {
    width: 32px;
    height: 32px;
    right: 20px;
    bottom: 60px;
  }
  .back-to-top svg {
    width: 16px;
    height: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .back-to-top:hover {
    transform: none;
  }
}