﻿@charset "UTF-8";
.header-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  text-align: center;
}

.header-container .label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-container .title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
}

.header-container .description {
  max-width: 680px;
  margin: 1rem auto 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .o-container {
    max-width: none;
    margin: 0;
    padding: 0;
    padding-right: 0 !important;
    padding-left: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
  }
}
.header-application-button {
  min-width: 150px;
  margin: 0;
  cursor: pointer;
}
.header-application-button--closed {
  color: #555;
  background: #ddd;
  border-color: #ddd;
}
.header-application-button--closed:hover, .header-application-button--closed:focus {
  color: #555;
  background: #ccc;
  border-color: #ccc;
}

.application-dropdown {
  position: fixed;
  z-index: 999;
  display: none;
  flex-direction: column;
  box-sizing: border-box;
  width: 259px;
  padding: 20px 32px;
  gap: 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}
.application-dropdown.is-open {
  display: flex;
}
.application-dropdown .c-btn {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 16px;
}

.home-carousel-stage {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: #fff;
}

.home-carousel-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 42px;
  overflow: visible;
}
.home-carousel-container .home-carousel-swiper {
  width: 100%;
  overflow: visible;
  padding-bottom: 34px;
}
.home-carousel-container .swiper-wrapper {
  align-items: center;
}
.home-carousel-container .swiper-slide {
  width: 1200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
}
.home-carousel-container .home-carousel-image {
  width: 100%;
  aspect-ratio: 1253/764;
  opacity: 0.28;
  filter: grayscale(1);
  transform: scale(0.54);
  transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}
.home-carousel-container .home-carousel-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.home-carousel-container .swiper-slide-active {
  z-index: 4;
}
.home-carousel-container .swiper-slide-active .home-carousel-image {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1);
}
.home-carousel-container .swiper-slide-prev,
.home-carousel-container .swiper-slide-next {
  z-index: 2;
}
.home-carousel-container .swiper-slide-prev .home-carousel-image,
.home-carousel-container .swiper-slide-next .home-carousel-image {
  opacity: 0.35;
  filter: grayscale(1);
  transform: scale(0.54);
}
.home-carousel-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}
.home-carousel-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  border: 1px solid #000;
  background: transparent;
  opacity: 1;
}
.home-carousel-container .swiper-pagination-bullet-active {
  background: #000;
}
.home-carousel-container .carousel-btn {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 54px;
  padding: 0 28px;
  background: linear-gradient(90deg, #143cff, #00c8ff);
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transform: translate(-50%, -10%);
  transition: box-shadow 0.3s ease, color 0.3s ease;
}
.home-carousel-container .carousel-btn:hover, .home-carousel-container .carousel-btn:focus {
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.25);
  color: #fff;
}

