@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;
}
@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 (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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}
@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;
  }
}