@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  background-repeat: no-repeat;
  /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  overflow-wrap: break-word;
  /* 3 */
  -moz-tab-size: 4;
  /* 4 */
  tab-size: 4;
  /* 4 */
  -webkit-tap-highlight-color: transparent;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * 1. Fill the viewport block in all browsers (opinionated).
 * 2. Remove the margin in all browsers (opinionated).
 */
:where(body) {
  block-size: -moz-available;
  /* 1 */
  block-size: -webkit-fill-available;
  /* 1 */
  block-size: stretch;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit;
  /* 1 */
  height: 0;
  /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "​";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
  overflow: auto;
  /* 3 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse;
  /* 1 */
  border-color: inherit;
  /* 2 */
  text-indent: 0;
  /* 3 */
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0;
  /* 1 */
  resize: vertical;
  /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type="search" i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

h1, h2, h3, h4, p {
  margin-block-start: 0;
  margin-block-end: 0;
}

@font-face {
  font-family: "Archivo";
  src: url("../../assets/fonts/archivo-var.woff2") format("woff2-variations");
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
  font-stretch: 75% 125%;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-ExtraLight.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo-expanded";
  src: url("../../assets/fonts/ArchivoExpanded-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../assets/fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

h1, .h1-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 700 !important;
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  h1, .h1-bold {
    line-height: 1.2;
  }
}

.h1-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.8rem, 5vw, 5rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.03em;
}
.h1-light span {
  font-weight: bold;
}
@media (max-width: 768px) {
  .h1-light {
    line-height: 1.2;
  }
}

h2, .h2-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 4rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  h2, .h2-bold {
    letter-spacing: -0.02em;
  }
}

.h2-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 4rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.03em;
}
.h2-light span {
  font-weight: 600 !important;
}
@media (max-width: 768px) {
  .h2-light {
    letter-spacing: -0.02em;
  }
}

h3, .h3-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.02em;
}
.h3-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.02em;
}
.h3-light span {
  font-weight: bold;
}
h4, .h4-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-stretch: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  h4, .h4-bold {
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}

.h4-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  line-height: 1.2;
  font-stretch: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .h4-light {
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
}

h5, .h5-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 600;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-stretch: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  h5, .h5-bold {
    font-stretch: 100%;
  }
}

.h5-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.2;
  font-stretch: 110%;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .h5-light {
    font-stretch: 100%;
  }
}

h6, .h6-bold {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  font-stretch: 100%;
  letter-spacing: -0.01em;
}
.h6-light {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.2;
  font-stretch: 100%;
  letter-spacing: -0.01em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: uppercase;
  margin: 0;
}

.text-d {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  line-height: 1.3;
}

.text-xl {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
}

.text-l {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-m {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-s {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-semibold {
  font-weight: 600;
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-extrabold {
  font-weight: 800;
}

/**************** Container ***************/
/*************** Section *****************/
/******************** Hover, Shadow, andere... *********************/
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

body {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #001D40;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: inherit !important;
}

.swiper-button-next,
.swiper-button-prev {
  border: unset;
}
@media (max-width: 767px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 50px !important;
    height: 50px !important;
    background-size: 20px;
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 767px) {
  .swiper-controls-n {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
  }
  .swiper-controls-n .swiper-pagination {
    position: static !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: auto !important;
    transform: none !important;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .swiper-controls-n .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px !important;
  }
  .swiper-controls-n .swiper-arrows-n {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
  }
  .swiper-controls-n .swiper-arrows-n .swiper-button-prev,
.swiper-controls-n .swiper-arrows-n .swiper-button-next {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    margin: 0 !important;
    transform: none !important;
  }
}
ul {
  margin: 0;
  padding: 0;
}

section {
  padding: 6.25rem 0;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  section {
    padding: 2.5rem 0;
  }
}

.container-b {
  max-width: 1760px;
  padding: 0 2rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container-b {
    padding: 0 1rem;
  }
}

.container {
  max-width: 1600px;
  padding: 0 2rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

.btn {
  padding: 12px 20px 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #FFFFFF;
  color: #001D40;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  height: fit-content;
  font-family: "Inter", sans-serif;
  cursor: pointer;
}
.btn svg {
  height: 20px;
  width: 20px;
}
.btn svg path {
  transition: all 0.3s ease-in-out;
}
.btn span {
  font-size: 1rem;
}
.btn:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn:hover svg path {
  fill: #FFFFFF;
}

.btn-wrapper {
  display: flex;
  width: 100%;
}

.btn-wrapper .btn,
.btn-wrapper .btn-light {
  width: auto;
  min-width: fit-content;
  flex: 0 0 auto;
  transition: all 0.3s ease-in-out !important;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .btn-wrapper .btn,
.btn-wrapper .btn-light {
    white-space: unset;
  }
}

.btn-wrapper:hover .btn,
.btn-wrapper:hover .btn-light {
  flex: 1 1 1%;
  width: 100%;
}

.btn-v2 {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-v2 svg path {
  fill: #FFFFFF;
}
.btn-v2:hover {
  background-color: #FFFFFF;
  color: #001D40;
  border-color: #FFFFFF;
}
.btn-v2:hover svg path {
  fill: #001D40;
}

.btn-v3 {
  background-color: #66ABFF;
  color: #001D40;
}
.btn-v3 svg path {
  fill: #001D40;
}
.btn-v3:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.btn-v3:hover svg path {
  fill: #FFFFFF;
}

.btn-v4 {
  position: relative;
  background-color: transparent;
  color: #FFFFFF;
  border: unset;
  border-bottom: 1.5px solid #006DF2;
  border-radius: unset;
  padding: 0;
  padding-bottom: 10px;
  gap: 0.5rem;
  text-transform: uppercase;
  margin-right: 1rem;
  width: 100%;
  transition: width 0.3s ease-in-out;
}
.btn-v4::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("./../../assets/svg/arrow-topRight.svg");
  margin-left: auto;
}
.btn-v4:hover {
  border: unset;
  border-bottom: 1.5px solid #006DF2;
  width: calc(100% + 0.5rem);
}

.btn-v5 {
  background-color: #FFFFFF;
  color: #001D40;
  border: 1px solid #001D40;
}
.btn-v5 svg path,
.btn-v5 svg rect {
  fill: #001D40;
}
.btn-v5:hover {
  background-color: #001D40;
  color: #FFFFFF;
  border-color: #001D40;
}
.btn-v5:hover svg path,
.btn-v5:hover svg rect {
  fill: #FFFFFF;
}

.btn-light {
  position: relative;
  background-color: transparent;
  color: #001D40;
  border: unset;
  border-bottom: 1.5px solid #006DF2;
  border-radius: unset;
  padding: 0;
  padding-bottom: 10px;
  gap: 0.5rem;
  text-transform: uppercase;
  margin-right: 1rem;
  width: 100%;
  transition: width 0.3s ease-in-out;
  display: flex;
  align-items: center;
  width: max-content;
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 700;
}
.btn-light::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("./../../assets/svg/arrow-dark.svg");
  margin-left: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.btn-light.btn-icon--download::after {
  background-image: url("./../../assets/svg/download-dark.svg");
}
.btn-light:hover {
  border: unset;
  border-bottom: 1.5px solid #006DF2;
  width: 100%;
}

.btn-light-white-line {
  border-bottom: 1.5px solid #FFFFFF;
}
.btn-light-white-line:hover {
  border-bottom: 1.5px solid #FFFFFF;
  width: auto !important;
  flex: unset !important;
}

.btn-wrapper:hover .btn, .btn-wrapper:hover .btn-light {
  width: auto !important;
  flex: unset !important;
}

.bg-dark {
  background-color: #001D40;
}

.bg-white {
  color: #001D40 !important;
}

.c-date {
  max-width: 60px;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 4px;
  line-height: 100%;
  z-index: 2;
  font-family: "Archivo-expanded", sans-serif;
}

.c-vip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  right: 1rem;
  box-shadow: 0px 0px 15px 0px rgba(0, 109, 242, 0.7);
  padding: 0.5rem 2rem 0.5rem 1rem;
  border-radius: 120px;
  color: #FFFFFF;
  text-transform: uppercase;
  font-weight: 700;
  bottom: -1.8rem;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 0%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
  overflow: hidden;
}
.c-vip::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("./../../assets/svg/vip.svg");
}
.c-vip::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 10%, #006DF2 100%), #001733;
}

.h2-v2 {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
}
.h2-v2 span:nth-child(1) {
  font-weight: 700;
}

.boxG {
  color: #FFFFFF;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 0%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
}
.boxG::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 10%, #006DF2 100%), #001733;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.section-header h2 span {
  font-weight: 600;
}
.section-header__btns {
  display: flex;
  gap: 1rem;
}

.section-header-v2 {
  align-items: flex-end;
}
.section-header-v2 h2 {
  color: #001D40;
  display: flex;
  flex-direction: column;
  line-height: 110%;
  gap: 0;
}

.textEditor-content h2,
.textEditor-content h3,
.textEditor-content h4,
.textEditor-content h5,
.textEditor-content h6,
.textEditor-content p {
  padding: 1rem 0;
}
.textEditor-content p,
.textEditor-content li {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
}
.textEditor-content ul {
  padding: 0;
  margin: 1rem 0 1rem 2.2rem;
}
.textEditor-content ul li {
  position: relative;
  list-style-type: none;
}
.textEditor-content ul li::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 0;
  width: 28px;
  height: 28px;
  background-image: url("./../../assets/svg/list-icon.svg");
}
.textEditor-content a {
  text-decoration: underline;
  color: #488ced;
}
.textEditor-content img {
  width: 100%;
  border-radius: 16px;
  max-height: 432px;
  height: 100%;
  margin: 2rem 0;
}

.format-1-1 {
  aspect-ratio: 1/1 !important;
}

.format-5-7 {
  aspect-ratio: 5/7 !important;
}

.format-14-9 {
  aspect-ratio: 14/9 !important;
  max-width: 912px !important;
}

