@charset "UTF-8";
:root {
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Vollkorn", sans-serif;
  --primary-accent-color: #007bff;
  --icon-breadcrumb-arrow: url(../images/icon-breadcrumb.svg);
}

:root {
  --header-height: 90px;
}

html[data-theme=light] {
  --background: #ecf5ff;
  --icon-breadcrumb-arrow: url(../images/icon-breadcrumb.svg);
}

html[data-accent-theme=primary] {
  --clr-accent-light: #ffd700;
}

/* Josh Comeau’s Reset */
/* https://www.joshwcomeau.com/css/custom-css-reset/ */
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin & padding */
* {
  margin: 0;
  padding: 0;
}

/* 3. Enable keyword animations */
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 8. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

html {
  scroll-behavior: smooth;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: black;
  background-color: white;
  min-width: 320px;
}
body.overflow-hidden {
  overflow: hidden;
  padding-right: var(--hp-scrollbar-width);
}

main {
  flex-grow: 1;
}

ul,
ol {
  list-style: none;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.wrapper {
  flex-grow: 1;
  font-family: Arial, Helvetica, sans-serif;
  z-index: 1;
}

.container {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.container--fluid {
  max-width: 100%;
  padding: 0 !important;
}
.container--2xl {
  max-width: 1920px;
}

.primary-section {
  padding: 30px 0;
}
.primary-section:last-of-type {
  padding-bottom: 70px;
}

.relative {
  position: relative;
}

.button {
  display: inline-block;
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  box-shadow: 0px 1px 4px 0px rgba(25, 33, 61, 0.0784313725);
  padding: 16px 45px;
  border-radius: 100px;
  transition: background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, color 0.25s ease;
}
.button--primary {
  color: white;
  background-color: var(--primary-accent-color);
  border: 1px solid var(--primary-accent-color);
}
.button--primary:hover {
  opacity: 0.8;
}
.button--outline {
  color: #12151f;
  border: 2px solid #12151f;
  background-color: transparent;
}
.button--outline:hover {
  color: var(--primary-accent-color);
  border-color: var(--primary-accent-color);
}
.button--inverted {
  color: white;
  border: 1px solid #ffffff;
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.button--inverted:hover {
  background-color: rgba(0, 123, 255, 0.1019607843);
  border-color: var(--primary-accent-color);
}

.primary-headline {
  font-family: var(--secondary-font);
  color: #12151f;
  font-weight: 800;
  line-height: 1.3;
}
.primary-headline--h1 {
  font-size: 64px;
}
.primary-headline--h2 {
  font-size: 46px;
}

.primary-typography-styles > :first-child {
  margin-top: 0;
}
.primary-typography-styles h1,
.primary-typography-styles h2,
.primary-typography-styles h3,
.primary-typography-styles h4,
.primary-typography-styles h5,
.primary-typography-styles h6 {
  font-style: normal;
  font-family: var(--secondary-font);
  color: #12151f;
  font-weight: 800;
  line-height: 130%;
  margin: 15px 0;
}
.primary-typography-styles h1 a,
.primary-typography-styles h2 a,
.primary-typography-styles h3 a,
.primary-typography-styles h4 a,
.primary-typography-styles h5 a,
.primary-typography-styles h6 a {
  font-size: inherit;
}
.primary-typography-styles h1 a u,
.primary-typography-styles h2 a u,
.primary-typography-styles h3 a u,
.primary-typography-styles h4 a u,
.primary-typography-styles h5 a u,
.primary-typography-styles h6 a u {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.primary-typography-styles h1 {
  font-size: 64px;
}
.primary-typography-styles h2 {
  font-size: 46px;
}
.primary-typography-styles h3 {
  font-size: 32px;
}
.primary-typography-styles h4 {
  font-size: 24px;
}
.primary-typography-styles h5 {
  font-size: 18px;
}
.primary-typography-styles h6 {
  font-size: 16px;
}
.primary-typography-styles a {
  font-family: var(--primary-font);
  color: var(--primary-accent-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-decoration: underline;
  -webkit-text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
          text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
  text-decoration-thickness: 2px;
  -webkit-text-decoration: solid underline rgba(0, 123, 255, 0.3019607843) 2px;
          text-decoration: solid underline rgba(0, 123, 255, 0.3019607843) 2px;
  text-underline-offset: 4px;
  transition: opacity 0.25s ease;
}
.primary-typography-styles a:hover {
  opacity: 0.8;
}
.primary-typography-styles a u {
  -webkit-text-decoration: none;
  text-decoration: none;
}
.primary-typography-styles p {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin: 15px 0;
}
.primary-typography-styles img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 24px;
}
.primary-typography-styles ul,
.primary-typography-styles ol {
  padding-left: 20px;
}
.primary-typography-styles ul {
  list-style: disc;
}
.primary-typography-styles ol {
  list-style: numeric;
}
.primary-typography-styles li {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  margin: 10px 0;
}

.event-card {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #f6f1f0;
  box-shadow: 0px 4px 12px 0px rgba(13, 10, 44, 0.0588235294);
}
.event-card__media {
  position: relative;
  padding-top: 56.25%;
}
.event-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-card__content {
  padding: 15px 10px;
}
.event-card__content-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.event-card__date, .event-card__location {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 500;
  font-size: 14px;
  line-height: 150%;
}
.event-card__location {
  gap: 5px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.event-card__location svg {
  width: 20px;
  height: 20px;
}
.event-card__title {
  font-family: var(--secondary-font);
  color: #12151f;
  font-weight: 800;
  font-size: 18px;
  line-height: 130%;
  margin-bottom: 15px;
}
.event-card__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.event-card__button {
  padding-left: 10px;
  padding-right: 10px;
  min-width: fit-content;
  flex: 1;
}

.header {
  top: 0;
  position: sticky;
  background-color: #ffffff;
  z-index: 3;
}
.header__container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1920px;
}
.global-nav__menu-trigger-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 10px;
  z-index: 2;
}
.global-nav__menu-trigger-button:active svg polyline {
  stroke: var(--primary-accent-color);
}
.global-nav__menu-trigger-button svg polyline {
  stroke: #12151f;
  transition: stroke 0.3s ease;
}
.global-nav__location-trigger-button {
  min-width: 50px;
  width: 50px;
  height: 50px;
}
.global-nav__location-trigger-button svg {
  width: 100%;
  height: 100%;
}
.global-nav__close-button {
  display: none;
  margin-top: auto;
  width: 100%;
  font-family: var(--primary-font);
  color: #12151f;
  font-weight: 700;
  font-size: 14px;
  line-height: 130%;
  border: 2px solid #12151f;
  border-radius: 100px;
  padding: 11px;
  max-width: 580px;
}
.global-nav__logo {
  display: flex;
  height: 100%;
  width: 283px;
  transition: transform 0.25s ease;
}
.global-nav__logo:hover {
  transform: scale(102%);
}
.global-nav__content {
  display: flex;
  align-items: center;
  height: var(--header-height);
}
.global-nav__pages {
  overflow: hidden;
  display: flex;
  align-items: center;
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 150px;
  margin-right: 20px;
}
.global-nav__page-link {
  display: inline-block;
  font-family: var(--primary-font);
  color: #12151f;
  font-weight: 700;
  font-size: 20px;
  line-height: 250%;
  text-align: center;
  transition: color 0.25s ease;
}
.global-nav__page-link:hover {
  color: var(--primary-accent-color);
}
.global-nav__dropdowns {
  gap: 40px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.global-nav__dropdown {
  position: relative;
}
.global-nav__dropdown--language:hover .global-nav__dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: none;
}
.global-nav__dropdown--language:hover .global-nav__dropdown-arrow {
  transform: rotate(180deg);
}
.global-nav__dropdown-button {
  font-family: var(--primary-font);
  color: #12151f;
  font-weight: 400;
  font-size: 18px;
  line-height: 250%;
  display: flex;
  align-items: center;
}
.global-nav__dropdown-icon {
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.global-nav__dropdown-arrow {
  min-width: 30px;
  width: 30px;
  height: 30px;
  margin-left: 10px;
  transition: transform 0.4s ease;
}
.global-nav__dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid #eff0f6;
  background-color: #ffffff;
  box-shadow: 0px 9px 26px 0px rgba(23, 15, 73, 0.0509803922), 0px 10px 14px 0px rgba(74, 58, 255, 0.0117647059);
  transform: translateY(-20px) scale(0.9);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.4s ease, visibility 0.4s ease, opacity 0.4s ease;
}
.global-nav__dropdown-item {
  font-family: var(--primary-font);
  color: #5c5e60;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  padding: 9px;
  transition: color 0.25s ease;
}
.global-nav__dropdown-item:hover {
  color: var(--primary-accent-color);
}
.global-nav__dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eff0f7;
}
.global-nav__dropdown-item--active {
  font-weight: 700;
  color: var(--primary-accent-color);
}
.global-nav__curtain {
  background: rgba(232, 232, 237, 0.4);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  visibility: hidden;
  position: fixed;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms, visibility 0.32s step-end 80ms;
}
.global-nav__social-list {
  opacity: 0;
  transform: translateY(-30px);
  transition-delay: 0s;
  transition-duration: min(0.16s + 20ms * (var(--global-nav-flyout-page-item-total) - var(--global-nav-flyout-page-item-number)), 0.24s);
  transition-property: opacity, transform, visibility;
  transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1), cubic-bezier(0.4, 0, 0.6, 1), step-start;
  display: flex;
  gap: 16px;
}
.global-nav__social-link {
  display: block;
  width: 36px;
  height: 36px;
}
.global-nav__social-link:hover svg {
  fill: white;
}
.global-nav__social-link:hover svg path {
  fill: var(--primary-accent-color);
}
.global-nav__social-link svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-accent-color);
  transition: transform 0.25s ease-in-out, fill 0.25s ease-in-out;
}
.global-nav__social-link svg path {
  fill: white;
  transition: fill 0.25s ease-in-out;
}