@media (max-width: 1240px) {
  .home-carousel-container {
    max-width: calc(100vw - 40px);
  }
  .home-carousel-container .swiper-slide {
    width: calc(100vw - 40px);
  }
}
@media (max-width: 767px) {
  .home-carousel-stage {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .home-carousel-container {
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0 0 34px;
  }
  .home-carousel-container .home-carousel-swiper {
    width: 100vw;
    height: 400px;
    padding-bottom: 42px;
    overflow: hidden;
    box-sizing: border-box;
  }
  .home-carousel-container .swiper-wrapper {
    height: calc(100% - 42px);
  }
  .home-carousel-container .swiper-slide {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-carousel-container .home-carousel-image {
    width: calc(100vw - 24px);
    height: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
    transform: scale(0.72);
    transform-origin: center;
  }
  .home-carousel-container .home-carousel-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .home-carousel-container .swiper-slide-active .home-carousel-image {
    transform: scale(0.96);
  }
  .home-carousel-container .swiper-pagination {
    margin-top: 20px;
  }
  .home-carousel-container .carousel-btn {
    display: none;
  }
}
.home-cover {
  position: relative;
  width: 100%;
  height: clamp(420px, 56vw, 680px);
  overflow: hidden;
  margin-top: 40px;
}
.home-cover__image {
  display: block;
  width: 100%;
  height: 100%;
}
.home-cover__action {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.home-cover .carousel-btn {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 54px;
  padding: 0 28px;
  background: linear-gradient(90deg, #143cff, #00c8ff);
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.3s ease, color 0.3s ease;
}
.home-cover .carousel-btn:hover, .home-cover .carousel-btn:focus {
  box-shadow: inset 0 0 0 100px rgba(255, 255, 255, 0.25);
  color: #fff;
}
.home-cover .carousel-btn.c-btn--disabled {
  background: #808080;
  box-shadow: none;
  color: #fff !important;
  cursor: default;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .home-cover {
    height: 420px;
  }
  .home-cover .carousel-btn {
    min-width: 210px;
    height: 50px;
    padding: 0 20px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .home-cover {
    height: 270px;
  }
  .home-cover__image {
    object-position: center;
    width: unset;
    height: unset;
  }
}
p a {
  color: #ff00a0 !important;
}

.image-text-content a {
  color: #ff00a0 !important;
}

.home-prelude-container {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
  text-align: center;
}
.home-prelude-container .prelude-image {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.home-prelude-container .home-prelude-content {
  width: 100%;
  max-width: 980px;
}
.home-prelude-container .home-prelude-title {
  margin: 0;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.home-prelude-container .sm {
  font-size: 50px;
}
.home-prelude-container p {
  margin: 0 0 1.25rem;
  font-size: 1.125rem;
  line-height: 1.6;
}
.home-prelude-container ul {
  width: fit-content;
  max-width: 700px;
  margin: 0.5rem auto;
  padding-left: 1.5rem;
  box-sizing: border-box;
  list-style-position: outside;
  text-align: left;
}
.home-prelude-container li {
  text-align: left;
}
.home-prelude-container li:last-child {
  margin-bottom: 0;
}
.home-prelude-container.grey-bg {
  background: #f9f9f9;
}

.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: #000;
  color: #fff;
  border-radius: 4.35719px;
  box-shadow: 0 3.43989px 13.7595px rgba(0, 0, 0, 0.16);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.read-more:hover, .read-more:focus {
  background: #000;
  color: #ff00a0;
}

@media (max-width: 768px) {
  .home-prelude-container {
    padding: 2.5rem 1.25rem;
  }
  .home-prelude-container .home-prelude-title {
    font-size: 42px;
  }
  .home-prelude-container ul {
    width: 100%;
    max-width: 100%;
    padding-left: 1.4rem;
  }
}
@media (max-width: 480px) {
  .home-prelude-container .home-prelude-title {
    font-size: 36px;
  }
}
.home-prelude-container--left {
  align-items: flex-start;
  text-align: left;
}
.home-prelude-container--left .prelude-image,
.home-prelude-container--left .home-prelude-title,
.home-prelude-container--left .home-prelude-content {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.home-prelude-container--left .home-prelude-content {
  align-items: flex-start;
}
.home-prelude-container--left .home-prelude-content > div {
  width: 100%;
  text-align: left;
}
.home-prelude-container--left .home-prelude-content .read-more {
  align-self: flex-start;
}
.home-prelude-container--left ul {
  width: fit-content;
  max-width: 1200px;
  margin: 0;
  box-sizing: border-box;
  list-style-position: outside;
  text-align: left;
  margin-bottom: 15px;
}

.image-text-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
}
.image-text-container--reduced-padding {
  padding: 1rem 1.5rem;
}

.image-text-container.image-left {
  flex-direction: row;
}

.image-text-container.image-right {
  flex-direction: row-reverse;
}

.image-text-container .image {
  display: block;
  min-width: 33%;
  height: auto;
  object-fit: cover;
}

.image-text-container .image-text-content {
  width: 66%;
}

.image-text-container .image-text-title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.15;
}

.image-text-container .image-text-description {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .image-text-container,
  .image-text-container.image-left,
  .image-text-container.image-right {
    flex-direction: column;
  }
  .image-text-container .image,
  .image-text-container .image-text-content {
    width: 100%;
  }
}
.black-bg {
  background: #000;
}

.black-bg .image-text-title,
.black-bg .image-text-description {
  color: #fff;
}

.title-pink {
  margin: 0;
  color: #ff00a0 !important;
  font-family: "EB Garamond", serif;
  font-size: 50px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}

.quote {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}
.quote p {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
}
.quote__source {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  font-weight: 400;
}
.quote.dark-mode {
  max-width: none;
  padding: 4rem 1.5rem;
  background: #111;
  color: #fff;
}
.quote.dark-mode p,
.quote.dark-mode .quote__source {
  color: #fff !important;
}

.video-section-container {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 3rem 1.5rem;
}

.video-section-container.image-left {
  flex-direction: row;
}

.video-section-container.image-right {
  flex-direction: row-reverse;
}

.video-section-container .image {
  display: block;
  width: 33%;
  height: auto;
  object-fit: cover;
}

.video-section-container .video-section-content {
  width: 66%;
}

.video-section-container .video-section-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
}

.video-section-container .video-section-description {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .video-section-container,
  .video-section-container.image-left,
  .video-section-container.image-right {
    flex-direction: column;
  }
  .video-section-container .image,
  .video-section-container .video-section-content {
    width: 100%;
  }
}
.contact-page .contact-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 72px 24px 88px;
  background: #f7f7f7;
}
.contact-page .contact-section__inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-page .contact-section__title {
  margin: 0 0 42px;
  text-align: center;
}
.contact-page .contact-section__title span {
  display: inline;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: normal;
  text-transform: none;
}
.contact-page .contact-form {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 56px;
  box-sizing: border-box;
  background: transparent;
}
.contact-page .contact-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.contact-page .contact-form .c-form-caption {
  display: block;
  width: 100%;
  margin: 0 0 32px;
  padding: 0;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}
.contact-page .contact-form .c-form-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-page .contact-form .c-form-list__item--full {
  grid-column: 1/-1;
  width: 100%;
  margin: 0;
}
.contact-page .contact-form .c-form-label {
  display: block;
  font-weight: 600;
}
.contact-page .contact-form .c-form-label.has-validation-error {
  color: #c8102e;
  font-weight: 700;
}
.contact-page .contact-form .c-form-label.has-validation-error .c-form-required {
  color: #c8102e;
}
.contact-page .contact-form .c-form-required {
  color: #c8102e;
  text-decoration: none;
}
.contact-page .contact-form .c-form-input,
.contact-page .contact-form .c-form-select__dropdown {
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #9d9d9d;
  border-radius: 0;
  background: #fff;
  color: #000;
  font-family: inherit;
  line-height: 1.3;
  box-sizing: border-box;
  outline: none;
}
.contact-page .contact-form .c-form-input::placeholder,
.contact-page .contact-form .c-form-select__dropdown::placeholder {
  color: #777;
}
.contact-page .contact-form .c-form-input:focus,
.contact-page .contact-form .c-form-select__dropdown:focus {
  border-color: #000;
  box-shadow: 0 0 0 1px #000;
}
.contact-page .contact-form .c-form-input:disabled,
.contact-page .contact-form .c-form-select__dropdown:disabled {
  background: #eee;
  cursor: not-allowed;
}
.contact-page .contact-form .c-form-select {
  position: relative;
  width: 100%;
}
.contact-page .contact-form .c-form-select__dropdown {
  appearance: none;
  padding-right: 48px;
  cursor: pointer;
}
.contact-page .contact-form textarea.c-form-input {
  min-height: 180px;
  resize: vertical;
}
.contact-page .contact-form .contact-form__recaptcha {
  margin-top: 8px;
}
.contact-page .contact-form .contact-form__recaptcha.has-validation-error iframe {
  outline: 2px solid #c8102e;
  outline-offset: 2px;
}
.contact-page .contact-form .contact-form__recaptcha-error {
  margin: 10px 0 0;
  color: #c8102e;
  font-size: 14px;
  font-weight: 700;
}
.contact-page .contact-form .contact-form__actions {
  display: flex;
  justify-content: flex-end;
  margin: 40px 0 0;
}
.contact-page .contact-form .contact-form__submit {
  min-width: 150px;
  min-height: 50px;
  margin: 0;
  cursor: pointer;
}
.contact-page .contact-form .contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact-page .contact-form__message {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px;
  padding: 16px 20px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.contact-page .contact-form__message--success {
  border: 1px solid #176b2c;
  background: #e7f7eb;
  color: #176b2c;
}
.contact-page .contact-form__message--failure {
  border: 1px solid #c8102e;
  background: #fff0f0;
  color: #c8102e;
}
@media (max-width: 768px) {
  .contact-page .contact-section {
    padding: 48px 20px 64px;
  }
  .contact-page .contact-section__title {
    margin-bottom: 32px;
  }
  .contact-page .contact-section__title span {
    font-size: 42px;
  }
  .contact-page .contact-form {
    padding: 32px 24px;
  }
  .contact-page .contact-form .c-form-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-page .contact-form .c-form-list__item--full {
    grid-column: auto;
  }
  .contact-page .contact-form .contact-form__actions {
    justify-content: stretch;
    margin-top: 32px;
  }
  .contact-page .contact-form .contact-form__submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .contact-page .contact-section {
    padding: 40px 16px 56px;
  }
  .contact-page .contact-form {
    padding: 28px 20px;
  }
  .contact-page .contact-section__title span {
    font-size: 36px;
  }
}

.circle-image-container {
  padding: 3rem 1.5rem;
  text-align: center;
}
.circle-image-container > h1 {
  margin: 0 0 2.5rem;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.circle-image-container .circle-image-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 2rem;
}
.circle-image-container .circle-image-text-container,
.circle-image-container .circle-image-tile {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.circle-image-container .circle-image-text-container img,
.circle-image-container .circle-image-tile img {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.circle-image-container .circle-image-text-container:nth-child(4):nth-last-child(2),
.circle-image-container .circle-image-tile:nth-child(4):nth-last-child(2) {
  grid-column: 2/span 2;
}
.circle-image-container .circle-image-title {
  margin: 1rem 0 0.65rem;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.circle-image-container .circle-image-description {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
}
.circle-image-container.black-bg {
  background: #000;
}
.circle-image-container.black-bg * {
  color: #fff;
}
.circle-image-container.black-bg > h1 {
  color: #ff00a0;
}

@media (max-width: 992px) {
  .circle-image-container .circle-image-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .circle-image-container .circle-image-text-container,
  .circle-image-container .circle-image-tile,
  .circle-image-container .circle-image-text-container:nth-child(4):nth-last-child(2),
  .circle-image-container .circle-image-tile:nth-child(4):nth-last-child(2) {
    grid-column: auto;
  }
}
@media (max-width: 768px) {
  .circle-image-container {
    padding: 2.5rem 1.25rem;
  }
  .circle-image-container > h1 {
    font-size: 42px;
  }
  .circle-image-container .circle-image-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .circle-image-container .circle-image-text-container img,
  .circle-image-container .circle-image-tile img {
    width: 120px;
    height: 120px;
  }
  .circle-image-container .circle-image-title {
    font-size: 18px;
  }
  .circle-image-container .circle-image-description {
    max-width: 420px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .circle-image-container > h1 {
    font-size: 36px;
  }
  .circle-image-container .circle-image-title {
    font-size: 18px;
  }
  .circle-image-container .circle-image-description {
    font-size: 18px;
  }
}
.faq-container {
  max-width: none;
  margin: 0;
  padding: 5rem 1.5rem;
  background: #f4f4f4;
}
.faq-container h1 {
  margin: 0 0 3rem;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.faq-container .accordion {
  max-width: 1150px;
  margin: 0 auto;
  background: transparent;
}

.faq-accordion {
  border: 0;
  border-bottom: 1px solid #cfcfcf;
  background: transparent;
  border-radius: 0;
}

.faq-accordion:first-child {
  border-bottom-color: #000;
}

.faq-question {
  margin: 0;
}

.faq-question .accordion-button {
  position: relative;
  width: 100%;
  padding: 1.25rem 3.5rem 1.25rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.faq-question .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

.faq-question .accordion-button::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0.75rem;
  width: auto;
  height: auto;
  margin: 0;
  background-image: none;
  transform: translateY(-50%);
  color: #bfc4ca;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1;
}

.faq-question .accordion-button:not(.collapsed)::after {
  content: "−";
  transform: translateY(-50%);
  color: #000;
}

.faq-answer {
  max-width: 900px;
  padding: 0 0 1.5rem;
  color: #222;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-accordion .accordion-collapse {
  background: transparent;
}

.faq-accordion .accordion-body {
  background: transparent;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 3.5rem 1.25rem;
  }
  .faq-container h1 {
    margin-bottom: 2rem;
  }
  .faq-question .accordion-button {
    padding: 1rem 2.5rem 1rem 0;
    font-size: 1.05rem;
  }
  .faq-answer {
    font-size: 0.95rem;
  }
}
.news-container {
  padding: 3rem 1.5rem;
  text-align: left;
}

.news-container h1 {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.15;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.news-tile {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.news-tile--no-shadow {
  box-shadow: none;
  border: none;
}

.news-image {
  display: block;
  width: 300px;
  height: 200px;
  margin: 1rem auto 0;
  object-fit: cover;
  object-position: center;
}

.news-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  flex: 1;
}

.news-content h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.news-content p {
  display: -webkit-box;
  height: 4.5em;
  margin: 0;
  overflow: hidden;
  line-height: 1.5;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}
.latest-news-page .latest-news-intro .support-intro__top {
  background-image: url("/Images/News/bg-cover.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.news-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 70px 30px;
}
.news-article__copy {
  font-size: 18px;
  line-height: 1.6;
}
.news-article__copy h2,
.news-article__copy h3,
.news-article__copy h4 {
  margin: 35px 0 15px;
}
.news-article__copy p {
  margin: 0 0 20px;
}
.news-article__copy ul,
.news-article__copy ol {
  margin: 0 0 20px;
  padding-left: 25px;
}
.news-article__copy img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
}
.news-article__copy a {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .news-article {
    padding: 45px 20px;
  }
  .news-article__copy {
    font-size: 16px;
  }
}

.seminar-container {
  padding: 3rem 1.5rem;
  text-align: left;
  overflow: hidden;
}
.seminar-container h1 {
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.15;
}
.seminar-container .seminar-swiper {
  max-width: 1100px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 2.5rem;
}
.seminar-container .swiper-wrapper {
  align-items: stretch;
}
.seminar-container .swiper-slide {
  width: 350px;
  height: auto;
  display: flex;
}
.seminar-container .swiper-pagination {
  position: static;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 1.5rem;
}
.seminar-container .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 !important;
  background: transparent;
  border: 1px solid #000;
  opacity: 1;
}
.seminar-container .swiper-pagination-bullet-active {
  background: #000;
}

.seminar-tile {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  text-align: left;
}

.seminar-image {
  display: block;
  width: 100%;
  height: 210px;
  margin: 0;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.seminar-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem 0 0;
  flex: 1;
}

.seminar-content h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.25;
}

.seminar-content p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .seminar-container .seminar-swiper {
    width: 100%;
    overflow: hidden;
  }
  .seminar-container .swiper-wrapper {
    align-items: stretch;
  }
  .seminar-container .swiper-slide {
    width: 100% !important;
    height: auto;
  }
  .seminar-container .seminar-tile {
    width: 100%;
    max-width: none;
    height: 100%;
  }
  .seminar-container .swiper-pagination {
    justify-content: center;
    margin-top: 2.5rem;
  }
}
.submission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.submission-container h1 {
  margin: 0 0 3rem;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.15;
}

.submission-grid {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0 1rem;
}

.submission-tile {
  position: relative;
  z-index: 1;
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  text-align: center;
}

.submission-image {
  display: block;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
}

.submission-date {
  margin-top: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.submission-content {
  margin-top: 0.75rem;
  width: 240px;
  max-width: 240px;
}

.submission-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  line-height: 1.25;
}

.submission-content p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .submission-grid {
    overflow-x: auto;
    gap: 2rem;
    justify-content: flex-start;
    padding-bottom: 1rem;
  }
  .submission-tile {
    flex: 0 0 120px;
  }
  .submission-image {
    width: 120px;
    height: 120px;
  }
  .submission-content {
    width: 180px;
    max-width: 180px;
  }
}
.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  text-align: center;
}
.timeline-container > h1 {
  margin: 0 0 3rem;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.timeline-container .timeline-swiper {
  width: 100%;
  overflow: visible;
}
.timeline-container .timeline-list {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 0 0 1rem;
}
.timeline-container .timeline-list::before {
  content: "";
  position: absolute;
  top: 90px;
  right: 90px;
  left: 90px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
}
.timeline-container .timeline-slide {
  display: flex;
  flex: 1 1 0;
  justify-content: center;
  width: auto;
  height: auto;
}
.timeline-container .timeline-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 0 0 180px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.timeline-container .timeline-image {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}
.timeline-container .timeline-date {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.6em;
  margin-top: 1.25rem;
  overflow: hidden;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.timeline-container .timeline-content {
  width: 240px;
  max-width: 240px;
  margin-top: 0.75rem;
}
.timeline-container .timeline-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.25;
}
.timeline-container .timeline-content p {
  margin: 0;
  line-height: 1.5;
}
.timeline-container .timeline-pagination {
  display: none;
}
.timeline-container--no-images {
  padding-top: 2.5rem;
}
.timeline-container--no-images > h1 {
  margin-bottom: 2rem;
}
.timeline-container--no-images .timeline-list {
  align-items: flex-start;
  gap: 0;
  padding-top: 0;
}
.timeline-container--no-images .timeline-list::before {
  top: 24px;
  left: 50%;
  width: 90%;
  max-width: 90%;
  height: 1px;
  background: #000;
  opacity: 1;
  transform: translateX(-50%);
}
.timeline-container--no-images .timeline-slide {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 1rem;
}
.timeline-container--no-images .timeline-item {
  flex: none;
  width: 100%;
  min-width: 0;
  padding: 0;
}
.timeline-container--no-images .timeline-image {
  display: none;
}
.timeline-container--no-images .timeline-date {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  height: 2.7rem;
  margin: 0 0 1rem;
  padding: 0.35rem 1rem;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.timeline-container--no-images .timeline-content {
  width: 100%;
  max-width: 190px;
  margin-top: 0;
}
.timeline-container--no-images .timeline-content h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.timeline-container--no-images .timeline-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}
.timeline-container:not(.timeline-container--no-images) .timeline-item--no-image .timeline-image {
  display: block;
}

@media (max-width: 768px) {
  .timeline-container {
    padding: 3rem 1.25rem;
  }
  .timeline-container > h1 {
    font-size: 40px;
  }
  .timeline-container .timeline-swiper {
    overflow: hidden;
    padding-bottom: 3.5rem;
  }
  .timeline-container .timeline-list {
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }
  .timeline-container .timeline-list::before {
    display: none;
  }
  .timeline-container .timeline-slide {
    flex: 0 0 100%;
    width: 100% !important;
    height: auto;
    padding: 0 !important;
  }
  .timeline-container .timeline-item {
    flex: none;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .timeline-container .timeline-image {
    width: 150px;
    height: 150px;
  }
  .timeline-container .timeline-content {
    width: 100%;
    max-width: 320px;
  }
  .timeline-container .timeline-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 2.5rem;
  }
  .timeline-container .timeline-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border: 1px solid #000;
    background: transparent;
    opacity: 1;
  }
  .timeline-container .timeline-pagination .swiper-pagination-bullet-active {
    background: #000;
  }
  .timeline-container--no-images .timeline-slide {
    flex: 0 0 100%;
    width: 100% !important;
  }
  .timeline-container--no-images .timeline-item {
    width: 100%;
    max-width: 340px;
  }
  .timeline-container--no-images .timeline-content {
    width: 100%;
    max-width: 280px;
  }
  .support-key-dates .timeline-container {
    padding: 3rem 1.25rem;
  }
  .support-key-dates .timeline-container .timeline-swiper {
    overflow: visible;
    padding-bottom: 0;
  }
  .support-key-dates .timeline-container .timeline-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto !important;
    gap: 2.5rem;
    transform: none !important;
  }
  .support-key-dates .timeline-container .timeline-slide {
    flex: none;
    width: 100% !important;
    height: auto;
    padding: 0 !important;
    transform: none !important;
  }
  .support-key-dates .timeline-container .timeline-item {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
  .support-key-dates .timeline-container .timeline-content {
    width: 100%;
    max-width: 280px;
  }
  .support-key-dates .timeline-container .timeline-pagination {
    display: none;
  }
}
.about-intro,
.support-intro {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: visible;
}

.about-intro__top,
.support-intro__top {
  position: relative;
  width: 100%;
  min-height: 550px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-intro__panel,
.support-intro__panel {
  position: absolute;
  z-index: 3;
  top: 120px;
  left: max(24px, (100vw - 1200px) / 2);
  width: 720px;
  max-width: calc(100% - 48px);
  padding: 48px 44px 46px;
  background: #000;
  color: #fff;
  text-align: left;
}

.about-intro__label,
.support-intro__label {
  display: block;
  margin: 0 0 24px;
  padding: 0;
  background: transparent;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: normal;
  text-transform: none;
}

.about-intro__title,
.support-intro__title {
  margin: 0 0 24px;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.about-intro__text,
.support-intro__text {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.45;
}

.about-intro__top {
  background-image: url("/Images/About/bg-cover.jpg");
}
.about-intro__image {
  position: absolute;
  z-index: 6;
  top: -30px;
  right: max(24px, (100vw - 1200px) / 2 + 155px);
  width: 450px;
  min-width: 450px;
  max-width: none;
  pointer-events: none;
}
.about-intro__image img {
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 1100px) and (max-width: 1199px) {
  .about-intro__image {
    right: max(24px, (100vw - 1300px) / 2 + 155px);
    width: 430px;
    min-width: 430px;
  }
}
@media (min-width: 1030px) and (max-width: 1099px) {
  .about-intro__image {
    right: max(24px, (100vw - 1400px) / 2 + 155px);
    width: 410px;
    min-width: 410px;
  }
}
@media (min-width: 1000px) and (max-width: 1029px) {
  .about-intro__image {
    right: 0;
    width: 400px;
    min-width: 400px;
  }
}
@media (min-width: 900px) and (max-width: 999px) {
  .about-intro__image {
    right: -45px;
    width: 360px;
    min-width: 360px;
  }
}
@media (min-width: 800px) and (max-width: 899px) {
  .about-intro__image {
    right: -60px;
    width: 340px;
    min-width: 340px;
  }
}
@media (min-width: 769px) and (max-width: 799px) {
  .about-intro__image {
    right: -85px;
    width: 300px;
    min-width: 300px;
  }
}
.about-intro__bottom {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 54px 0 70px;
  background: #fff;
}
.about-intro__bottom-content {
  width: 470px;
  max-width: calc(100% - 40px);
  margin-left: calc((100% - min(1200px, 100%)) / 2 + 108px);
  text-align: center;
}
.about-intro__bottom-content p {
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.5;
}
.about-intro__heading {
  margin: 0;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
}
.about-intro__heading span {
  display: inline;
  margin: 0;
  padding: 0;
  background: transparent;
  color: inherit;
}

.support-intro__top {
  background-image: url("/Images/Support/bg-cover.jpg");
}

.about-organisations {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  gap: 90px;
}

.about-organisation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}
.about-organisation__image img {
  display: block;
  width: 100%;
  height: auto;
}
.about-organisation__image--logo img {
  max-width: 360px;
  margin: 0 auto;
  object-fit: contain;
}
.about-organisation__content h2 {
  margin: 0 0 14px;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.about-organisation__content p {
  max-width: 520px;
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 1.5;
}
.about-organisation__content .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.about-organisation__content .btn:hover, .about-organisation__content .btn:focus {
  background: #222;
  color: #fff;
}
.about-organisation--image-left .about-organisation__image {
  max-width: 420px;
}
.about-organisation--image-left .about-organisation__content {
  justify-self: start;
}
.about-organisation--image-right .about-organisation__content {
  justify-self: start;
}
.about-organisation--image-right .about-organisation__image {
  max-width: 360px;
  justify-self: center;
}

@media (max-width: 768px) {
  .about-organisations {
    margin: 50px auto;
    padding: 0 24px;
    gap: 60px;
  }
  .about-organisation {
    grid-template-columns: 1fr;
    grid-template-areas: "image" "content";
    gap: 32px;
  }
  .about-organisation__image {
    grid-area: image;
    width: 100%;
    max-width: 420px !important;
    margin: 0 auto;
    justify-self: center !important;
  }
  .about-organisation__image img {
    margin: 0 auto;
  }
  .about-organisation__content {
    grid-area: content;
    justify-self: stretch !important;
  }
  .about-organisation__content h2 {
    font-size: 40px;
  }
  .about-organisation__content p {
    max-width: none;
  }
}
.support-contact {
  width: 100%;
  padding: 150px 55px 145px;
  background: #000;
  color: #fff;
}
.support-contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 620px) auto;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 64px;
}
.support-contact__content h2 {
  margin: 0 0 18px;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
}
.support-contact__content p {
  max-width: 650px;
  margin: 0;
  color: #fff;
  font-size: 17px;
  line-height: 1.55;
}
.support-contact__content p a {
  color: #fff;
  font-weight: 700;
}
.support-contact .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-width: 132px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 4px;
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease;
}
.support-contact .read-more:hover, .support-contact .read-more:focus {
  background: #000;
  color: #ff00a0;
}
.support-contact .read-more--white {
  background: #fff;
  color: #000;
}
.support-contact .read-more--white:hover, .support-contact .read-more--white:focus {
  background: #f1f1f1;
  color: #ff00a0;
}

@media (max-width: 768px) {
  .about-intro,
  .support-intro {
    display: flex;
    flex-direction: column;
  }
  .about-intro__top,
  .support-intro__top {
    order: 1;
    width: 100%;
    height: 355px;
    min-height: 355px;
    max-height: 355px;
    padding: 0;
    background-position: center;
  }
  .about-intro__panel,
  .support-intro__panel {
    position: relative;
    order: 2;
    top: auto;
    left: auto;
    width: calc(100% - 32px);
    max-width: 620px;
    margin: 24px auto 0;
    padding: 28px 22px;
  }
  .about-intro__label,
  .support-intro__label {
    margin-bottom: 20px;
    font-size: 42px;
  }
  .about-intro__title,
  .support-intro__title {
    font-size: clamp(2rem, 11vw, 3rem);
  }
  .about-intro__text,
  .support-intro__text {
    font-size: 15px;
  }
  .about-intro__image {
    top: -28px;
    right: auto;
    left: 66%;
    width: 250px;
    min-width: 200px;
    transform: translateX(-50%);
  }
  .about-intro__bottom {
    order: 3;
    width: 100%;
    padding: 40px 16px 48px;
  }
  .about-intro__bottom-content {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }
  .about-intro__heading {
    font-size: 40px;
  }
  .about-organisations {
    margin: 56px auto;
    padding: 0 20px;
    gap: 56px;
  }
  .about-organisation {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-organisation__image, .about-organisation__content {
    width: 100%;
    justify-self: stretch;
  }
  .about-organisation__content {
    text-align: left;
  }
  .about-organisation__content h2 {
    font-size: 40px;
  }
  .about-organisation--image-left .about-organisation__image,
  .about-organisation--image-left .about-organisation__content {
    justify-self: stretch;
  }
  .about-organisation--image-right .about-organisation__content {
    order: 1;
    justify-self: stretch;
  }
  .about-organisation--image-right .about-organisation__image {
    order: 2;
    justify-self: center;
  }
  .about-organisation__image--logo img {
    max-width: 280px;
  }
  .support-contact {
    padding: 64px 20px;
  }
  .support-contact__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .support-contact__content h2 {
    font-size: 40px;
  }
  .support-contact__content p {
    font-size: 15px;
  }
  .support-contact .read-more {
    width: 100%;
    justify-self: stretch;
  }
}
.download-modal__body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 0 20px;
  text-align: center;
}
.download-modal__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
}
.download-modal__buttons .read-more {
  min-width: 150px;
}

@media (max-width: 600px) {
  .download-modal__buttons {
    flex-direction: column;
  }
  .download-modal__buttons .read-more {
    box-sizing: border-box;
    width: 100%;
  }
}
.apply-page .apply-needed h2,
.apply-page .apply-deadline__inner h2,
.apply-page .application-form-section > h2 {
  margin: 0;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
}
.apply-page .apply-intro .support-intro__top {
  background-image: url(/Images/Apply/bg-cover.jpg);
  background-position-x: center;
  background-position-y: -200px;
  background-size: cover;
  background-repeat: no-repeat;
}
.apply-page .apply-needed {
  padding: 44px 24px 42px;
  text-align: center;
}
.apply-page .apply-needed h2 {
  margin-bottom: 28px;
}
.apply-page .apply-needed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.apply-page .apply-needed__item h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}
.apply-page .apply-needed__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}
.apply-page .apply-deadline {
  padding: 42px 24px 46px;
  background: #000;
  color: #fff;
  text-align: center;
}
.apply-page .apply-deadline__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.apply-page .apply-deadline__inner h2 {
  margin-bottom: 8px;
}
.apply-page .apply-deadline__inner p {
  max-width: 900px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.apply-page .apply-deadline__date {
  margin: 0;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
}
.apply-page .application-form-section {
  padding: 48px 24px 80px;
  text-align: center;
}
.apply-page .application-form-section > h2 {
  margin-bottom: 32px;
}
.apply-page .application-form-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 48px;
  background: #fafafa;
  text-align: left;
}

#application-stage-nav {
  counter-reset: stage;
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 32px 0;
  gap: 18px;
}
#application-stage-nav .stage-button {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
#application-stage-nav .stage-button.has-errors {
  border-color: #c8102e !important;
  color: #c8102e !important;
}
#application-stage-nav .stage-button.has-errors * {
  color: #c8102e !important;
}
#application-stage-nav .stage-button.has-errors::before, #application-stage-nav .stage-button.has-errors::after {
  border-color: #c8102e !important;
}
#application-stage-nav .stage-button.has-errors .stage-button__error-icon {
  display: inline-flex;
}

