/* stylelint-disable */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

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

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

address {
  font-style: normal;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

a {
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
          text-decoration-skip: objects;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
  touch-action: manipulation;
}

label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  margin-bottom: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}

button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
}

button:focus {
  outline: none;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: none;
}

input:focus {
  outline: none;
}
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  box-sizing: border-box;
  padding: 0;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
     -moz-appearance: listbox;
          appearance: listbox;
}

textarea {
  resize: none;
  overflow: auto;
}

[hidden] {
  display: none !important;
}

ul,
ol {
  padding-left: 0;
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
          appearance: none;
}

input[type=number] {
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}

figure {
  margin: 0;
}

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

table {
  width: 100%;
}

:root {
  --scroll-width: 0px;
  --header-height: 3rem;
  --container-width: 67rem;
  --container-indent-x: 1rem;
  --border-radius-base: 0.8rem;
  --border-radius-sm: 0.2rem;
  --border-base: 0.05rem solid var(--color-stroke);
}
@media only screen and (min-width: 1025px) {
  :root {
    --header-height: 4rem;
  }
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  height: 100%;
  font-size: 125%;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font: var(--fs-base)/var(--lh-base) var(--ff-base);
  font-variation-settings: "wdth" 100;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  color: var(--color-primary-black);
  text-rendering: optimizelegibility;
  background-color: var(--color-page-bg);
}

body.preload * {
  transition: 0s !important;
  animation-duration: 0s !important;
}

::-moz-selection {
  color: var(--color-white);
  background-color: var(--color-blue);
}

::selection {
  color: var(--color-white);
  background-color: var(--color-blue);
}

main {
  flex: 1;
}

