@charset "UTF-8";
:root {
  --primary-font: "Montserrat", sans-serif;
  --secondary-font: "Vollkorn", sans-serif;
  --primary-accent-color: #007bff;
}

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

html[data-theme=light] {
  --background: #ecf5ff;
}

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: 0;
}

.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: 24px;
  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;
}
.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: 1;
}
.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;
}

.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 */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--primary-font);
  color: #333333;
  font-weight: 600;
  font-size: 13px;
  line-height: 100%;
  border: 1px solid #f1f1f1;
  transition: border-color 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.pagination__item:hover {
  transform: scale(105%);
  border-color: var(--primary-accent-color);
  color: var(--primary-accent-color);
}
.pagination__item--dots {
  border: none;
  pointer-events: none;
}
.pagination__item--active {
  background-color: var(--primary-accent-color);
  color: #fff;
  border: none;
  pointer-events: none;
}
.pagination__arrow {
  width: 16px;
  height: 16px;
}
.pagination__arrow--prev {
  transform: rotate(180deg);
}
.event-slider .swiper {
  position: relative;
}
.event-slider__slide {
  display: grid;
  grid-template-columns: 58fr 42fr;
  overflow: hidden;
  border-radius: 24px;
}
.event-slider__media {
  position: relative;
  padding-top: 56.25%;
}
.event-slider__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-slider__content {
  position: relative;
  padding: 40px 20px 100px 20px;
  background-position: center bottom;
  box-shadow: -5px -5px 250px 0px rgba(0, 0, 0, 0.0196078431) inset;
}
.event-slider__content * {
  position: relative;
  z-index: 1;
  color: white;
  font-family: var(--primary-font);
}
.event-slider__content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(25px);
          backdrop-filter: blur(25px);
  background: radial-gradient(173.29% 179.59% at 0% 0%, rgba(12, 12, 12, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 0;
}
.event-slider__date {
  display: inline-block;
  font-family: var(--primary-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 15px;
}
.event-slider__title {
  font-family: var(--secondary-font);
  font-weight: 800;
  font-size: 46px;
  line-height: 130%;
  margin-bottom: 10px;
}
.event-slider__description {
  font-family: var(--primary-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  margin-bottom: 20px;
}
.event-slider__info {
  font-family: var(--primary-font);
  color: #e8e8e8;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin-bottom: 35px;
}
.event-slider__nav {
  position: absolute;
  top: auto;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: flex;
  gap: 40px;
  margin-top: auto;
}
.event-slider__nav-button {
  width: 60px;
  height: 60px;
  transition: scale 0.25s ease;
}
.event-slider__nav-button.swiper-button-disabled {
  opacity: 0.8;
  pointer-events: none;
}
.event-slider__nav-button--prev {
  transform: rotate(180deg);
}
.event-slider__nav-button:active {
  scale: 0.9;
}
.event-slider__nav-button:hover svg {
  fill: var(--primary-accent-color);
}
.event-slider__nav-button:hover svg path {
  stroke: white;
}
.event-slider__nav-button svg {
  width: 100%;
  height: 100%;
  fill: white;
  transition: fill 0.25s ease;
}
.event-slider__nav-button svg path {
  stroke: var(--primary-accent-color);
  transition: stroke 0.25s ease;
}

.upcoming-events__title {
  margin-bottom: 30px;
}
.upcoming-events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 27px;
  margin-bottom: 60px;
}
@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;
  }
}
@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;
  }
  .footer__container {
    padding: 0 25px;
  }
  .footer-nav__page-link {
    font-size: 18px;
  }
  .event-slider__date {
    font-size: 16px;
  }
  .event-slider__title {
    font-size: 36px;
  }
  .event-slider__description {
    font-size: 20px;
  }
  .event-slider__info {
    font-size: 14px;
    margin-bottom: 25px;
  }
  .upcoming-events__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
  }
}
@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;
  }
  .footer__container {
    padding: 0 15px;
  }
  .footer-nav__pages {
    gap: 30px;
  }
  .footer-nav__page-link {
    font-size: 16px;
  }
  .event-slider__nav {
    gap: 25px;
  }
  .event-slider__nav-button {
    width: 45px;
    height: 45px;
  }
}
@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;
  }
  .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-slider .container {
    padding: 0;
  }
  .event-slider__slide {
    border-radius: 0;
    grid-template-columns: 1fr;
  }
  .event-slider__content {
    padding: 10px 10px 70px 10px;
  }
  .event-slider__button {
    width: 100%;
  }
  .event-slider__nav {
    display: none;
  }
}
@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-slider__date {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .event-slider__title {
    font-size: 22px;
  }
  .event-slider__description {
    font-size: 16px;
  }
  .event-slider__info {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .upcoming-events__title {
    text-align: center;
    margin-bottom: 15px;
  }
  .upcoming-events__grid {
    margin-bottom: 30px;
  }
}
@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;
  }
}