.stage-button {
  counter-increment: stage;
  position: relative;
  appearance: none;
  display: grid;
  flex: 0 0 72px;
  grid-template-rows: 44px 7px auto;
  align-items: start;
  width: 72px;
  min-height: 96px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #8f8f8f;
  font-family: inherit;
  font-size: 0;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: flex-basis 0.25s ease, width 0.25s ease, color 0.2s ease;
}
.stage-button::before {
  content: counter(stage);
  display: block;
  color: currentColor;
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.stage-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 7px;
  margin: 25px 0 10px;
  background: currentColor;
}
.stage-button__error-icon {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: #c8102e !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
.stage-button__error-icon i {
  display: block;
  color: #c8102e !important;
  font-size: 14px;
  line-height: 1;
}
.stage-button.is-past, .stage-button.active {
  color: #ff00a0;
}
.stage-button.is-future {
  color: #8f8f8f;
}
.stage-button.active {
  flex: 1 1 auto;
  width: auto;
  min-width: 260px;
  color: #ff00a0;
  font-size: 20px;
}
.stage-button:focus-visible {
  outline: 2px solid #ff00a0;
  outline-offset: 6px;
}

#apply-form,
#preview-form {
  width: 100%;
  margin-bottom: 20px;
  padding: 48px 56px;
  background: #fafafa;
  box-sizing: border-box;
}
#apply-form .form-step,
#preview-form .form-step {
  margin: 0;
  padding: 0;
  border: 0;
}
#apply-form .c-form-radio-option,
#preview-form .c-form-radio-option {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 10px 0;
  gap: 10px;
  cursor: pointer;
}
#apply-form .c-form-radio-option input[type=radio],
#preview-form .c-form-radio-option input[type=radio] {
  flex: 0 0 auto;
  margin: 3px 0 0;
}
#apply-form .c-form-label + .c-form-radio-option,
#preview-form .c-form-label + .c-form-radio-option {
  margin-top: 16px;
}