a {
  color: var(--color-link);
  background: transparent;
  transition: color 0.2s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
@media (hover: none) {
  a:active {
    text-decoration: none;
  }
}

.overflow {
  overflow-y: hidden;
  height: 100%;
  margin-right: var(--scroll-width);
}

.page {
  padding-top: var(--header-height);
}

.truncate {
  display: grid;
  row-gap: 1rem;
}
.truncate__inner {
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.scrollto {
  scroll-margin-top: var(--header-height);
}

@keyframes shaking {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotate(2deg);
  }
  50% {
    transform: translate(0, 0) rotate(0deg);
  }
  75% {
    transform: translate(-2px, 2px) rotate(-2deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.heading--h7, .heading--h4, .heading--h3, .heading--h2, .heading--h1, .heading {
  --h-w: 600;
  --h-fs: 1.5rem;
  --h-lh: 110%;
  --h-ls: normal;
  --h-mb: 0;
  --h-c: var(--color-black);
  margin-bottom: var(--h-mb);
  font-family: var(--ff-base), sans-serif;
  font-size: var(--h-fs);
  font-weight: var(--h-w);
  line-height: var(--h-lh);
  color: var(--h-c);
  letter-spacing: var(--h-ls);
}
.heading--h7:not(.accordion-item__heading) span, .heading--h4:not(.accordion-item__heading) span, .heading--h3:not(.accordion-item__heading) span, .heading--h2:not(.accordion-item__heading) span, .heading--h1:not(.accordion-item__heading) span, .heading:not(.accordion-item__heading) span {
  color: var(--color-blue);
}

.heading--h1 {
  --h-fs: 2rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h1 {
    --h-fs: 4.5rem;
  }
}

.heading--h2 {
  --h-fs: 1.75rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h2 {
    --h-fs: 2.25rem;
  }
}
@media only screen and (min-width: 1281px) {
  .heading--h2 {
    --h-fs: 3.5rem;
  }
}

.heading--h3 {
  --h-fs: 0.9rem;
  --h-lh: 120%;
}

.heading--h4 {
  --h-fs: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h4 {
    --h-fs: 1.75rem;
  }
}

.heading--h7 {
  --h-fs: 0.65rem;
}
@media only screen and (min-width: 1025px) {
  .heading--h7 {
    --h-fs: 0.75rem;
  }
}

.cookie__text, .paragraph--lg, .footer-nav__link, .header-nav__link, .paragraph--sm, .breadcrumbs__link, .button, .add-to-calendar::part(atcb-button), .paragraph {
  --p-ff: var(--ff-base);
  --p-fw: 400;
  --p-fs: 0.75rem;
  --p-lh: 170%;
  --p-c: var(--color-text);
  font-family: var(--p-ff), sans-serif;
  font-size: var(--p-fs);
  font-weight: var(--p-fw);
  line-height: var(--p-lh);
  color: var(--p-c);
}
@media only screen and (min-width: 1025px) {
  .cookie__text, .paragraph--lg, .footer-nav__link, .header-nav__link, .paragraph--sm, .breadcrumbs__link, .button, .add-to-calendar::part(atcb-button), .paragraph {
    --p-fs: 1rem;
  }
}

.breadcrumbs__link, .button, .add-to-calendar::part(atcb-button), .paragraph--sm {
  /* stylelint-disable order/order */
  --p-fs: 0.65rem;
}
@media only screen and (min-width: 1025px) {
  .breadcrumbs__link, .button, .add-to-calendar::part(atcb-button), .paragraph--sm {
    --h-fs: 0.75rem;
  }
}

.footer-nav__link, .header-nav__link, .paragraph--lg {
  /* stylelint-disable order/order */
  --p-fs: 1rem;
}
@media only screen and (min-width: 1025px) {
  .footer-nav__link, .header-nav__link, .paragraph--lg {
    --h-fs: 1.75rem;
  }
}

.icon {
  width: 1em;
  height: 1em;
  font-size: 1.2rem;
}

.lang-switcher {
  display: flex;
  gap: 1rem;
}
.lang-switcher__link {
  transition: color 0.3s;
  color: var(--color-black-50);
  font-size: 0.75rem;
}
.lang-switcher__link--active {
  color: var(--color-black);
}
@media (hover: hover) {
  .lang-switcher__link:hover:not(.lang-switcher__link--active) {
    color: var(--color-blue);
  }
}

.burger {
  --burger-width: 3rem;
  --burger-height: 3rem;
  --burger-padding: 0.6rem;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: var(--burger-width);
  height: var(--burger-height);
  padding: var(--burger-padding);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  transition: transform 0.2s;
}
.burger--active .burger__line {
  width: 1.4rem;
}
.burger--active .burger__line:nth-child(1) {
  transform: rotate(45deg) translate(0.1rem, 0.4rem);
}
.burger--active .burger__line:nth-child(2) {
  transform: rotate(-45deg) translate(0.1rem, -0.4rem);
}
.burger__line {
  will-change: transform, opacity, width;
  position: relative;
  width: 100%;
  height: 0.1rem;
  opacity: 1;
  background-color: var(--color-primary-white);
  border-radius: 0.2rem;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.burger:hover {
  cursor: pointer;
}

.add-to-calendar::part(atcb-button), .button {
  --p-button-y: 0.9rem;
  --p-button-x: 1.75rem;
  --color-button: var(--color-primary-white);
  --color-button__hover: var(--color-primary-white);
  --bg-color-button: transparent;
  --bg-color-button__hover: var(--bg-color-button);
  --bd-color-button: var(--bg-color-button);
  --bd-color-button__hover: var(--bg-color-button);
  transition: all 0.3s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--p-button-y) var(--p-button-x);
  font-family: var(--ff-primary), sans-serif;
  font-weight: 400;
  color: var(--color-button);
  font-size: 0.65rem;
  line-height: normal;
  text-align: center;
  background: var(--bg-color-button);
  border: 0.05rem solid var(--bd-color-button);
  border-radius: 3rem;
}
@media (hover: hover) {
  .add-to-calendar:hover::part(atcb-button), .button:hover {
    color: var(--color-button__hover);
    background: var(--bg-color-button__hover);
    border-color: var(--bd-color-button__hover);
  }
}
@media only screen and (min-width: 1025px) {
  .add-to-calendar::part(atcb-button), .button {
    font-size: 0.75rem;
  }
}
[disabled].add-to-calendar::part(atcb-button), [disabled].button {
  pointer-events: none;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
/* stylelint-disable no-invalid-position-at-import-rule */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--primary {
  --color-button: var(--color-white);
  --color-button__hover: var(--color-blue);
  --bg-color-button: var(--color-blue);
  --bg-color-button__hover: transparent;
  --bd-color-button: var(--bg-color-button);
  --bd-color-button__hover: var(--bg-color-button__hover);
  position: relative;
  overflow: hidden;
}
[disabled].button--primary {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--secondary {
  --color-button: var(--color-blue);
  --color-button__hover: var(--color-white);
  --bg-color-button: var(--color-white);
  --bg-color-button__hover: transparent;
  position: relative;
  overflow: hidden;
}
[disabled].button--secondary {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.add-to-calendar::part(atcb-button), .button--ghost {
  --color-button: var(--color-blue);
  --bd-color-button: var(--color-blue);
  --color-button__hover: var(--color-white);
  --bg-color-button__hover: var(--color-blue);
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .button--ghost:hover::before {
    opacity: 1;
  }
}
.button--ghost:active::after {
  opacity: 1;
}
[disabled].add-to-calendar::part(atcb-button), [disabled].button--ghost {
  pointer-events: none;
  opacity: 0.7;
}

:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

/* stylelint-disable */
/* stylelint-disable */
.button--ghost-light {
  --color-button: var(--color-white);
  --bd-color-button: var(--color-white);
  --bg-color-button__hover: var(--color-white);
  --color-button__hover: var(--color-blue);
  position: relative;
  overflow: hidden;
}
@media (hover: hover) {
  .button--ghost-light:hover::before {
    opacity: 1;
  }
}
.button--ghost-light:active::after {
  opacity: 1;
}
[disabled].button--ghost-light {
  pointer-events: none;
  opacity: 0.7;
}

/* stylelint-disable */
:root {
  --color-white: #FFF;
  --color-white-20: rgba(255, 255, 255, 0.20);
  --color-white-50: rgba(255, 255, 255, 0.50);
  --color-black: #000;
  --color-black-10: rgba(0, 0, 0, 0.1);
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-30: rgba(0, 0, 0, 0.3);
  --color-black-50: rgba(0, 0, 0, 0.5);
  --color-black-75: rgba(0, 0, 0, 0.75);
  --color-gray: #F3F3F3;
  --color-gray-dark: #DEDEDE;
  --color-blue-70: rgba(70, 143, 205, 0.7);
  --color-blue: #468FCD;
  --color-semidark-blue: #3272a7;
  --color-dark-blue: #003E74;
  --color-light-blue: #DEEDFF;
}

/* stylelint-disable */
/* stylelint-disable */
/*====
 BREAKPOINTS
 ====*/
:root {
  --mq-min: 360px;
  --mq-phone: 577px;
  --mq-phone-lg: 681px;
  --mq-tablet-small: 769px;
  --mq-tablet: 1025px;
  --mq-laptop: 1281px;
  --mq-laptop-large: 1441px;
  --mq-desktop: 1601px;
}

/* stylelint-disable */
:root {
  --fs-base-value: 20px;
  --fs-base: 20px;
  --lh-base: 150%;
}

:root {
  --ff-base: Inter, sans-serif;
}

.add-to-calendar::part(atcb-button), .button--sm {
  --p-button-y: 0.5rem;
  --p-button-x: 1rem;
}

.form {
  --field-icon-indent: 1rem;
  display: flex;
  flex-direction: column;
  grid-gap: 1rem;
}
@media only screen and (min-width: 1025px) {
  .form {
    grid-gap: 1.5rem;
  }
}
.form__field-group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media only screen and (min-width: 1025px) {
  .form__field-group {
    grid-template-columns: 1fr 1fr;
  }
}
.form__label-box {
  display: flex;
  align-items: center;
}
@media (hover: hover) {
  .form__label-box:hover .form__checkbox-custom {
    border-color: var(--color-primary-red);
  }
}
@media (hover: none) {
  .form__label-box:active .form__checkbox-custom {
    border-color: var(--color-primary-red);
  }
}
.form__label-box .form__checkbox {
  margin-right: 0.5rem;
}
.form__label {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}
@media (hover: hover) {
  .form__label:hover .form__label-text {
    opacity: 1;
  }
}
@media (hover: none) {
  .form__label:active .form__label-text {
    opacity: 1;
  }
}
.form__label-text {
  transition: opacity 0.3s;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.25rem;
  color: var(--color-black-50);
  font-size: 0.65rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .form__label-text {
    font-size: 0.75rem;
  }
}
.form__label-text--required::after {
  content: "*";
  position: absolute;
  top: 0;
  left: calc(100% + 0.1rem);
  color: var(--color-primary-black);
}
.form__error-message-box--error {
  --field-border-color: var(--color-additional-red);
}
.form__error-message-box--error .form__label-text {
  color: var(--color-additional-red);
}
@media (hover: hover) {
  .form__error-message-box--error .form__field:hover {
    --field-border-color: var(--color-additional-red);
  }
}
@media (hover: none) {
  .form__error-message-box--error .form__field:active {
    --field-border-color: var(--color-additional-red);
  }
}
.form__error-message-box--error .form__field:focus {
  --field-border-color: var(--color-additional-red);
}
.form__error-message-box--error .form__error-icon {
  display: block;
}
.form__error-icon {
  position: absolute;
  top: calc(var(--field-indent-y) - 0.1rem);
  right: var(--field-indent-x);
  display: none;
}
.form__error-message {
  display: none;
  padding-top: 0.4rem;
  color: var(--color-additional-red);
  text-transform: uppercase;
}
.form__error-message--visible {
  display: block;
}
.form__control-text {
  display: block;
  padding-top: 0.4rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 150%;
  opacity: 0.7;
}
@media only screen and (max-width: 1440px) {
  .form__control-text {
    font-size: 0.7rem;
  }
}
@media only screen and (max-width: 1024px) {
  .form__control-text {
    font-size: 0.65rem;
  }
}
.form__control-text a {
  text-decoration: underline;
}
.form__submit {
  flex-shrink: 0;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0.5rem;
}
@media only screen and (max-width: 576px) {
  .form__submit {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.4rem;
  }
}
.form__radio-chips-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -0.6rem;
  padding-top: 0.4rem;
}
.form__radio-chip {
  display: flex;
  margin-right: 0.6rem;
  margin-bottom: 0.6rem;
}
.form__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 576px) {
  .form__footer {
    flex-direction: column;
    margin-top: 1rem;
  }
}
.form__note {
  color: var(--color-primary-blue);
}
@media only screen and (max-width: 576px) {
  .form__note {
    text-align: center;
  }
}
.form__loader {
  transition: opacity 0.3s;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: var(--color-blue-70);
  opacity: 1;
}
.form__loader--disabled {
  opacity: 0;
  pointer-events: none;
}

:root {
  --field-height: 3rem;
  --field-indent-x: 1.25rem;
  --field-indent-y-top: 0.8rem;
  --field-indent-y-bottom: 0.8rem;
  --field-border-color: transparent;
  --field-bg-color: var(--color-white);
  --field-border-radius: 1.5rem;
}
@media only screen and (max-width: 1440px) {
  :root {
    --field-height: 2.8rem;
  }
}
@media only screen and (max-width: 576px) {
  :root {
    --field-height: 2.65rem;
  }
}

.form__field-box {
  position: relative;
}
.form__field {
  transition: all 0.3s;
  width: 100%;
  height: var(--field-height);
  padding: var(--field-indent-y-top) var(--field-indent-x) var(--field-indent-y-bottom);
  color: var(--color-black);
  background-color: var(--field-bg-color);
  border: 0.05rem solid var(--field-border-color);
  border-radius: var(--field-border-radius);
  overflow: hidden;
}
.form__field::-moz-placeholder {
  -moz-transition: color 0.3s;
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  line-height: 1.45rem;
}
.form__field::placeholder {
  transition: color 0.3s;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.75rem;
  line-height: 1.45rem;
}
.form__field:hover {
  border-color: var(--color-primary-light-blue);
}
.form__field:hover::-moz-placeholder {
  color: var(--color-primary-light-blue);
}
.form__field:hover::placeholder {
  color: var(--color-primary-light-blue);
}
.form__field:focus {
  border-color: var(--color-primary-light-blue);
}
.form__field--area {
  resize: none;
  --field-height: 12.5rem;
  overflow-y: auto;
}
@media only screen and (min-width: 1025px) {
  .form__field--area {
    --field-height: 11.5rem;
  }
}
.form__field--area::-webkit-scrollbar-track {
  margin: 0.25rem;
}

.form__field-file-box {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 70px;
  text-align: left;
  overflow: unset;
}
@media only screen and (min-width: 1025px) {
  .form__field-file-box {
    padding-left: 76px;
  }
}
.form__field-file-box::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--color-blue) url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjciIGhlaWdodD0iMjciIHZpZXdCb3g9IjAgMCAyNyAyNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTMuMjUgMjYuNVYwTTAgMTMuMjQ5aDI2LjUiIHN0cm9rZT0iI2ZmZiIvPjwvc3ZnPg==") center/auto no-repeat;
}
@media only screen and (min-width: 1025px) {
  .form__field-file-box::before {
    width: 3rem;
    height: 3rem;
  }
}
.form__field-file {
  width: 0;
  height: 0;
  opacity: 0;
}
.form__field-file-text {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.form__control {
  display: inline-flex;
  margin-bottom: 0;
}
.form__control-label {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}
.form__control-label-text {
  padding-bottom: 0;
  color: var(--color-black);
}
.form__control-default {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__control-default:checked + .form__control-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0);
}
.form__control-custom {
  transition: all 0.3s;
  position: relative;
  display: flex;
}
.form__control-custom::before, .form__control-custom::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  display: block;
  opacity: 0;
}
.form__control-custom::before {
  width: 0.1rem;
  height: 0.1rem;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background-color: var(--color-blue);
  transform: translate(-50%, -50%) scale(2);
}
.form__control .form__checkbox-default:checked + .form__checkbox-custom::before {
  opacity: 0;
  transform: translate(-50%, -50%) scale(10);
}

@media (hover: hover) {
  .form__label:hover .form__checkbox-custom::before {
    opacity: 1;
  }
}

.form__checkbox {
  --checkbox-size: 1.5rem;
  --checkbox-marker-indent: 0.15rem;
  --checkbox-marker: calc(var(--checkbox-size) - var(--checkbox-marker-indent) * 2);
  position: relative;
}
.form__checkbox-default:checked ~ .form__checkbox-custom-checked {
  opacity: 1;
}
.form__checkbox-custom {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  position: relative;
  background-color: var(--color-gray);
  border-radius: 50%;
}
.form__checkbox-custom::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.65rem;
  height: 0.5rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNSIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDE1IDEwIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC42OTcyNjYgNi4wNDk1MkwzLjA2NDY5IDguMzU2MjRDMy44NDEzMyA5LjExMjk3IDUuMDc5NTIgOS4xMTI5NyA1Ljg1NjE1IDguMzU2MjVMMTMuNjk3MyAwLjcxNjE4NyIgc3Ryb2tlPSIjNDY4RkNEIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+") center/cover no-repeat;
  transform: translate(-50%, -50%) rotate(-20deg);
}
.form__checkbox-custom-checked {
  transition: opacity 0.1s;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-primary-white);
  font-size: 1.2rem;
  opacity: 0;
}