.header-message {
  top: var(--header-height);
  position: sticky;
  background-color: #f4ffec;
  z-index: 2;
}
.header-message--nothing-found {
  background-color: #fff8ec;
}
.header-message--hide {
  display: none;
}
.header-message__progress {
  height: 3px;
  background-color: #d6ffd4;
}
.header-message__progress-bar {
  width: 0;
  height: 100%;
  background-color: #09fd05;
}
.header-message__text {
  font-family: var(--primary-font);
  color: #12151f;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  margin: 0 auto;
  padding: 7px 30px 10px 30px;
  max-width: 1920px;
  text-align: center;
}
.header-message__text strong {
  font-weight: 700;
}
.header-message__location-trigger-button {
  font-weight: 700;
  color: #007bff;
  text-underline-offset: 2px;
  text-decoration: underline;
  -webkit-text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
          text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
  text-decoration-thickness: 2px;
  -webkit-text-decoration: underline solid 2px rgba(0, 123, 255, 0.3019607843);
          text-decoration: underline solid 2px rgba(0, 123, 255, 0.3019607843);
}

.footer {
  background-color: #130d0b;
  padding: 50px 0;
  z-index: 0;
}
.footer__container {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1920px;
}
.footer__wrapper {
  gap: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d4d2e3;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.footer__logo {
  display: flex;
  height: 100%;
  width: 170px;
  transition: transform 0.25s ease;
}
.footer__logo:hover {
  transform: scale(102%);
}
.footer__social-list {
  display: flex;
  gap: 16px;
}
.footer__social-link {
  display: block;
  width: 36px;
  height: 36px;
}
.footer__social-link:hover svg {
  fill: var(--primary-accent-color);
}
.footer__social-link:hover svg path {
  fill: white;
}
.footer__social-link svg {
  width: 100%;
  height: 100%;
  fill: white;
  transition: transform 0.25s ease-in-out, fill 0.25s ease-in-out;
}
.footer__social-link svg path {
  fill: var(--primary-accent-color);
  transition: fill 0.25s ease-in-out;
}
.footer-nav__pages {
  display: flex;
  column-gap: 60px;
}
.footer-nav__page-link {
  font-family: var(--primary-font);
  color: white;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
  transition: color 0.25s ease;
}
.footer-nav__page-link:hover {
  color: var(--primary-accent-color);
}
.footer__copyright {
  font-family: var(--primary-font);
  color: #ededed;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
}

/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, 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") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.event-article__main-title {
  margin: 0 auto;
  max-width: 1100px;
  text-align: center;
  margin-bottom: 50px;
}
.event-article__hero {
  display: grid;
  grid-template-columns: 50fr 50fr;
  margin-bottom: 60px;
}
.event-article__media {
  overflow: hidden;
  position: relative;
  padding-top: 56.25%;
  border-radius: 24px;
}
.event-article__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-article__location, .event-article__date {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.event-article__location svg, .event-article__date svg {
  width: 30px;
  height: 30px;
}
.event-article__location {
  font-family: var(--primary-font);
  color: var(--primary-accent-color);
  font-weight: 700;
  font-size: 18px;
  line-height: 130%;
  text-decoration: underline;
  -webkit-text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
          text-decoration: underline solid rgba(0, 123, 255, 0.3019607843);
  text-decoration-thickness: 2px;
  -webkit-text-decoration: solid underline rgba(0, 123, 255, 0.3019607843) 2px;
          text-decoration: solid underline rgba(0, 123, 255, 0.3019607843) 2px;
  text-underline-offset: 4px;
  transition: opacity 0.25s ease;
}
.event-article__location:hover {
  opacity: 0.8;
}
.event-article__date {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
}
.event-article__subtitle {
  font-family: var(--secondary-font);
  color: #12151f;
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
}
.event-article__current-sessions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.event-article__other-sessions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.event-article__session {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: fit-content;
  padding: 12px;
  border-radius: 100px;
  background-color: #eef6ff;
}
.event-article__session-info {
  font-family: var(--primary-font);
  color: #12151f;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
}
.event-article__session-info span {
  font-weight: 600;
}
.event-article__session-info strong {
  font-weight: 700;
}
.event-article__session-price {
  font-family: inherit;
  color: inherit;
  font-weight: 500;
  font-size: 12px;
  line-height: 150%;
}
.event-article__session-price strong {
  font-weight: 700;
}
.event-article__session-button {
  white-space: nowrap;
  padding: 10px 30px;
}
.event-article__session .button--outline {
  border-color: var(--primary-accent-color);
}
.event-article__fixed-session {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 5px 10px;
  background-color: white;
  box-shadow: 2px 10px 30px 0px rgba(12, 35, 67, 0.3019607843);
}
.event-article__fixed-session .button {
  padding: 10px 30px !important;
  display: flex;
  gap: 5px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.event-article__fixed-session .button .event-article__session-price {
  line-height: 125%;
}
.event-article__content {
  max-width: 800px;
  margin: 0 auto;
}

.related-events__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.related-events__nav {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.related-events__nav--clone {
  gap: 60px;
  margin-top: 15px;
  display: none;
}
.related-events__nav-button {
  width: 60px;
  height: 60px;
  transition: scale 0.25s ease, opacity 0.25s ease;
}
.related-events__nav-button.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.related-events__nav-button--prev {
  transform: rotate(180deg);
}
.related-events__nav-button:active {
  scale: 0.9;
}
.related-events__nav-button:hover {
  opacity: 0.8;
}
.related-events__nav-button svg {
  width: 100%;
  height: 100%;
  fill: var(--primary-accent-color);
}
.related-events__nav-button svg path {
  stroke: white;
}
.related-events .swiper {
  overflow: clip;
  padding-left: calc((100% - 1860px) / 2);
  padding-right: 30px;
}
.related-events .swiper-wrapper {
  padding-bottom: 15px;
}
.related-events .swiper-slide {
  width: fit-content;
  height: auto;
}
.related-events .event-card {
  width: 420px;
}

.faq {
  max-width: 1100px;
  margin: 0 auto;
}
.faq__title {
  text-align: center;
  margin-bottom: 20px;
}
.faq__subtitle {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  text-align: center;
  margin-bottom: 40px;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-bottom: 1px solid #d7d7d7;
  padding: 30px 0;
}
.faq__item:has([open]) .faq__summary-icon {
  transform: rotate(45deg);
}
.faq__item:has([open]) .faq__summary-icon:after {
  opacity: 0;
}
.faq__item:has([open]) .faq__content {
  padding-top: 13px;
  grid-template-rows: 1fr;
}
.faq__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
  transition: padding 0.3s ease;
}
.faq__summary::-webkit-details-marker, .faq__summary::marker {
  display: none;
}
.faq__summary-title {
  font-family: var(--secondary-font);
  color: #12151f;
  font-weight: 800;
  font-size: 24px;
  line-height: 130%;
}
.faq__summary-icon {
  position: relative;
  min-width: 38px;
  width: 38px;
  height: 38px;
  transition: transform 0.3s ease;
}
.faq__summary-icon:after, .faq__summary-icon:before {
  position: absolute;
  content: "";
  inset: 0;
  margin: auto;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #101010;
  border-radius: 2px;
  transform: rotate(45deg);
  transition: opacity 0.3s ease;
}
.faq__summary-icon:before {
  transform: rotate(-45deg);
}
.faq__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease;
  padding-right: 50px;
}
.faq__content p {
  font-family: var(--primary-font);
  color: #32281f;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.faq__content * {
  overflow: hidden;
}
@media screen and (min-width: 576px){
  .event-article__fixed-session {
    display: none;
  }
}
@media screen and (min-width: 768px){
  .global-nav__menu-trigger-button {
    display: none;
  }
  .global-nav__location-trigger-button {
    display: none;
  }
  .global-nav__dropdown--city:hover .global-nav__dropdown-menu, .global-nav__dropdown--country:hover .global-nav__dropdown-menu {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .global-nav__dropdown--city:hover .global-nav__dropdown-arrow, .global-nav__dropdown--country:hover .global-nav__dropdown-arrow {
    transform: rotate(180deg);
  }
  .global-nav__social-list {
    display: none;
  }
  .header-message {
    display: none;
  }
}
@media screen and (min-width: 1200px){
  .event-article__details {
    padding-left: 40px;
  }
}
@media screen and (max-width: 1920px){
  .related-events .swiper {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1560px){
  .related-events .event-card {
    width: 380px;
  }
}
@media screen and (max-width: 1360px){
  .primary-headline--h1 {
    font-size: 56px;
  }
  .primary-typography-styles h1 {
    font-size: 56px;
  }
  .global-nav__pages {
    column-gap: 40px;
    margin-left: 80px;
  }
  .footer-nav__pages {
    column-gap: 40px;
  }
}
@media screen and (max-width: 1200px){
  :root {
    --header-height: 70px;
  }
  .container {
    padding: 0 25px;
  }
  .primary-headline--h1 {
    font-size: 48px;
  }
  .primary-typography-styles h1 {
    font-size: 48px;
  }
  .header__container {
    padding: 0 25px;
  }
  .global-nav__logo {
    width: 200px;
  }
  .global-nav__page-link {
    font-size: 18px;
  }
  .global-nav__dropdowns {
    gap: 25px;
  }
  .global-nav__dropdown-button {
    font-size: 16px;
  }
  .global-nav__dropdown-arrow {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .global-nav__dropdown-item {
    font-size: 14px;
  }
  .header-message__text {
    padding-left: 25px;
    padding-right: 25px;
  }
  .footer__container {
    padding: 0 25px;
  }
  .footer-nav__page-link {
    font-size: 18px;
  }
  .event-article__hero {
    margin-bottom: 40px;
    grid-template-columns: 1fr;
  }
  .event-article__details {
    padding-top: 30px;
  }
  .related-events .swiper {
    padding: 0 25px;
  }
  .related-events .event-card {
    width: 355px;
  }
}
@media screen and (max-width: 992px){
  .container {
    padding: 0 15px;
  }
  .primary-headline--h1 {
    font-size: 40px;
  }
  .primary-headline--h2 {
    font-size: 40px;
  }
  .primary-typography-styles h1 {
    font-size: 40px;
  }
  .primary-typography-styles h2 {
    font-size: 40px;
  }
  .primary-typography-styles h3 {
    font-size: 28px;
  }
  .primary-typography-styles h4 {
    font-size: 22px;
  }
  .primary-typography-styles h5 {
    font-size: 17px;
  }
  .primary-typography-styles h6 {
    font-size: 15px;
  }
  .primary-typography-styles a {
    font-size: 16px;
  }
  .primary-typography-styles p {
    font-size: 16px;
  }
  .primary-typography-styles li {
    font-size: 16px;
  }
  .header__container {
    padding: 0 15px;
  }
  .global-nav__logo {
    width: 153px;
  }
  .global-nav__pages {
    column-gap: 25px;
    margin-left: 40px;
  }
  .global-nav__page-link {
    font-size: 16px;
  }
  .global-nav__dropdowns {
    gap: 15px;
  }
  .global-nav__dropdown-button {
    font-size: 14px;
  }
  .global-nav__dropdown-arrow {
    margin-left: 5px;
  }
  .header-message__text {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
  }
  .footer__container {
    padding: 0 15px;
  }
  .footer-nav__pages {
    gap: 30px;
  }
  .footer-nav__page-link {
    font-size: 16px;
  }
  .event-article__main-title {
    margin-bottom: 40px;
  }
  .event-article__subtitle {
    font-size: 20px;
  }
  .related-events__nav-button {
    width: 45px;
    height: 45px;
  }
  .related-events .swiper {
    padding: 0 15px;
  }
  .faq__subtitle {
    font-size: 16px;
  }
  .faq__item {
    padding: 20px 0;
  }
  .faq__summary-title {
    font-size: 20px;
  }
  .faq__content p {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px){
  .container {
    padding: 0 10px;
  }
  .primary-headline--h1 {
    font-size: 32px;
  }
  .primary-headline--h2 {
    font-size: 34px;
  }
  .primary-typography-styles h1 {
    font-size: 32px;
  }
  .primary-typography-styles h2 {
    font-size: 34px;
  }
  .primary-typography-styles h3 {
    font-size: 24px;
  }
  .primary-typography-styles h4 {
    font-size: 20px;
  }
  .header__container {
    padding: 0 10px;
  }
  .global-nav--pages-open .global-nav__logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
    animation: identifier 480ms cubic-bezier(0.4, 0, 0.6, 1);
  }
  @keyframes identifier {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .global-nav--pages-open .global-nav__pages {
    height: 100dvh;
    overflow: auto;
  }
  .global-nav--pages-open .global-nav__social-list, .global-nav--pages-open .global-nav__page-item {
    opacity: 1;
    visibility: visible;
    transform: translate(0);
    transition-delay: calc(0.4s + var(--global-nav-flyout-page-item-number) * 100ms);
    transition-duration: 0.24s;
  }
  .global-nav--pages-open .global-nav__curtain {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms, visibility 0.32s step-start 80ms;
  }
  .global-nav--location-open .global-nav__dropdowns {
    padding: 40px 10px 10px 10px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    gap: 40px;
    z-index: 2;
    height: 100dvh;
    background-color: white;
    transition: height 480ms cubic-bezier(0.4, 0, 0.6, 1);
    flex-direction: column;
    overflow: auto;
  }
  .global-nav--location-open .global-nav__dropdown--city, .global-nav--location-open .global-nav__dropdown--country {
    display: initial;
  }
  .global-nav--location-open .global-nav__dropdown--language {
    display: none;
  }
  .global-nav--location-open .global-nav__location-trigger-button {
    display: none;
  }
  .global-nav--location-open .global-nav__close-button {
    display: initial;
  }
  .global-nav--location-open .global-nav__curtain {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.32s cubic-bezier(0.4, 0, 0.6, 1) 80ms, visibility 0.32s step-start 80ms;
  }
  .global-nav__content {
    transition: height 480ms cubic-bezier(0.4, 0, 0.6, 1);
  }
  .global-nav__pages {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
    z-index: 1;
    height: 0;
    background-color: white;
    transition: height 480ms cubic-bezier(0.4, 0, 0.6, 1);
    flex-direction: column;
  }
  .global-nav__page-item {
    width: 100%;
    opacity: 0;
    transform: translateY(-30px);
    transition-delay: 0s;
    transition-duration: min(0.16s + 20ms * (var(--global-nav-flyout-page-item-total) - var(--global-nav-flyout-page-item-number)), 0.24s);
    transition-property: opacity, transform, visibility;
    transition-timing-function: cubic-bezier(0.4, 0, 0.6, 1), cubic-bezier(0.4, 0, 0.6, 1), step-start;
  }
  .global-nav__page-item:first-child {
    padding-top: 130px;
  }
  .global-nav__page-link {
    font-weight: 600;
    width: 100%;
    font-size: 20px;
  }
  .global-nav__dropdowns {
    gap: 20px;
  }
  .global-nav__dropdown--open .global-nav__dropdown-menu {
    overflow: auto !important;
    max-height: 400px !important;
    border: 1px solid #eff0f6 !important;
  }
  .global-nav__dropdown--open .global-nav__dropdown-arrow {
    transform: rotate(180deg);
  }
  .global-nav__dropdown--language .global-nav__dropdown-label {
    display: none;
  }
  .global-nav__dropdown--language .global-nav__dropdown-arrow {
    display: none;
  }
  .global-nav__dropdown--city, .global-nav__dropdown--country {
    display: none;
    width: 100%;
  }
  .global-nav__dropdown--city .global-nav__dropdown-button, .global-nav__dropdown--country .global-nav__dropdown-button {
    width: 100%;
    font-size: 18px;
    justify-content: space-between;
  }
  .global-nav__dropdown--city .global-nav__dropdown-arrow, .global-nav__dropdown--country .global-nav__dropdown-arrow {
    min-width: 30px;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .global-nav__dropdown--city .global-nav__dropdown-menu, .global-nav__dropdown--country .global-nav__dropdown-menu {
    position: initial;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    border: none;
    border-radius: 6px;
  }
  .global-nav__dropdown--city .global-nav__dropdown-item, .global-nav__dropdown--country .global-nav__dropdown-item {
    font-size: 16px;
    padding: 14px 19px;
  }
  .global-nav__dropdown-icon {
    min-width: 50px;
    width: 50px;
    height: 50px;
    margin: 0;
  }
  .header-message__text {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer {
    padding: 30px 0;
  }
  .footer__container {
    padding: 0 10px;
  }
  .footer__wrapper {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .footer-nav__pages {
    display: grid;
    text-align: center;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__copyright {
    font-size: 16px;
  }
  .event-article__main-title {
    margin-bottom: 30px;
  }
  .related-events__header {
    justify-content: center;
    margin-bottom: 15px;
  }
  .related-events__header .related-events__nav {
    display: none;
  }
  .related-events__nav--clone {
    display: flex;
  }
  .related-events .swiper {
    padding: 0 10px;
  }
}
@media screen and (max-width: 576px){
  .primary-section {
    padding: 20px 0;
  }
  .primary-section:last-of-type {
    padding-bottom: 50px;
  }
  .button {
    font-size: 14px;
    padding: 10px 20px;
  }
  .primary-headline--h1 {
    font-size: 26px;
  }
  .primary-headline--h2 {
    font-size: 22px;
  }
  .primary-typography-styles h1,
  .primary-typography-styles h2,
  .primary-typography-styles h3,
  .primary-typography-styles h4,
  .primary-typography-styles h5,
  .primary-typography-styles h6 {
    margin: 10px 0;
  }
  .primary-typography-styles h1 {
    font-size: 26px;
  }
  .primary-typography-styles h2 {
    font-size: 22px;
  }
  .primary-typography-styles h3 {
    font-size: 20px;
  }
  .primary-typography-styles h4 {
    font-size: 18px;
  }
  .primary-typography-styles h5 {
    font-size: 16px;
  }
  .primary-typography-styles h6 {
    font-size: 14px;
  }
  .primary-typography-styles a {
    font-size: 14px;
  }
  .primary-typography-styles p {
    font-size: 14px;
    margin: 10px 0;
  }
  .primary-typography-styles img {
    border-radius: 16px;
    margin: 20px 0;
  }
  .primary-typography-styles li {
    font-size: 14px;
  }
  .event-card__date, .event-card__location {
    font-size: 10px;
  }
  .event-card__location svg {
    width: 15px;
    height: 15px;
  }
  .event-card__title {
    font-size: 14px;
  }
  .footer__copyright {
    font-size: 12px;
  }
  .event-article__main-title {
    margin-bottom: 10px;
  }
  .event-article__hero {
    margin-bottom: 20px;
  }
  .event-article__media {
    border-radius: 16px;
  }
  .event-article__details {
    padding-top: 15px;
  }
  .event-article__location, .event-article__date {
    gap: 10px;
    margin-bottom: 15px;
  }
  .event-article__location svg, .event-article__date svg {
    width: 25px;
    height: 25px;
  }
  .event-article__location {
    font-size: 14px;
  }
  .event-article__date {
    font-size: 14px;
  }
  .event-article__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .event-article__current-sessions {
    gap: 10px;
    margin-bottom: 20px;
  }
  .event-article__other-sessions {
    gap: 10px;
  }
  .event-article__session {
    padding: 10px;
  }
  .faq__title {
    margin-bottom: 10px;
  }
  .faq__subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .faq__item {
    padding: 15px 0;
  }
  .faq__summary-title {
    font-size: 16px;
  }
  .faq__summary-icon {
    min-width: 20px;
    width: 20px;
    height: 20px;
  }
  .faq__content p {
    font-size: 12px;
  }
}
@media screen and (max-width: 480px){
  .event-article__current-sessions .event-article__session {
    flex-direction: column;
  }
  .event-article__other-sessions .event-article__session {
    width: 100%;
  }
  .event-article__session {
    border-radius: 26px;
  }
  .event-article__session-button {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
@media (hover: hover){
  .global-nav__menu-trigger-button:hover svg polyline {
    stroke: var(--primary-accent-color);
  }
}
@media (prefers-reduced-motion: no-preference){
  html {
    interpolate-size: allow-keywords;
  }
}