.step-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px 0 16px;
  gap: 20px;
}

.c-btn--primary {
  border: none !important;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 35.33%, rgba(255, 255, 255, 0.25) 71.05%), #ff00a0;
  background-color: #ff00a0 !important;
  color: #fff;
  transition: background-color 0.2s ease;
}
.c-btn--primary:hover {
  background-color: #f852ba !important;
  color: #fff;
}

.c-btn--secondary {
  border-color: #ff00a0 !important;
  background-color: transparent;
  color: #ff00a0 !important;
}
.c-btn--secondary:hover {
  background-color: #ff00a0 !important;
  color: #fff !important;
}

.c-btn--disabled {
  border-color: #808080 !important;
  background-color: transparent;
  color: #808080 !important;
  opacity: 0.6;
}
.c-btn--disabled:hover {
  border-color: #808080 !important;
  background-color: transparent;
  color: #808080 !important;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .apply-page .apply-needed h2,
  .apply-page .apply-deadline__inner h2,
  .apply-page .application-form-section > h2 {
    font-size: 42px;
  }
  .apply-page .apply-needed__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apply-page .application-form-wrap {
    padding: 32px 24px;
  }
  #application-stage-nav {
    gap: 12px;
  }
  .stage-button {
    width: 52px;
    flex-basis: 52px;
  }
  .stage-button.active {
    min-width: 220px;
  }
  #preview-form {
    padding: 36px 32px;
  }
  .step-navigation {
    margin: 32px 0 12px;
  }
}
@media (max-width: 640px) {
  #application-stage-nav {
    flex-wrap: wrap;
    padding: 10px;
  }
  .stage-button {
    width: 46px;
    min-height: 80px;
    flex-basis: 46px;
    grid-template-rows: 36px 6px auto;
  }
  .stage-button::before {
    font-size: 34px;
  }
  .stage-button::after {
    height: 6px;
  }
  .stage-button.active {
    flex: 1 1 100%;
    min-width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 560px) {
  .apply-page .apply-needed h2,
  .apply-page .apply-deadline__inner h2,
  .apply-page .application-form-section > h2 {
    font-size: 36px;
  }
  .apply-page .apply-needed {
    padding: 36px 20px;
  }
  .apply-page .apply-needed__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .apply-page .apply-deadline {
    padding: 36px 20px 40px;
  }
  .apply-page .application-form-section {
    padding: 40px 20px 64px;
  }
  .apply-page .application-form-wrap {
    padding: 28px 18px;
  }
  #preview-form {
    padding: 28px 20px;
  }
  .step-navigation {
    flex-wrap: wrap;
    margin: 28px 0 8px;
    gap: 12px;
  }
}
.form-step {
  margin: 0;
  padding: 0;
  border: 0;
}
.form-step h2 {
  margin: 0 0 32px;
  color: #ff00a0;
  font-family: "EB Garamond", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: normal;
  text-align: center;
  text-transform: none;
}