.overlay {
  transition: opacity 0.3s;
  position: fixed;
  z-index: 1103;
  top: 0;
  left: 0;
  width: 100vw;
  background-color: rgba(0, 62, 116, 0.7);
  opacity: 0;
  pointer-events: none;
}
@supports (height: 100dvh) {
  .overlay {
    height: 100dvh;
  }
}
@supports not (height: 100dvh) {
  .overlay {
    height: 100vh;
  }
}
.overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.section__content-inner {
  display: flex;
  flex-direction: column;
}
.section__content-inner .swiper {
  width: 100%;
}
.section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.section__controls {
  display: none;
  gap: 0.45rem;
}
@media only screen and (min-width: 1025px) {
  .section__controls {
    display: flex;
  }
}
.section__control {
  position: static;
  margin-top: 0;
}
.section__button-box {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section__button-box {
    margin-top: 1.5rem;
  }
}

.cookie, .container {
  width: 100%;
  max-width: calc(var(--container-width) + var(--container-indent-x) * 2);
  margin: 0 auto;
  padding: 0 var(--container-indent-x);
}

.breadcrumbs {
  --breadcrumbs-indent: 1.4rem;
  --breadcrumbs-indent-total: calc(var(--header-height) + var(--breadcrumbs-indent) + 1rem);
  overflow-x: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0 calc(var(--container-indent-x) * -1) 1.3rem;
  padding: 0 calc(var(--container-indent-x) * 1);
  white-space: nowrap;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
}
.breadcrumbs__item {
  display: flex;
}
.breadcrumbs__link {
  position: relative;
  color: #878C97;
}
@media (hover: hover) {
  .breadcrumbs__link:hover:not(.breadcrumbs__link--active) {
    color: var(--color-primary-light-blue);
  }
}
@media (hover: none) {
  .breadcrumbs__link:active:not(.breadcrumbs__link--active) {
    color: var(--color-primary-light-blue);
  }
}
.breadcrumbs__link--active {
  pointer-events: none;
  color: var(--color-additional-dark-gray);
}
.breadcrumbs__arrow {
  margin-right: 0.4rem;
  margin-left: 0.4rem;
  font-size: 0.35rem;
}