.n-pagination {
  display: flex;
  justify-content: center;
}
.n-pagination ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 1rem;
  margin-top: 3rem;
}
.n-pagination ul li {
  list-style-type: none;
}
.n-pagination ul li a {
  padding: 10px 20px;
}
.n-pagination ul li .active {
  background-color: #66ABFF;
  color: #001D40;
  border-color: #66ABFF;
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.breadcrumbs {
  padding: 3.75rem 0;
  color: #FFFFFF;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumbs__pt {
  color: #66ABFF;
  text-decoration: underline;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.breadcrumbs__pt::after {
  content: "";
  display: block;
  width: 20px;
  height: 17px;
  transform: rotate(270deg);
  background-image: url("./../svg/chevron-down.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

p a {
  text-decoration: underline;
  color: #488ced;
}

@media (max-width: 767px) {
  .section-header {
    margin-bottom: 2.5rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  .section-header h2 {
    gap: 5px;
  }
  .section-header a {
    width: max-content;
  }

  .section-header-v2 {
    align-items: flex-start;
  }
}
@media (max-width: 479px) {
  .section-header {
    margin-bottom: 1rem;
    flex-direction: column;
    gap: 1rem;
  }

  .section-header-v2 {
    align-items: flex-start;
  }
}
select option {
  color: #000;
  background-color: #fff;
}

.section {
  padding: 60px 0;
  background-color: #006DF2;
}
@media (max-width: 980px) {
  .section {
    padding: 40px 0;
  }
}
.section__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .section__container {
    padding: 0 1rem;
  }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}
.nav a {
  cursor: pointer;
}
.nav__logo {
  display: block;
  max-width: 164px;
  width: 100%;
}
.nav__logo svg {
  width: 100%;
  height: auto;
}
.nav__top {
  background-color: #FFFFFF;
  padding: 0.8rem 0;
}
.nav__top .container-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__top__left {
  display: flex;
  align-items: center;
}
.nav__top__left__oz {
  max-width: 350px;
  width: 100%;
}
.nav__top__left__oz p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__top__left__oz p .point {
  display: block;
  width: 10px;
  height: 10px;
  background-color: #008602;
  border-radius: 50%;
}
.nav__top__left__oz p span {
  color: #001D40;
}
.nav__top__left__oz p span:nth-child(1) {
  text-transform: uppercase;
  color: #006439;
}
.nav__top__left__carousel-container {
  max-width: 1000px;
  width: calc(100% - 300px);
  overflow: hidden;
  display: flex;
  gap: 2rem;
}
.nav__top__left__carousel {
  overflow: hidden;
}
.nav__top__left__carousel__container {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.nav__top__left__carousel__container__item {
  white-space: nowrap;
  color: #001D40;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.nav__top__left__carousel__container__item::after {
  content: "";
  display: block;
  position: absolute;
  right: calc(-2rem - 10px);
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 10px;
  height: 10px;
  background-color: #001D40;
  border-radius: 50%;
}
.nav__top__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav__bottom {
  padding-top: 1rem;
}
.nav__bottom .container-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__bottom__left {
  display: flex;
  align-items: center;
  gap: 5rem;
}
.nav__bottom__left nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__bottom__left nav ul li a {
  text-decoration: none;
  color: #FFFFFF;
}

.carousel-pause-button {
  background-color: transparent;
  border: none;
  padding: 0;
  width: 28px;
  height: 28px;
  cursor: pointer;
  border-radius: 50%;
}
.carousel-pause-button svg {
  display: block;
}
.carousel-pause-button .icon-play {
  display: none;
}
.carousel-pause-button .icon-pause {
  display: block;
}
.carousel-pause-button.is-paused .icon-play {
  display: block;
}
.carousel-pause-button.is-paused .icon-pause {
  display: none;
}
.carousel-pause-button:focus-visible {
  outline: 2px solid #66ABFF;
  outline-offset: 2px;
}

.menu-item-section {
  height: 100%;
}
.menu-item-section .image {
  height: 100%;
}

.mega-menu-wrapper {
  height: 100%;
}

.wpml-ls-legacy-dropdown-click {
  width: max-content;
}
.wpml-ls-legacy-dropdown-click a {
  color: #001D40;
  border: unset;
}
.wpml-ls-legacy-dropdown-click a:hover {
  background-color: unset;
  color: #001D40;
}

.tickets-sidebar ul li a:hover {
  text-decoration: underline;
}

@media (max-width: 1500px) {
  .nav__bottom__left {
    gap: 2rem;
  }
  .nav__bottom__left nav ul {
    gap: 1.5rem;
  }
}
@media (max-width: 1400px) {
  .nav-menu #menu-top-nav-1 > li > a {
    padding: 14px 0;
    font-family: "Archivo";
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .mobile-menu .nav-menu ul.sub-menu a {
    padding-top: 0 !important;
  }
}
.hero-block {
  position: relative;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #001D40 0%, rgba(0, 29, 64, 0) 60%, #001D40 95%), rgba(211, 211, 211, 0) 50%/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  height: 100%;
  left: 0;
  width: 100%;
  background-color: #001D40;
  z-index: -3;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: -2;
  position: absolute;
  top: 0;
  left: 0;
}
.hero .container {
  z-index: 5;
  height: 100%;
}
.hero__content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #FFFFFF;
  z-index: 5;
  padding-bottom: 8rem;
}
.hero__content h1 {
  text-shadow: 0px 0px 32px #000;
  text-transform: uppercase;
  font-weight: 800;
}
.hero__content h2 {
  text-shadow: 0px 0px 32px #000;
  text-transform: uppercase;
  font-weight: 300;
}
.hero__btns {
  display: flex;
  gap: 1.2rem;
  margin-top: 40px;
}
.hero__btns .btn-v2 {
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.hero__btns .btn-v2:hover {
  background-color: #FFFFFF;
  color: #001D40;
  border-color: #FFFFFF;
}
.hero__btns .btn-v2:hover svg path {
  fill: #001D40;
}
.hero__btns .btn-v3:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%), rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
}
.hero__btns .btn-v3:hover svg path {
  fill: #FFFFFF;
}
.hero__cards {
  background-color: #FFFFFF;
  width: max-content;
  display: flex;
  padding: 1.5rem 2.5rem;
  border-radius: 1rem 0 0 1rem;
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 100%;
  max-width: 1180px;
  gap: 3rem;
  z-index: 6;
}
.hero__cards .card {
  max-width: 340px;
  width: 100%;
  border-right: 1px solid #DEE5ED;
  padding-right: 3rem;
}
.hero__cards .card:nth-last-child(1) {
  border-right: unset;
}
.hero__cards .card .text-s {
  color: #216400;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.hero__cards .card a {
  color: #001D40;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 700;
}
.hero__cards .card a::after {
  content: "";
  display: block;
  background-color: #66ABFF;
  background-image: url("./../../assets/svg/arrow-dark.svg");
  max-width: 32px;
  width: 100%;
  height: 32px;
  background-position: center center;
  background-size: 19px;
  border-radius: 3.2px;
}

.heroV2 {
  min-height: 80vh;
  height: 100%;
  position: relative;
  padding: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}
.heroV2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #001D40 0%, rgba(0, 29, 64, 0) 60%, #001D40 95%), rgba(211, 211, 211, 0) 50%/cover no-repeat;
  z-index: 1;
}
.heroV2__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.heroV2 .container {
  z-index: 1;
  position: relative;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.heroEvents {
  position: relative;
  min-height: 80vh;
  height: 100%;
  padding: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.heroEvents::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 102%;
  background: linear-gradient(180deg, #001D40 0%, rgba(0, 29, 64, 0) 60%, #001D40 95%), rgba(211, 211, 211, 0) 50%/cover no-repeat;
  z-index: 1;
}
.heroEvents__img1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: blur(16px);
  z-index: 0;
}
.heroEvents__img2 {
  position: absolute;
  max-width: 620px;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 90%;
  object-fit: cover;
  object-position: center;
}
.heroEvents .container {
  position: relative;
  display: flex;
  height: 100%;
  justify-content: flex-end;
  flex-direction: column;
  z-index: 1;
}
.heroEvents__content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  align-items: flex-end;
}
.heroEvents__content h1 {
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.heroEvents__content h1 span:not(.hero_main_title) {
  font-family: "Archivo-expanded", sans-serif;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.1;
  font-stretch: 110%;
  letter-spacing: -0.02em;
}
.heroEvents__box {
  background-color: #FFFFFF;
  border-radius: 10px;
  max-width: 440px;
  width: 100%;
  height: max-content;
}
.heroEvents__box__item {
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border-bottom: 1.5px solid #DEE5ED;
  color: #001D40;
}
.heroEvents__box__item:nth-last-child(1) {
  border: unset;
}
.heroEvents__box__item span {
  font-weight: bold;
}

.heroPartner {
  overflow: hidden;
}
.heroPartner .heroEvents__img2 {
  width: 411.427px;
  height: 167.468px;
  object-fit: contain;
}
.heroPartner .heroEvents__content {
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  gap: 0;
  align-items: flex-start;
}

.heroLight {
  background-color: #001D40;
  color: #FFFFFF;
  padding-top: 10rem;
  min-height: 50vh;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 2rem;
}
.heroLight h1 {
  display: flex;
  flex-direction: column;
}

.heroJobs .heroEvents__box {
  height: max-content;
}

@media (max-width: 1200px) {
  .hero {
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__cards {
    flex-direction: column;
    width: fit-content;
    left: 2rem;
    right: auto;
    border-radius: 1rem;
  }
  .hero__cards .card {
    padding-right: 0;
    border-right: unset;
  }
}
@media (max-width: 980px) {
  .heroEvents__content {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .hero {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .hero .container {
    margin-top: 3rem;
  }
  .hero__content {
    padding-bottom: 4rem;
  }
  .hero::after {
    display: none;
  }

  .hero-block .hero {
    justify-content: flex-end;
  }
  .hero-block .hero .container {
    padding-bottom: 2rem;
  }

  .hero__cards {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: none;
    padding: 1rem;
    gap: 0;
    border-radius: 1rem;
    padding-top: 0;
  }
  .hero__cards .card {
    padding: 1rem;
    max-width: 100%;
    border-bottom: 1px solid #DEE5ED;
    background-color: #FFFFFF;
  }
  .hero__cards .card:nth-child(1) {
    border-radius: 16px 16px 0 0;
  }
  .hero__cards .card:nth-last-child(1) {
    border-radius: 0 0 16px 16px;
    border-bottom: unset;
  }
  .hero__cards::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #001D40;
    z-index: -1;
  }
}
@media (max-width: 600px) {
  .hero__btns {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .heroEvents__content {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.table-v1__cards {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  overflow: hidden;
}
.table-v1__cards .card {
  padding: 2rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
  position: relative;
  border-top: 1.5px solid #00316C;
}
.table-v1__cards .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, #006DF2) 100%), var(--Blue-700, #001733);
}
.table-v1__cards .card:hover::before {
  opacity: 1;
}
.table-v1__cards .card__content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  z-index: 2;
}
.table-v1__cards .card__td {
  display: flex;
  gap: 12px;
  color: #FFFFFF;
}
.table-v1__cards .card__td span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1rem;
}
.table-v1__cards .card__logos {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.table-v1__cards .card__logos img {
  max-width: 56px;
  width: 100%;
}
.table-v1__cards .card__teams {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  gap: 1rem;
}

.jobs .card h3 span {
  font-weight: 600;
}
.jobs__textBottom {
  margin-top: 3rem;
  color: #FFFFFF;
}
.jobs__textBottom a {
  color: #66ABFF;
  text-decoration: underline;
}
.jobs .btn-v4::after {
  background-image: url("./../svg/arrow-white.svg");
  background-size: contain;
}

@media (max-width: 1400px) {
  .table-v1__cards .card {
    align-items: flex-end;
  }
  .table-v1__cards .card__content {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .table-v1__cards .cards__team {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .table-v1__cards .card {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .table-v1__cards .card .card__logos {
    order: -1;
  }
}
@media (max-width: 479px) {
  .table-v1__cards .card {
    padding: 1.5rem 1rem;
  }
  .table-v1__cards .card__btn {
    width: 100%;
  }
  .table-v1__cards .card__teams {
    flex-wrap: wrap;
  }
}
.eventsSlider__slider {
  padding: 1rem;
  overflow: visible;
  position: relative;
  margin-bottom: 4.5rem;
}
.eventsSlider__slider .card {
  box-shadow: 0px 0px 15px 0px rgba(0, 109, 242, 0.7);
  border-radius: 20px;
}
.eventsSlider__slider .card:hover .card__img img {
  transform: scale(1.1);
}
.eventsSlider__slider .card:hover .card__content::before {
  opacity: 1;
}
.eventsSlider__slider .card__img {
  height: 500px;
  overflow: hidden;
  border-radius: 20px;
}
.eventsSlider__slider .card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.eventsSlider__slider .card__content {
  color: #FFFFFF;
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 0%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
  border-radius: 0 0 20px 20px;
}
.eventsSlider__slider .card__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 10%, #006DF2 100%), #001733;
}
.eventsSlider__slider .card__content h3 {
  text-transform: uppercase;
  z-index: 2;
}
.eventsSlider__slider .card__date {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 4px;
  line-height: 100%;
  z-index: 2;
  font-family: "Archivo-expanded", sans-serif;
}
.eventsSlider .swiper-button-prev,
.eventsSlider .swiper-button-next {
  width: 120px;
  height: 120px;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.eventsSlider .swiper-button-prev::after,
.eventsSlider .swiper-button-next::after {
  content: "";
  background-image: url("./../../assets/svg/arrow-dark.svg");
  background-size: contain;
  width: 44.211px;
  height: 44.211px;
}
.eventsSlider .swiper-button-next {
  right: -7.5rem;
}
.eventsSlider .swiper-button-prev {
  left: -7.5rem;
}
.eventsSlider .swiper-button-prev::after {
  transform: rotate(180deg);
}
.eventsSlider .swiper-button-disabled {
  opacity: 0;
}
.eventsSlider .swiper-pagination {
  bottom: -4.5rem;
}
.eventsSlider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 120px;
  border: 2px solid #66ABFF;
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
}
.eventsSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #66ABFF;
  width: 64px;
}

@media (max-width: 1800px) {
  .eventsSlider .swiper-button-next {
    right: 0;
  }
  .eventsSlider .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 767px) {
  .eventsSlider .swiper-controls-n {
    margin-top: 4rem;
  }
}
@media (max-width: 479px) {
  .eventsSlider .swiper-button-next {
    right: 0;
    width: 60px;
    height: 60px;
  }
  .eventsSlider .swiper-button-next::after {
    width: 30px;
    height: 30px;
  }
  .eventsSlider .swiper-button-prev {
    left: 0;
    width: 60px;
    height: 60px;
  }
  .eventsSlider .swiper-button-prev::after {
    width: 30px;
    height: 30px;
  }
  .eventsSlider__slider .card__img {
    height: 350px;
  }
}
.newsSlider__slider {
  padding: 1rem;
  overflow: visible;
  position: relative;
  margin-bottom: 4.5rem;
}
.newsSlider__slider .card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 82.01%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), linear-gradient(0deg, rgba(0, 29, 64, 0) 0%, rgba(0, 29, 64, 0) 100%), var(--Light-Grey, #DEE5ED);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
}
.newsSlider__slider .card:hover {
  background-color: #66ABFF;
}
.newsSlider__slider .card:hover .card__img img {
  transform: scale(1.1);
}
.newsSlider__slider .card__img {
  height: 288.75px;
  overflow: hidden;
  border-radius: 20px;
}
.newsSlider__slider .card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.newsSlider__slider .card__content {
  color: #FFFFFF;
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  color: #001D40;
  flex-grow: 1;
}
.newsSlider__slider .card__content h3 {
  z-index: 2;
}
.newsSlider__slider .card__top {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.newsSlider__slider .card__category {
  font-family: "Archivo-expanded", sans-serif;
  text-transform: uppercase;
  background-color: #FFFFFF;
  padding: 4px 0.8rem;
  letter-spacing: -0.18px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-weight: 700;
}
.newsSlider .swiper-button-prev,
.newsSlider .swiper-button-next {
  width: 120px;
  height: 120px;
  background-color: #001D40;
  border-radius: 50%;
}
.newsSlider .swiper-button-prev::after,
.newsSlider .swiper-button-next::after {
  content: "";
  background-image: url("./../../assets/svg/arrow-white.svg");
  background-size: contain;
  width: 44.211px;
  height: 44.211px;
}
.newsSlider .swiper-button-next {
  right: -7.5rem;
}
.newsSlider .swiper-button-prev {
  left: -7.5rem;
}
.newsSlider .swiper-button-prev::after {
  transform: rotate(180deg);
}
.newsSlider .swiper-button-disabled {
  opacity: 0;
}
.newsSlider .swiper-pagination {
  bottom: -4.5rem;
}
.newsSlider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 120px;
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: #DFE1E6;
}
.newsSlider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006DF2;
  width: 64px;
}

@media (max-width: 1800px) {
  .newsSlider .swiper-button-next {
    right: 0;
  }
  .newsSlider .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 479px) {
  .newsSlider .swiper-button-next {
    right: 0;
    width: 60px;
    height: 60px;
  }
  .newsSlider .swiper-button-next::after {
    width: 30px;
    height: 30px;
  }
  .newsSlider .swiper-button-prev {
    left: 0;
    width: 60px;
    height: 60px;
  }
  .newsSlider .swiper-button-prev::after {
    width: 30px;
    height: 30px;
  }
}
.cardsBg {
  position: relative;
  background-image: none !important;
}
.cardsBg .container {
  position: inherit;
  z-index: 2;
}
.cardsBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(180deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(180deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}
.cardsBg__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}
.cardsBg__top {
  margin-bottom: 3.75rem;
}
.cardsBg__top h2 {
  color: #001D40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 110%;
  text-transform: uppercase;
}
.cardsBg__top h2 span {
  font-weight: 700;
}
.cardsBg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.cardsBg__grid .card {
  display: flex;
  align-items: center;
  background-color: #001D40;
  color: #FFFFFF;
  padding: 1rem;
  gap: 1rem;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, rgba(0, 29, 64, 0.8) 50%, rgba(0, 29, 64, 0.5) 100%), rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.cardsBg__grid .card:hover .card__img img {
  transform: scale(1.1);
}
.cardsBg__grid .card__img {
  height: 300px;
  max-width: 300px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cardsBg__grid .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cardsBg__grid .card__content h3 {
  padding-bottom: 1rem;
  text-transform: uppercase;
}
.cardsBg__grid .card__content p {
  padding-bottom: 1rem;
}
.cardsBg__grid .card__btn {
  margin-top: 0.6rem;
}
.cardsBg__grid .card__btn a {
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.cardsBg__grid .card__btn a::after {
  background-image: url("./../../assets/svg/arrow-white.svg");
}

.atrium-section .cardsBg__top {
  max-width: 900px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.atrium-section .cardsBg__top .raum-details {
  justify-content: center;
}
.atrium-section .cardsBg__top h2,
.atrium-section .cardsBg__top p {
  color: #FFFFFF;
  text-align: center;
  align-items: center;
}
.atrium-section .cardsBg__top p {
  max-width: 800px;
  margin: 0 auto;
}
.atrium-section .cardsBg__top a {
  max-width: max-content;
  margin: 0 auto;
}
.atrium-section::before {
  background: linear-gradient(360deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(180deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(180deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}
.atrium-section .card:nth-child(even) {
  flex-direction: row-reverse;
}
.atrium-section .card__img {
  min-width: 300px;
  height: 360px;
}
.atrium-section .card .raum-details {
  margin-bottom: 1rem;
}

@media (max-width: 1250px) {
  .cardsBg__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .cardsBg {
    background-position: center center;
    background-size: cover;
  }
  .cardsBg__top {
    margin-bottom: 2rem;
  }
  .cardsBg__img {
    display: none;
  }
  .cardsBg__grid .card {
    padding: 2rem 1.25rem;
  }
  .cardsBg__grid .card__content h3 {
    hyphens: auto;
  }
  .cardsBg__grid .card__img {
    display: none;
  }
}
@media (max-width: 479px) {
  .cardsBg__grid .card {
    padding: 2rem 1rem;
  }
  .cardsBg__grid .card__btn a {
    width: 100%;
    margin-right: 0;
  }
}
.twoColSlider .section-header h2 {
  color: #FFFFFF;
}
.twoColSlider .section-header .text-m {
  color: #FFFFFF;
  margin-top: 1.25rem;
  max-width: 800px;
  margin-right: 1rem;
}
.twoColSlider__slider {
  padding: 1rem 0;
  overflow: visible;
  position: relative;
  margin-bottom: 4.5rem;
}
.twoColSlider__slider .card {
  height: 480px;
  position: relative;
  color: #FFFFFF;
  border-radius: 1rem;
  overflow: hidden;
}
.twoColSlider__slider .card__img {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
.twoColSlider__slider .card__content {
  border-radius: 0px 0px 16px 0px;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, rgba(0, 29, 64, 0.8) 50%, rgba(0, 29, 64, 0.5) 100%);
  backdrop-filter: blur(10px);
  width: 90%;
  padding: 1.5rem 2rem;
}
.twoColSlider__slider .card__content h3 {
  padding-bottom: 1rem;
  text-transform: uppercase;
}
.twoColSlider__slider .card-v2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.twoColSlider__slider .swiper-button-prev,
.twoColSlider__slider .swiper-button-next {
  width: 120px;
  height: 120px;
  background-color: #FFFFFF;
  border-radius: 50%;
}
.twoColSlider__slider .swiper-button-prev::after,
.twoColSlider__slider .swiper-button-next::after {
  content: "";
  background-image: url("./../../assets/svg/arrow-dark.svg");
  background-size: contain;
  width: 44.211px;
  height: 44.211px;
}
.twoColSlider__slider .swiper-button-next {
  right: -7.5rem;
}
.twoColSlider__slider .swiper-button-prev {
  left: -7.5rem;
}
.twoColSlider__slider .swiper-button-prev::after {
  transform: rotate(180deg);
}
.twoColSlider__slider .swiper-button-disabled {
  opacity: 0;
}
.twoColSlider__slider .swiper-pagination {
  bottom: -4.5rem;
}
.twoColSlider__slider .swiper-pagination .swiper-pagination-bullet {
  border-radius: 120px;
  border: 2px solid #66ABFF;
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
}
.twoColSlider__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #66ABFF;
  width: 64px;
}

.geschichte-slider .section-header {
  color: #FFFFFF;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.2rem;
  max-width: 800px;
}
.geschichte-slider .card__content button {
  background-color: unset;
  color: #FFFFFF;
  border: unset;
  cursor: pointer;
  text-align: left;
  position: relative;
  width: 100%;
  padding-right: 2rem;
}
.geschichte-slider .card__content button::after {
  content: "";
  display: block;
  width: 31.5px;
  height: 31.5px;
  background-image: url("./../../assets/svg/acc-open.svg");
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.geschichte-slider .card__content button p {
  text-transform: uppercase;
}
.geschichte-slider .card-v2 .card__content {
  border-radius: 0px 16px 0 0px;
}
.geschichte-slider .popup .btn {
  color: #FFFFFF;
  text-decoration: none;
  width: max-content;
  position: relative;
}
.geschichte-slider .popup .btn:hover {
  color: #001D40;
}
.geschichte-slider .popup .btn:hover::after {
  background-image: url("./../../assets/svg/arrow-dark.svg");
}
.geschichte-slider .popup .btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("./../../assets/svg/arrow-white.svg");
  background-size: contain;
  transition: background-image 0.3s ease-in-out;
}

.twoColSlider .card__content button {
  background-color: unset;
  color: #FFFFFF;
  border: unset;
  cursor: pointer;
  text-align: left;
  position: relative;
  width: 100%;
  padding-right: 2rem;
}
.twoColSlider .card__content button::after {
  content: "";
  display: block;
  width: 31.5px;
  height: 31.5px;
  background-image: url("./../../assets/svg/acc-open.svg");
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform 0.3s ease;
}
.twoColSlider .card__content button:hover::after {
  transform: rotate(90deg);
  transform-origin: center center;
}
.twoColSlider .card__content button p {
  text-transform: uppercase;
}
.twoColSlider .card-v2 .card__content {
  border-radius: 0px 16px 0 0px;
}
.twoColSlider .popup .btn {
  color: #FFFFFF;
  text-decoration: none;
  width: max-content;
  position: relative;
}
.twoColSlider .popup .btn:hover {
  color: #001D40;
}
.twoColSlider .popup .btn:hover::after {
  background-image: url("./../../assets/svg/arrow-dark.svg");
}
.twoColSlider .popup .btn::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("./../../assets/svg/arrow-white.svg");
  background-size: contain;
  transition: background-image 0.3s ease-in-out;
}

.bg-white .section-header {
  color: #001D40;
}
.bg-white .section-header h2,
.bg-white .section-header p {
  color: #001D40 !important;
}
.bg-white .section-header .btn-v2 {
  background-color: #001D40;
  color: #FFFFFF;
}
.bg-white .section-header .btn-v2:hover {
  background-color: unset;
  border-color: #001D40;
  color: #001D40;
}
.bg-white .twoColSlider__slider .swiper-pagination .swiper-pagination-bullet {
  border-color: #001D40;
}
.bg-white .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #001D40;
}
.bg-white .swiper-button-prev,
.bg-white .swiper-button-next {
  background-color: #001D40;
}
.bg-white .swiper-button-prev::after,
.bg-white .swiper-button-next::after {
  background-image: url("./../../assets/svg/arrow-white.svg");
}

.image-slider .section-header .section-header__content {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  color: #FFFFFF;
}
.image-slider .section-header .section-header__content .text-m {
  margin-top: 1.25rem;
}

@media (max-width: 1800px) {
  .twoColSlider .swiper-button-next {
    right: 0;
  }
  .twoColSlider .swiper-button-prev {
    left: 0;
  }
}
@media (max-width: 479px) {
  .twoColSlider .card__content {
    width: 100%;
    padding: 1rem 1rem;
    border-radius: 0;
  }
  .twoColSlider .swiper-button-next {
    right: 0;
    width: 60px;
    height: 60px;
  }
  .twoColSlider .swiper-button-next::after {
    width: 30px;
    height: 30px;
  }
  .twoColSlider .swiper-button-prev {
    left: 0;
    width: 60px;
    height: 60px;
  }
  .twoColSlider .swiper-button-prev::after {
    width: 30px;
    height: 30px;
  }
}
.video__content {
  position: relative;
  height: 733px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.video__content::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.video__content__info {
  z-index: 2;
  position: inherit;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3rem;
}
.video__content__info h2 {
  color: #FFFFFF;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.video__content__info h2 span {
  font-weight: 700;
}
.video__content__info button {
  background-color: transparent;
  border: unset;
  cursor: pointer;
  position: relative;
  width: 160px;
}
.video__content__info button::before {
  content: "";
  position: absolute;
  width: 57.6px;
  height: 57.6px;
  background-color: #FFFFFF;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 16px;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}
.video__content__info button:hover::before {
  opacity: 1;
}
.video__content__info button img {
  backdrop-filter: blur(6.4000000954px);
}
.video__img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  border-radius: 16px;
  z-index: 0;
}
.video .is-playing .video__content__info {
  display: none;
}
.video .is-playing .video__player {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-small {
  padding: 3rem 0;
}
.video-small .container {
  max-width: 800px;
}
.video-small .video__content {
  height: 432px;
}
.video-small .video__content::before {
  display: none;
}
.video-small .video__caption {
  margin-top: 1rem;
  opacity: 0.7;
}
.video-small .text-s {
  color: #FFFFFF;
}

@media (max-width: 980px) {
  .video button::before {
    opacity: 1;
  }
  .video .video__content {
    height: 450px;
  }
  .video .video__content__info {
    gap: 1rem;
  }
}
@media (max-width: 479px) {
  .video-small .video__content,
.video .video__content {
    height: 250px;
  }

  .video .video__content__info {
    gap: 1rem;
  }
  .video .video__content__info button {
    width: 80px;
  }
  .video .video__content__info button::before {
    width: 37.6px;
    height: 37.6px;
  }
}
.logos-b__row {
  margin-bottom: 3.75rem;
}
.logos-b__row:nth-last-child(1) {
  margin-bottom: 0;
}
.logos-b__row h2 {
  padding-bottom: 1.25rem;
}
.logos-b__row__logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  max-width: 100%;
  align-items: center;
}
.logos-b__row__logos a,
.logos-b__row__logos img {
  height: 100px;
  transition: all 0.3s ease;
}
.logos-b__row__logos img {
  width: auto;
}
.logos-b__row__logos a:hover img {
  transform: scale(1.03);
}

@media (max-width: 767px) {
  .logos-b__row__logos {
    display: flex;
    flex-wrap: wrap;
  }
  .logos-b__row__logos img {
    max-width: 80px;
  }
}
.termine__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.termine__top__left .card {
  box-shadow: 0px 0px 15px 0px rgba(0, 109, 242, 0.7);
  border-radius: 20px;
  height: 100%;
  display: block;
}
.termine__top__left .card__img {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
.termine__top__left .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.termine__top__left .card__content {
  padding: 2rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.termine__top__right {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
}
.termine__top__right .card {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
  position: relative;
  border-top: 1.5px solid #00316C;
}
.termine__top__right .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, #006DF2) 100%), var(--Blue-700, #001733);
}
.termine__top__right .card:hover::before {
  opacity: 1;
}
.termine__top__right .card__content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  z-index: 2;
}
.termine__top__right .card__td {
  display: flex;
  gap: 12px;
  color: #FFFFFF;
}
.termine__top__right .card__td span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1rem;
}
.termine__top__right .card__logos {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.termine__top__right .card__logos img {
  max-width: 56px;
  width: 100%;
}
.termine__top__right .card__teams {
  display: flex;
  color: #FFFFFF;
  text-transform: uppercase;
  gap: 0rem;
  flex-direction: column;
}
.termine__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem 2rem;
}
.termine__bottom .card {
  box-shadow: 0px 0px 15px 0px rgba(0, 109, 242, 0.7);
  border-radius: 20px;
  position: relative;
}
.termine__bottom .card:hover .card__img img {
  transform: scale(1.1);
}
.termine__bottom .card:hover .card__content::before {
  opacity: 1;
}
.termine__bottom .card__img {
  height: 470px;
  overflow: hidden;
  border-radius: 20px;
}
.termine__bottom .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.termine__bottom .card__content {
  position: relative;
  padding: 1.5rem 1rem;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border-radius: 20px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 0%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
}
.termine__bottom .card__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 10%, #006DF2 100%), #001733;
}
.termine__bottom .card__content h3 {
  z-index: 2;
}

@media (max-width: 1440px) {
  .termine__top__right .card__content {
    gap: 1rem;
  }
}
@media (max-width: 1400px) {
  .termine__top {
    grid-template-columns: repeat(1, 1fr);
  }
  .termine__top__right .card__content {
    gap: 1rem;
  }
  .termine__bottom {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .termine__top {
    margin-bottom: 4rem;
  }
  .termine__top .card__img {
    height: 300px;
  }
  .termine__top .card__content {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .termine__top .card__logos {
    order: -1;
  }
  .termine__top .card__teams {
    gap: 0.8rem;
  }
  .termine__bottom {
    grid-template-columns: repeat(1, 1fr);
  }
}
.newsletter {
  padding: 0;
}
.newsletter__container {
  display: flex;
  align-items: center;
}
.newsletter h2 {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.newsletter h2 span:nth-child(1) {
  font-weight: 700;
}
.newsletter__img {
  height: 640px;
  max-width: 670px;
  overflow: hidden;
  position: relative;
}
.newsletter__img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #FFF 95%);
}
.newsletter__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.newsletter__content {
  padding: 7.5rem 10rem;
}
.newsletter__form {
  margin-top: 4rem;
}

@media (max-width: 1440px) {
  .newsletter__content {
    padding: 4rem;
  }
}
@media (max-width: 1200px) {
  .newsletter__content {
    padding: 2rem;
  }
  .newsletter__img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .newsletter__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter__content {
    padding: 2rem 1rem;
  }
  .newsletter__img {
    height: 300px;
    max-width: 100%;
    width: 100%;
  }
}
.ctaImgText {
  padding: 0;
}
.ctaImgText__container {
  display: flex;
  align-items: center;
}
.ctaImgText h2 {
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.ctaImgText h2 span:nth-child(1) {
  font-weight: 700;
}
.ctaImgText__img {
  height: 640px;
  max-width: 670px;
  overflow: hidden;
  position: relative;
}
.ctaImgText__img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, #FFF 95%);
}
.ctaImgText__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ctaImgText__content {
  padding: 7.5rem 10rem;
}
.ctaImgText__description :first-child {
  margin-top: 0;
}
.ctaImgText__description :last-child {
  margin-bottom: 0;
}
.ctaImgText__cta {
  margin-top: 1rem;
  width: fit-content;
}

@media (max-width: 1440px) {
  .ctaImgText__content {
    padding: 4rem;
  }
}
@media (max-width: 1200px) {
  .ctaImgText__content {
    padding: 2rem;
  }
  .ctaImgText__img {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .ctaImgText__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .ctaImgText__content {
    padding: 2rem 1rem;
  }
  .ctaImgText__img {
    height: 300px;
    max-width: 100%;
    width: 100%;
  }
}
.twoColTickets .container {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.twoColTickets__left {
  color: #FFFFFF;
  max-width: 750px;
  width: 100%;
}
.twoColTickets__left h2 {
  margin-bottom: 2.5rem;
}
.twoColTickets__left ul li {
  list-style-type: none;
}
.twoColTickets__left ul li a {
  color: #66ABFF;
}
.twoColTickets__right {
  max-width: 680px;
  width: 100%;
}
.twoColTickets__right h3 {
  margin-bottom: 2rem;
  color: #FFFFFF;
  text-transform: uppercase;
}
.twoColTickets__right__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.twoColTickets__right__cards .card {
  padding: 1.25rem;
  border: 1.5px solid #00316C;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  padding-right: 1.75rem;
}
.twoColTickets__right__cards .card h4 {
  margin-bottom: 0.5rem;
}
.twoColTickets__right__cards .card__icon {
  max-width: 80px;
  height: 80px;
  width: 100%;
}
.twoColTickets__right__cards .card__icon img {
  width: 100%;
}
.twoColTickets__right__cards .card a {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
}

@media (max-width: 980px) {
  .twoColTickets__right__cards .card {
    gap: 1rem;
  }
}
@media (max-width: 980px) {
  .twoColTickets .container {
    flex-direction: column;
  }
}
@media (max-width: 479px) {
  .twoColTickets .card {
    flex-direction: column;
    align-items: flex-start;
  }
  .twoColTickets .card a {
    top: 2rem;
  }
}
.accordion .container {
  max-width: 1024px;
}
.accordion .container > h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 3rem;
}
.accordion__accordions .card {
  background-color: #001733;
  box-shadow: 0px 0px 16px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  border-bottom: 1.5px solid #00316C;
  padding: 1rem 2rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
}
.accordion__accordions .card:nth-last-child(1) {
  margin-bottom: 0;
}
.accordion__accordions .card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.accordion__accordions .card h3 button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Inter", sans-serif;
  background-color: unset;
  width: 100%;
  height: 100%;
  border: unset;
  color: #FFFFFF;
  text-align: left;
}
.accordion__accordions .card h3 button::after {
  content: "";
  display: block;
  width: 56px;
  height: 56px;
  background-position: center;
  background-image: url("./../../assets/svg/acc-open.svg");
  transition: transform 0.3s ease;
}
.accordion__accordions .card h3 button:hover::after {
  transform: rotate(90deg);
  transform-origin: center center;
}
.accordion__accordions .card .card__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease, padding 0.2s ease;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  overflow-y: scroll;
}
.accordion__accordions .card .card__content ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.accordion__accordions .card .card__content ul li::before {
  background-image: url("./../../assets/svg/check-icon1.svg");
  top: 6px;
}
.accordion__accordions .card .card__content.acc-visible {
  max-height: 2000px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  opacity: 1;
}
.accordion__accordions .accordion__icon {
  color: #FFFFFF;
}
.accordion__accordions .acc-open {
  background-color: #FFFFFF;
  color: #001D40;
}
.accordion__accordions .acc-open h3 button {
  color: #001D40;
}
.accordion__accordions .acc-open h3 button::after {
  background-image: url("./../../assets/svg/acc-close.svg");
  background-color: #001D40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-position: center;
}
.accordion__accordions .acc-open h3 button:hover::after {
  transform: unset;
}
.accordion__accordions .acc-open .accordion__icon.active-blue {
  color: #001D40;
}
.accordion__bottom {
  color: #FFFFFF;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 3rem;
}
.accordion .fourColBox .container {
  max-width: 1600px;
}

.accordion-v2 .container {
  max-width: 1600px;
}
.accordion-v2 .container > h2 {
  text-align: left;
  margin-bottom: 2rem;
}

.accordion__icon {
  width: 100%;
  height: 40px;
  max-width: 40px;
  border-radius: 50%;
  color: #FFFFFF;
}
.accordion__icon img,
.accordion__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 479px) {
  .accordion .card {
    padding: 1rem;
  }
  .accordion .card h3 button {
    hyphens: auto;
  }
  .accordion .card h3 button::after {
    width: 100%;
    max-width: 25px;
    height: 25px;
    margin-left: 5px;
  }

  .acc-open h3 button::after {
    width: 100%;
    max-width: 25px;
    height: 25px;
    margin-left: 5px;
    background-size: 20px;
  }
}
.fourColBox {
  padding: 6rem 0;
}
.fourColBox__grid {
  background-color: #FFFFFF;
  display: flex;
  padding: 1.5rem 2.5rem;
  border-radius: 1rem;
  width: 100%;
  gap: 3rem;
}
.fourColBox__grid .card {
  max-width: 340px;
  width: 100%;
  border-right: 1px solid #DEE5ED;
  padding-right: 3rem;
}
.fourColBox__grid .card:nth-last-child(1) {
  border-right: unset;
}
.fourColBox__grid .card .text-s {
  color: #006DF2;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.fourColBox__grid .card a {
  color: #001D40;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-weight: 700;
}
.fourColBox__grid .card a::after {
  content: "";
  display: block;
  background-color: #66ABFF;
  background-image: url("./../../assets/svg/arrow-dark.svg");
  max-width: 32px;
  width: 100%;
  height: 32px;
  background-position: center center;
  background-size: 19px;
  border-radius: 3.2px;
}

@media (max-width: 1400px) {
  .fourColBox__grid {
    gap: 1rem;
  }
  .fourColBox__grid .card {
    padding-right: 1rem;
  }
}
@media (max-width: 1200px) {
  .fourColBox__grid {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .fourColBox__grid .card {
    padding-right: 1rem;
    max-width: 100%;
  }
  .fourColBox__grid .card:nth-child(2) {
    border-right: unset;
  }
}
@media (max-width: 767px) {
  .fourColBox__grid {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    padding: 2rem 1rem;
  }
  .fourColBox__grid .card {
    padding-right: 1rem;
    max-width: 100%;
    border-right: unset;
    border-bottom: 1px solid #DEE5ED;
    padding-bottom: 1rem;
  }
  .fourColBox__grid .card:nth-child(1) {
    padding-top: 0;
  }
  .fourColBox__grid .card:nth-last-child(1) {
    border: unset;
    padding-bottom: 0;
  }
}
.oTime__top {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 5rem;
  margin-bottom: 3.5rem;
  position: relative;
}
.oTime__top p {
  max-width: 900px;
  width: 100%;
}
.oTime__top p strong {
  color: #66ABFF;
}
.oTime__date-wrap {
  position: relative;
  flex-shrink: 0;
}
.oTime__date-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  white-space: nowrap;
}
.oTime__date-btn svg path {
  fill: none !important;
  stroke: currentColor;
  transition: stroke 0.3s ease-in-out;
}
.oTime__date-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.oTime__date-btn-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}
.oTime__datepicker {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 30;
  width: 320px;
  max-width: calc(100vw - 2rem);
  padding: 1rem;
  border-radius: 12px;
  background: #FFFFFF;
  color: #001D40;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.oTime__datepicker[hidden] {
  display: none !important;
}
.oTime__datepicker-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.oTime__datepicker-month-label {
  border: 0;
  background: transparent;
  color: #001D40;
  font-weight: 700;
  font-size: 1rem;
  padding: 0;
  cursor: default;
}
.oTime__datepicker-nav {
  display: flex;
  gap: 0.25rem;
}
.oTime__datepicker-nav button {
  border: 0;
  background: transparent;
  color: #001D40;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.oTime__datepicker-nav button:hover, .oTime__datepicker-nav button:focus-visible {
  background: rgba(0, 109, 242, 0.1);
}
.oTime__datepicker-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0, 29, 64, 0.55);
}
.oTime__datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.oTime__datepicker-day {
  border: 0;
  background: transparent;
  color: #001D40;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 0.875rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.oTime__datepicker-day.is-empty {
  pointer-events: none;
  visibility: hidden;
}
.oTime__datepicker-day.is-today {
  box-shadow: inset 0 0 0 1.5px #001D40;
}
.oTime__datepicker-day.is-selected {
  background: #001D40;
  color: #FFFFFF;
  box-shadow: none;
}
.oTime__datepicker-day:not(.is-empty):hover, .oTime__datepicker-day:not(.is-empty):focus-visible {
  background: rgba(0, 109, 242, 0.12);
}
.oTime__datepicker-day.is-selected:hover, .oTime__datepicker-day.is-selected:focus-visible {
  background: #001D40;
  color: #FFFFFF;
}
.oTime__datepicker-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.25rem;
}
.oTime__datepicker-footer button {
  border: 0;
  background: transparent;
  color: #006DF2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.25rem 0;
}
.oTime__datepicker-footer button:hover, .oTime__datepicker-footer button:focus-visible {
  color: #001D40;
}
.oTime__empty {
  padding: 2rem 1.5rem;
  color: #FFFFFF;
}
.oTime__empty.is-hidden {
  display: none;
}
.oTime__empty p {
  margin: 0;
}
.oTime__cards {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  overflow: hidden;
}
.oTime__cards .card {
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(160px, 240px) auto 1fr auto;
  align-items: center;
  column-gap: 2rem;
  row-gap: 1rem;
  transition: background-color 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), var(--Blue-700, #001733);
  position: relative;
  border-top: 1.5px solid #00316C;
}
.oTime__cards .card.is-hidden {
  display: none;
}
.oTime__cards .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 50%, var(--Blue-200, #006DF2) 100%), var(--Blue-700, #001733);
}
.oTime__cards .card:hover::before {
  opacity: 1;
}
.oTime__cards .card > * {
  position: relative;
  z-index: 2;
}
.oTime__cards .card h3 {
  color: #FFFFFF;
  margin: 0;
}
.oTime__cards .card__td {
  display: flex;
  gap: 12px;
  color: #FFFFFF;
  width: 180px;
}
.oTime__cards .card__td span {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.8rem 1rem;
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
.oTime__cards .card__details {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}
.oTime__cards .card__logos {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}
.oTime__cards .card__logos img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.oTime__cards .card__teams {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-transform: uppercase;
  gap: 1rem;
  min-width: 0;
}
.oTime__cards .card__teams p {
  margin: 0;
}
.oTime__cards .card__btn {
  justify-self: end;
  margin: 0;
}
.oTime__cards .card__btn .btn-v4 {
  margin-right: 0;
  width: max-content;
}
.oTime__cards .card__strich {
  height: 6px;
  width: 100%;
  border-radius: 999px;
  background-color: rgba(102, 171, 255, 0.2);
  overflow: hidden;
}
.oTime__cards .card__strich-fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background-color: #66ABFF;
  max-width: 100%;
}
@media (max-width: 1500px) {
  .oTime__cards .card {
    column-gap: 1.5rem;
  }
  .oTime__cards .card__details {
    gap: 1rem;
  }
}
@media (max-width: 1300px) {
  .oTime .card {
    grid-template-columns: repeat(1, 1fr);
  }
  .oTime .card__btn {
    justify-self: start;
  }
}
@media (max-width: 1200px) {
  .oTime__cards .card .card__btn {
    justify-self: start;
  }
  .oTime__cards .card .card__strich {
    align-self: center;
  }
}
@media (max-width: 980px) {
  .oTime__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .oTime__datepicker {
    left: 0;
    right: auto;
  }
}
@media (max-width: 767px) {
  .oTime__date-btn {
    width: 100%;
    justify-content: space-between;
  }
  .oTime__datepicker {
    width: min(320px, 100vw - 2rem);
  }
  .oTime__cards .card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 1rem;
  }
  .oTime__cards .card h3,
.oTime__cards .card .card__td,
.oTime__cards .card .card__details,
.oTime__cards .card .card__btn,
.oTime__cards .card .card__strich {
    width: 100%;
  }
  .oTime__cards .card .card__strich {
    margin-top: 0.25rem;
  }
  .oTime__cards .card .card__teams {
    flex-wrap: wrap;
  }
  .oTime__cards .card .card__details {
    flex-direction: column;
    align-items: flex-start;
  }
}
.textImg {
  color: #FFFFFF;
}
.textImg .np-nm {
  margin-top: 0 !important;
}
.textImg__container {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.textImg__img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 700px;
  border-radius: 0px 24px 24px 0px;
  overflow: hidden;
}
.textImg__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.textImg__content {
  max-width: 900px;
  padding-right: 1rem;
}
.textImg__content__top h2 {
  padding-bottom: 2rem;
}
.textImg__content__top p {
  max-width: 800px;
}
.textImg__content__top > .textEditor-content {
  margin-top: 0 !important;
}
.textImg__cards {
  padding-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.textImg__cards .card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.textImg__cards .card__icon {
  width: 57px;
}
.textImg__cards .card__icon img,
.textImg__cards .card__icon svg {
  width: 100%;
}
.textImg__cards .card__btn a {
  color: #FFFFFF;
}
.textImg__cards .card__btn a::after {
  background-image: url(./../../assets/svg/arrow-topRight.svg);
}
.textImg__cardsV2 {
  grid-template-columns: repeat(3, 1fr);
}
.textImg .textEditor-content {
  margin-top: 3rem;
  max-width: 760px;
}
.textImg .textEditor-content p {
  font-size: 1rem;
}
.textImg .textEditor-content strong {
  font-size: 1.125rem;
}
.textImg .textEditor-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 2rem;
}
.textImg .textEditor-content ul li {
  font-size: 1rem;
  font-weight: 400;
}
.textImg .textEditor-content ul li::before {
  background-image: url("./../../assets/svg/check-icon.svg");
  width: 20px;
  height: 20px;
  left: -2rem;
}
.textImg .textEditor-content ul:has(+ *) {
  margin-bottom: 3rem;
}

.textImgReverse .textImg__container {
  flex-direction: row-reverse;
  padding-left: calc((100vw - 1600px) / 2);
  margin-left: 2rem;
  justify-content: space-between;
}
.textImgReverse .textImg__img {
  border-radius: 24px 0 0 24px;
}

.textImg.bg-white .btn {
  color: #001D40;
  border-color: #001D40;
}
.textImg.bg-white .btn::after {
  background-image: url("./../../assets/svg/arrow-dark.svg");
}

@media (max-width: 1440px) {
  .textImg__container {
    gap: 2rem;
  }
}
@media (max-width: 980px) {
  .textImg__container {
    flex-direction: column;
    align-items: flex-start;
  }
  .textImg__img {
    border-radius: 0px 24px 24px 0px !important;
  }
  .textImg__content {
    padding: 0 2rem;
  }
  .textImg__content__top h2 {
    padding-bottom: 0;
  }

  .textImgReverse .textImg__container {
    flex-direction: column !important;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .textImg__content {
    padding: 0 1rem;
  }
  .textImg__cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .textImg .textEditor-content p {
    padding-bottom: 0;
  }
}
.priceBox .section-header {
  justify-content: center;
}
.priceBox .section-header h2 {
  text-align: center;
}
.priceBox__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 1201px) {
  .priceBox__grid--few {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .priceBox__grid--few .card {
    flex: 0 0 calc((100% - 6rem) / 4);
    max-width: calc((100% - 6rem) / 4);
  }
}
.priceBox__grid .card {
  color: #FFFFFF;
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  padding: 1.25rem 1.75rem 1.75rem 1.75rem;
  border-radius: 16px;
}
.priceBox__grid .card__top {
  margin-bottom: 2rem;
}
.priceBox__grid .card__top h3 {
  text-transform: inherit;
}
.priceBox__grid .card__top h3 span {
  color: #66ABFF;
  margin-left: 1rem;
}
.priceBox__cta {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.priceBox__cta p {
  color: #FFFFFF;
  text-align: center;
}

.priceBoxV2 .priceBox__grid {
  grid-template-columns: repeat(2, 1fr);
}
.priceBoxV2 .priceBox__grid .card__top h3 {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}
.priceBoxV2 .priceBox__grid .card__top h3 span {
  color: #FFFFFF;
  margin-left: 0.8rem;
}
.priceBoxV2 .priceBox__grid .card__top h3 strong {
  color: #66ABFF;
}

@media (max-width: 1200px) {
  .priceBox__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .priceBox__grid--few {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .priceBox__grid--few .card {
    flex: 0 0 calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
  }
}
@media (max-width: 980px) {
  .priceBox__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .priceBox__grid--few {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .priceBox__grid--few .card {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .priceBoxV2 .priceBox__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 760px) {
  .priceBoxV2 .priceBox__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .priceBoxV2 .priceBox__grid .card__top h3 {
    display: block;
  }
}
.twoColBox .section-header h2 {
  color: #001733;
}
.twoColBox__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.twoColBox__grid .card {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
}
.twoColBox__grid .card:nth-child(1) {
  grid-row: span 3;
  flex-direction: column;
  margin-right: 1rem;
}
.twoColBox__grid .card:nth-child(1) .card__img {
  max-height: 496px;
  max-width: 100%;
  height: 100%;
}
.twoColBox__grid .card__img {
  border-radius: 16px;
  overflow: hidden;
  max-width: 320px;
  width: 100%;
  height: 240px;
}
.twoColBox__grid .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.twoColBox__grid .card__content {
  padding-top: 1rem;
  width: 100%;
}
.twoColBox__grid .card__content h3 {
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.twoColBox__grid .card__content .text-m {
  margin-bottom: 0.75rem;
}
.twoColBox__grid .card__cta-text span {
  font-size: 20px;
  font-weight: 700;
  color: #006DF2;
}
@media (max-width: 767px) {
  .twoColBox__grid .card__cta-text span {
    font-size: 16px;
  }
}
.twoColBox__grid .btn-light:hover {
  width: auto !important;
  flex: unset !important;
  color: #001D40;
}

@media (max-width: 1200px) {
  .twoColBox__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .twoColBox__grid .card {
    align-items: center;
  }
  .twoColBox__grid .card:nth-child(1) {
    grid-row: unset;
    flex-direction: row-reverse;
    margin-right: 0;
  }
  .twoColBox__grid .card:nth-child(1) .card__img {
    height: 288px;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .twoColBox__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
  .twoColBox__grid .card {
    align-items: flex-start;
    flex-direction: column !important;
    gap: 1rem;
  }
  .twoColBox__grid .card__content {
    padding-top: 0;
  }
  .twoColBox__grid .card__img {
    max-width: 100% !important;
  }
}
.tour360Slider .swiper .card h3 {
  padding-bottom: 0;
}

.threeColCards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.threeColCards__grid .card {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  overflow: hidden;
  color: #FFFFFF;
}
.threeColCards__grid .card:hover .card__img > img {
  transform: scale(1.1);
}
.threeColCards__grid .card__img {
  height: 288px;
  overflow: hidden;
  position: relative;
}
.threeColCards__grid .card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.threeColCards__grid .card__img__logo {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 84px;
  height: 84px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, #07356D 50%, rgba(0, 29, 64, 0.5) 100%);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.threeColCards__grid .card__img__logo img {
  width: 56px;
  height: 56px;
  object-fit: contain !important;
}
.threeColCards__grid .card__content {
  padding: 3rem 2rem;
}
.threeColCards__grid .card h3 {
  padding-bottom: 1rem;
}
.threeColCards__grid .card a,
.threeColCards__grid .card button {
  color: #FFFFFF;
  border-color: #FFFFFF;
  margin-top: 1.5rem;
  cursor: pointer;
}
.threeColCards__grid .card a::after,
.threeColCards__grid .card button::after {
  background-image: url("./../../assets/svg/arrow-white.svg");
}

.threeColCards.bg-white .card {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 82.01%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), linear-gradient(0deg, rgba(0, 29, 64, 0) 0%, rgba(0, 29, 64, 0) 100%), var(--Light-Grey, #DEE5ED);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: auto;
  box-shadow: unset;
}
.threeColCards.bg-white .card:hover {
  background-color: #66ABFF;
}
.threeColCards.bg-white .card:hover .card__img img {
  transform: scale(1.1);
}
.threeColCards.bg-white .card__img {
  height: 288.75px;
  overflow: hidden;
  border-radius: 20px;
}
.threeColCards.bg-white .card__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.threeColCards.bg-white .card__content {
  color: #FFFFFF;
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  color: #001D40;
  flex-grow: 1;
}
.threeColCards.bg-white .card__content h3 {
  z-index: 2;
}
.threeColCards.bg-white .card__top {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.threeColCards.bg-white .card__category {
  font-family: "Archivo-expanded", sans-serif;
  text-transform: uppercase;
  background-color: #FFFFFF;
  padding: 4px 0.8rem;
  letter-spacing: -0.18px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-weight: 700;
}

.nachhaltigkeit-section .card {
  position: relative;
}
.nachhaltigkeit-section .card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 80px;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-in-out;
  z-index: 0;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 10%, #006DF2 100%), #00173300;
}
.nachhaltigkeit-section .card:hover::before {
  opacity: 1;
}
.nachhaltigkeit-section .card button {
  border-color: #006DF2;
}
.nachhaltigkeit-section .card button::after {
  background-image: url("./../svg/acc-open.svg");
}

.nachhaltigkeit-section.bg-white .card::before {
  display: none;
}
.nachhaltigkeit-section.bg-white .card button {
  color: #001D40;
  border-color: #001D40;
}
.nachhaltigkeit-section.bg-white .card button::after {
  background-image: url("./../svg/acc-open-dark.svg");
}
.nachhaltigkeit-section.bg-white .card__content {
  padding: 3rem 2rem;
  gap: 0;
}

.fuehrungen-section.bg-dark .card .btn-light {
  border-color: #006DF2;
}
.fuehrungen-section.bg-dark .fuehrungen__filter {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.fuehrungen-section.bg-dark .fuehrungen__filter ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.fuehrungen-section.bg-dark .fuehrungen__filter ul li {
  list-style-type: none;
  margin: 0;
}
.fuehrungen-section.bg-dark .fuehrungen__filter ul li button {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.fuehrungen-section.bg-dark .fuehrungen__filter .fuehrungen-filter-cat.active {
  background-color: #66ABFF;
  color: #001D40;
  border-color: #66ABFF;
}
.fuehrungen-section.bg-dark .fuehrungen__categories {
  border: unset;
  padding: 0;
}

.news .news__grid:not(.first-page) .card:nth-child(1) {
  grid-column: unset;
  display: block;
  gap: unset;
}
.news .news__grid:not(.first-page) .card:nth-child(1) .news-card__img {
  height: 300px;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  min-height: unset;
}
.news .news__grid:not(.first-page) .card:nth-child(1) .news-card__content {
  width: 100%;
}

.raeume-section .card .raum-details {
  margin-bottom: 1rem;
}
.raeume-section .card .raum-details__item {
  background: #FFFFFF;
}
.raeume-section .card .raum-details .raum-size::before {
  background-image: url("./../svg/expansion-dark.svg");
}
.raeume-section .card .raum-details .raum-people::before {
  background-image: url("./../svg/people-dark.svg");
}
.raeume-section .card__img {
  height: 342px !important;
}
.raeume-section .card__content {
  gap: 0 !important;
  padding: 3rem 2rem !important;
}
.raeume-section .card .btn {
  color: #001D40;
  border-color: #001D40;
}
.raeume-section .card .btn::after {
  background-image: url("./../svg/arrow-dark.svg");
}
.raeume-section .card.is-hidden {
  display: none;
}
.raeume-section__load-more {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.raeume-section__load-more.is-hidden, .raeume-section__load-more[hidden] {
  display: none;
}

@media (max-width: 1200px) {
  .threeColCards__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .threeColCards__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .threeColCards__grid .card__content {
    padding: 2rem 1rem !important;
  }
}
.boxBg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.boxBg .container {
  position: inherit;
  z-index: 2;
}
.boxBg__content {
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, rgba(0, 29, 64, 0.8) 50%, rgba(0, 29, 64, 0.5) 100%), rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 4rem 3rem;
  color: #FFFFFF;
}
.boxBg__content h2 {
  margin-bottom: 2rem;
}
.boxBg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(360deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(360deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(360deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}
.boxBg__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
  object-position: center;
}
.boxBg__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.boxBg__grid .textEditor-content {
  margin-top: 0;
  max-width: 760px;
}
.boxBg__grid .textEditor-content p {
  font-size: 1rem;
  padding: 0;
}
.boxBg__grid .textEditor-content strong {
  font-size: 1.125rem;
}
.boxBg__grid .textEditor-content ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 2rem;
}
.boxBg__grid .textEditor-content ul li {
  font-size: 1rem;
  font-weight: 400;
}
.boxBg__grid .textEditor-content ul li::before {
  background-image: url("./../../assets/svg/check-icon.svg");
  width: 20px;
  height: 20px;
  left: -2rem;
}
.boxBg__grid .textEditor-content ul:has(+ *) {
  margin-bottom: 3rem;
}

.boxBg.switch-gra::before {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(360deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(360deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}

.imgBg::before {
  background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(360deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(360deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}

.imgBg.switch-gra::before {
  background: linear-gradient(360deg, #FFF 0%, rgba(255, 255, 255, 0.8) 12%, rgba(0, 109, 242, 0) 50%), linear-gradient(360deg, rgba(0, 29, 64, 0) 75%, #001D40 100%), linear-gradient(360deg, #001D40 0%, rgba(0, 29, 64, 0) 50%), #ffffff00;
}

@media (max-width: 767px) {
  .boxBg__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .boxBg__content {
    padding: 2rem 1rem;
  }
}
.iframe-360__content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.iframe-360__content iframe {
  display: block;
  width: 100%;
  height: 733px;
  border: 0;
}
.iframe-360__fullscreen-btn {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 29, 64, 0.85);
  color: #FFFFFF;
  font-family: "Archivo-expanded", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.iframe-360__fullscreen-btn:hover, .iframe-360__fullscreen-btn:focus-visible {
  background: #001d40;
  outline: 2px solid #FFFFFF;
  outline-offset: 2px;
}
.iframe-360__content:fullscreen, .iframe-360__content:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  border-radius: 0;
  background: #000;
}
.iframe-360__content:fullscreen iframe, .iframe-360__content:-webkit-full-screen iframe {
  width: 100%;
  height: 100%;
  max-height: none;
}
.iframe-360__content:fullscreen .iframe-360__fullscreen-btn, .iframe-360__content:-webkit-full-screen .iframe-360__fullscreen-btn {
  z-index: 20;
}

@media (max-width: 1440px) {
  .iframe-360__content iframe {
    height: 600px;
  }
}
@media (max-width: 980px) {
  .iframe-360__content iframe {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .iframe-360__content iframe {
    height: 350px;
  }
}
.team__subTitle {
  margin-bottom: 2rem;
}
.team__infos {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.team__infos__info {
  margin-bottom: 1rem;
}
.team__infos__info:nth-last-child(1) {
  margin-bottom: 0;
}
.team__infos__info h4 {
  text-transform: initial;
  margin-bottom: 6px;
}
.team .infos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}
.team .infos-container .team__infos {
  gap: 0;
}

@media (max-width: 980px) {
  .team .infos-container {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 3rem;
  }
}
@media (max-width: 479px) {
  .team .infos-container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.textEditorS h1,
.textEditorS h2,
.textEditorS h3,
.textEditorS h4,
.textEditorS h5,
.textEditorS h6 {
  text-transform: inherit;
}
.textEditorS .container {
  max-width: 800px;
}
.textEditorS .textEditor-content {
  color: #FFFFFF;
}
.textEditorS ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 3rem;
}
.textEditorS ul li::before {
  background-image: url("./../../assets/svg/check-icon.svg");
  top: 4px;
}

.textEditorS.bg-white .textEditor-content {
  color: #001D40;
}

.news__filter {
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.news__filter ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.news__filter ul li {
  list-style-type: none;
  margin: 0;
}
.news__filter ul li button {
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.news__filter select {
  background-color: unset;
  border: 1.5px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 8px;
  padding: 16px 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.6rem !important;
  background-image: url("./../svg/chevron-down.svg");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.news__filter .news-filter-year::-ms-expand {
  display: none;
}
.news__filter .news-filter-cat.active {
  background-color: #66ABFF;
  color: #001D40;
  border-color: #66ABFF;
}
.news__categories {
  border: unset;
  padding: 0;
}
.news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 1.25rem;
}
.news__grid .card {
  box-shadow: 0px 0px 12px 0px rgba(0, 109, 242, 0.7);
}
.news__grid .card:nth-child(1) {
  grid-column: 1/span 4;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.news__grid .card:nth-child(1) .news-card__img {
  width: 50%;
  max-width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: unset;
}
.news__grid .card:nth-child(1) .news-card__content {
  width: 50%;
}
.news__no-posts,
.news .news__results [role=status] p {
  color: #FFFFFF;
}

.news-v2 {
  color: #001D40;
}
.news-v2 .section-header h2 {
  color: #001D40;
}
.news-v2 .section-header a {
  color: #001D40;
  border-color: #001D40;
}
.news-v2 .section-header a svg path {
  fill: #001D40;
}
.news-v2 .news__grid .card {
  background: linear-gradient(180deg, rgba(0, 29, 64, 0) 82.01%, var(--Blue-200, rgba(0, 109, 242, 0)) 100%), linear-gradient(0deg, rgba(0, 29, 64, 0) 0%, rgba(0, 29, 64, 0) 100%), var(--Light-Grey, #DEE5ED);
  color: #001D40;
  box-shadow: unset;
}
.news-v2 .news__grid .card .tag {
  background-color: #FFFFFF;
}
.news-v2 .news__grid .card a {
  color: #001D40;
}
.news-v2 .news__grid .card a::after {
  background-image: url("./../../assets/svg/arrow-dark.svg");
}
.news-v2 .news__grid .card:nth-child(1) {
  grid-column: unset;
  display: block;
}
.news-v2 .news__grid .card:nth-child(1) .news-card__img {
  width: 100%;
  min-height: auto;
  height: 300px;
  border-radius: 20px;
}
.news-v2 .news__grid .card:nth-child(1) .news-card__content {
  width: 100%;
}

@media (max-width: 1200px) {
  .news__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news__grid .card:nth-child(1) {
    grid-column: 1/span 2;
  }
}
@media (max-width: 767px) {
  .news__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .news__grid .card:nth-child(1) {
    grid-column: unset;
    flex-direction: column;
    gap: 0;
  }
  .news__grid .card:nth-child(1) .news-card__img {
    width: 100%;
    height: 300px;
    min-height: auto;
  }
  .news__grid .card:nth-child(1) .news-card__content {
    width: 100%;
    padding: 1.5rem;
  }
}
.twoColText {
  color: #FFFFFF;
}
.twoColText h2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.twoColText h2 span {
  font-weight: 700;
}
.twoColText .textEditor-content {
  margin: 0;
}
.twoColText__content {
  display: flex;
  gap: 4rem;
}
.twoColText__content div {
  width: 50%;
}
.twoColText__content div .btn {
  width: max-content;
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .twoColText__content {
    flex-direction: column;
    gap: 2rem;
  }
  .twoColText__content div {
    width: 100%;
  }
}
.contact-boxes {
  color: #FFFFFF;
}
.contact-boxes h2 {
  margin-bottom: 3rem;
}
.contact-boxes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-boxes .btn-v2 {
  width: fit-content;
}

@media (max-width: 1200px) {
  .contact-boxes__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 980px) {
  .contact-boxes__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.custom-nav__items {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.custom-nav__items li {
  list-style-type: none;
}
.custom-nav__items li a {
  position: relative;
}
.custom-nav__items li a::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../svg/down-arrow.svg");
  background-size: contain;
  transition: 0.3s ease-in-out;
}
.custom-nav__items li a:hover::after {
  background-image: url("../svg/down-arrow-dark.svg");
}

.search-results {
  padding: 80px 0;
  padding-top: 16rem;
  min-height: 60vh;
  color: #FFFFFF;
}
.search-results__header {
  margin-bottom: 60px;
  text-align: center;
}
.search-results__header h1 {
  margin-bottom: 16px;
  color: var(--color-text-primary);
}
.search-results__header h1 .search-query {
  color: var(--color-primary);
  font-style: italic;
}
.search-results__count {
  margin-bottom: 32px;
  color: var(--color-text-secondary);
  font-size: 16px;
}
.search-results__form {
  max-width: 500px;
  margin: 0 auto;
}
.search-results__form .searchform {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.search-results__form .searchform .searchform-wrapper {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  gap: 12px;
}
.search-results__form .searchform .searchform-wrapper svg {
  flex-shrink: 0;
}
.search-results__form .searchform .searchform-wrapper svg path {
  fill: #001D40;
}
.search-results__form .searchform .searchform-wrapper .search_query {
  flex: 1;
  border: none;
  background: none;
  font-size: 16px;
  color: #001D40;
}
.search-results__form .searchform .searchform-wrapper .search_query::placeholder {
  color: #001D40;
}
.search-results__form .searchform .searchform-wrapper .search_query:focus {
  outline: none;
}
.search-results__content {
  margin-bottom: 60px;
}
.search-results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .search-results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .search-results__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.search-results__pagination {
  text-align: center;
}
.search-results__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  margin: 0 4px;
  padding: 8px 16px;
  background: white;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.search-results__pagination .page-numbers:hover, .search-results__pagination .page-numbers:focus {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  text-decoration: none;
}
.search-results__pagination .page-numbers.current {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}
.search-results__pagination .page-numbers.prev, .search-results__pagination .page-numbers.next {
  padding: 8px 20px;
}
.search-results__empty {
  text-align: center;
  padding: 80px 20px;
}
.search-results__empty-content {
  max-width: 600px;
  margin: 0 auto;
}
.search-results__empty-content h2 {
  margin-bottom: 24px;
  color: var(--color-text-primary);
}
.search-results__empty-content p {
  margin-bottom: 40px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.search-results__suggestions {
  text-align: left;
}
.search-results__suggestions h3 {
  margin-bottom: 16px;
  color: var(--color-text-primary);
}
.search-results__suggestions ul {
  list-style: none;
  padding: 0;
}
.search-results__suggestions ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-text-secondary);
}
.search-results__suggestions ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.search-result-card {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  color: #001D40;
}
.search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.search-result-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.search-result-card__type {
  background: var(--color-primary);
  color: #FFFFFF;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #001D40;
}
.search-result-card__date {
  color: var(--color-text-secondary);
  font-size: 14px;
}
.search-result-card__title {
  margin-bottom: 16px;
  flex-grow: 1;
}
.search-result-card__title a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.search-result-card__title a:hover, .search-result-card__title a:focus {
  color: var(--color-primary);
}
.search-result-card__excerpt {
  margin-bottom: 16px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}
.search-result-card__excerpt p {
  margin: 0;
}
.search-result-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.search-result-card__terms .tag {
  background: var(--color-bg-light);
  color: var(--color-text-secondary);
  border-radius: 16px;
  padding: 4px 12px;
  font-size: 12px;
}
.search-result-card__link {
  align-self: flex-start;
  margin-top: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.search-result-card__title a:focus,
.search-result-card__link:focus,
.search-results__pagination .page-numbers:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .search-results {
    padding: 40px 0;
  }
  .search-results__header {
    margin-bottom: 40px;
  }
  .search-results__header h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  .search-results__grid {
    gap: 24px;
    margin-bottom: 40px;
  }

  .search-result-card {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .search-results {
    padding-top: 10rem;
  }
}
.image-block .container {
  max-width: 1050px;
}
.image-block__image {
  border-radius: 32px;
  aspect-ratio: 163/115;
}
.image-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
}
.image-block__image-container {
  position: relative;
}
.image-block__image-container button {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 80px;
  height: 80px;
  background-color: #001D40;
  background-image: url("./../svg/acc-open.svg");
  background-size: 40px;
  background-position: center center;
  border: unset;
  border-radius: 50%;
  cursor: pointer;
}
.image-block__actions {
  margin: 0 auto;
  margin-top: 5rem;
  width: max-content;
}
.image-block .lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, rgba(0, 29, 64, 0.8) 50%, rgba(0, 29, 64, 0.5) 100%), rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  z-index: 9999;
  justify-content: center;
}
.image-block .lightbox__header {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: flex;
  margin-bottom: 2rem;
}
.image-block .lightbox__header button {
  right: 0rem;
  width: 80px;
  height: 80px;
  background-color: #001D40;
  background-image: url("./../svg/acc-close.svg");
  background-size: 40px;
  background-position: center center;
  border: unset;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  margin-top: 1rem;
}
.image-block .lightbox__image-container {
  width: 90%;
  height: 90%;
  margin: auto;
  border-radius: 32px;
}
.image-block .lightbox__image-container img {
  width: 100%;
  object-fit: contain;
  border-radius: 32px;
  max-height: -webkit-fill-available;
}

@media (max-width: 767px) {
  .image-block__actions {
    margin-top: 2rem;
  }
  .image-block__image {
    border-radius: 16px;
  }
  .image-block__image-container button {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
}
.imageTextSmall {
  padding: 3rem 0;
  color: #FFFFFF;
}
.imageTextSmall .container {
  max-width: 800px;
}
.imageTextSmall .image-container {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 49/27;
}
.imageTextSmall .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imageTextSmall h2 {
  margin-top: 1.5rem;
}
.imageTextSmall .textEditor {
  margin: 1rem 0;
}
.imageTextSmall .btn {
  width: max-content;
  margin-top: 1.25rem;
}
.imageTextSmall ul {
  margin-left: 2rem;
}

.wp-caption {
  width: auto !important;
}
.wp-caption .wp-caption-text {
  padding-top: 0;
  font-size: 1rem;
  opacity: 0.7;
}
.wp-caption img {
  margin-bottom: 1rem;
}

.slider-small {
  padding: 3rem 0;
}
.slider-small .container {
  max-width: 800px;
}
.slider-small .card__img {
  height: 432px;
  overflow: hidden;
  border-radius: 16px;
}
.slider-small .card img {
  border-radius: 16px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.slider-small__caption {
  margin-top: 1rem;
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.7;
}
.slider-small .swiper-button-prev,
.slider-small .swiper-button-next {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 216px;
}
.slider-small .swiper-button-prev::after,
.slider-small .swiper-button-next::after {
  content: "";
  background-image: url("./../../assets/svg/arrow-dark.svg");
  background-size: contain;
  width: 28px;
  height: 28px;
}
.slider-small .swiper-button-prev::after {
  transform: rotate(180deg);
}
.slider-small .swiper-button-disabled {
  opacity: 0.35;
}
.slider-small .swiper-pagination {
  position: initial;
  margin-top: 2rem;
}
.slider-small .swiper-pagination .swiper-pagination-bullet {
  border-radius: 120px;
  border: 2px solid #66ABFF;
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: transparent;
}
.slider-small .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #66ABFF;
  width: 64px;
}

@media (max-width: 479px) {
  .slider-small__slider {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    gap: 0;
  }
  .slider-small .swiper-wrapper {
    grid-column: 1/-1;
    grid-row: 1;
  }
  .slider-small__slider__buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 44px;
    line-height: normal;
    justify-content: end;
    margin-top: 1rem;
  }
  .slider-small .swiper-pagination {
    grid-row: 2;
    display: flex !important;
    align-items: center;
    margin-top: 1rem;
  }
  .slider-small .swiper-button-prev,
.slider-small .swiper-button-next {
    width: 44px;
    height: 44px;
    position: initial;
    margin-top: 0;
  }
  .slider-small .swiper-button-prev::after,
.slider-small .swiper-button-next::after {
    width: 18px;
    height: 18px;
  }
  .slider-small .swiper-button-disabled {
    opacity: 0.35;
  }
  .slider-small .card__img {
    height: 250px;
  }
}
.footer {
  padding-bottom: 5rem;
}
.footer .container {
  border-top: 1px solid #DEE5ED;
  padding-top: 5rem;
  margin-top: 5rem;
}
.footer_nav {
  margin-bottom: 6rem;
}
.footer__nav,
.footer .menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem 4rem;
}
.footer__nav .menu-item-has-children > a,
.footer .menu .menu-item-has-children > a {
  color: #001D40;
  margin-bottom: 0.5rem;
}
.footer__nav ul,
.footer .menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer__nav ul .h6-bold,
.footer .menu ul .h6-bold {
  color: #001D40;
  margin-bottom: 0.5rem;
}
.footer__nav ul li a,
.footer .menu ul li a {
  font-size: 1.125rem;
  line-height: 150%;
}
.footer__nav ul li a:hover,
.footer .menu ul li a:hover {
  text-decoration: underline;
}
.footer__bottom .footer-svg {
  max-width: 175px;
  width: 100%;
  display: block;
  margin-top: 1rem;
}
.footer__bottom .footer-svg img {
  width: 100%;
}
.footer__bottom__content {
  border-top: 1px solid #DEE5ED;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom__content__left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer__bottom__content__left nav .menu {
  gap: 1.5rem;
}
.footer__bottom__content__left nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer__bottom__content__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__bottom__content__right a {
  width: 32px;
  height: 32px;
  display: block;
}
.footer__bottom__content__right a img {
  width: 100%;
}

@media (max-width: 1400px) {
  .footer nav,
.footer .menu {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 980px) {
  .footer nav,
.footer .menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer .menu-copyright-menu-container ul {
    display: flex;
    flex-wrap: wrap !important;
  }
}
@media (max-width: 767px) {
  .footer nav,
.footer .menu {
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__bottom__content__left {
    gap: 1rem;
  }
  .footer__bottom__content__left .menu {
    display: flex;
  }
  .footer__bottom__content__left nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.news-card {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  border-radius: 16px;
  overflow: hidden;
  color: #FFFFFF;
}
.news-card:hover .news-card__img img {
  transform: scale(1.1);
}
.news-card__img {
  height: 300px;
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
}
.news-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.news-card__content {
  padding: 1.5rem;
}
.news-card__top {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.news-card__top .tag {
  background-color: #0F2A4B;
  padding: 0.3rem 1rem;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  font-weight: 700;
}
.news-card h3 {
  padding-bottom: 1rem;
  text-transform: inherit;
}
.news-card a {
  color: #FFFFFF;
  margin-top: 1.5rem;
}
.news-card a::after {
  background-image: url("./../../assets/svg/arrow-white.svg");
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  padding: 4rem 0;
  background: linear-gradient(180deg, rgba(0, 29, 64, 0.5) 0%, rgba(0, 29, 64, 0.8) 50%, rgba(0, 29, 64, 0.5) 100%), rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  color: #FFFFFF;
  z-index: 9999;
  overflow-y: auto;
}
.popup__content {
  position: relative;
}
.popup__content .popup__close {
  position: absolute;
  right: 2rem;
  top: -0.5rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: unset;
  background-color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}
.popup__content .popup__close:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}
.popup__content .popup__close:focus {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
  background-color: #f0f0f0;
}
.popup__content .popup__close:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}
.popup__content__top {
  margin-bottom: 2.5rem;
}
.popup__content__top .h3-light {
  display: flex;
  flex-direction: column;
}
.popup__content__bottom {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.popup__content__bottom__left {
  width: 50%;
}
.popup__content__bottom__left p:nth-child(1) {
  padding-top: 0;
}
.popup__content__bottom__left img {
  margin-top: 2.5rem;
  border-radius: 16px;
  aspect-ratio: 14/9 !important;
  width: 100%;
}
.popup__content__bottom__right {
  width: 50%;
}
.popup__content__bottom__right h2:nth-child(1),
.popup__content__bottom__right h3:nth-child(1),
.popup__content__bottom__right h4:nth-child(1),
.popup__content__bottom__right h5:nth-child(1),
.popup__content__bottom__right h6:nth-child(1) {
  padding-top: 0;
}
.popup__content__bottom__right p:nth-child(1) {
  padding-top: 0;
}
.popup__content__bottom__right ul {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.popup__content__bottom__right a {
  color: #66ABFF;
}
.popup__content blockquote {
  margin: 0;
}

@media (max-width: 980px) {
  .popup__content__top h2 {
    max-width: calc(100% - 50px);
  }
  .popup__content__bottom {
    flex-direction: column;
    gap: 0;
  }
  .popup__content__bottom__left {
    width: 100%;
  }
  .popup__content__bottom__right {
    width: 100%;
  }
  .popup__content__bottom__right ul {
    margin: 1rem 0 1rem 2.2rem !important;
  }
  .popup__content .popup__close {
    width: 40px;
    height: 40px;
    right: 1rem;
    top: -0.5rem;
  }
}
.contact-card {
  box-shadow: 0px 0px 28px 0px rgba(0, 109, 242, 0.7);
  padding: 1.25rem 1.75rem 1.75rem 1.75rem;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.contact-card h3 {
  text-transform: inherit;
}
.contact-card .card__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}
.contact-card .card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.contact-card .card__btn {
  margin-top: auto;
}

.raum-details {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.raum-details__item {
  border-radius: 6px;
  background: linear-gradient(0deg, var(--Blue-500, #0F2A4B) 0%, var(--Blue-500, #0F2A4B) 100%), rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.raum-details__item::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-size: contain;
  background-position: center center;
}
.raum-details__item p {
  padding: 0 !important;
  font-weight: 700;
  line-height: 0;
}
.raum-details .raum-size::before {
  background-image: url("./../svg/expansion.svg");
}
.raum-details .raum-people::before {
  background-image: url("./../svg/people.svg");
}

.contactForm .container {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  color: #FFFFFF;
}
.contactForm .section-header h2 {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contactForm .form-description br {
  display: block;
}
.contactForm__left {
  max-width: 750px;
  width: 100%;
}
.contactForm fieldset {
  border: unset;
  margin: 0;
  padding: 0;
}
.contactForm .form-row {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.contactForm .form-group {
  width: 100%;
  margin-bottom: 1.5rem;
}
.contactForm .form-group select,
.contactForm .form-group input,
.contactForm .form-group textarea {
  width: 100%;
  border-radius: 8px;
  border: 1.5px solid #386BA9;
  padding: 12px 20px;
  background-color: unset;
  color: #FFFFFF;
  cursor: pointer;
}
.contactForm .form-group label {
  margin-bottom: 0.5rem;
  display: block;
}
.contactForm .radio-group {
  margin-top: 0.5rem;
}
.contactForm .wpcf7-radio {
  display: flex;
  gap: 1rem;
}
.contactForm .wpcf7-radio label {
  display: flex;
  flex-direction: row-reverse;
  gap: 0.5rem;
}
.contactForm .wpcf7-radio .wpcf7-list-item {
  margin: 0;
}
.contactForm .checkbox-group .wpcf7-list-item {
  margin: 0;
}
.contactForm .checkbox-group .wpcf7-list-item label {
  display: flex;
  gap: 0.5rem;
}
.contactForm .checkbox-group .wpcf7-list-item label input {
  width: 18px;
  height: 18px;
}
.contactForm br {
  display: none;
}
.contactForm input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}
.contactForm .select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.contactForm .date-wrap .wpcf7-form-control-wrap,
.contactForm .select-wrap .wpcf7-form-control-wrap {
  position: relative;
  display: block;
  height: 100%;
}
.contactForm .date-wrap .wpcf7-form-control-wrap::after,
.contactForm .select-wrap .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 12px;
  width: 1.2rem;
  height: 1.2rem;
  background: url("./../svg/date-icon.svg") no-repeat center/contain;
  pointer-events: none;
  cursor: pointer;
}
.contactForm .select-wrap .wpcf7-form-control-wrap::after {
  background: url("./../svg/chevron-down.svg") no-repeat center/contain;
}

@media (max-width: 980px) {
  .contactForm .container {
    flex-direction: column;
  }
}

/*# sourceMappingURL=main.css.map */