.c-form-checkbox li {
  color: #4a4a4a;
}

.c-form-checkbox__details li {
  color: #4a4a4a;
}

.word-limit {
  min-height: 150px;
}

select.c-form-input {
  padding-right: 45px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 8px;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

select.c-form-input::-ms-expand {
  display: none;
}

.c-form-question-title {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.fileuploader-theme-boxafter .fileuploader-input {
  margin-top: 10px !important;
}

.fileuploader {
  background: transparent !important;
}

.c-form-checkbox--bold {
  font-weight: 700;
}
.c-form-checkbox--bold a {
  font-weight: 700;
}

.c-modal__body a {
  color: #ff00a0;
}

.c-form-checkbox__caption a {
  color: #ff00a0;
}

.c-form-checkbox a {
  color: #ff00a0;
}

.failure,
.error-msg,
.login-error {
  color: #c8102e;
}
.failure p,
.error-msg p,
.login-error p {
  color: #c8102e !important;
}

.c-form-combo__btn {
  line-height: 2.22em !important;
}

.site-footer {
  background: #f7f7f7;
  color: #000;
}
.site-footer a {
  color: #000;
  text-decoration: none;
}
.site-footer a:hover, .site-footer a:focus {
  text-decoration: underline;
}
.site-footer__main {
  padding: 84px 0 72px;
  border-bottom: 1px solid #d7d7d7;
}
.site-footer__main-row {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.8fr;
  gap: 130px;
  align-items: flex-start;
}
.site-footer__brand {
  display: grid;
  grid-template-columns: repeat(3, 155px);
  align-items: center;
  gap: 32px 40px;
}
.site-footer__brand img {
  display: block;
  width: 155px;
  height: 134px;
  min-width: 155px;
  max-width: 155px;
  margin: 0;
  padding-right: 0 !important;
  object-fit: contain;
  object-position: center;
  max-height: none !important;
}
.site-footer__brand p {
  grid-column: 1/-1;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}
.site-footer__nav h2 {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}
.site-footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__nav a {
  font-size: 17px;
  line-height: 1.35;
}
.site-footer__legal {
  background: #fff;
  padding: 24px 0;
}
.site-footer__legal-row {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-footer__sky {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.site-footer__sky img {
  display: block;
  height: auto;
}
.site-footer__sky span {
  font-size: 15px;
  white-space: nowrap;
}
.site-footer__legal-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer__legal-nav a {
  font-size: 15px;
  line-height: 1.4;
}
.site-footer__gradient {
  height: 6px;
  background: linear-gradient(90deg, #ff4b00 0%, #ff007a 28%, #8a2cff 58%, #0057ff 100%);
}

@media (max-width: 900px) {
  .site-footer__main {
    padding: 56px 0 48px;
  }
  .site-footer__main-row {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 30px;
  }
  .site-footer__brand {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 24px;
  }
  .site-footer__brand img {
    width: 100%;
    height: 110px;
    min-width: 0;
    max-width: 155px;
    justify-self: center;
  }
  .site-footer__legal-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 560px) {
  .site-footer__main {
    padding: 44px 0;
  }
  .site-footer__main-row {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 30px;
  }
  .site-footer__nav ul {
    gap: 16px;
  }
  .site-footer__legal-nav ul {
    gap: 16px 22px;
  }
}