.cookie {
  pointer-events: none;
  position: fixed;
  z-index: 1100;
  bottom: 0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.cookie__inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  max-width: 20rem;
  padding: 0.75rem;
  background-color: var(--color-bg-2);
  border: var(--border-base);
  border-radius: var(--border-radius-base);
}
.cookie__content {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cookie__icon {
  flex-shrink: 0;
  margin-right: 0.8rem;
  font-size: 2.4rem;
}
.cookie--hide {
  display: none;
}

.search-open .header-search {
  transform: translateY(0);
  opacity: 1;
}

.header-search {
  transition: all 0.3s;
  z-index: 11;
  position: fixed;
  top: var(--header-height);
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 8rem;
  padding: 0 var(--container-indent-x);
  background-color: var(--color-white);
  transform: translateY(-100%);
  opacity: 0;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .header-search {
    height: 13rem;
  }
}
.header-search__form {
  position: relative;
  flex-direction: row;
  align-items: center;
  width: 100%;
  max-width: 33.5rem;
}

.search-field {
  position: relative;
}
.search-field__box {
  flex: 1;
}
.search-field__field {
  height: 3rem;
  padding-right: 4rem;
  background-color: var(--color-gray);
}
.search-field__button {
  transition: background-color 0.3s;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
  border-radius: 50%;
}
@media (hover: hover) {
  .search-field__button:hover {
    background-color: var(--color-dark-blue);
  }
}
.search-field__button-icon {
  color: var(--color-white);
  font-size: 0.8rem;
}

.socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (min-width: 681px) {
  .socials {
    margin-top: 0;
  }
}
.socials__link {
  display: flex;
}
.socials__icon {
  transition: color 0.3s;
  font-size: 2.15rem;
}
.socials__icon .animated {
  transition: scale 0.3s;
  fill: var(--color-blue);
  scale: 0;
  transform-origin: center;
}
@media (hover: hover) {
  .socials__icon:hover {
    color: var(--color-white);
  }
  .socials__icon:hover .animated {
    scale: 1;
  }
}

.contact-link {
  transition: all 0.3s;
  padding: 0.4rem 0.75rem;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .contact-link {
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
  }
}
@media (hover: hover) {
  .contact-link:hover {
    color: var(--color-white);
    background-color: var(--color-blue);
  }
}

body {
  position: relative;
  overflow-x: hidden;
}
body > .over-menu {
  transition: all 0.3s;
  position: fixed;
  height: 100%;
  content: "";
  width: 100%;
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9;
}
body.open-menu > .over-menu {
  visibility: visible;
  opacity: 1;
}
body.open-menu .header__search-trigger {
  margin-right: auto;
  margin-left: 1.5rem;
}
body.open-menu .header__logo {
  display: none;
}
body.open-menu .header__lang-switcher {
  display: flex;
}
body.open-menu .menu-container {
  right: 0 !important;
}

.header {
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  width: 100%;
  height: var(--header-height);
  float: left;
  position: fixed;
  z-index: 99;
}
.header::before {
  transition: all 0.3s ease;
  transform-origin: 0;
  background: var(--color-white);
  position: absolute;
  width: 100%;
  content: "";
  top: 0;
  right: 0;
  height: 0;
}
.header__container {
  height: 100%;
}
.header__logo {
  width: 6.25rem;
  margin-right: auto;
}
@media only screen and (min-width: 1025px) {
  .header__logo {
    width: 7.5rem;
  }
}
@media only screen and (min-width: 1281px) {
  .header__logo {
    width: 9.35rem;
  }
}
.header .desk-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  float: left;
}
.header .desk-menu .box-menu {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  float: right;
  text-align: center;
}
.header .desk-menu .menu-container {
  float: left;
}
.header__lang-switcher {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .header__lang-switcher {
    display: flex;
    margin-left: 1rem;
  }
}
.header__search-trigger {
  transition: color 0.3s;
  width: 0.8rem;
  height: 0.8rem;
  position: relative;
  display: flex;
  margin-right: 1rem;
  margin-left: 2rem;
  padding: 0.5rem;
  box-sizing: content-box;
  cursor: pointer;
}
@media only screen and (max-width: 1280px) {
  .header__search-trigger {
    margin-left: 0.5rem;
  }
}
@media (hover: hover) {
  .header__search-trigger:hover {
    color: var(--color-blue);
  }
}
.header__search-icon, .header__close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header__search-icon {
  font-size: 0.8rem;
  opacity: 1;
}
.header__close-icon {
  font-size: 0.7rem;
  opacity: 0;
}
.header__cta {
  --bd-color-button__hover: var(--color-semidark-blue);
  --bg-color-button__hover: var(--color-semidark-blue);
  --color-button__hover: var(--color-white);
}
.header__cta--desktop {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .header__cta--desktop {
    display: flex;
  }
}
.header__cta--mobile {
  z-index: 1;
  height: 2.6rem;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 500;
}
@media only screen and (min-width: 1025px) {
  .header__cta--mobile {
    display: none;
  }
}

.menu {
  transition: all 0.3s ease-in-out;
  position: relative;
  float: left;
  padding: 0;
  list-style: none;
}
.menu__back-button {
  display: none;
}
.menu__item {
  transition: all 0.33s ease;
  float: left;
  cursor: pointer;
  position: relative;
  overflow: inherit;
}
@media only screen and (min-width: 1025px) {
  .menu__item--active-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 60px);
    height: 0.35rem;
    background-color: var(--color-blue);
    transform: translateX(-50%);
  }
}
@media only screen and (max-width: 1280px) {
  .menu__item--active-item::after {
    width: calc(100% - 20px);
  }
}
.menu > .menu__item .menu__link {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  color: #000;
  font-size: 15px;
}
@media only screen and (max-width: 1280px) {
  .menu > .menu__item .menu__link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
}
.menu > .menu__item--has-children > .menu__link {
  position: relative;
  gap: 5px;
}
.menu > .menu__item--has-children > .menu__link::after {
  transition: all 0.3s ease-in-out;
  content: "";
  width: 11px;
  height: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
}
@media only screen and (max-width: 1024px) {
  .menu > .menu__item--has-children > .menu__link::after {
    width: 0.8rem;
    height: 0.45rem;
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg) translateY(-50%);
    background-position: center;
  }
}
@media (hover: hover) {
  .menu > .menu__item--has-children:hover > .menu__link::after {
    transform: scaleY(-1);
  }
}
.menu__submenu {
  transition: all 0.1s ease-in-out;
  -webkit-overflow-scrolling: touch;
  min-width: 212px;
  position: absolute;
  list-style: none;
  background: var(--color-white);
  padding: 0;
  float: left;
  display: table;
  left: 0;
  width: 100%;
  float: left;
  display: none;
  text-align: center;
}
.menu__submenu .menu__item {
  transition: all 0.33s ease;
  width: 100%;
}
.menu__submenu .menu__item .menu__link {
  padding: 0;
  color: var(--color-black);
  line-height: 200%;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__item .menu__link {
    padding-left: 1rem;
    font-size: 0.65rem;
    line-height: 33.5px;
    text-transform: none;
  }
}
.menu__submenu .menu__item .menu__submenu {
  display: none;
}
.menu__submenu .menu__item:not(.menu__tab):hover .menu__link {
  color: rgb(70, 143, 205);
}
.menu__submenu .menu__submenu {
  left: 100vw;
  margin-top: -43px;
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu {
    position: fixed;
    left: 50%;
    width: var(--container-width);
    padding-top: 30px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: none;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: calc(100% + 20px);
    background-color: var(--color-white);
    transform: translateX(-50%);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu::after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -0.1rem;
    width: 100%;
    height: 0.1rem;
    background-color: rgba(0, 0, 0, 0.1);
  }
}
.menu__item--full-width > .menu__submenu .menu__submenu {
  position: fixed;
  top: 100%;
  left: 0;
  display: none;
  grid-template-columns: max-content max-content;
  grid-column-gap: 102px;
  width: var(--container-width);
  margin-top: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__submenu {
    width: 100%;
    padding: 0 1rem 1rem;
    text-align: left;
  }
}
@media only screen and (min-width: 1025px) {
  .menu__item--full-width > .menu__submenu .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    background-color: var(--color-white);
    transform: translateX(-50%);
    pointer-events: none;
  }
}
.menu__item--full-width > .menu__submenu .menu__tab:not(.menu__item--active) > .menu__link {
  color: var(--color-black-50);
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab:not(.menu__item--active) > .menu__link {
    color: var(--color-black);
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active .menu__submenu {
  display: grid;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__item--active .menu__submenu {
    margin-top: var(--header-height) !important;
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active > .menu__link {
  color: var(--color-black);
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab {
    position: relative;
  }
  .menu__item--full-width > .menu__submenu .menu__tab::after {
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 0.8rem;
    right: 0.5rem;
    width: 0.9rem;
    height: 0.45rem;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(-90deg);
    background-position: center;
    transform-origin: top center;
  }
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu .menu__tab > .menu__link {
    position: relative;
    padding-left: 1rem;
    font-weight: 500;
    color: var(--color-black);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
  }
}
.menu__item--full-width > .menu__submenu .menu__item--active > .menu__link::after {
  background-color: #000;
}
.menu__item--full-width > .menu__submenu > .menu__tab {
  width: auto;
}
@media only screen and (max-width: 1024px) {
  .menu__item--full-width > .menu__submenu > .menu__tab {
    width: 100%;
  }
}
.menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu {
  padding: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu {
    padding: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .menu > .menu__item--has-children:not(.menu__item--full-width) > .menu__submenu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: calc(100% + 20px);
    background-color: var(--color-white);
    box-shadow: inset 0 1px 9px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
    pointer-events: none;
  }
}
.menu > .menu__item--has-children:hover > .menu__submenu {
  display: block;
}
.menu > .menu__item--full-width:hover > .menu__submenu {
  display: flex;
}
.menu__line {
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  border: 0.05rem solid #4285f4;
  background: #4285f4;
  transition-timing-function: cubic-bezier(1, 0.01, 0, 1.22);
  opacity: 0;
  display: block;
}
.menu__submenu .menu__tab > .menu__link {
  position: relative;
  display: flex;
  width: 345px;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  padding-left: 10px;
  padding-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__tab > .menu__link {
    width: 100%;
    height: 1.5rem;
    margin-bottom: 0.5rem;
    padding: 0;
  }
}
.menu__submenu .menu__tab > .menu__link::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: transparent;
}
@media only screen and (max-width: 1024px) {
  .menu__submenu .menu__tab > .menu__link::after {
    display: none;
  }
}
.menu__item-title-box {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .menu__item-title-box {
    position: sticky;
    top: 4.75rem;
    z-index: 1;
    display: block;
    padding-top: 1.5rem;
    background-color: var(--color-white);
  }
}
@media only screen and (max-width: 1024px) {
  .menu__title {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-blue);
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.8;
    text-transform: uppercase;
    text-align: left;
    letter-spacing: 1.8px;
  }
}

.hamburger-menu {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .search-open .header {
    box-shadow: none;
  }
}

.search-open .header__search-trigger .header__search-icon {
  opacity: 0;
}
@media only screen and (min-width: 1025px) {
  .search-open .header__search-trigger .header__close-icon {
    opacity: 1;
  }
}

@media only screen and (max-width: 1024px) {
  .hamburger-menu {
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-right: calc(var(--container-indent-x) * -1);
    background-color: var(--color-blue);
    cursor: pointer;
    right: 0;
    z-index: 11;
  }
  .hamburger-menu span {
    text-transform: uppercase;
    left: calc(-100% - 5px);
    padding: 8px 9px 8px 0;
    top: calc(50% - 18px);
    position: absolute;
    font-size: 13px;
    color: var(--color-white);
  }
  .hamburger-menu__bar::after, .hamburger-menu__bar::before {
    width: 35px;
    height: 3px;
  }
  .hamburger-menu__bar {
    position: relative;
    height: 100%;
    transition: all 0.1s ease;
  }
  .hamburger-menu__bar::before, .hamburger-menu__bar::after {
    position: absolute;
    background: var(--color-white);
    content: "";
    left: 50%;
    transform: translateX(-50%);
  }
  .hamburger-menu__bar::before {
    bottom: 1.15rem;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hamburger-menu__bar::after {
    top: 1.15rem;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hamburger-menu__bar.animate {
    background: rgba(255, 255, 255, 0);
  }
  .hamburger-menu__bar.animate::after {
    top: 50%;
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, 0) rotate(45deg);
  }
  .hamburger-menu__bar.animate::before {
    bottom: 50%;
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate(-50%, 3px) rotate(-45deg);
  }
  .desk-menu .menu-container {
    transition: all 0.3s;
    position: fixed;
    top: var(--header-height);
    right: -100vw;
    width: 100%;
    height: calc(100% - var(--header-height));
    padding: 0 1rem 1rem;
    background-color: var(--color-white);
  }
  .desk-menu .menu-container .menu-header-container {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .desk-menu .menu-container .menu {
    margin: 0;
    padding-top: 1.5rem;
  }
  .desk-menu .menu-container .menu li.menu__back-button {
    z-index: 1;
    position: sticky;
    top: 0;
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    background-color: var(--color-white);
    border-bottom: 0.1rem solid #E4E4E4;
  }
  .desk-menu .menu-container .menu li.menu__back-button a {
    padding: 0 0 0 2rem !important;
    text-transform: none;
  }
  .desk-menu .menu-container .menu li.menu__back-button a::before {
    transition: all 0.3s ease-in-out;
    content: "";
    position: absolute;
    top: 2.25rem;
    left: 0.5rem;
    width: 0.9rem;
    height: 0.45rem;
    background-image: url("data:image/svg+xml,%3Csvg width='11' height='7' viewBox='0 0 11 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.5 1L4.73178 6.07814C5.13157 6.55789 5.86843 6.55789 6.26822 6.07813L10.5 1' stroke='black'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: contain;
    transform: rotate(90deg);
    background-position: center;
    transform-origin: top center;
  }
  .desk-menu .menu-container .menu li.line {
    display: none !important;
  }
  .desk-menu .menu-container .menu > li {
    width: 100%;
    height: 1.5rem;
    float: left;
    margin: 0;
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
  }
  .desk-menu .menu-container .menu > li a {
    color: var(--color-black);
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children {
    position: initial;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children a {
    justify-content: space-between;
    gap: 0.5rem;
    font-weight: 400;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu {
    box-shadow: none;
    transition: all 0.3s ease-in-out;
    display: block !important;
    background: var(--color-white);
    z-index: 1;
    top: 0;
    left: 100vw;
    height: 100%;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu .menu__submenu {
    margin-top: 0;
  }
  .desk-menu .menu-container .menu > li.menu__item--has-children .menu__submenu.open-sub {
    left: 0%;
    height: calc(100vh - var(--header-height) - 20px - 70px);
    overflow-y: auto;
  }
}
.menu__item.menu__item--has-children.menu__tab.menu__item--active {
  z-index: 1;
}

.header-nav {
  transition: all 0.3s;
  position: fixed;
  top: var(--header-height);
  right: 0;
  transform: translateX(100vw);
  overflow-y: auto;
  width: 100%;
  padding: 0.8rem var(--container-indent-x);
  opacity: 0;
  background-color: #0D0B6A;
}
@supports (height: 100dvh) {
  .header-nav {
    height: calc(100dvh - var(--header-height));
  }
}
@supports not (height: 100dvh) {
  .header-nav {
    height: calc(100vh - var(--header-height));
  }
}
@media only screen and (min-width: 1025px) {
  .header-nav {
    position: static;
    transform: translateX(0);
    width: auto;
    height: auto;
    margin-left: auto;
    padding: 0;
    opacity: 1;
    background-color: transparent;
  }
}
.header-nav--visible {
  transform: translateX(0);
  opacity: 1;
}
.header-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
@media only screen and (min-width: 1025px) {
  .header-nav__list {
    flex-direction: row;
    gap: 1rem;
  }
}
.header-nav__dropdown {
  background-color: var(--color-primary-black);
}
.header-nav__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0.5rem 0.8rem;
  font-weight: 500;
  color: var(--color-primary-white);
}
@media only screen and (min-width: 1025px) {
  .header-nav__link {
    padding: 0;
  }
}
@media (hover: hover) {
  .header-nav__link:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .header-nav__link:active {
    color: var(--color-accent);
  }
}
.header-nav__link--active {
  color: var(--color-accent);
}
.header-nav__link-text {
  display: flex;
}

.footer {
  overflow: hidden;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.25rem;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 681px) {
  .footer__main {
    grid-gap: 2.5rem 3rem;
    grid-template-columns: repeat(3, auto);
  }
}
@media only screen and (min-width: 1025px) {
  .footer__main {
    grid-template-columns: repeat(5, auto);
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(1) {
    order: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(1) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(2) {
    order: 1;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(2) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(3) {
    order: 3;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(3) {
    order: unset;
  }
}
@media only screen and (min-width: 681px) {
  .footer__col:nth-child(4) {
    order: 4;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__col:nth-child(4) {
    order: unset;
  }
}
.footer__heading {
  color: #808080;
  font-size: 0.6rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}
.footer__heading-button {
  cursor: text;
}
@media only screen and (max-width: 680px) {
  .footer__heading-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.2rem 0;
    color: #000;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.09rem;
  }
  .footer__heading-button::after {
    transition: transform 0.3s;
    width: 1.5rem;
    height: 1.5rem;
    content: "";
    display: block;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNyIgaGVpZ2h0PSIxMCIgdmlld0JveD0iMCAwIDE3IDEwIiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zNzUgOC45OTQ2M0w3LjYyNzU5IDAuODM1NDY0QzguMDI1MzggMC4zODc5NSA4LjcyNDYyIDAuMzg3OTUgOS4xMjI0MSAwLjgzNTQ2NEwxNi4zNzUgOC45OTQ2MyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=") center/auto no-repeat;
    transform: scale(1, -1);
  }
}
.footer__heading-button--open::after {
  transform: scale(-1, 1);
}
@media only screen and (max-width: 680px) {
  .footer__nav-box {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.4s;
  }
}
@media only screen and (max-width: 680px) {
  .footer__nav-box--open {
    grid-template-rows: 1fr;
  }
}
.footer__nav-box--open .footer__nav {
  visibility: visible;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-left: 1rem;
  transition: visibility 1s;
  visibility: hidden;
}
@media only screen and (min-width: 681px) {
  .footer__nav {
    padding-left: 0;
    visibility: visible;
  }
}
.footer__nav-link {
  transition: color 0.3s;
  font-size: 0.65rem;
  line-height: 1.675rem;
}
@media only screen and (min-width: 681px) {
  .footer__nav-link {
    font-size: 0.75rem;
  }
}
@media (hover: hover) {
  .footer__nav-link:hover {
    color: var(--color-blue);
  }
}
.footer__socials {
  margin-top: 1.25rem;
}
@media only screen and (min-width: 681px) {
  .footer__socials {
    order: 2;
    margin-top: 0;
  }
}
@media only screen and (min-width: 1025px) {
  .footer__socials {
    order: unset;
  }
}
.footer__bottom-header {
  margin-bottom: 0.75rem;
  line-height: normal;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-header {
    display: grid;
    grid-template-columns: 1fr 7.5rem;
    margin-left: -1rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem 0.5rem;
  }
}
.footer__bottom-heading:last-child {
  display: none;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-heading:last-child {
    display: block;
  }
}
.footer__bottom {
  position: relative;
  padding: 0.75rem;
  background-color: var(--color-gray);
  border-top-left-radius: 0.5rem;
}
@media only screen and (min-width: 681px) {
  .footer__bottom {
    display: grid;
    grid-template-columns: 1fr 7.5rem;
    padding: 1rem;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 100vw;
  height: 100%;
  background-color: var(--color-gray);
}
.footer__bottom-info {
  display: flex;
  flex-direction: column;
}
.footer__bottom-text {
  margin-bottom: 2.5rem;
  font-size: 0.75rem;
  line-height: 124%;
}
@media only screen and (min-width: 1025px) {
  .footer__bottom-text {
    margin-bottom: 1rem;
  }
}
.footer__bottom-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
@media only screen and (min-width: 1025px) {
  .footer__bottom-contact {
    gap: 0.5rem;
  }
}
.footer__bottom-qr {
  display: none;
}
@media only screen and (min-width: 681px) {
  .footer__bottom-qr {
    display: flex;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  justify-content: center;
  padding-right: 0.6rem;
  padding-left: 0.6rem;
}
.footer-nav__item {
  display: flex;
}
.footer-nav__link {
  /* stylelint-disable order/order */
  --p-fw: 700;
  --p-c: var(--color-primary-white);
}
@media (hover: hover) {
  .footer-nav__link:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .footer-nav__link:active {
    color: var(--color-accent);
  }
}

:root {
  --back-link-color: #808080;
  --back-link-heigth: 3.5rem;
}
@media only screen and (min-width: 1025px) {
  :root {
    --back-link-heigth: 4.5rem;
  }
}

.back-link {
  transition: padding-left 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: var(--back-link-color);
  font-size: 0.6rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .back-link {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
@media (hover: hover) {
  .back-link:hover {
    padding-left: 0.5rem;
  }
  .back-link:hover::before {
    transform: translateX(-0.2rem);
  }
}
.back-link::before {
  transition: transform 0.3s;
  content: "";
  width: 0.3rem;
  height: 0.5rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--back-link-color);
}

:root {
  --circle-button-bg-c: var(--color-white);
  --circle-button-bd-c: var(--color-gray-dark);
  --circle-button-arrow-c: var(--color-black);
}

.circle-button {
  width: 3rem;
  height: 3rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--circle-button-bg-c);
  border-radius: 50%;
  border: 0.05rem solid var(--circle-button-bd-c);
}
.circle-button::after {
  content: "";
  width: 0.45rem;
  height: 0.75rem;
  -webkit-mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+") center/cover no-repeat;
          mask: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMC4zMjAzMTIgMTUuMzg0TDguMzk4NDUgOC42NTIyNUM4Ljg3ODIgOC4yNTI0NiA4Ljg3ODIgNy41MTU2MSA4LjM5ODQ1IDcuMTE1ODFMMC4zMjAzMTIgMC4zODQwMzMiIHN0cm9rZT0iYmxhY2siLz4KPC9zdmc+") center/cover no-repeat;
  background-color: var(--circle-button-arrow-c);
}
.circle-button--sm {
  width: 1.5rem;
  height: 1.5rem;
}
@media only screen and (min-width: 1025px) {
  .circle-button--sm {
    width: 2rem;
    height: 2rem;
  }
}
.circle-button--sm::after {
  content: "";
  width: 0.3rem;
  height: 0.5rem;
}
.circle-button--download::after {
  width: 0.6rem;
  height: 0.5rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC4zMjAwNjhMNS4yMzE3OCA1LjM5ODJDNS42MzE1NyA1Ljg3Nzk2IDYuMzY4NDMgNS44Nzc5NiA2Ljc2ODIyIDUuMzk4MkwxMSAwLjMyMDA2OCIgc3Ryb2tlPSJ3aGl0ZSIvPgo8bGluZSB5MT0iOC44MjAwNyIgeDI9IjEyIiB5Mj0iOC44MjAwNyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L3N2Zz4K");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMiAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMC4zMjAwNjhMNS4yMzE3OCA1LjM5ODJDNS42MzE1NyA1Ljg3Nzk2IDYuMzY4NDMgNS44Nzc5NiA2Ljc2ODIyIDUuMzk4MkwxMSAwLjMyMDA2OCIgc3Ryb2tlPSJ3aGl0ZSIvPgo8bGluZSB5MT0iOC44MjAwNyIgeDI9IjEyIiB5Mj0iOC44MjAwNyIgc3Ryb2tlPSJ3aGl0ZSIvPgo8L3N2Zz4K");
}

.event-card {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 0.1rem solid #E4E4E4;
}
@media only screen and (min-width: 1025px) {
  .event-card {
    padding: 1.5rem 0;
  }
}
@media (hover: hover) {
  .event-card:hover .event-card__title {
    color: var(--color-blue);
  }
  .event-card:hover .event-card__image {
    transform: scale(1.1);
  }
}
.event-card__info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #808080;
  font-size: 0.5rem;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .event-card__info {
    gap: 1.8rem;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
  }
}
.event-card__date {
  padding: 0.25rem;
  color: var(--color-white);
  background-color: var(--color-blue);
  border-radius: 0.15rem;
}
@media only screen and (min-width: 1025px) {
  .event-card__date {
    padding: 0.5rem;
    border-radius: 0.25rem;
  }
}
.event-card__title {
  transition: color 0.3s;
  font-weight: 400;
  font-size: 1rem;
  line-height: normal;
}
@media only screen and (min-width: 1025px) {
  .event-card__title {
    max-width: 44.75rem;
    font-size: 1.25rem;
  }
}
@media only screen and (min-width: 1281px) {
  .event-card__title {
    font-size: 1.75rem;
  }
}
.event-card__image-box {
  display: none;
}
@media only screen and (min-width: 1025px) {
  .event-card__image-box {
    width: 7.95rem;
    height: 7.95rem;
    display: block;
    flex-shrink: 0;
    border-radius: 0.25rem;
    overflow: hidden;
  }
}
.event-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s;
}
.event-card__button {
  margin-top: 1rem;
}
@media only screen and (min-width: 1025px) {
  .event-card__button {
    display: none;
  }
}

.event-card-vert {
  display: flex;
  flex-direction: column;
  height: 19.45rem;
  background-color: var(--color-gray);
  border-radius: 0.35rem;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert {
    height: 32rem;
    border-radius: 0.35rem;
  }
}
@media (hover: hover) {
  .event-card-vert:hover .event-card-vert__title {
    color: var(--color-blue);
  }
  .event-card-vert:hover .event-card-vert__image {
    transform: scale(1.1);
  }
}
.event-card-vert__image-box {
  aspect-ratio: 33/15;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__image-box {
    aspect-ratio: 65/30;
  }
}
.event-card-vert__image {
  transition: transform 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event-card-vert__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.75rem;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__content {
    padding: 1.5rem;
  }
}
.event-card-vert__title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  transition: color 0.3s;
  margin-bottom: 0.5rem;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 150%;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    font-size: 1.75rem;
    line-height: normal;
  }
}
.event-card-vert__footer {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}
.event-card-vert__info {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__info {
    margin-bottom: 0.8rem;
  }
}
.event-card-vert__info-item {
  color: var(--color-black-50);
  font-size: 0.5rem;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__info-item {
    font-size: 0.75rem;
    letter-spacing: 0.075rem;
  }
}
.event-card-vert__type {
  font-weight: 500;
  color: var(--color-blue);
  font-size: 0.65rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__type {
    font-size: 1rem;
  }
}
.event-card-vert__button {
  --circle-button-bg-c: transparent;
}
@media only screen and (min-width: 1025px) {
  .event-card-vert__button {
    display: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .pagination {
    margin-top: 2.5rem;
  }
}
.pagination__arrow {
  transition: border-color 0.3s;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0.05rem solid var(--color-gray-dark);
  border-radius: 50%;
  cursor: pointer;
}
@media (hover: hover) {
  .pagination__arrow:hover {
    border-color: var(--color-black);
  }
}
.pagination__arrow::before {
  content: "";
  width: 0.3rem;
  height: 0.5rem;
  -webkit-mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
          mask-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDEwIDE2IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNOC45Mzc1IDE1LjM4NEwwLjg1OTM2NiA4LjY1MjI1QzAuMzc5NjEyIDguMjUyNDYgMC4zNzk2MTIgNy41MTU2MSAwLjg1OTM2NiA3LjExNTgxTDguOTM3NSAwLjM4NDAzMyIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-black);
}
.pagination__arrow--prev {
  margin-right: 0.35rem;
}
.pagination__arrow--next {
  margin-left: 0.35rem;
}
.pagination__arrow--next::before {
  transform: rotate(180deg);
}
.pagination__arrow[disabled] {
  opacity: 0.5;
  pointer-events: none;
}
.pagination__pages {
  display: flex;
  align-items: center;
}
.pagination__item {
  padding: 0 0.6rem;
  color: var(--color-black-50);
}
@media (hover: hover) {
  .pagination__item:hover:not(.pagination__item--active) {
    color: var(--color-black);
  }
}
.pagination__item--active {
  color: var(--color-blue);
  cursor: default;
}
.pagination__item--dots {
  cursor: default;
}
.pagination__item--dots:hover {
  color: var(--color-black-50);
}

.empty-box {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1rem;
  text-align: center;
  background-color: var(--color-light-blue);
  border-radius: 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .empty-box {
    padding: 5rem 2.5rem;
  }
}
.empty-box__heading {
  max-width: 34.1rem;
  margin: 0 auto 0.75rem;
  color: var(--color-blue);
  font-size: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .empty-box__heading {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 90%;
  }
}
.empty-box__text {
  max-width: 26.45rem;
  margin: 0 auto 1.25rem;
  font-size: 0.75rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .empty-box__text {
    margin-bottom: 2.5rem;
  }
}
.empty-box .section-subscription__button {
  --bg-color-button__hover: var(--color-semidark-blue);
  --bd-color-button__hover: var(--color-semidark-blue);
  --color-button__hover: var(--color-white);
}

.filter {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.filter--open .filter__trigger {
  background-color: var(--color-gray-dark);
}
.filter--open .filter__trigger-text::after {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE2IDE1IiBmaWxsPSJub25lIj4KICA8cmVjdCB4PSIwLjI2OTUzMSIgeT0iNi45OTUxMiIgd2lkdGg9IjE0Ljc1NTQiIGhlaWdodD0iMS4yMjk2MiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+");
  transform: translateY(-50%) rotate(0);
}
.filter--open .filter__list {
  display: flex;
}
.filter__trigger {
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  padding: 1.05rem 1.75rem;
  border-radius: 3rem;
  background-color: var(--color-gray);
}
@media only screen and (min-width: 1025px) {
  .filter__trigger {
    display: none;
  }
}
.filter__trigger-text {
  position: relative;
  padding-right: 0.5rem;
  font-size: 0.65rem;
  line-height: normal;
}
.filter__trigger-text::after {
  transition: all 0.3s;
  width: 0.75rem;
  height: 0.75rem;
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%) rotate(90deg);
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDE2IDE1IiBmaWxsPSJub25lIj4KICA8cmVjdCB4PSI2LjkzNTU1IiB5PSIxNC44MjAzIiB3aWR0aD0iMTQuNzU1NCIgaGVpZ2h0PSIxLjIyOTYyIiB0cmFuc2Zvcm09InJvdGF0ZSgtOTAgNi45MzU1NSAxNC44MjAzKSIgZmlsbD0iYmxhY2siLz4KICA8cmVjdCB4PSIwLjI2OTUzMSIgeT0iNi45OTUxMiIgd2lkdGg9IjE0Ljc1NTQiIGhlaWdodD0iMS4yMjk2MiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+") center/cover no-repeat;
}
.filter__list {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
}
@media only screen and (min-width: 1025px) {
  .filter__list {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
}
.filter__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1025px) {
  .filter__item {
    position: static;
  }
}
@media only screen and (min-width: 1025px) {
  .filter__item--active .filter__button {
    background-color: var(--color-gray);
    border-color: var(--color-gray);
  }
}
.filter__item--active .filter__button-count::after {
  transform: scale(1, -1);
}
.filter__button {
  --color-button: var(--color-black);
  display: flex;
  align-items: center;
  width: 100%;
  height: 3rem;
  padding: 1rem;
  font-size: 0.75rem;
  line-height: 112%;
  background-color: var(--color-gray);
  border-radius: 4.15rem;
}
@media only screen and (min-width: 1025px) {
  .filter__button {
    transition: background-color 0.3s;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    background-color: transparent;
    border: 0.05rem solid var(--color-gray-dark);
  }
}
@media only screen and (min-width: 1025px) and (hover: hover) {
  .filter__button:hover {
    background-color: var(--color-gray-dark);
  }
}
.filter__button-count {
  display: flex;
  align-items: center;
}
.filter__button-count::after {
  transition: transform 0.3s;
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.35rem;
  margin-left: 0.75rem;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMSIgaGVpZ2h0PSI3IiB2aWV3Qm94PSIwIDAgMTEgNyIgZmlsbD0ibm9uZSI+CiAgPHBhdGggZD0iTTAuMzg0NzY2IDAuMzIwMDY4TDQuNjE2NTUgNS4zOTgyQzUuMDE2MzQgNS44Nzc5NiA1Ljc1MzE5IDUuODc3OTYgNi4xNTI5OSA1LjM5ODJMMTAuMzg0OCAwLjMyMDA2OCIgc3Ryb2tlPSJibGFjayIvPgo8L3N2Zz4=") no-repeat;
}
.filter__clear {
  --color-button__hover: var(--color-black);
  --bd-color-button__hover: var(--color-gray);
  background-color: var(--color-gray);
  border-color: var(--color-gray);
}
.filter__apply {
  --bd-color-button__hover: var(--color-blue);
  margin-top: 1rem;
}
@media only screen and (min-width: 1025px) {
  .filter__apply {
    margin-top: 2.5rem;
  }
}
.filter__item-dropdown {
  transition: all 0.2s;
  z-index: 1;
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-height: calc(100vh - var(--header-height) - 1.5rem);
  padding: 1rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  box-shadow: 0 0.65rem 1.4rem 0 rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
}
@media only screen and (min-width: 1025px) {
  .filter__item-dropdown {
    left: unset;
    right: 0;
    width: auto;
    max-width: calc(100vw - var(--container-indent-x) * 2);
    padding: 2.5rem;
  }
}
.filter__item-dropdown--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.filter__item-list::-webkit-scrollbar {
  width: 0.15rem;
}
.filter__item-list::-webkit-scrollbar-thumb {
  background-color: var(--color-white);
  border-radius: 0.1rem;
}
@-moz-document url-prefix() {
  .filter__item-list {
    scrollbar-width: thin;
    scrollbar-color: var(--color-white) var(--color-white);
  }
}
.filter__item-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}
@media only screen and (min-width: 1025px) {
  .filter__item-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2.35rem 4.75rem;
  }
}
@media only screen and (min-width: 1025px) {
  .filter .form__label-text {
    white-space: nowrap;
  }
}

.section-events {
  padding-top: 1.5rem;
}
.section-events__heading {
  position: relative;
  max-width: 90%;
  margin-bottom: 1.25rem;
  line-height: 100%;
}
@media only screen and (min-width: 1025px) {
  .section-events__heading {
    max-width: 20rem;
    margin-top: -7.75rem;
    margin-bottom: 1.5rem;
    line-height: 90%;
  }
}
.section-events__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.section-events__list:not(.expanded) > *:nth-child(n+5) {
  display: none;
}

.section-subscription {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  max-height: calc(100vh - var(--header-height));
  height: 32.5rem;
  color: var(--color-white);
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, #000 24.84%, rgba(0, 0, 0, 0) 69.15%), url("/img/subscribe.png") center/cover no-repeat;
}
@media only screen and (min-width: 1025px) {
  .section-subscription {
    height: 38.65rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}
.section-subscription__heading {
  margin: 0 auto 1.25rem;
  color: inherit;
}
@media only screen and (min-width: 681px) {
  .section-subscription__heading {
    max-width: 22.5rem;
  }
}
@media only screen and (min-width: 1025px) {
  .section-subscription__heading {
    max-width: 30rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 1281px) {
  .section-subscription__heading {
    max-width: 51.6rem;
    margin-bottom: 6.5rem;
  }
}
.section-subscription__form {
  max-width: 30.1rem;
  width: 100%;
  margin: 0 auto;
}
.section-subscription__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__field-wrapper {
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
.section-subscription__input {
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__input {
    text-align: left;
  }
}
.section-subscription__button {
  --color-button__hover: var(--color-blue);
  --bg-color-button__hover: var(--color-white);
  --bd-color-button__hover: var(--color-white);
  flex-shrink: 0;
  width: 100%;
  padding-right: 1.75rem;
  padding-left: 1.75rem;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__button {
    width: auto;
  }
}
.section-subscription__privacy {
  display: block;
  font-size: 0.5rem;
  line-height: normal;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
}
@media only screen and (min-width: 1025px) {
  .section-subscription__privacy {
    font-size: 0.6rem;
    letter-spacing: 0.06rem;
  }
}
.section-subscription__privacy a {
  text-decoration: underline;
}
@media (hover: hover) {
  .section-subscription__privacy a:hover {
    text-decoration: none;
  }
}

.add-to-calendar {
  display: inline-flex;
}
.add-to-calendar::part(atcb-button-wrapper) {
  height: 100%;
}
.add-to-calendar::part(atcb-button) {
  --color-button: var(--color-white);
  --bd-color-button: var(--color-white);
  height: 100%;
  padding: 0.8rem 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .add-to-calendar::part(atcb-button) {
    padding: 1rem 1.75rem;
  }
}

.page-events__intro {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-white);
}
@media only screen and (min-width: 1025px) {
  .page-events__intro {
    position: relative;
    min-height: calc(100vh - var(--header-height) - var(--back-link-heigth) - 1.5rem);
    margin-bottom: 5rem;
    padding: 1.5rem;
    background: url("/public/image/events-banner-bg.jpg") center/cover no-repeat;
    border-radius: 1rem;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1025px) {
  .page-events__intro::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 32.94%, rgba(0, 0, 0, 0.2) 85.19%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
  }
}
.page-events__intro-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-height) - var(--back-link-heigth) - 0.5rem);
  padding: 0.75rem;
  background: url("public/image/events-banner-bg.jpg") center/cover no-repeat;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-content {
    min-height: auto;
    background: none;
  }
}
.page-events__intro-content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 32.94%, rgba(0, 0, 0, 0.2) 85.19%), linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%);
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-content::after {
    display: none;
  }
}
.page-events__intro-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  font-size: 1.7rem;
  line-height: 100%;
  border-bottom: 0.05rem solid rgba(255, 255, 255, 0.1);
  color: inherit;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-heading {
    order: 1;
    margin-bottom: 2.5rem;
    font-size: 4.5rem;
    line-height: 90%;
    border-bottom: none;
  }
}
.page-events__intro-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0.5rem;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-info {
    order: 0;
    display: flex;
    gap: 2rem;
    margin-bottom: 1.25rem;
  }
}
.page-events__intro-item {
  display: inline-flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  font-size: 0.6rem;
  line-height: normal;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-item {
    font-size: 1rem;
  }
  .page-events__intro-item:nth-child(odd) {
    order: 0;
  }
  .page-events__intro-item:nth-child(even) {
    order: 1;
  }
}
.page-events__intro-date {
  padding: 0.25rem;
  background-color: var(--color-blue);
  border-radius: 0.15rem;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-date {
    padding: 0.5rem;
    border-radius: 0.25rem;
  }
}
.page-events__intro-time {
  letter-spacing: 0.06rem;
}
.page-events__intro-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2.5rem;
  padding: 0.75rem;
  color: inherit;
  border-radius: 0.5rem;
  background-color: var(--color-blue);
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-links {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: max-content max-content;
    grid-column-gap: 3rem;
    margin-top: auto;
    margin-bottom: 0;
    padding: 0;
    background: none;
  }
}
.page-events__intro-link {
  transition: color 0.3s;
  color: var(--color-white);
  font-size: 0.6rem;
  line-height: 170%;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-link {
    font-size: 1rem;
    line-height: 250%;
  }
}
@media (hover: hover) {
  .page-events__intro-link:hover {
    color: var(--color-blue);
  }
}
.page-events__intro-buttons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-gap: 0.25rem;
  grid-template-columns: 1fr 1fr;
  margin-top: auto;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-buttons {
    order: 2;
    display: flex;
    gap: 0.5rem;
    margin-top: 0;
  }
}
.page-events__intro-button {
  padding: 0.8rem 0.5rem;
}
@media only screen and (min-width: 1025px) {
  .page-events__intro-button {
    padding: 1rem 1.75rem;
  }
}
.page-events__intro-button-details {
  --color-button: var(--color-black);
  --bd-color-button: var(--color-white);
  --bg-color-button: var(--color-white);
  --bg-color-button__hover: var(--color-blue);
  --bd-color-button__hover: var(--color-blue);
  --color-button__hover: var(--color-white);
}
.page-events__intro-button-calendar {
  --color-button: var(--color-white);
  --bd-color-button: var(--color-white);
}
.page-events .section-events {
  padding-top: 0;
}
.page-events .section-events__heading {
  margin-top: 0;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .page-events .section-events__heading {
    max-width: 100%;
    margin-bottom: 2.5rem;
  }
}
.page-events .section-events__load-more-box {
  display: flex;
  justify-content: center;
  margin-top: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .page-events .section-events__load-more-box {
    margin-top: 1.5rem;
  }
}
.page-events .section-events__load-more {
  width: 100%;
}
@media only screen and (min-width: 681px) {
  .page-events .section-events__load-more {
    width: auto;
  }
}

.section-events-grid {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media only screen and (min-width: 1025px) {
  .section-events-grid {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.section-events-grid__heading {
  margin-bottom: 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 1025px) {
  .section-events-grid__heading {
    margin-bottom: 2.5rem;
  }
}
.section-events-grid__filter {
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 1025px) {
  .section-events-grid__filter {
    margin-bottom: 2.5rem;
  }
}
.section-events-grid__filter-list {
  justify-content: center;
}
.section-events-grid__filter-clear {
  width: auto;
}
.section-events-grid__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 0.75rem;
}
@media only screen and (min-width: 1025px) {
  .section-events-grid__list {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1.5rem;
  }
}