/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

/*********************
COLORS
*********************/
:root {
  --background: #F5F5F5;
  --background-primary: #00A0AF;
  --background-primary-dark: #285F74;
  --background-admin-box: #285F74;
  --background-white: #fff;
  --background-white-dark: #fff;
  --background-card-content: #F5F5F5;
  --background-placeholder: #285F74;
  --background-hover-primary-dark: rgba(40,95,116,0.30196);
  --background-focus-hover: rgba(40,95,116,0.50196);
  --background-scroll-top-hover: rgba(0,160,175,0.70196);
  --background-dropdown: #285F74;
  --background-language-switcher: #B8E0E5;
  --background-language-switcher-active: #474747;
  --background-download-hover: rgba(40,95,116,0.10196);
  --text: #1A1A1A;
  --text-form-label: #1A1A1A;
  --text-form-error: #c02b0a;
  --text-primary: #00A0AF;
  --text-primary-dark: #285F74;
  --text-button-white: #285F74;
  --text-link-hover: #1E4C5A;
  --link-hover: #285F74;
  --underline-primary: #00A0AF;
  --primary: #00A0AF;
  --primary-dark: #285F74;
  --button-white: #fff;
  --button-primary: #00A0AF;
  --button-primary-dark: #285F74;
  --button-hover: rgba(40,95,116,0.30196);
  --button-active: rgba(0,160,175,0.50196);
  --button-filled-active: rgba(40,95,116,0.70196);
  --submenu-border: rgba(26,26,26,0.10196);
  --search-background: rgba(93, 93, 93, 0.8);
  --in-view-background: #285F74;
  --input-placeholder: rgba(26,26,26,0.50196);
  --pagination-background: rgba(0,160,175,0.8);
  --pagination-background-current: rgba(0,160,175,0.30196);
  --pagination-background-hover: rgba(0,160,175,0.6);
  --pagination-border-hover: rgba(0,160,175,0.6);
  --pagination-background-active: #00A0AF;
  --pagination-border-active: #00A0AF;
}

.theme--dark:root {
  --background: #1A1A1A;
  --background-primary: #474747;
  --background-primary-dark: #313131;
  --background-admin-box: #474747;
  --background-white: #474747;
  --background-white-dark: #313131;
  --background-card-content: #313131;
  --background-placeholder: #1E4C5A;
  --background-hover-primary-dark: rgba(255, 255, 255, 0.5);
  --background-focus-hover: rgba(40,95,116,0.50196);
  --background-scroll-top-hover: rgba(0,160,175,0.70196);
  --background-dropdown: #1E4C5A;
  --background-language-switcher: #262626;
  --background-language-switcher-active: #474747;
  --background-download-hover: rgba(255, 255, 255, 0.5);
  --text: #FAFAFA;
  --text-form-label: #1A1A1A;
  --text-form-error: #FF2962;
  --text-primary: #FAFAFA;
  --text-primary-dark: #FAFAFA;
  --text-button-white: #1A1A1A;
  --text-link-hover: #1E4C5A;
  --link-hover: #1E4C5A;
  --underline-primary: #1E4C5A;
  --primary: #1E4C5A;
  --primary-dark: #285F74;
  --button-white: #1E4C5A;
  --button-primary: #1E4C5A;
  --button-primary-dark: #1E4C5A;
  --button-hover: rgba(255, 255, 255, 0.5);
  --button-active: #1E4C5A;
  --button-filled-active: rgba(255, 255, 255, 0.5);
  --submenu-border: #fff;
  --search-background: rgba(26, 26, 26, 0.7);
  --in-view-background: #1E4C5A;
  --input-placeholder: rgba(26,26,26,0.50196);
  --pagination-background: #1E4C5A;
  --pagination-background-current: rgba(30,76,90,0.70196);
  --pagination-background-hover: rgba(30,76,90,0.50196);
  --pagination-border-hover: #1E4C5A;
  --pagination-background-active: rgba(30,76,90,0.10196);
  --pagination-border-active: #1E4C5A;
}

/*********************
Spacing
*********************/
/*********************
Breakpoints
*********************/
.icon {
  position: relative;
  display: inline-block;
  max-width: 100%;
}
.icon::before {
  content: "";
  display: block;
}
.icon::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon--arrow_new::before {
  padding-top: 55.8136830845%;
}

.icon--arrow-left-primary-dark::before {
  padding-top: 67.9233955694%;
}

.icon--arrow-left::before {
  padding-top: 67.9233955694%;
}

.icon--arrow-right-2::before {
  padding-top: 64.9632521819%;
}

.icon--arrow-right::before {
  padding-top: 55.8139534884%;
}

.icon--attitude::before {
  padding-top: 100%;
}

.icon--bulletpoint::before {
  padding-top: 120%;
}

.icon--business-spirit::before {
  padding-top: 39.8652917616%;
}

.icon--calendar::before {
  padding-top: 100%;
}

.icon--cart-mono::before {
  padding-top: 90%;
}

.icon--check-circle-primary-dark::before {
  padding-top: 100%;
}

.icon--check-circle-primary::before {
  padding-top: 100%;
}

.icon--check-circle::before {
  padding-top: 100%;
}

.icon--check-primary-dark::before {
  padding-top: 100%;
}

.icon--check-primary-disable::before {
  padding-top: 100%;
}

.icon--check-primary::before {
  padding-top: 100%;
}

.icon--check-r::before {
  padding-top: 100%;
}

.icon--check-white::before {
  padding-top: 100%;
}

.icon--check::before {
  padding-top: 100%;
}

.icon--chevron-double-right-primary-dark::before {
  padding-top: 88.8906348209%;
}

.icon--chevron-double-right-white::before {
  padding-top: 88.8906348209%;
}

.icon--chevron-double-right::before {
  padding-top: 88.8906348209%;
}

.icon--chevron-down-green::before {
  padding-top: 60.0007179266%;
}

.icon--chevron-down::before {
  padding-top: 60.0007179266%;
}

.icon--close::before {
  padding-top: 100%;
}

.icon--cross-circle::before {
  padding-top: 106.6666666667%;
}

.icon--danger::before {
  padding-top: 100%;
}

.icon--document::before {
  padding-top: 112.5%;
}

.icon--download::before {
  padding-top: 100%;
}

.icon--edit-circle::before {
  padding-top: 100%;
}

.icon--facebook-mono::before {
  padding-top: 96.1538461538%;
}

.icon--facebook::before {
  padding-top: 182.7626010004%;
}

.icon--folder::before {
  padding-top: 87.5%;
}

.icon--instagram::before {
  padding-top: 96.1538461538%;
}

.icon--interaction::before {
  padding-top: 79.6863207871%;
}

.icon--ja-europe-logo-white::before {
  padding-top: 24.3038461538%;
}

.icon--ja-europe-logo::before {
  padding-top: 24.3038461538%;
}

.icon--jonk-entrepreneuren-logo-white::before {
  padding-top: 35.534591195%;
}

.icon--jonk-entrepreneuren-logo::before {
  padding-top: 35.534591195%;
}

.icon--linkedin::before {
  padding-top: 100%;
}

.icon--list-add-green-light::before {
  padding-top: 100%;
}

.icon--list-add-green::before {
  padding-top: 100%;
}

.icon--list-remove-red-light::before {
  padding-top: 100%;
}

.icon--list-remove-red::before {
  padding-top: 100%;
}

.icon--mail-mono::before {
  padding-top: 72%;
}

.icon--mail::before {
  padding-top: 79.5777777778%;
}

.icon--menu-icon::before {
  padding-top: 68.75%;
}

.icon--moon::before {
  padding-top: 100%;
}

.icon--mountains::before {
  padding-top: 59.6858638743%;
}

.icon--news::before {
  padding-top: 76.9230769231%;
}

.icon--newsletter::before {
  padding-top: 96.4936226291%;
}

.icon--pin-alt::before {
  padding-top: 150%;
}

.icon--pin-white::before {
  padding-top: 120.6888888889%;
}

.icon--pin::before {
  padding-top: 120.6888888889%;
}

.icon--radio-check::before {
  padding-top: 100%;
}

.icon--radio-checked::before {
  padding-top: 100%;
}

.icon--rocket::before {
  padding-top: 126.4691430818%;
}

.icon--scroll-arrow-primary-dark::before {
  padding-top: 168.75%;
}

.icon--scroll-arrow-primary::before {
  padding-top: 168.75%;
}

.icon--scroll-arrow-small-primary-dark::before {
  padding-top: 131.25%;
}

.icon--scroll-arrow-small-primary::before {
  padding-top: 131.25%;
}

.icon--scroll-circle-primary-dark::before {
  padding-top: 100%;
}

.icon--scroll-circle-primary::before {
  padding-top: 100%;
}

.icon--search::before {
  padding-top: 100%;
}

.icon--smartphone::before {
  padding-top: 142.8571428571%;
}

.icon--squares::before {
  padding-top: 98.9247311828%;
}

.icon--students::before {
  padding-top: 63.5416666667%;
}

.icon--sun::before {
  padding-top: 100%;
}

.icon--teachers::before {
  padding-top: 86.6666666667%;
}

.icon--tiktok::before {
  padding-top: 114.7766323024%;
}

.icon--triangle::before {
  padding-top: 91.6666666667%;
}

.icon--twitter::before {
  padding-top: 83.3333333333%;
}

.icon--upload::before {
  padding-top: 86.2068965517%;
}

.icon--website-mono::before {
  padding-top: 96.1538461538%;
}

.icon--zoom::before {
  padding-top: 100%;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 100;
  src: url(fonts/Montserrat-Thin.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 200;
  src: url(fonts/Montserrat-ExtraLight.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url(fonts/Montserrat-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(fonts/Montserrat-Regular.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url(fonts/Montserrat-Medium.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url(fonts/Montserrat-SemiBold.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(fonts/Montserrat-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  src: url(fonts/Montserrat-ExtraBold.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  src: url(fonts/Montserrat-Black.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 100;
  src: url(fonts/Montserrat-ThinItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 200;
  src: url(fonts/Montserrat-ExtraLightItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 300;
  src: url(fonts/Montserrat-LightItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 400;
  src: url(fonts/Montserrat-Italic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 500;
  src: url(fonts/Montserrat-MediumItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 600;
  src: url(fonts/Montserrat-SemiBoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 700;
  src: url(fonts/Montserrat-BoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 800;
  src: url(fonts/Montserrat-ExtraBoldItalic.ttf) format("truetype");
}
@font-face {
  font-family: "Montserrat";
  font-style: italic;
  font-weight: 900;
  src: url(fonts/Montserrat-BlackItalic.ttf) format("truetype");
}
html, body {
  height: 100%;
}

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

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

main {
  overflow: hidden;
  flex: 1 0 auto;
}

body {
  display: flex;
  flex-direction: column;
  background: #F5F5F5;
  background: var(--background);
}

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

a {
  text-decoration: none;
  cursor: pointer;
}

a[href^=tel] {
  -webkit-text-decoration: #1A1A1A;
          text-decoration: #1A1A1A;
  -webkit-text-decoration: var(--text);
          text-decoration: var(--text);
  color: #1A1A1A;
  color: var(--text);
}

button,
[type=button] {
  background-color: transparent;
  border: none;
}
button:hover,
[type=button]:hover {
  cursor: pointer;
}

.button {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.button {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #285F74;
  background: var(--button-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  padding: 16px 52px;
  border-radius: 40px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}
@media print, screen and (max-width: 44.99875em) {
  .button {
    padding: 8px 52px;
  }
  .button:hover {
    padding: 8px 72px;
  }
}
.button:focus {
  background: rgba(40,95,116,0.70196);
  background: var(--button-filled-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--primary);
}
.button.button--ghost {
  background: unset;
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  padding: 12px 50px;
  cursor: pointer;
  position: relative;
}
.button.button--ghost:focus {
  background: rgba(0,160,175,0.50196);
  background: var(--button-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--primary);
}
.button.button--ghost-small {
  background: unset;
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  padding: 12px 16px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease-in, border 0.2s ease-in;
}
.button.button--ghost-small:active, .button.button--ghost-small:focus {
  background: rgba(0,160,175,0.50196);
  background: var(--button-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--primary);
}

.button--cta {
  margin-top: 80px;
}
@media print, screen and (max-width: 44.99875em) {
  .button--cta {
    padding: 16px 52px;
    margin-top: 100px;
  }
}
.button--cta:hover {
  padding: 16px 72px;
}

.button__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.button__text {
  color: #fff;
  position: relative;
}
.button--ghost-small .button__text, .button--ghost .button__text {
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .button--ghost-small .button__text, .button--ghost .button__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.button--ghost-small .button__text, .button--ghost .button__text {
  color: #1A1A1A;
  color: var(--text);
}
.button__text:before {
  content: "";
  display: block;
  background: url(svg/chevron-double-right-white.svg) no-repeat;
  position: absolute;
  top: 50%;
  left: -24px;
  width: 14px;
  height: 12px;
  transform: translateY(-50%);
  opacity: 0;
  background-size: 100%;
  transition: all 0.4s ease-in;
}
.button--ghost .button__text:before, .button--ghost-small .button__text:before {
  background: url(svg/chevron-double-right.svg) no-repeat;
}
.theme--dark .button--ghost .button__text:before, .theme--dark .button--ghost-small .button__text:before {
  background: url(svg/chevron-double-right-white.svg) no-repeat;
}
@media print, screen and (max-width: 29.99875em) {
  .button__text {
    font-size: 15px;
    line-height: 20px;
  }
}
.button:hover .button__text:before,
.button:active .button__text:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -18px;
}

.button.button--ghost:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
  padding: 12px 50px;
}
.theme--dark .button.button--ghost:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}

.button.button--ghost-small:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}
.theme--dark .button.button--ghost-small:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}

.button.load-more-button {
  display: none;
  margin: 20px auto 0;
}
.button.load-more-button.is-active {
  display: flex;
}

.loading-spinner,
.loading-spinner-dark {
  display: none;
}
.loading-spinner lottie-player,
.loading-spinner-dark lottie-player {
  margin: 0 auto;
}
.loading-spinner.is-active,
.loading-spinner-dark.is-active {
  display: block;
}

.button--become-member {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.button--become-member {
  position: relative;
  padding: 6px 13px;
  margin: 0 16px;
  color: #fff;
  display: inline-block;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: padding 0.2s ease-in-out;
  text-decoration: none;
}
@media print, screen and (min-width: 64em) {
  .button--become-member:after {
    content: "";
    background-color: #285F74;
    background-color: var(--button-primary-dark);
    border: 2px solid #285F74;
    border: 2px solid var(--button-primary-dark);
    border-radius: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: -1;
  }
}
@media print, screen and (min-width: 64em) {
  .button--become-member:hover::after {
    transform: scaleX(1.05);
  }
}
.button--become-member:focus::after, .button--become-member.focus-visible::after {
  background: rgba(40,95,116,0.70196);
  background: var(--button-filled-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--button-primary);
}
.button--become-member:focus::after, .button--become-member:focus-visible::after {
  background: rgba(40,95,116,0.70196);
  background: var(--button-filled-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--button-primary);
}
.button--become-member:active {
  color: #285F74;
  color: var(--button-primary-dark);
}
.button--become-member:active:after {
  background: transparent;
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
}
@media print, screen and (min-width: 64em) {
  .button--become-member:active:after {
    transform: scaleX(1.05);
  }
}
.header__nav.is-active .button--become-member {
  display: block;
}
@media screen and (max-width: 63.99875em) {
  .header__nav.is-active .button--become-member {
    width: unset;
    height: unset;
    background: #fff;
    color: #285F74;
    color: var(--text-primary-dark);
    margin-left: 0;
    margin-right: 0;
    padding: 6px 24px;
  }
  .theme--dark .header__nav.is-active .button--become-member {
    background: #285F74;
    background: var(--button-primary-dark);
  }
}
.header__tools__first .button--become-member {
  display: none;
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .header__tools__first .button--become-member {
    display: block;
  }
}

body .single-post__content-without-blocks h1,
.format-text h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  body .single-post__content-without-blocks h1,
  .format-text h1 {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  body .single-post__content-without-blocks h1,
  .format-text h1 {
    font-size: 24px;
    line-height: 26px;
  }
}
body .single-post__content-without-blocks h1,
.format-text h1 {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks h2,
.format-text h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  body .single-post__content-without-blocks h2,
  .format-text h2 {
    font-size: 21px;
    line-height: 28px;
  }
}
body .single-post__content-without-blocks h2,
.format-text h2 {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks h3,
.format-text h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  body .single-post__content-without-blocks h3,
  .format-text h3 {
    font-size: 21px;
    line-height: 28px;
  }
}
body .single-post__content-without-blocks h3,
.format-text h3 {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks h4,
.format-text h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .single-post__content-without-blocks h4,
  .format-text h4 {
    font-size: 16px;
    line-height: 21px;
  }
}
body .single-post__content-without-blocks h4,
.format-text h4 {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks h5,
.format-text h5 {
  font-size: 1.1em;
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks h6,
.format-text h6 {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .single-post__content-without-blocks p,
.format-text p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .single-post__content-without-blocks p,
  .format-text p {
    font-size: 16px;
    line-height: 21px;
  }
}
body .single-post__content-without-blocks p,
.format-text p {
  margin-bottom: 35px;
  color: #1A1A1A;
  color: var(--text);
}
body .single-post__content-without-blocks strong, body .single-post__content-without-blocks b,
.format-text strong,
.format-text b {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #285F74;
  color: var(--text-primary-dark);
  font-weight: normal;
}
body .single-post__content-without-blocks p:last-child,
.format-text p:last-child {
  margin-bottom: 0;
}
body .single-post__content-without-blocks ul,
.format-text ul {
  list-style: none;
  padding-left: 20px;
}
body .single-post__content-without-blocks ul li,
.format-text ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
body .single-post__content-without-blocks ul li:before,
.format-text ul li:before {
  content: "";
  display: block;
  position: absolute;
  content: "";
  background: url(svg/bulletpoint.svg) no-repeat;
  background-size: 100%;
  width: 19px;
  height: 26px;
  left: 0;
  top: 0;
}
@media print, screen and (max-width: 29.99875em) {
  body .single-post__content-without-blocks ul li:before,
  .format-text ul li:before {
    width: 14px;
    margin-top: 2px;
  }
}
body .single-post__content-without-blocks ol,
.format-text ol {
  list-style-type: decimal;
  padding-left: 20px;
}
body .single-post__content-without-blocks strong, body .single-post__content-without-blocks b,
.format-text strong,
.format-text b {
  font-weight: bold;
}
body .single-post__content-without-blocks em, body .single-post__content-without-blocks i,
.format-text em,
.format-text i {
  font-style: italic;
}
body .single-post__content-without-blocks a,
body .single-post__content-without-blocks a.link-button-style-default,
.format-text a,
.format-text a.link-button-style-default {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: underline;
  word-break: break-word;
  color: #285F74;
  color: var(--text-primary-dark);
  position: relative;
  cursor: pointer;
}
body .single-post__content-without-blocks a:hover,
body .single-post__content-without-blocks a.link-button-style-default:hover,
.format-text a:hover,
.format-text a.link-button-style-default:hover {
  color: #1E4C5A;
  color: var(--text-link-hover);
}
body .single-post__content-without-blocks a:active,
body .single-post__content-without-blocks a.link-button-style-default:active,
.format-text a:active,
.format-text a.link-button-style-default:active {
  background: rgba(0,160,175,0.50196);
  background: var(--button-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--primary);
}
body .single-post__content-without-blocks a.as-a-button,
body .single-post__content-without-blocks a.link-button-style-button,
.format-text a.as-a-button,
.format-text a.link-button-style-button {
  text-decoration: none;
  color: #285F74;
  color: var(--text-primary-dark);
  border-radius: 40px;
  padding: 6px 34px;
  border: 2px solid #285F74;
  border: 2px solid var(--text-primary-dark);
  position: relative;
}
body .single-post__content-without-blocks a.as-a-button:before,
body .single-post__content-without-blocks a.link-button-style-button:before,
.format-text a.as-a-button:before,
.format-text a.link-button-style-button:before {
  content: "";
  display: block;
  background: url(svg/chevron-double-right-primary-dark.svg) no-repeat;
  position: absolute;
  top: 50%;
  left: 10px;
  width: 14px;
  height: 11px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.4s ease-in;
}
.theme--dark body .single-post__content-without-blocks a.as-a-button:before,
.theme--dark body .single-post__content-without-blocks a.link-button-style-button:before,
.theme--dark .format-text a.as-a-button:before,
.theme--dark .format-text a.link-button-style-button:before {
  background: url(svg/chevron-double-right-white.svg) no-repeat;
}
body .single-post__content-without-blocks a.as-a-button:hover,
body .single-post__content-without-blocks a.link-button-style-button:hover,
.format-text a.as-a-button:hover,
.format-text a.link-button-style-button:hover {
  color: #285F74;
  color: var(--text-primary-dark);
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}
body .single-post__content-without-blocks a.as-a-button:hover:before,
body .single-post__content-without-blocks a.link-button-style-button:hover:before,
.format-text a.as-a-button:hover:before,
.format-text a.link-button-style-button:hover:before {
  transform: translateY(-50%);
  opacity: 1;
  left: 16px;
}
body .single-post__content-without-blocks * + *,
.format-text * + * {
  margin-top: 15px;
}

.format-text--default-list ul {
  list-style: none;
  padding-left: 20px;
}
.format-text--default-list ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}
.format-text--default-list ul li:before {
  content: "";
  display: block;
  position: absolute;
  content: "";
  background: #00A0AF;
  background: var(--primary);
  width: 18px;
  height: 18px;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin-top: 2px;
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .format-text--default-list ul li:before {
    margin-top: 12px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .format-text--default-list ul li:before {
    margin-top: 7px;
  }
}

.a11y__vo-only {
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.a11y__skip-content {
  background-color: white;
  color: #000;
  padding: 15px 30px;
  position: absolute;
  z-index: 999;
}
.a11y__skip-content:not(:focus):not(:active) {
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.about-values {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .about-values {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .about-values {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .about-values {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.about-values {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .about-values {
    margin-bottom: 88px;
  }
}

.about-values__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .about-values__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .about-values__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.about-values__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 80px;
  text-align: center;
}
@media print, screen and (max-width: 29.99875em) {
  .about-values__title {
    margin-bottom: 20px;
  }
}

.about-values__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 36px;
  gap: 36px;
}
@media print, screen and (max-width: 74.99875em) {
  .about-values__items {
    grid-template-columns: 1fr;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .about-values__items {
    grid-gap: 20px;
    gap: 20px;
  }
}

.board-directors-card {
  position: relative;
}
@media screen and (min-width: 45em) {
  .board-directors-card:nth-child(even) {
    transform: translateY(80px);
  }
}

.board-directors-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 265px;
  background: #285F74;
  background: var(--background-admin-box);
  padding: 60px;
}

.board-directors-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .board-directors-card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.board-directors-card__title {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.board-directors-card__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.board-directors-card__name {
  color: #fff;
  margin-bottom: 6px;
}

.board-directors-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .board-directors-card__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.board-directors-card__text {
  color: #fff;
}

.board-members-card {
  max-width: 287px;
}

.board-members-card__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.board-members-card__name {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.board-members-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .board-members-card__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.board-members-card__text {
  color: #1A1A1A;
  color: var(--text);
}

.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 90px 80px 70px;
  background: #fff;
  background: var(--background-white);
  min-height: 614px;
}
@media print, screen and (max-width: 98.12375em) {
  .about-values__items .card {
    padding: 45px 40px 35px;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .about-values__items .card {
    min-height: unset;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .card {
    padding: 40px 28px;
    min-height: unset;
  }
}

.card__media {
  display: flex;
  align-items: flex-end;
  min-height: 116px;
  margin-bottom: 28px;
}

.card__icon {
  width: 190px;
  height: 100px;
}
.card__icon.icon--attitude {
  width: 90px;
  height: 90px;
}
.card__icon.icon--interaction {
  width: 145px;
  height: 116px;
}
.card__icon.icon--business-spirit {
  width: 172px;
  height: 68px;
}
.card__icon.icon--mountains {
  width: 190px;
  height: 100px;
}

.card__image {
  height: 130px;
}

.card__image-round {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  border-radius: 50%;
  width: 142px;
  height: 142px;
  background: #285F74;
  background: var(--background-primary-dark);
}

.card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 16px;
  text-align: center;
}
@media print, screen and (max-width: 29.99875em) {
  .card__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
  }
}

.card__content {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .card__content {
    font-size: 16px;
    line-height: 21px;
  }
}
.card__content {
  color: #1A1A1A;
  color: var(--text);
  flex: 1;
}

.card .button.button--ghost {
  margin-top: 16px;
}

.card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
  padding: 12px 72px;
}
.theme--dark .card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
.card:hover .button__text:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -18px;
}

.error-page-block {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .error-page-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .error-page-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .error-page-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.error-page-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
}
.error-page-block .post-header-back {
  width: 100%;
  max-width: 1126px;
  margin-bottom: 50px;
}

.error-page__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .error-page__text {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .error-page__text {
    font-size: 24px;
    line-height: 26px;
  }
}
.error-page__text {
  color: #285F74;
  color: var(--text-primary-dark);
  text-align: center;
  margin-bottom: 20px;
}

.error-page__sub-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.error-page__sub-text {
  color: #285F74;
  color: var(--text-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 29.99875em) {
  .download-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

.download-card__file {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.download-card__file {
  color: #00A0AF;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  background: var(--background-white);
  padding: 30px;
  min-width: 200px;
}
@media print, screen and (max-width: 29.99875em) {
  .download-card__file {
    width: 100%;
  }
}

.download-card__file__icon {
  width: 48px;
  height: 54px;
  color: #00A0AF;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.download-card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width: 98.12375em) {
  .download-card__content {
    justify-content: center;
    min-height: unset;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .download-card__content {
    padding: 17px;
  }
}
.theme--dark .download-card__content {
  background: #262626;
}

.download-card__content__inner {
  margin-bottom: 14px;
}

.download-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.download-card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.download-card__fields {
  margin-bottom: 21px;
}

.download-card__field {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.download-card__field {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.download-card__field__icon-wrapper {
  display: flex;
  align-items: center;
  width: 20px;
}

.download-card__field__icon {
  width: 20px;
  height: 18px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 4px;
}
.download-card__field__icon.icon--folder {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.download-card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}
.theme--dark .download-card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
.download-card:hover .button__text:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -18px;
}

.dropdownform {
  display: flex;
  align-items: center;
  position: relative;
}
@media print, screen and (max-width: 44.99875em) {
  .dropdownform {
    flex-direction: column;
    align-items: flex-start;
  }
}
.two-column-content-block--press .dropdownform {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .two-column-content-block--press .dropdownform {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .two-column-content-block--press .dropdownform {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .two-column-content-block--press .dropdownform {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.two-column-content-block--press .dropdownform {
  margin-bottom: 35px;
}

.dropdownform__label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .dropdownform__label {
    font-size: 16px;
    line-height: 21px;
  }
}
.dropdownform__label {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 10px;
}
@media print, screen and (max-width: 44.99875em) {
  .dropdownform__label {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.dropdownform__widget-wrapper {
  height: 44px;
}

.dropdownform__widget {
  position: absolute;
}

.dropdownform__inner {
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #285F74;
  background: var(--background-dropdown);
  border: 2px solid #285F74;
  border: 2px solid var(--background-dropdown);
  border-radius: 19px;
  position: relative;
  z-index: 3;
  padding: 0 5px;
}
.dropdownform__inner.is-active {
  border-color: #00A0AF;
  border-color: var(--background-primary);
}
.theme--dark .dropdownform__inner.is-active {
  border-color: #285F74;
  border-color: var(--background-dropdown);
}

.dropdownform__top-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .dropdownform__top-link {
    font-size: 16px;
    line-height: 21px;
  }
}
.dropdownform__top-link {
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  cursor: pointer;
  width: 100%;
  padding: 8px 16px;
  border-radius: 19px;
}

.dropdownform__icon {
  pointer-events: none;
  width: 14px;
  height: 8px;
  color: #fff;
  z-index: 2;
  margin-left: 30px;
}

.dropdownform__options {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  top: 100%;
  z-index: 3;
  background: #285F74;
  background: var(--background-dropdown);
  border: none;
  border-radius: 0 0 19px 19px;
}

.dropdownform__item {
  position: relative;
  padding: 5px 16px;
}
.dropdownform__item:hover {
  background: rgba(140, 195, 65, 0.3);
  border-radius: 14px;
}
.theme--dark .dropdownform__item:hover {
  background: rgba(255, 255, 255, 0.3);
}

.dropdownform__link {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .dropdownform__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.dropdownform__link {
  color: #fff;
  padding: 2px 0;
}

.dropdownform__inner.is-active .dropdownform__options {
  max-height: none;
  opacity: 1;
  visibility: visible;
  padding: 8px 0;
}

.event-card {
  display: flex;
  align-items: center;
  border-radius: 60px;
  background: #fff;
  background: var(--background-white);
  padding: 10px;
  margin-bottom: 10px;
  transition: background 0.2s ease-in-out;
}

.event-card__date {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin-right: 40px;
  color: #fff;
  background: #285F74;
  background: var(--background-primary-dark);
  border-radius: 100%;
}
@media print, screen and (max-width: 44.99875em) {
  .event-card__date {
    margin-right: 20px;
  }
}

.date__day {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.date__day {
  line-height: 24px;
  margin-right: 6px;
}

.date__month {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.date__month {
  line-height: 24px;
  text-transform: uppercase;
}

.date__year {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.date__year {
  line-height: 24px;
  text-transform: uppercase;
}

.event-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .event-card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.event-card__title {
  color: #1A1A1A;
  color: var(--text);
  max-width: 608px;
}

.event-card:hover {
  background: #FAFAFA;
}
.theme--dark .event-card:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
.event-card:hover .event-card__title {
  color: #285F74;
  color: var(--text-button-white);
}
.theme--dark .event-card:hover .event-card__title {
  color: #fff;
  text-shadow: 0 0 1px #1A1A1A;
  text-shadow: 0 0 1px var(--text);
}

.filters {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .filters {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .filters {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .filters {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.filters {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 63.99875em) {
  .filters {
    margin-bottom: 40px;
  }
}

.filters__title {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .filters__title {
    font-size: 16px;
    line-height: 21px;
  }
}
.filters__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.filters__items {
  display: flex;
}

.filters__item {
  margin: 0 7px;
  padding: 13px 42px;
  position: relative;
  border-radius: 40px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filters__item.is-active {
  background: #285F74;
  background: var(--button-primary-dark);
  pointer-events: none;
}
.filters__item:hover {
  border-color: #285F74;
  border-color: var(--button-primary-dark);
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}

.filters__item__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .filters__item__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.filters__item__link {
  color: #1A1A1A;
  color: var(--text);
}
.filters__item.is-active .filters__item__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}

/*! Flickity v2.3.0
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow-x: visible !important;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: #00A0AF;
  background: var(--primary);
  border: 4px solid #00A0AF;
  border: 4px solid var(--primary);
  color: #fff;
  transition: background 0.2s ease, border 0.2s ease;
}

.flickity-button:hover {
  background: rgba(0,160,175,0.70196);
  background: var(--background-scroll-top-hover);
  border: 4px solid #00A0AF;
  border: 4px solid var(--background-primary);
  cursor: pointer;
}
.theme--dark .flickity-button:hover {
  border: 4px solid #00A0AF;
  border: 4px solid var(--primary);
}

.flickity-button:focus {
  outline: none;
  cursor: pointer;
  background: rgba(40,95,116,0.50196);
  background: var(--background-focus-hover);
  border: 4px solid #285F74;
  border: 4px solid var(--background-primary-dark);
}
.theme--dark .flickity-button:focus {
  border: 4px solid #285F74;
  border: 4px solid var(--primary-dark);
}

.flickity-button:active {
  background: rgba(40,95,116,0.50196);
  background: var(--background-focus-hover);
  border: 4px solid #285F74;
  border: 4px solid var(--background-primary-dark);
}
.theme--dark .flickity-button:active {
  border: 4px solid #285F74;
  border: 4px solid var(--primary-dark);
}

.flickity-button:disabled {
  display: none;
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}
@media print, screen and (max-width: 44.99875em) {
  .flickity-button:disabled {
    display: block;
  }
}

.flickity-button-icon {
  background: url(svg/arrow_new.svg) center no-repeat;
  width: 43px;
  height: 24px;
  background-size: 100%;
  fill: currentColor;
}
.previous .flickity-button-icon {
  transform: rotate(180deg);
}

.arrow {
  display: none;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}
@media print, screen and (max-width: 98.12375em) {
  .flickity-prev-next-button {
    width: 60px;
    height: 60px;
    top: calc(100% + 68px);
    right: 0;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .flickity-prev-next-button {
    width: 42px;
    height: 42px;
  }
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-block__modal__slider .flickity-prev-next-button {
    top: 100%;
  }
}

.gallery-block__modal .flickity-prev-next-button.previous {
  left: 20px;
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-block__modal .flickity-prev-next-button.previous {
    left: 0;
  }
}
.carousel-block .flickity-prev-next-button.previous {
  left: 0;
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-block .flickity-prev-next-button.previous {
    left: calc(100% - 109px);
  }
}

.gallery-block__modal .flickity-prev-next-button.next {
  right: 20px;
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-block__modal .flickity-prev-next-button.next {
    right: 0;
  }
}
.carousel-block .flickity-prev-next-button.next {
  right: 10%;
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-block .flickity-prev-next-button.next {
    right: 0;
  }
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -38px;
  padding: 0;
  padding-right: calc(100vw - 101.875rem + 136px);
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 63.99875em) {
  .flickity-page-dots {
    padding-right: calc(100vw - 101.875rem + 45px);
  }
}
@media print, screen and (max-width: 44.99875em) {
  .flickity-page-dots {
    padding-right: calc(100vw - 101.875rem + 30px);
  }
}
@media print, screen and (max-width: 29.99875em) {
  .flickity-page-dots {
    padding-right: calc(100vw - 101.875rem + 15px);
  }
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 6px;
  border: 2px solid #285F74;
  border: 2px solid var(--text-primary-dark);
  border-radius: 50%;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  background: #285F74;
  background: var(--text-primary-dark);
}

.footer {
  background: #285F74;
  background: var(--background-primary-dark);
  color: #fff;
  position: relative;
  padding: 90px 0 76px;
}
@media print, screen and (max-width: 74.99875em) {
  .footer {
    width: calc(100% - 123px);
    padding: 80px 0 76px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .footer {
    width: calc(100% - 50px);
    padding: 30px 0 32px;
  }
}

.footer__inner {
  max-width: 71.4375rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .footer__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .footer__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .footer__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media print, screen and (max-width: 74.99875em) {
  .footer__inner {
    justify-content: flex-start;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  position: relative;
}
.footer__logo:before {
  content: "";
  display: block;
  background-image: url(images/ja-europe-logo_white.png);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 260px;
  height: 120px;
}
@media print, screen and (max-width: 74.99875em) {
  .footer__logo:before {
    width: 222px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .footer__logo:before {
    height: 90px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .footer__logo:before {
    width: 174px;
    height: 80px;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .footer__logo {
    margin-right: 50px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .footer__logo {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .footer__links {
    margin-right: 50px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .footer__links {
    width: 222px;
  }
}

.social-icons__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.social-icons__title {
  margin-bottom: 11px;
}

.footer__legal {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (max-width: 44.99875em) {
  .footer__legal {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer__legal__item {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.footer__legal__item {
  margin-right: 18px;
  color: #fff;
  position: relative;
  padding-bottom: 2px;
}
.footer__legal__item:after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  transition: transform 0.2s ease;
}
.footer__legal__item:hover:after {
  transform: scaleX(0.8);
}
@media print, screen and (max-width: 44.99875em) {
  .footer__legal__item {
    margin-right: 0;
  }
}

@media print, screen and (max-width: 44.99875em) {
  .footer__legal__item:first-child {
    margin-bottom: 17px;
  }
}

.footer__copyright {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.footer__copyright {
  color: #fff;
}

.form {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .form {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .form {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.form {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .form {
    margin-bottom: 88px;
  }
}
.form.form--newsletter {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.form .ginput_container {
  position: relative;
}
.form button:hover {
  padding: 16px 72px;
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
}

.form__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .form__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.form__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 36px;
  text-align: center;
}

body .gform_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 64px 70px;
  background: #fff;
  background: var(--background-white);
}
@media screen and (max-width: 63.99875em) {
  body .gform_wrapper {
    padding: 34px 25px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  body .gform_wrapper {
    padding: 34px 10px;
  }
}
body .gform_wrapper form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 536px;
  margin: 0 auto;
  width: 100%;
}
body .gform_wrapper.gravity-theme .gform_fields {
  grid-row-gap: 30px;
}
body .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
body .gform_wrapper .gfield {
  position: relative;
  width: 100%;
}
body .gform_wrapper .top_label .gfield_label, body .gform_wrapper.gravity-theme .ginput_complex label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
body .gform_wrapper .top_label .gfield_label, body .gform_wrapper.gravity-theme .ginput_complex label {
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper .top_label .gfield_label[for=input_41_25], body .gform_wrapper .top_label .gfield_label[for=input_46_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_41_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_46_25] {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper .top_label .gfield_label[for=input_41_25], body .gform_wrapper .top_label .gfield_label[for=input_46_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_41_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_46_25] {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper .top_label .gfield_label[for=input_41_25], body .gform_wrapper .top_label .gfield_label[for=input_46_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_41_25], body .gform_wrapper.gravity-theme .ginput_complex label[for=input_46_25] {
  margin-left: 18px;
  margin-bottom: 20px;
  padding-top: 20px;
}
.theme--dark body .gform_wrapper.gravity-theme .ginput_complex label {
  color: #000;
}
body .gform_wrapper.gravity-theme .ginput_container_address span:not(.ginput_full):not(:last-of-type):not(:nth-last-of-type(2)), body .gform_wrapper.gravity-theme .ginput_full:not(:last-of-type) {
  margin-bottom: 26px;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper.gravity-theme .gfield select {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper.gravity-theme .gfield select {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), body .gform_wrapper.gravity-theme .gfield select {
  background: #F5F5F5;
  border-radius: 28px;
  border: none;
  height: 56px;
  width: 100%;
  padding: 10px 27px;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, body .gform_wrapper.gravity-theme .gfield select:focus {
  background-color: white;
  outline: none;
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).focus-visible, body .gform_wrapper.gravity-theme .gfield select.focus-visible {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus-visible, body .gform_wrapper.gravity-theme .gfield select:focus-visible {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
}
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file])[maxlength="2"], body .gform_wrapper.gravity-theme .gfield select[maxlength="2"] {
  padding-left: 20px;
  padding-right: 20px;
}
body .gform_wrapper.gravity-theme .gfield select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 640px) {
  body .gform_wrapper.gravity-theme .gfield select.medium {
    width: 100%;
  }
}
body .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_country, body .gform_wrapper.gravity-theme .ginput_container_select {
  position: relative;
}
body .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_country:after, body .gform_wrapper.gravity-theme .ginput_container_select:after {
  display: block;
  content: "";
  background: url(svg/chevron-down-green.svg) no-repeat;
  background-size: 100%;
  width: 18px;
  height: 12px;
  z-index: 99999;
  position: absolute;
  left: calc(100% - 50px);
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.theme--dark body .gform_wrapper.gravity-theme .ginput_container_address .ginput_address_country:after, .theme--dark body .gform_wrapper.gravity-theme .ginput_container_select:after {
  background: url(svg/chevron-down.svg) no-repeat;
  background-size: 100%;
}
@media (min-width: 641px) {
  body .gform_wrapper.gravity-theme .ginput_container_select .gfield_select:after {
    left: 216px;
  }
}
@media (min-width: 641px) {
  body .gform_wrapper.gravity-theme .ginput_container_select .large.gfield_select:after {
    left: calc(100% - 30px);
  }
}
body .gform_wrapper input[type=button] {
  font-size: 21px;
  line-height: 28px;
}
body .gform_wrapper input[type=button] {
  line-height: 28px !important;
}
@media print, screen and (max-width: 29.99875em) {
  body .gform_wrapper input[type=button] {
    font-size: 15px;
    line-height: 20px;
    line-height: 20px !important;
  }
}
body .gform_wrapper textarea {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
body .gform_wrapper textarea {
  color: #1A1A1A;
  color: var(--text);
  resize: vertical;
  background: #F5F5F5;
  border-radius: 28px;
  border: none;
  padding: 60px 28px 20px !important;
}
body .gform_wrapper textarea.large {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper textarea.large {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper textarea.large {
  width: 100%;
  padding: 18px 27px;
  min-height: 288px;
}
body .gform_wrapper textarea.large.focus-visible {
  background-color: white;
}
body .gform_wrapper textarea.large:focus-visible {
  background-color: white;
}
body .gform_wrapper textarea:focus {
  outline: none;
  background: #fff;
}
body .gform_wrapper textarea.focus-visible {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
}
body .gform_wrapper textarea:focus-visible {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
}
body .gform_wrapper .gform_heading {
  display: none;
}
body .gform_wrapper .gform_required_legend {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper .gform_required_legend {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper .gform_required_legend {
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper .gform_body.gform-body {
  width: 100%;
}
body .gform_wrapper .gfield_description {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body .gform_wrapper.gravity-theme a {
  color: #285F74;
  color: var(--background-dropdown);
}
body .gform_wrapper.gravity-theme .description,
body .gform_wrapper.gravity-theme .gfield_description,
body .gform_wrapper.gravity-theme .gsection_description,
body .gform_wrapper.gravity-theme .instruction {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
body .gform_wrapper.gravity-theme .description,
body .gform_wrapper.gravity-theme .gfield_description,
body .gform_wrapper.gravity-theme .gsection_description,
body .gform_wrapper.gravity-theme .instruction {
  padding-top: 8px;
  margin-left: 20px;
  color: #1A1A1A;
  color: var(--text);
  opacity: 0.8;
}
body .gform_wrapper.gravity-theme fieldset legend.gfield_label {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme fieldset legend.gfield_label {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper.gravity-theme fieldset legend.gfield_label {
  margin-left: 18px;
  margin-bottom: 20px;
  padding-top: 20px;
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper.gravity-theme .gsection {
  display: none;
}
body .gform_wrapper.gravity-theme .gf_page_steps {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-bottom: none;
  margin-bottom: 40px;
  position: relative;
}
body .gform_wrapper.gravity-theme .gf_page_steps:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: 2px;
  background: #285F74;
  background: var(--text-primary-dark);
}
body .gform_wrapper.gravity-theme .gf_step {
  position: relative;
  padding: 8px 12px;
  margin: 0;
  background: #fff;
  background: var(--background-white);
  z-index: 3;
}
body .gform_wrapper.gravity-theme .gf_step:first-child {
  padding: 8px 12px 8px 0;
}
body .gform_wrapper.gravity-theme .gf_step:last-child {
  padding: 8px 0 8px 12px;
}
body .gform_wrapper.gravity-theme .gf_step_number {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme .gf_step_number {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper.gravity-theme .gf_step_number {
  background: white;
  border: 1px solid #285F74;
  border: 1px solid var(--background-primary-dark);
  color: #285F74;
  color: var(--text-button-white);
  z-index: 2;
}
body .gform_wrapper.gravity-theme .gf_step_active .gf_step_number {
  background: #285F74;
  background: var(--background-primary-dark);
  border: 1px solid #285F74;
  border: 1px solid var(--background-primary-dark);
  color: #fff;
}
body .gform_wrapper.gravity-theme .gf_step_completed .gf_step_number::before {
  background: #285F74;
  background: var(--background-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--background-primary-dark);
  top: -1px;
  left: -1px;
}
body .gform_wrapper.gravity-theme .gf_step_label {
  display: none;
}
body .gform_wrapper.gravity-theme .gchoice label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme .gchoice label {
    font-size: 16px;
    line-height: 21px;
  }
}
body .gform_wrapper.gravity-theme .gchoice label {
  position: relative;
  top: -2px;
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper.gravity-theme .gfield_radio .gchoice label {
  flex-direction: row;
  align-items: center;
}
body .gform_wrapper.gravity-theme .ginput_container_radio > .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 50px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  grid-row-gap: 10px;
  row-gap: 10px;
  white-space: nowrap;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme .ginput_container_radio > .gfield_radio {
    flex-direction: column;
  }
}
body .gform_wrapper.gravity-theme .ginput_container_radio > .gfield_radio .gchoice {
  position: relative;
}
body .gform_wrapper.gravity-theme .gfield-choice-input[type=radio] {
  position: absolute;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
body .gform_wrapper.gravity-theme .gchoice [type=radio]:checked + label {
  color: #285F74;
  color: var(--text-primary-dark);
}
body .gform_wrapper.gravity-theme .gchoice [type=radio] + label:before {
  content: "";
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  flex-shrink: 0;
  height: 20px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
body .gform_wrapper.gravity-theme .gchoice [type=radio]:checked + label:before {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
}
body .gform_wrapper.gravity-theme .gchoice [type=radio] + label:after {
  display: none;
  content: "";
  background: #285F74;
  background: var(--text-primary-dark);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(50%, calc(50% + 2px));
}
body .gform_wrapper.gravity-theme .gchoice [type=radio]:checked + label:after {
  display: inline-block;
}
body .gform_wrapper.gravity-theme .gchoice input[type=text] {
  margin: 0;
}
body .gform_wrapper.gravity-theme .gform_page_footer {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme .gform_page_footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media print, screen and (max-width: 44.99875em) {
  body .gform_wrapper.gravity-theme .gform_footer button,
  body .gform_wrapper.gravity-theme .gform_footer input,
  body .gform_wrapper.gravity-theme .gform_page_footer button,
  body .gform_wrapper.gravity-theme .gform_page_footer input {
    margin-left: 0;
    width: 100%;
  }
}
body .gform_wrapper.gravity-theme input::-moz-placeholder, body .gform_wrapper.gravity-theme textarea::-moz-placeholder {
  color: transparent;
}
body .gform_wrapper.gravity-theme input::placeholder,
body .gform_wrapper.gravity-theme textarea::placeholder {
  color: transparent;
}
body .gform_wrapper.gravity-theme input:focus::-moz-placeholder, body .gform_wrapper.gravity-theme textarea:focus::-moz-placeholder {
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper.gravity-theme input:focus::placeholder,
body .gform_wrapper.gravity-theme textarea:focus::placeholder {
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper.gravity-theme .gform_previous_button.button,
body .gform_wrapper.gravity-theme .gform_save_link.button {
  color: #285F74;
  color: var(--text-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--text-primary-dark);
  background-color: transparent;
}
body .gform_wrapper .gfield_checkbox {
  display: grid;
  grid-row-gap: 10px;
  row-gap: 10px;
  margin-left: 20px;
}
body .gform_wrapper .ginput_container_radio {
  margin-left: 20px;
}
body .gform_wrapper .ginput_container.ginput_container_checkbox .gchoice {
  position: relative;
  display: flex;
  align-items: flex-start;
  grid-column-gap: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
body .gform_wrapper .ginput_container.ginput_container_checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: #285F74;
  color: var(--text-primary-dark);
  width: 22px;
  height: 22px;
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  border-radius: 0.15em;
  transform: translateY(-0.075em);
}
body .gform_wrapper .ginput_container.ginput_container_checkbox input[type=checkbox]::before {
  display: none;
  content: url(svg/check-primary-dark.svg);
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
}
.theme--dark body .gform_wrapper .ginput_container.ginput_container_checkbox input[type=checkbox]::before {
  content: url(svg/check-primary.svg);
}
body .gform_wrapper .ginput_container.ginput_container_checkbox input[type=checkbox]:checked::before {
  display: block;
  transform: scale(1);
}
body .gform_wrapper .gform_previous_button {
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16.657 11.314'%3e%3cpath d='M16.656 4.657v2H3.828L7.07 9.899l-1.414 1.415L0 5.657 5.656 0 7.07 1.414 3.828 4.657z' fill='%23285F74'/%3e%3c/svg%3e");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 20px center;
}
body .gform_wrapper .gform_next_button {
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17.416 11.314'%3e%3cpath d='M11.746 0l-1.411 1.418 3.27 3.255L0 4.687v2l13.568-.014-3.215 3.23 1.418 1.411 5.644-5.67z' fill='white'/%3e%3c/svg%3e");
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
}

/***************
  Error and messages
  **************/
body .gform_wrapper .gfield_required {
  color: #c02b0a;
  color: var(--text-form-error);
}
body .gform_wrapper .gfield_error [aria-invalid=true] {
  border: none;
}
body .gform_wrapper .gform_validation_errors {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: unset;
  border: none;
  box-shadow: none;
  margin-top: 0;
  max-width: 536px;
  padding: 0 0 0 37px;
  margin-bottom: 30px;
}
body .gform_wrapper .gform_validation_errors > h2 {
  font-size: 16px;
  line-height: 21px;
}
body .gform_wrapper .gform_validation_errors > h2 {
  color: #c02b0a;
  color: var(--text-form-error);
}
body .gform_wrapper .gform_validation_errors > h2 .gform-icon {
  left: 0;
  align-items: flex-start;
}
body .gform_wrapper.gravity-theme .gfield_description.gfield_validation_message, body .gform_wrapper.gravity-theme .gfield_description.validation_message {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
}
body .gform_wrapper.gravity-theme .gfield_description.gfield_validation_message, body .gform_wrapper.gravity-theme .gfield_description.validation_message {
  padding: 2px 0 0 15px;
  background: unset;
  border: none;
  color: #c02b0a;
  color: var(--text-form-error);
}
body .gform_confirmation_wrapper {
  padding: 144px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  background: var(--background-white);
  position: relative;
}
body .gform_confirmation_wrapper:after {
  content: "";
  display: block;
  background-image: url(svg/check-circle-primary.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  width: 74px;
  height: 74px;
  position: absolute;
  top: 40px;
}
.theme--dark body .gform_confirmation_wrapper:after {
  background-image: url(svg/check-circle-primary-dark.svg);
}
body .gform_confirmation_message {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  body .gform_confirmation_message {
    font-size: 21px;
    line-height: 28px;
  }
}
body .gform_confirmation_message {
  color: #285F74;
  color: var(--text-primary-dark);
  max-width: 370px;
  text-align: center;
}

/***************
  Input text animation
  **************/
body .gform_wrapper .has-bar:before, body .gform_wrapper .has-bar:after {
  content: "";
  height: 3px;
  width: 0;
  top: 98%;
  position: absolute;
  background-color: #285F74;
  background-color: var(--button-primary-dark);
  transition: 0.2s ease all;
}
body .gform_wrapper .has-bar:before {
  left: 50%;
}
body .gform_wrapper .has-bar:after {
  right: 50%;
}
body .gform_wrapper .has-bar[focus-within]:before, body .gform_wrapper .has-bar[focus-within]:after {
  width: calc(50% - 25px);
}
body .gform_wrapper .has-bar:focus-within:before, body .gform_wrapper .has-bar:focus-within:after {
  width: calc(50% - 25px);
}
body .gform_wrapper .has-bar .ginput_complex span label,
body .gform_wrapper .has-bar .gfield .gfield_label {
  font-size: 14px;
  line-height: 18px;
}
body .gform_wrapper .ginput_complex span {
  position: relative;
}
body .gform_wrapper .ginput_complex span[focus-within] label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}
body .gform_wrapper .ginput_complex span:focus-within label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}
.theme--dark body .gform_wrapper .ginput_complex span[focus-within] label {
  color: #000;
}
.theme--dark body .gform_wrapper .ginput_complex span:focus-within label {
  color: #000;
}
body .gform_wrapper .ginput_complex .ginput_container_date input, body .gform_wrapper .ginput_complex .ginput_container_date select {
  min-width: 114px !important;
  width: 100%;
}
body .gform_wrapper .ginput_complex .ginput_container_date {
  max-width: unset !important;
  margin-bottom: 10px;
}
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label)[focus-within] > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label)[focus-within] > label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label)[focus-within] > label {
  top: -11px !important;
  border-radius: 28px;
  transform: unset !important;
  left: unset;
  background-color: #fff;
  width: auto !important;
}
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label)[focus-within] > label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label)[focus-within] > label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label)[focus-within] > label {
  top: -11px !important;
  border-radius: 28px;
  transform: unset !important;
  left: unset;
  background-color: #fff;
  width: auto !important;
}
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label):focus-within > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label):focus-within > label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label):focus-within > label {
  top: -11px !important;
  border-radius: 28px;
  transform: unset !important;
  left: unset;
  background-color: #fff;
  width: auto !important;
}
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label):focus-within > label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label):focus-within > label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label):focus-within > label {
  top: -11px !important;
  border-radius: 28px;
  transform: unset !important;
  left: unset;
  background-color: #fff;
  width: auto !important;
}
.theme--dark body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label)[focus-within] > label,
.theme--dark body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label)[focus-within] > label,
.theme--dark body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label)[focus-within] > label {
  color: #000;
}
.theme--dark body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label)[focus-within] > label,
.theme--dark body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label)[focus-within] > label,
.theme--dark body .gform_wrapper .gfield:has(textarea):not(.no-animated-label)[focus-within] > label {
  color: #000;
}
.theme--dark body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label):focus-within > label,
.theme--dark body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label):focus-within > label,
.theme--dark body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label):focus-within > label {
  color: #000;
}
.theme--dark body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label):focus-within > label,
.theme--dark body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label):focus-within > label,
.theme--dark body .gform_wrapper .gfield:has(textarea):not(.no-animated-label):focus-within > label {
  color: #000;
}
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label) > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label) > .ginput_complex label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label) > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label) > .ginput_complex label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label) > label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label) > .ginput_complex label {
  position: absolute;
  padding: 2px 17px;
  border-radius: 28px;
  color: #1A1A1A;
  color: var(--text-form-label);
  transition: top 0.2s ease;
  pointer-events: none;
  z-index: 10;
  top: 50%;
  line-height: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  word-break: break-all;
}
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label) > label,
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label) > .ginput_complex label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label) > label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label) > .ginput_complex label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label) > label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label) > .ginput_complex label {
  position: absolute;
  padding: 2px 17px;
  border-radius: 28px;
  color: #1A1A1A;
  color: var(--text-form-label);
  transition: top 0.2s ease;
  pointer-events: none;
  z-index: 10;
  top: 50%;
  line-height: 1;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  word-break: break-all;
}
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Dtext\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label).fixed__top__label > .ginput_complex label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield[\:has\(input\[type\%3Demail\]\[name\%5E\%3Dinput_\]\)]:not(.no-animated-label).fixed__top__label > .ginput_complex label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield[\:has\(textarea\)]:not(.no-animated-label).fixed__top__label > .ginput_complex label {
  top: 20px;
  transform: translateX(-50%);
}
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield:has(input[type=text][name^=input_]):not(.no-animated-label).fixed__top__label > .ginput_complex label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield:has(input[type=email][name^=input_]):not(.no-animated-label).fixed__top__label > .ginput_complex label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label).fixed__top__label > label,
body .gform_wrapper .gfield:has(textarea):not(.no-animated-label).fixed__top__label > .ginput_complex label {
  top: 20px;
  transform: translateX(-50%);
}
body .gform_wrapper .not-empty label {
  top: -11px !important;
  background-color: #fff;
  border-radius: 28px;
}
.theme--dark body .gform_wrapper .not-empty label {
  color: #000;
}
body .gform_wrapper .ginput_complex span label[for=input_14_29_6],
body .gform_wrapper .ginput_complex span label[for=input_14_30_6] {
  display: none;
}
body .gform_wrapper .gfield_header_item {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #1A1A1A;
  color: var(--text);
}
body .gform_wrapper.gravity-theme .gfield_list_icons button.add_list_item {
  background: transparent url(svg/list-add-green.svg);
}
.theme--dark body .gform_wrapper.gravity-theme .gfield_list_icons button.add_list_item {
  background: transparent url(svg/list-add-green-light.svg);
}
body .gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
  background-image: url(svg/list-remove-red.svg);
}
.theme--dark body .gform_wrapper.gravity-theme .gfield_list_icons button.delete_list_item {
  background-image: url(svg/list-remove-red-light.svg);
}
body select {
  max-height: 300px;
  overflow-y: auto;
}

body .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description {
  margin-top: 0;
  width: auto;
}

body .gform_wrapper.gravity-theme .ginput_container_date img.ui-datepicker-trigger {
  margin-left: -44.2px;
}

.gfield[\:has\(input.datepicker\:not\(\:-moz-placeholder-shown\)\)] .gfield_label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}

.gfield[\:has\(input.datepicker\:not\(\:placeholder-shown\)\)] .gfield_label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}

.gfield:has(input.datepicker:not(:-moz-placeholder-shown)) .gfield_label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}

.gfield:has(input.datepicker:not(:placeholder-shown)) .gfield_label {
  top: -11px !important;
  transform: unset !important;
  left: unset !important;
  background-color: #fff;
  width: auto !important;
}

.gallery-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-card {
    grid-template-columns: 1fr;
  }
}

.gallery-card__media {
  --width: 260;
  --height: 260;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 0;
  flex-shrink: 0;
  background: #285F74;
  background: var(--background-primary-dark);
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-card__media {
    --width: 390;
    --height: 250;
  }
}

.gallery-card__media__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.gallery-card__file__icon {
  width: 48px;
  height: 54px;
  color: #00A0AF;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.gallery-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  width: 100%;
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-card__content {
    justify-content: center;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .gallery-card__content {
    padding: 17px;
  }
}
@media screen and (max-width: 63.99875em) {
  .gallery-card__content {
    max-width: 100%;
  }
}
.theme--dark .gallery-card__content {
  background: #262626;
}

.gallery-card__content__inner {
  max-width: 267px;
}

.gallery-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.gallery-card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.gallery-card__fields {
  margin-bottom: 20px;
}

.gallery-card__field {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.gallery-card__field {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.gallery-card__field__icon-wrapper {
  display: flex;
  align-items: center;
  width: 20px;
}

.gallery-card__field__icon {
  width: 20px;
  height: 18px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 4px;
}
.gallery-card__field__icon.icon--folder {
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

.gallery-card:hover .button.button--ghost-small {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}
.theme--dark .gallery-card:hover .button.button--ghost-small {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
.gallery-card:hover .button__text:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -18px;
}

body #cookie-notice {
  background: rgba(255, 255, 255, 0.99);
}
body #cookie-notice .cookie-notice-container {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  body #cookie-notice .cookie-notice-container {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  body #cookie-notice .cookie-notice-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body #cookie-notice .cookie-notice-container p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
[dir="ltr"] body #cookie-notice .cookie-notice-container p {
  text-align: left;
}
[dir="rtl"] body #cookie-notice .cookie-notice-container p {
  text-align: right;
}
body #cookie-notice .cookie-notice-container p {
  color: #285F74;
  color: var(--button-primary-dark);
}
body #cookie-notice .cookie-notice-container p:first-child {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 10px 0 26px 0;
}
body #cookie-notice .cookie-notice-container fieldset {
  color: #285F74;
  color: var(--button-primary-dark);
}
body #cookie-notice .cookie-notice-container label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
body #cookie-notice .cookie-notice-container label {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--button-primary-dark);
}
body #cookie-notice .cookie-notice-container input {
  width: 22px;
  height: 22px;
  margin: 0 9px 0 0;
}
body #cookie-notice .cookie-notice-container label > span {
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  width: 22px;
  height: 22px;
  margin-top: -10px;
  border-radius: 3px;
}
body #cookie-notice .cookie-notice-container label > span:before {
  color: #285F74;
  color: var(--background-primary-dark);
  content: url(svg/check-primary-dark.svg);
  width: 0;
  left: -1px;
  top: -1px;
}
body #cookie-notice .cookie-notice-container label.required > span {
  border-color: #A6BEB6;
}
body #cookie-notice .cookie-notice-container label.required > span:before {
  content: url(svg/check-primary-disable.svg);
}
body #cookie-notice .cookie-notice-container .button {
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container .button {
    font-size: 16px;
    line-height: 21px;
  }
}
body #cookie-notice .cookie-notice-container .button {
  padding: 16px 32px;
  margin-right: 15px;
}
@media screen and (max-width: 63.99875em) {
  body #cookie-notice .cookie-notice-container .button {
    padding: 16px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container .button {
    width: 100%;
    margin-right: 0;
  }
}
body #cookie-notice .cookie-notice-container #cookie-notice-buttons {
  display: flex;
  justify-content: center;
}
@media print, screen and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container #cookie-notice-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}
body #cookie-notice .cookie-notice-container #cookie-notice-choose,
body #cookie-notice .cookie-notice-container #cookie-notice-more {
  background: transparent;
  color: #285F74;
  color: var(--button-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
}
body #cookie-notice .cookie-notice-container #cookie-notice-choose.is-hidden,
body #cookie-notice .cookie-notice-container #cookie-notice-more.is-hidden {
  opacity: 0.2;
}
body #cookie-notice .cookie-notice-container #cookie-notice-choose:hover,
body #cookie-notice .cookie-notice-container #cookie-notice-more:hover {
  color: #fff;
  background: #285F74;
  background: var(--button-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--text-primary-dark);
}
body #cookie-notice .cookie-notice-container #cookie-notice-accept-selection {
  margin: 0 auto;
}
body #cookie-notice .cookie-notice-container #cookie-notice-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
body #cookie-notice .cookie-notice-container #cookie-notice-details.is-hidden {
  display: none;
}
body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper {
  display: flex;
}
@media print, screen and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper {
    flex-direction: column;
  }
}
body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper fieldset legend {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper fieldset legend {
    font-size: 16px;
    line-height: 21px;
  }
}
body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper fieldset legend {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--button-primary-dark);
}
body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper fieldset label {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
body #cookie-notice .cookie-notice-container #cookie-notice-details .wrapper fieldset label {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--button-primary-dark);
}

html.theme--dark body #cookie-notice .cookie-notice-container label > span:before {
  content: url(svg/check-primary.svg);
}
html.theme--dark body #cookie-notice .cookie-notice-container label.required > span:before {
  content: url(svg/check-primary-disable.svg);
}

.header-big-screens {
  display: none;
}
@media screen and (min-width: 75em) {
  .header-big-screens {
    display: flex;
  }
}

.header-large {
  display: none;
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .header-large {
    display: flex;
    align-items: center;
  }
}

.header__tools__first {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
}

.header__tools__second {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-small {
  display: none;
}
@media screen and (max-width: 63.99875em) {
  .header-small {
    display: flex;
  }
}

.header {
  width: 100%;
  position: relative;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100vw - 70px);
  margin: 0 auto;
}
@media print, screen and (max-width: 124.99875em) {
  .header__inner {
    width: calc(100vw - 50px);
  }
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .header__inner {
    width: calc(100vw - 36px);
  }
}
@media print, screen and (max-width: 29.99875em) {
  .header__inner {
    width: calc(100vw - 22px);
  }
}

.header__logo {
  position: relative;
  margin-top: 10px;
  width: 214px;
  height: 93px;
}
.header__logo:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(svg/jonk-entrepreneuren-logo.svg) no-repeat;
  background-size: 100%;
  width: 214px;
  height: 93px;
}
.theme--dark .header__logo:before {
  background: url(svg/jonk-entrepreneuren-logo-white.svg) no-repeat;
  background-size: 100%;
}
@media print, screen and (max-width: 98.12375em) {
  .header__logo:before {
    width: 161px;
    height: 71px;
  }
}
@media screen and (max-width: 63.99875em) {
  .header__logo:before {
    width: 143px;
    height: 62px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .header__logo:before {
    width: 124px;
    height: 53px;
  }
}
@media print, screen and (max-width: 98.12375em) {
  .header__logo {
    width: 161px;
    height: 71px;
  }
}
@media screen and (max-width: 63.99875em) {
  .header__logo {
    width: 143px;
    height: 62px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .header__logo {
    width: 124px;
    height: 53px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .header__nav {
    position: fixed;
    background: #285F74;
    background: var(--background-primary-dark);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: translateY(-100%);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s ease-in-out;
    opacity: 0;
    visibility: visible;
    display: block;
    align-items: center;
    flex-flow: row nowrap;
    overflow: hidden;
    overflow-y: auto;
    height: 0;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .header__nav.is-active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.6s ease, visibility 0s ease-in-out;
    transform: translateY(0);
    height: 100%;
    z-index: 4;
  }
}

@media print, screen and (max-width: 74.99875em) {
  .header__nav__inner {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    padding-top: 60px;
  }
  .header__nav.is-active .header__nav__inner {
    min-height: unset;
    padding: 60px 16px 0;
  }
}

.search-block {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(93, 93, 93, 0.8);
  background: var(--search-background);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}
.search-block.is-active {
  visibility: visible;
  opacity: 1;
}

.header__tools {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 44.99875em) {
  .header__tools {
    justify-content: space-between;
  }
}

.search-block__inner {
  position: relative;
}

.search-block__close-button {
  width: 42px;
  height: 42px;
  background: #285F74;
  background: var(--button-primary-dark);
  position: absolute;
  top: -20px;
  right: -20px;
  border-radius: 50%;
}

.search__button-close__icon {
  width: 16px;
  height: 16px;
  color: #fff;
}

.menu-button-wrapper {
  display: none;
}
@media print, screen and (max-width: 74.99875em) {
  .menu-button-wrapper {
    display: flex;
    align-items: center;
  }
}

.menu-button-wrapper__text {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.menu-button-wrapper__text {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 13px;
}
@media print, screen and (max-width: 29.99875em) {
  .menu-button-wrapper__text {
    display: none;
  }
}

@media print, screen and (max-width: 74.99875em) {
  .menu-button {
    position: relative;
    visibility: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #285F74;
    background: var(--button-primary-dark);
    cursor: pointer;
  }
}

.menu-button__icon {
  width: 16px;
  height: 11px;
  color: #fff;
}

.image-with-ratio {
  height: 0;
  overflow: hidden;
  position: relative;
}
.image-with-ratio > img {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.image-with-ratio.ratio-square {
  padding-top: 100%;
}

.language-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  border-radius: 20px;
  width: 75px;
  height: 33px;
  position: relative;
  padding: 8px 16px;
  transition: background 0.2s ease-in;
  cursor: pointer;
}
.language-switcher:hover {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
@media print, screen and (max-width: 74.99875em) {
  .language-switcher {
    margin: 0 4px 0 8px;
  }
}

.language-switcher__list {
  display: none;
  position: absolute;
  flex-direction: column;
  top: 100%;
  left: -1px;
  width: 75px;
  border-radius: 0 0 20px 20px;
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  background: #B8E0E5;
  background: var(--background-language-switcher);
  border-top: 0;
  padding: 2px 4px 9px 4px;
}

.language-switcher__top-link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .language-switcher__top-link {
    font-size: 16px;
    line-height: 21px;
  }
}
.language-switcher__top-link {
  color: #285F74;
  color: var(--text-primary-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  text-transform: uppercase;
  pointer-events: none;
}

.language-switcher__icon {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  pointer-events: none;
}

.language-switcher__item {
  position: relative;
  padding: 2px 12px;
}
.language-switcher__item:hover {
  background: rgba(255, 255, 255, 0.4);
  border-radius: 11px;
}

.language-switcher__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .language-switcher__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.language-switcher__link {
  color: #285F74;
  color: var(--text-primary-dark);
  display: block;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}

.language-switcher.is-open {
  background: #B8E0E5;
  background: var(--background-language-switcher);
  position: relative;
  border-radius: 20px 20px 0 0;
  border-bottom: 0;
}
.language-switcher.is-open:active {
  background: #474747;
  background: var(--background-language-switcher-active);
}
.language-switcher.is-open .language-switcher__icon {
  transform: rotate(180deg);
}
.language-switcher.is-open .language-switcher__list {
  display: flex;
  z-index: 6;
}

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background: transparent;
}
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity;
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #285F74;
  background: var(--background-primary-dark);
  outline: 0;
}

.leaflet-container a {
  color: #285F74;
  color: var(--button-primary-dark);
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange;
}

.leaflet-zoom-box {
  border: 2px dotted #285F74;
  border: 2px dotted var(--button-primary-dark);
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  /* background-image: url(images/layers.png);*/
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  /* background-image: url(images/layers-2x.png);*/
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url(svg/pin.svg);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover {
  text-decoration: underline;
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
}

.leaflet-popup-content p {
  margin: 18px 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px;
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.leaflet-tooltip {
  position: absolute;
  padding: 0 6px;
  /*    background-color: #fff;
      border: 1px solid #fff;*/
  /*   border-radius: 3px;*/
  color: #285F74;
  color: var(--primary-dark);
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  /*    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);*/
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  /*    position: absolute;
      pointer-events: none;
      border: 6px solid transparent;
      background: transparent;
      content: "";*/
}

/* Directions */
.leaflet-tooltip-bottom {
  /*    margin-top: 6px;*/
  margin-top: 20px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

.leaflet-control-zoom.leaflet-bar.leaflet-control {
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  border-radius: 9px;
}
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in {
  border-bottom: 1px solid #285F74;
  border-bottom: 1px solid var(--button-primary-dark);
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
}
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-out,
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in {
  color: #285F74;
  color: var(--button-primary-dark);
  line-height: 26px;
}
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-out {
  border-bottom-left-radius: 9px;
  border-bottom-right-radius: 9px;
}
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-out.leaflet-disabled,
.leaflet-control-zoom.leaflet-bar.leaflet-control .leaflet-control-zoom-in.leaflet-disabled {
  color: #285F74;
  color: var(--primary-dark);
}

.light-dark-mode-switcher {
  display: block;
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .light-dark-mode-switcher {
    margin: 0 8px 0 4px;
  }
}

.light-dark-mode-switcher__checkbox {
  position: absolute;
  opacity: 0;
}

.light-dark-mode-switcher__label {
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  border-radius: 19px;
  width: 61px;
  height: 33px;
  display: flex;
  position: relative;
  padding: 2px;
  cursor: pointer;
}

.light-switcher-theme {
  transform: none;
  transition: transform 0.2s ease;
}
.light-switcher-theme.dark {
  transform: translateX(28px);
}

.light-dark-mode-switcher__moon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.1s ease;
}
.dark .light-dark-mode-switcher__moon {
  opacity: 1;
}

.light-dark-mode-switcher__moon__icon {
  width: 20px;
  height: 20px;
  color: #000;
  pointer-events: none;
}

.light-dark-mode-switcher__sun {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #285F74;
  background: var(--background-primary-dark);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.1s ease;
}
.dark .light-dark-mode-switcher__sun {
  opacity: 0;
}

.light-dark-mode-switcher__sun__icon {
  width: 21px;
  height: 21px;
  color: #fff;
  pointer-events: none;
}

/*$responsive-background: $background-primary-dark;*/
.menu {
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: flex-end;
  margin-bottom: 0;
  width: 100%;
}
@media print, screen and (max-width: 74.99875em) {
  .menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 7px;
    padding-bottom: 7px;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateY(-100px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s ease;
    opacity: 0;
    visibility: hidden;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .menu.is-active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s ease;
    transform: translateY(0);
    max-width: 388px;
    margin: 0 auto;
  }
  .menu.is-active .menu__item {
    margin-bottom: 10px;
  }
}

.menu__item {
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .menu__item {
    display: block;
    width: 100%;
  }
}
.menu__item {
  /*
      &.has-submenu:after,
      &.has-submenu:before {
          content: '';
          display: block;
          opacity: 0;
          position: absolute;
          left: calc(50% - 11px);
          transform: rotate(-90deg);
          width: 0;
          height: 0;
          border-style: solid;
          z-index: 5;
          transition: opacity 0.2s ease-in-out;

          @include breakpoint(xlarge only) {
              transform: translateX(-50%) rotate(-90deg);
          }

          @include breakpoint(large down) {
              display: none;

      }

      &.has-submenu:after {
          bottom: -20px;
          border-color: transparent transparent transparent $background-white;
          border-width: 11px;
      }

      &.has-submenu:before {
          bottom: -19px;
          border-color: transparent transparent transparent $submenu-border;
          border-width: 11px;
      }}*/
}
@media screen and (min-width: 75em) {
  .menu__item.hover.has-submenu:after, .menu__item.hover.has-submenu:before, .menu__item:focus.has-submenu:after, .menu__item:focus.has-submenu:before, .menu__item[focus-within].has-submenu:after, .menu__item[focus-within].has-submenu:before {
    display: block;
    opacity: 1;
  }
  .menu__item.hover.has-submenu:after, .menu__item.hover.has-submenu:before, .menu__item:focus.has-submenu:after, .menu__item:focus.has-submenu:before, .menu__item:focus-within.has-submenu:after, .menu__item:focus-within.has-submenu:before {
    display: block;
    opacity: 1;
  }
}

.menu__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .menu__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.menu__link {
  color: #1A1A1A;
  color: var(--text);
  display: block;
  padding: 10px 16px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media print, screen and (max-width: 74.99875em) {
  .menu.is-active .menu__link {
    font-size: 24px;
    line-height: 31px;
    color: #fff;
  }
}
.menu__item.is-active .menu__link, .menu__item.has-submenu.is-ancestor .menu__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media print, screen and (max-width: 98.12375em) {
  .menu__link {
    font-size: 16px;
    line-height: 21px;
    padding: 10px 8px;
  }
}
.menu__close-button-wrapper {
  font-family: "Public Sans", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.menu__close-button-wrapper {
  display: none;
  align-items: center;
  color: #fff;
  position: fixed;
  top: 12px;
  right: 16px;
}
@media print, screen and (max-width: 74.99875em) {
  .header__nav.is-active .menu__close-button-wrapper {
    display: flex;
  }
}

.menu__close-button {
  display: none;
  height: 36px;
  width: 36px;
  margin-left: 12px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.menu__close-button:hover {
  cursor: pointer;
}
@media print, screen and (max-width: 74.99875em) {
  .menu__close-button {
    display: block;
  }
}

.menu__close-button__icon {
  width: 16px;
  height: 24px;
  color: #fff;
  pointer-events: none;
}

.menu__link__wrapper {
  position: relative;
}
.menu__link__wrapper:after {
  content: "";
  background-color: #285F74;
  background-color: var(--link-hover);
  height: 2px;
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  border-radius: 16px;
  transform-origin: left;
  transition: width 0.2s ease;
  width: 0;
}
@media print, screen and (max-width: 74.99875em) {
  .menu.is-active .menu__link__wrapper:after {
    height: 4px;
    background-color: #fff;
  }
}
.menu__item.is-ancestor .menu__link__wrapper:after {
  width: 100%;
}
.menu__link__wrapper:hover:after {
  width: 100%;
}
.menu__link:focus .menu__link__wrapper:after {
  width: 100%;
}
.menu__item.is-active .menu__link__wrapper:after {
  width: 100%;
}
@media print, screen and (max-width: 74.99875em) {
  .menu__item.is-active .menu__link__wrapper:after {
    background-color: #fff;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .menu__link__wrapper {
    pointer-events: none;
  }
}

.menu__buttons {
  display: flex;
  align-items: center;
}
@media print, screen and (max-width: 74.99875em) {
  .menu.is-active .menu__buttons {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 63.99875em) {
  .menu.is-active .menu__buttons {
    display: flex;
  }
}

.news-card {
  display: flex;
  flex-direction: column;
}
@media print, screen and (max-width: 74.99875em) {
  .news-card {
    display: grid;
    grid-template-columns: 51% 48%;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .news-card {
    display: grid;
    grid-template-columns: 1fr;
  }
}

.news-card__media {
  --width: 398;
  --height: 250;
  background: #285F74;
  background: var(--background-placeholder);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}

.news-card__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.news-card__type {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.news-card__type {
  color: #285F74;
  color: var(--text-button-white);
  background: #fff;
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  z-index: 2;
  border-radius: 40px;
}

.news-card__content {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 20px;
  background: #F5F5F5;
  background: var(--background);
}
@media print, screen and (max-width: 98.12375em) {
  .news-card__content {
    justify-content: center;
    min-height: unset;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .news-card__content {
    padding: 17px;
  }
}
.theme--dark .news-card__content {
  background: #262626;
}

.news-card__date {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.news-card__date {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 9px;
}

.news-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .news-card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.news-card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.news-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.news-card__text {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card:hover .read-more:before {
  width: 100%;
}
.news-card:hover .read-more .read-more__icon {
  transform: translate(10px, -50%);
}
.news-card:hover .read-more .read-more__text {
  color: #fff;
}

.newsletter-button {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.newsletter-button {
  position: relative;
  padding: 6px 13px;
  margin: 0 16px;
  color: #fff;
  display: inline-block;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
@media print, screen and (min-width: 64em) {
  .newsletter-button:after {
    content: "";
    background-color: #285F74;
    background-color: var(--button-primary-dark);
    border: 2px solid #285F74;
    border: 2px solid var(--button-primary-dark);
    border-radius: 40px;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: transform 0.2s ease, background-color 0.2s ease;
    z-index: -1;
  }
}
@media print, screen and (min-width: 64em) {
  .newsletter-button:hover::after {
    transform: scaleX(1.05);
  }
}
.newsletter-button:focus::after {
  background: rgba(0, 153, 102, 0.7019607843);
  border: 2px solid #8CC341;
}
@media print, screen and (min-width: 64em) {
  .newsletter-button:focus::after {
    transform: scaleX(1.05);
  }
}
.newsletter-button:active {
  color: #285F74;
  color: var(--button-primary-dark);
}
.newsletter-button:active:after {
  background: transparent;
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
}
@media print, screen and (min-width: 64em) {
  .newsletter-button:active:after {
    transform: scaleX(1.05);
  }
}
@media print, screen and (max-width: 124.99875em) {
  .newsletter-button {
    padding: 6px;
    width: 34px;
    height: 34px;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .newsletter-button {
    padding: 6px 13px;
    width: unset;
    height: unset;
  }
}
@media screen and (max-width: 63.99875em) {
  .newsletter-button {
    margin: 0;
  }
}
.header__tools__first .newsletter-button {
  display: none;
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .header__tools__first .newsletter-button {
    display: block;
  }
}
.header__tools__second .newsletter-button {
  display: block;
}
@media print, screen and (max-width: 98.12375em) {
  .header__tools__second .newsletter-button {
    margin-right: 0;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .header__tools__second .newsletter-button {
    display: none;
  }
}
.menu__buttons .newsletter-button {
  display: none;
}
@media screen and (max-width: 63.99875em) {
  .menu__buttons .newsletter-button {
    display: block;
    width: unset;
    height: unset;
    background: #fff;
    color: #285F74;
    color: var(--text-primary-dark);
    padding: 6px 24px;
    margin-right: 0;
  }
  .theme--dark .menu__buttons .newsletter-button {
    background: #285F74;
    background: var(--button-primary-dark);
  }
}

.newsletter-button__text {
  display: block;
}
@media print, screen and (max-width: 124.99875em) {
  .newsletter-button__text {
    display: none;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .newsletter-button__text {
    display: block;
  }
}

.newsletter-button__icon {
  display: none;
  color: #fff;
  width: 21px;
  height: 21px;
}
@media print, screen and (max-width: 124.99875em) {
  .newsletter-button__icon {
    display: block;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .newsletter-button__icon {
    display: none;
  }
}
.header__nav__inner__buttons .newsletter-button__icon {
  display: none;
}
.newsletter-button:active .newsletter-button__icon {
  color: #285F74;
  color: var(--primary-dark);
}

.newsletter-button__icon-tag {
  font-size: 14px;
  line-height: 18px;
}
.newsletter-button__icon-tag {
  display: none;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: #285F74;
  background: var(--button-primary-dark);
  white-space: nowrap;
  border-radius: 40px;
  padding: 5px 13px;
}
.newsletter-button__icon-tag:before {
  display: block;
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #285F74;
  border-bottom: 7px solid var(--button-primary-dark);
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .newsletter-button__icon-tag:before {
    left: 70%;
  }
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .newsletter-button__icon-tag {
    left: -10%;
  }
}

@media print, screen and (max-width: 124.99875em) {
  .newsletter-button:hover .newsletter-button__icon-wrapper > .newsletter-button__icon-tag {
    display: block;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .newsletter-button:hover .newsletter-button__icon-wrapper > .newsletter-button__icon-tag {
    display: none;
  }
}

.page-header {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .page-header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .page-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .page-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.page-header {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  padding-top: 88px;
}
@media print, screen and (max-width: 74.99875em) {
  .page-header {
    padding-top: 30px;
  }
}

.page-header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .page-header__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .page-header__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.page-header__title {
  color: #285F74;
  color: var(--text-primary-dark);
  text-align: center;
}

.pagination_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.pagination__link {
  color: #1A1A1A;
  color: var(--text);
  padding: 8px;
  /*to check*/
}
.pagination__item--dots .pagination__link {
  color: rgba(0,160,175,0.8);
  color: var(--pagination-background);
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,160,175,0.8);
  background: var(--pagination-background);
  border: 2px solid rgba(0,160,175,0.8);
  border: 2px solid var(--pagination-background);
  margin: 0 8px;
  /*to check*/
}
.pagination__item--dots {
  background: none;
  border: 1px solid rgba(0,160,175,0.8);
  border: 1px solid var(--pagination-background);
}
.pagination__item--current {
  display: flex !important;
  background: rgba(0,160,175,0.30196);
  background: var(--pagination-background-current);
  border: 1px solid rgba(0,160,175,0.30196);
  border: 1px solid var(--pagination-background-current);
}
.pagination__item:hover {
  background: rgba(0,160,175,0.6);
  background: var(--pagination-background-hover);
  border: 2px solid rgba(0,160,175,0.6);
  border: 2px solid var(--pagination-border-hover);
}
.pagination__item:active {
  background: #00A0AF;
  background: var(--pagination-background-active);
  border: 2px solid #00A0AF;
  border: 2px solid var(--pagination-border-active);
}
.pagination__item--previous, .pagination__item--next, .pagination__item--last, .pagination__item--first {
  display: flex !important;
}
.pagination__item.is-disabled {
  opacity: 0.3;
}
@media screen and (max-width: 63.99875em) {
  .pagination__item {
    display: none;
  }
}

.pagination__icon {
  width: 17px;
  height: 11px;
  color: #1A1A1A;
  color: var(--text);
  transition: transform 0.2s ease-in;
}
.pagination__item--next .pagination__icon {
  transform: rotate(180deg);
}
.pagination__item--first .pagination__icon {
  transform: rotate(-180deg);
}

.pagination__item--last:hover .pagination__icon {
  transform: translateX(2px);
}

.pagination__item--next:hover .pagination__icon {
  transform: translateX(2px) rotate(180deg);
}

.pagination__item--first:hover .pagination__icon {
  transform: translateX(-2px) rotate(-180deg);
}

.pagination__item--previous:hover .pagination__icon {
  transform: translateX(-2px);
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 200px;
}
.partner-card:hover {
  opacity: 0.6;
}

.partner-card__icon {
  width: 200px;
}

.partner-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #1A1A1A;
  color: var(--text);
}
.theme--dark .partner-card__title {
  color: #1A1A1A;
}

.post-featured {
  display: grid;
  grid-template-columns: 70% 30%;
  margin-bottom: 45px;
  max-width: 1573px;
}
@media screen and (max-width: 63.99875em) {
  .post-featured {
    grid-template-columns: 1fr;
  }
}

.post-featured__media {
  --width: 1088;
  --height: 510;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 44.99875em) {
  .post-featured__media {
    --width: 398;
    --height: 250;
  }
}

.post-featured__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.post-featured__type {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.post-featured__type {
  color: #285F74;
  color: var(--text-button-white);
  background: #fff;
  position: absolute;
  top: 10px;
  left: 54px;
  padding: 6px 14px;
  z-index: 2;
  border-radius: 40px;
}

.post-featured__pinned {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  left: 10px;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  z-index: 2;
}

.post-featured__pinned__icon {
  width: 12px;
  height: 18px;
  color: #285F74;
  color: var(--text-button-white);
}

.post-featured__content {
  padding: 80px 40px 0;
}
@media print, screen and (max-width: 98.12375em) {
  .post-featured__content {
    padding: 40px 40px 0;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .post-featured__content {
    padding: 10px 17px;
  }
}
@media screen and (max-width: 63.99875em) {
  .post-featured__content {
    padding: 17px;
    max-width: 100%;
  }
}
.theme--dark .post-featured__content {
  background: #262626;
}

.post-featured__content__inner {
  max-width: 353px;
}

.post-featured__date {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.post-featured__date {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 9px;
}

.post-featured__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .post-featured__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.post-featured__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.post-featured__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.post-featured__text {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-featured:hover .read-more:before {
  width: 100%;
}
.post-featured:hover .read-more .read-more__icon {
  transform: translate(10px, -50%);
}
.post-featured:hover .read-more .read-more__text {
  color: #fff;
}

.post-header-back {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 225px;
}
@media print, screen and (max-width: 74.99875em) {
  .post-header-back {
    margin-bottom: 20px;
  }
}

.post-header-back__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .post-header-back__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.post-header-back__link {
  color: #285F74;
  color: var(--text-primary-dark);
  display: flex;
  align-items: center;
  padding: 0 4px;
  margin-right: 64px;
  border-bottom: 1px solid #00A0AF;
  border-bottom: 1px solid var(--underline-primary);
  white-space: nowrap;
  transition: transform 0.2s ease-in;
}
.post-header-back__link:hover {
  transform: translateX(-10px);
}

.post-header-back__icon {
  height: 11px;
  width: 16px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 8px;
}
.press-card {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 63.99875em) {
  .press-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .press-card {
    grid-template-columns: 1fr;
  }
}

.press-card__media {
  --width: 398;
  --height: 250;
  background: #285F74;
  background: var(--background-placeholder);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}

.press-card__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.press-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 230px;
  padding: 20px;
  background: #F5F5F5;
  background: var(--background);
}
@media print, screen and (max-width: 98.12375em) {
  .press-card__content {
    justify-content: center;
    min-height: unset;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .press-card__content {
    padding: 17px;
  }
}
.theme--dark .press-card__content {
  background: #262626;
}

.press-card__date {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.press-card__date {
  display: flex;
  align-items: center;
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 9px;
}

.press-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .press-card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.press-card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.press-card__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.press-card__text {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-card:hover .read-more:before {
  width: 100%;
}
.press-card:hover .read-more .read-more__icon {
  transform: translate(10px, -50%);
}
.press-card:hover .read-more .read-more__text {
  color: #fff;
}

.program-card {
  display: none;
  align-items: center;
  flex-direction: column;
  padding: 64px 92px;
  background: #fff;
  background: var(--background-white);
  min-height: 400px;
}
.program-card.is-active {
  display: flex;
}
@media print, screen and (max-width: 98.12375em) {
  .program-card {
    padding: 30px 62px;
  }
}
@media screen and (max-width: 63.99875em) {
  .program-card {
    padding: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .program-card {
    padding: 40px 16px;
    min-height: unset;
  }
}

.program-card__inner {
  flex: 1;
}

.program-card__media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 92px;
  margin-bottom: 18px;
}

.program-card__icon {
  width: 100px;
  height: 92px;
}

.program-card__image {
  height: 100%;
  font-family: "object-fit: contain, object-position: center";
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 130px;
}

.program-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .program-card__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.program-card__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 6px;
}

.program-card__content {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .program-card__content {
    font-size: 16px;
    line-height: 21px;
  }
}
.program-card__content {
  color: #1A1A1A;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.program-card .button.button--ghost {
  margin-top: 18px;
}

.program-card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
  padding: 12px 50px;
}
.theme--dark .program-card:hover .button.button--ghost {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
}
.program-card:hover .button__text:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -18px;
}

.read-more-wrapper {
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

.read-more {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 50px;
  padding-right: 20px;
  z-index: 2;
}
.read-more:before {
  content: "";
  background: #00A0AF;
  background: var(--background-primary);
  height: 40px;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 0;
  border-radius: 26px;
  transform: translateY(-50%);
  transition: width 0.3s ease-in;
  z-index: 0;
}
.theme--dark .read-more:before {
  background: #285F74;
  background: var(--button-primary-dark);
}

.read-more__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  height: 22px;
  width: 14px;
  color: #fff;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in;
}

.read-more__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.read-more__text {
  color: #1A1A1A;
  color: var(--text);
  z-index: 2;
}

.read-more:hover:before {
  width: 100%;
}
.read-more:hover .read-more__icon {
  transform: translate(10px, -50%);
}
.read-more:hover .read-more__text {
  color: #fff;
}

.scroll-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 158px;
  height: 158px;
  cursor: pointer;
}
@media print, screen and (max-width: 74.99875em) {
  .hero-block__top__text .scroll-button {
    position: absolute;
    opacity: 0;
  }
}
.hero-block__bottom .scroll-button {
  position: absolute;
  opacity: 0;
}
@media print, screen and (max-width: 74.99875em) {
  .hero-block__bottom .scroll-button {
    position: relative;
    opacity: 1;
    display: flex;
    margin: 40px auto 0;
  }
}

.scroll-button__circle span:first-child {
  opacity: 0;
}

.scroll-button__circle {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .scroll-button__circle {
    font-size: 16px;
    line-height: 21px;
  }
}
.scroll-button__circle {
  color: #285F74;
  color: var(--button-primary-dark);
  transition: transform 0.8s ease-in-out;
}

.scroll-button__arrow {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 48px;
  height: 81px;
  transform: translateX(-50%);
  transition: transform 0.6s ease-in-out;
}
.scroll-button__arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 13px;
  height: 36px;
  transform: translateX(-50%);
  background: #285F74;
  background: var(--button-primary-dark);
  transition: height 0.3s ease-in-out;
}

.scroll-button__arrow__icon {
  position: absolute;
  top: 26px;
  left: 0;
  width: 48px;
  height: 44px;
  color: #285F74;
  color: var(--button-primary-dark);
  transition: transform 0.3s ease-in-out;
}

.scroll-button:hover .scroll-button__circle {
  transform: rotate(180deg);
}
.scroll-button:hover .scroll-button__arrow:before {
  height: 40px;
  transform-origin: top;
}
.scroll-button:hover .scroll-button__arrow__icon {
  transform: translateY(12px);
}

.scroll-top {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
@media screen and (max-width: 63.99875em) {
  .scroll-top {
    position: absolute;
    right: -44px;
    top: -40px;
  }
}

.scroll-top__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 7px;
}

.scroll-top__circle {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .scroll-top__circle {
    font-size: 16px;
    line-height: 21px;
  }
}
.scroll-top__circle {
  background: #fff;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 4px solid #fff;
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 63.99875em) {
  .scroll-top__circle {
    background: #00A0AF;
    background: var(--button-primary);
    border: 4px solid #00A0AF;
    border: 4px solid var(--button-primary);
  }
}

.scroll-top__arrow {
  position: absolute;
  top: 35px;
  left: 50%;
  width: 24px;
  height: 22px;
  transition: transform 0.3s ease-in-out;
  transform: translateX(-50%) rotate(180deg);
}
.scroll-top__arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 7px;
  height: 25px;
  transform: translateX(-50%);
  background: #285F74;
  background: var(--button-primary-dark);
  transition: height 0.3s ease-in-out;
}
@media screen and (max-width: 63.99875em) {
  .scroll-top__arrow:before {
    background: #fff;
  }
}

.scroll-top__arrow__icon {
  position: absolute;
  top: 15px;
  left: 0;
  width: 24px;
  height: 22px;
  color: #285F74;
  color: var(--button-primary-dark);
  transition: transform 0.3s ease-in-out;
}
@media screen and (max-width: 63.99875em) {
  .scroll-top__arrow__icon {
    color: #fff;
  }
}

.scroll-top__legend {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.scroll-top__legend {
  color: #fff;
}
@media screen and (max-width: 63.99875em) {
  .scroll-top__legend {
    display: none;
  }
}

@media print, screen and (max-width: 74.99875em) {
  .scroll-top:hover .scroll-top__circle {
    background: rgba(0,160,175,0.70196);
    background: var(--background-scroll-top-hover);
    border: 4px solid #00A0AF;
    border: 4px solid var(--button-primary);
  }
}
.scroll-top:hover .scroll-top__arrow:before {
  height: 40px;
  transform-origin: top;
}
.scroll-top:hover .scroll-top__arrow__icon {
  transform: translateY(12px);
}

@media screen and (max-width: 63.99875em) {
  .scroll-top:focus .scroll-top__circle {
    background: rgba(40,95,116,0.50196);
    background: var(--background-focus-hover);
    border: 4px solid #285F74;
    border: 4px solid var(--background-primary-dark);
  }
}

.search-page {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .search-page {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .search-page {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .search-page {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.search-page {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .search-page {
    margin-bottom: 88px;
  }
}
.search-page {
  margin-top: 75px;
}

.search-page__results__search-item {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .search-page__results__search-item {
    font-size: 21px;
    line-height: 28px;
  }
}
.search-page__results__search-item {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 20px;
}

.search-page__results__description {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.search-page__results__description {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 40px;
}

.search-page__results__number-of-results {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.search-page__results__number-of-results {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-left: 40px;
}

.search-page__no-results .post-header-back {
  width: 100%;
  margin-top: 50px;
}
.search-page__no-results .post-header-back__link {
  white-space: nowrap;
}

.search-page__no-results__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .search-page__no-results__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.search-page__no-results__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 32px;
}
@media screen and (max-width: 63.99875em) {
  .search-page__no-results__title {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}

.search-page__no-results__text {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .search-page__no-results__text {
    font-size: 21px;
    line-height: 28px;
  }
}
.search-page__no-results__text {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 9px;
}

.search__button-open {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  transition: background 0.2s ease-in;
}
.search__button-open:hover {
  background: rgba(40,95,116,0.30196);
  background: var(--background-hover-primary-dark);
  border: none;
}
@media print, screen and (max-width: 74.99875em) {
  .header__tools__first .search__button-open {
    display: none;
  }
}

.search__button-open__icon {
  width: 22px;
  height: 22px;
  color: #285F74;
  color: var(--text-primary-dark);
}

.search-form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 230px;
  width: 616px;
  padding: 40px 40px 40px 60px;
  background: #fff;
}
.sidebar .search-form {
  align-items: flex-start;
  min-height: unset;
  background: unset;
  padding: unset;
  width: 100%;
}
@media screen and (max-width: 63.99875em) {
  .sidebar .search-form {
    max-width: unset;
  }
}
.search-page .search-form {
  min-height: unset;
  width: 100%;
  background: unset;
  padding: unset;
  margin-bottom: 40px;
}
.header__nav__inner .search-form {
  display: none;
}
@media print, screen and (max-width: 74.99875em) {
  .header__nav__inner .search-form {
    display: flex;
    max-width: 388px;
    min-height: unset;
    background: unset;
    padding: unset;
    margin: 0 auto 20px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .header__nav__inner .search-form {
    max-width: 100%;
    margin: 0 auto 12px;
  }
}

.search-form__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .search-form__label {
    font-size: 21px;
    line-height: 28px;
  }
}
.search-form__label {
  color: #285F74;
  color: var(--button-primary-dark);
  margin-bottom: 17px;
}
@media screen and (max-width: 63.99875em) {
  .search-form__label {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
}
.header__nav__inner .search-form__label {
  text-align: center;
  color: #fff;
  margin-bottom: 12px;
}
@media print, screen and (max-width: 29.99875em) {
  .header__nav__inner .search-form__label {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 8px;
  }
}
.search-page .search-form__label {
  display: none;
}

.search-form__input-wrapper {
  position: relative;
  width: 100%;
}

.search-form__input {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.search-form__input {
  background: #F5F5F5;
  color: #1A1A1A;
  color: var(--text);
  border-radius: 40px;
  height: 80px;
  width: 100%;
  padding: 26px 40px;
  border: none;
}
@media print, screen and (max-width: 44.99875em) {
  .search-form__input {
    height: 42px;
  }
}
.header__nav__inner .search-form__input {
  background: unset;
  border: 2px solid #fff;
  height: 42px;
}
.search-page .search-form__input {
  background: #fff;
}
.header__nav__inner .search-form__input::-moz-placeholder {
  opacity: 0;
}
.header__nav__inner .search-form__input::placeholder {
  opacity: 0;
}
.sidebar .search-form__input::-moz-placeholder {
  font-size: 16px;
  line-height: 21px;
}
.sidebar .search-form__input::placeholder {
  font-size: 16px;
  line-height: 21px;
}
.sidebar .search-form__input {
  height: 50px;
  padding: 16px;
}
.header__nav.is-active .search-form__input {
  color: #fff;
}
.theme--dark .search-form__input {
  color: #285F74;
  color: var(--text-button-white);
}

.search-form__searchsubmit {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #00A0AF;
  background: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.sidebar .search-form__searchsubmit {
  width: 40px;
  height: 40px;
}
.header__nav__inner .search-form__searchsubmit {
  background: unset;
}
@media print, screen and (max-width: 44.99875em) {
  .search-form__searchsubmit {
    width: 45px;
    height: 45px;
  }
}

.search-form__searchsubmit__icon {
  width: 35px;
  height: 35px;
  color: #fff;
}
.sidebar .search-form__searchsubmit__icon, .header__nav__inner .search-form__searchsubmit__icon {
  width: 23px;
  height: 23px;
}
@media print, screen and (max-width: 44.99875em) {
  .search-form__searchsubmit__icon {
    width: 23px;
    height: 23px;
  }
}

.sidebar-event__date {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.sidebar-event__date {
  display: block;
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 9px;
}
@media screen and (max-width: 63.99875em) {
  .sidebar-event__date {
    margin-bottom: 18px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .sidebar-event__date {
    margin-bottom: 8px;
  }
}

.sidebar-event__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .sidebar-event__name {
    font-size: 21px;
    line-height: 28px;
  }
}
.sidebar-event__name {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 12px;
}
@media screen and (max-width: 63.99875em) {
  .sidebar-event__name {
    font-size: 18px;
    line-height: 24px;
  }
}

.two-column-content__sidebar {
  position: relative;
}

.sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  background: var(--background-white);
  padding: 87px 87px 224px 120px;
}
@media print, screen and (max-width: 98.12375em) {
  .sidebar {
    padding: 40px 60px;
  }
}
@media print, screen and (min-width: 64em) {
  .sidebar {
    height: 100vh;
  }
}
@media print, screen and (min-width: 64em) and (max-width: 74.99875em) {
  .sidebar {
    padding: 40px 20px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .sidebar {
    padding: 20px;
  }
}
@media screen and (max-width: 63.99875em) {
  .two-column-content-block--downloads .sidebar, .two-column-content-block--gallery .sidebar {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 98.125em) and (max-width: 124.99875em) {
  .page-template-page-gallery .sidebar {
    padding: 87px 40px 224px 40px;
  }
}

.sidebar__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .sidebar__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.sidebar__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 35px;
}
@media print, screen and (max-width: 29.99875em) {
  .sidebar__title {
    margin-bottom: 10px;
  }
}

.sidebar__nav {
  margin-bottom: 40px;
}
@media screen and (max-width: 63.99875em) {
  .sidebar__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 40px;
    gap: 20px 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .sidebar__nav {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .archive-layout__sidebar .sidebar__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .archive-layout__sidebar .sidebar__nav {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
  }
}

.sidebar__nav__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  position: relative;
}
.sidebar__nav__item:before {
  display: block;
  content: "";
  background: url(svg/chevron-double-right.svg) no-repeat;
  width: 14px;
  height: 11px;
  margin-left: 20px;
  margin-top: 6px;
  opacity: 0;
}
.theme--dark .sidebar__nav__item:before {
  background: url(svg/chevron-double-right-white.svg) no-repeat;
}
@media screen and (max-width: 63.99875em) {
  .sidebar__nav__item {
    margin-bottom: 0;
  }
}
.two-column-content-block--news .sidebar__nav__item {
  flex-direction: column;
  align-items: flex-start;
  max-width: 458px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 44.99875em) {
  .two-column-content-block--news .sidebar__nav__item {
    margin-bottom: 0;
  }
}
.sidebar__nav__item.is-active {
  padding: 8px 20px 8px 0;
  background: #F5F5F5;
  background: var(--background);
  border-radius: 18px;
}
.sidebar__nav__item.is-active:before {
  opacity: 1;
}

.sidebar__nav__item:last-child {
  margin-bottom: 0;
}

.sidebar__nav__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .sidebar__nav__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.sidebar__nav__link {
  color: #1A1A1A;
  color: var(--text);
  padding-left: 10px;
}
.sidebar__nav__item.is-active .sidebar__nav__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

@media print, screen and (max-width: 74.99875em) {
  .sidebar__button {
    margin: 0 auto;
  }
}

.single-header {
  max-width: 115.25rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .single-header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .single-header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .single-header {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.single-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 40px;
}
@media print, screen and (max-width: 44.99875em) {
  .single-header {
    justify-content: flex-start;
  }
}

.single-header {
  padding-top: 88px;
}
@media print, screen and (max-width: 74.99875em) {
  .single-header {
    padding-top: 30px;
  }
}

.single-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  max-width: 1126px;
  width: 100%;
}
@media print, screen and (max-width: 74.99875em) {
  .single-header__inner {
    grid-template-columns: 1fr;
  }
}

.single-header__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .single-header__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .single-header__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.single-header__title {
  color: #285F74;
  color: var(--text-primary-dark);
  text-align: center;
  margin: 0 20px;
}

.post-header-next {
  width: 220px;
}

.single-header__details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.single-header__field {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.single-header__field {
  display: flex;
  align-items: center;
  color: #285F74;
  color: var(--text-button-white);
  padding: 7px 14px 7px 16px;
  background: #fff;
  border-radius: 40px;
  margin: 0 5px 10px;
}

.single-header__field__icon {
  width: 20px;
  height: 17px;
  color: #285F74;
  color: var(--text-button-white);
  margin-right: 4px;
}

.single-header__field--alert {
  background: #285F74;
  background: var(--button-primary-dark);
  color: #fff;
}
.single-header__field--alert .single-header__field__icon {
  color: #fff;
}

.social-icons__items.social-icons__items__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  padding-top: 4px;
}
.header__nav__inner .social-icons__items.social-icons__items__header {
  width: 145px;
  margin: 0 auto;
}
@media screen and (min-width: 75em) {
  .header__nav__inner .social-icons__items.social-icons__items__header {
    display: none;
  }
}
@media print, screen and (max-width: 98.12375em) {
  .header__tools__second .social-icons__items.social-icons__items__header {
    display: none;
  }
}

.social-icons__items__header .social-icons__item a {
  display: flex;
}
.social-icons__items__header .icon.social-icons__icon {
  width: 22px;
  height: 22px;
  color: #285F74;
  color: var(--text-primary-dark);
}
.social-icons__items__header .icon.social-icons__icon.icon--facebook {
  width: 10.4px;
  height: 19px;
}
.header__nav__inner .social-icons__items__header .icon.social-icons__icon {
  width: 32px;
  height: 32px;
  color: #fff;
}
.header__nav__inner .social-icons__items__header .icon.social-icons__icon.icon--facebook {
  width: 15px;
  height: 28px;
}

.social-icons__items.social-icons__items__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 180px;
  margin-bottom: 52px;
}

.social-icons__items__footer .social-icons__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: #fff;
  background: var(--background-white);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease-in;
}
.theme--dark .social-icons__items__footer .social-icons__item {
  background: none;
}
.social-icons__items__footer .social-icons__item:hover {
  background: none;
}
.theme--dark .social-icons__items__footer .social-icons__item:hover {
  background: #fff;
  background: var(--button-white);
}
.social-icons__items__footer .social-icons__item a {
  display: flex;
}
.social-icons__items__footer .social-icons__icon {
  width: 22px;
  height: 22px;
  color: #285F74;
  color: var(--text-primary-dark);
}
.social-icons__items__footer .social-icons__item:hover .social-icons__icon {
  color: #fff;
}

@media screen and (min-width: 75em) {
  .submenu_container {
    pointer-events: none;
    visibility: hidden;
    padding: 42px 70px;
    position: absolute;
    top: 100%;
    left: -50px;
    width: inherit;
    z-index: 100;
    transition: visibility 0.2s ease-in-out;
  }
}
@media screen and (min-width: 75em) and (min-width: 75em) and (max-width: 98.12375em) {
  .submenu_container {
    left: 0;
  }
}
.submenu_container:after, .submenu_container:before {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  left: 100%;
  transform: translateX(-200%) rotate(-90deg);
  width: 0;
  height: 0;
  border-style: solid;
  z-index: 5;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .submenu_container:after, .submenu_container:before {
    transform: translateX(-500%) rotate(-90deg);
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu_container:after, .submenu_container:before {
    display: none;
  }
}
.submenu_container:after {
  /* top: -21px;*/
  top: -3px;
  border-color: transparent transparent transparent #fff;
  border-color: transparent transparent transparent var(--background-white);
  border-width: 11px;
}
.submenu_container:before {
  /*  top: -22px;*/
  top: -4px;
  border-color: transparent transparent transparent rgba(26,26,26,0.10196);
  border-color: transparent transparent transparent var(--submenu-border);
  border-width: 11px;
}
@media screen and (min-width: 75em) {
  .submenu_container:hover:after, .submenu_container:hover:before {
    display: block;
    opacity: 1;
  }
}

.submenu {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #fff;
  background: var(--background-white);
  padding: 20px 36px;
  border-radius: 40px;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 75em) {
  .submenu {
    border: 1px solid rgba(26,26,26,0.10196);
    border: 1px solid var(--submenu-border);
  }
}
@media screen and (min-width: 75em) and (max-width: 98.12375em) {
  .submenu {
    left: -150px;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu {
    background: unset;
    min-width: 230px;
    padding: 10px 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(0) translateY(-5px);
    transition: transform 0s ease, opacity 0s ease;
    height: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 1;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu {
    background: unset;
    flex-direction: column;
    border-radius: unset;
    padding: 0;
  }
}

.submenu__item {
  position: relative;
  padding: 0 18px;
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__item:after {
    content: "";
    display: none;
    background-color: #cfcfcf;
    height: 1px;
    position: absolute;
    bottom: -1px;
    right: 10px;
    left: 10px;
    transition: background-color 0.2s ease;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__item {
    padding: 14px 24px;
  }
}

.submenu__item:last-child:after {
  display: none;
}

@media screen and (min-width: 75em) {
  .menu__item.hover .submenu_container,
  .menu__item:focus .submenu_container,
  .menu__item[focus-within] .submenu_container {
    pointer-events: auto;
    visibility: visible;
  }
  .menu__item.hover .submenu_container,
  .menu__item:focus .submenu_container,
  .menu__item:focus-within .submenu_container {
    pointer-events: auto;
    visibility: visible;
  }
  .menu__item.hover .submenu_container:before, .menu__item.hover .submenu_container:after,
  .menu__item:focus .submenu_container:before,
  .menu__item:focus .submenu_container:after,
  .menu__item[focus-within] .submenu_container:before,
  .menu__item[focus-within] .submenu_container:after {
    display: block;
    opacity: 1;
  }
  .menu__item.hover .submenu_container:before, .menu__item.hover .submenu_container:after,
  .menu__item:focus .submenu_container:before,
  .menu__item:focus .submenu_container:after,
  .menu__item:focus-within .submenu_container:before,
  .menu__item:focus-within .submenu_container:after {
    display: block;
    opacity: 1;
  }
  .menu__item.hover .submenu,
  .menu__item:focus .submenu,
  .menu__item[focus-within] .submenu {
    opacity: 1;
  }
  .menu__item.hover .submenu,
  .menu__item:focus .submenu,
  .menu__item:focus-within .submenu {
    opacity: 1;
  }
}

.menu__item > .menu__link:focus + .submenu_container,
.menu__item > .menu__link[focus-within] + .submenu_container {
  visibility: visible;
}

.menu__item > .menu__link:focus + .submenu_container,
.menu__item > .menu__link:focus-within + .submenu_container {
  visibility: visible;
}
.menu__item > .menu__link:focus + .submenu_container:before, .menu__item > .menu__link:focus + .submenu_container:after,
.menu__item > .menu__link[focus-within] + .submenu_container:before,
.menu__item > .menu__link[focus-within] + .submenu_container:after {
  opacity: 1;
}
.menu__item > .menu__link:focus + .submenu_container:before, .menu__item > .menu__link:focus + .submenu_container:after,
.menu__item > .menu__link:focus-within + .submenu_container:before,
.menu__item > .menu__link:focus-within + .submenu_container:after {
  opacity: 1;
}

@media screen and (min-width: 75em) {
  .menu__link:focus + .submenu_container,
  .menu__link[focus-within] + .submenu_container,
  .menu__item.hover + .submenu_container,
  .menu__item:focus + .submenu_container,
  .menu__item[focus-within] + .submenu_container,
  .submenu_container:hover {
    display: flex;
  }
  .menu__link:focus + .submenu_container,
  .menu__link:focus-within + .submenu_container,
  .menu__item.hover + .submenu_container,
  .menu__item:focus + .submenu_container,
  .menu__item:focus-within + .submenu_container,
  .submenu_container:hover {
    display: flex;
  }
  .menu__link:focus + .submenu_container .submenu,
  .menu__link[focus-within] + .submenu_container .submenu,
  .menu__item.hover + .submenu_container .submenu,
  .menu__item:focus + .submenu_container .submenu,
  .menu__item[focus-within] + .submenu_container .submenu,
  .submenu_container:hover .submenu {
    opacity: 1;
  }
  .menu__link:focus + .submenu_container .submenu,
  .menu__link:focus-within + .submenu_container .submenu,
  .menu__item.hover + .submenu_container .submenu,
  .menu__item:focus + .submenu_container .submenu,
  .menu__item:focus-within + .submenu_container .submenu,
  .submenu_container:hover .submenu {
    opacity: 1;
  }
}

@media print, screen and (max-width: 74.99875em) {
  .submenu_container.is-active .submenu {
    height: auto;
    opacity: 1;
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform: translateX(0) translateY(0);
    position: relative;
    left: 0;
    z-index: 2;
  }
}

.submenu__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  color: #1A1A1A;
  color: var(--text);
  position: relative;
}
@media screen and (min-width: 75em) {
  .submenu__link {
    transition: text-shadow 0.2s ease-in;
  }
}
.submenu__link:before {
  content: "";
  display: block;
  background: url(svg/chevron-double-right.svg) no-repeat;
  position: absolute;
  top: 50%;
  left: -24px;
  width: 13px;
  height: 11px;
  transform-origin: left;
  opacity: 0;
  transform: translateY(-50%);
  background-size: 100%;
  transition: all 0.4s ease-in-out;
}
.theme--dark .submenu__link:before {
  background: url(svg/chevron-double-right-white.svg) no-repeat;
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__link:before {
    background: url(svg/chevron-double-right-white.svg) no-repeat;
    left: -16px;
  }
}
.submenu__link:hover:before, .submenu__link:focus:before, .submenu__link[focus-within]:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -16px;
}
.submenu__link:hover:before, .submenu__link:focus:before, .submenu__link:focus-within:before {
  transform: translateY(-50%);
  opacity: 1;
  left: -16px;
}
.submenu__link:hover, .submenu__link:focus, .submenu__link[focus-within] {
  text-shadow: 0 0 0.5px #1A1A1A;
  text-shadow: 0 0 0.5px var(--text);
}
.submenu__link:hover, .submenu__link:focus, .submenu__link:focus-within {
  text-shadow: 0 0 0.5px #1A1A1A;
  text-shadow: 0 0 0.5px var(--text);
}
@supports (-webkit-appearance: none) {
  .submenu__link:hover, .submenu__link:focus, .submenu__link[focus-within] {
    text-shadow: 0 0 1px #1A1A1A;
    text-shadow: 0 0 1px var(--text);
  }
  .submenu__link:hover, .submenu__link:focus, .submenu__link:focus-within {
    text-shadow: 0 0 1px #1A1A1A;
    text-shadow: 0 0 1px var(--text);
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu_container.is-active .submenu__link {
    color: #fff;
  }
}
.submenu__item.is-active .submenu__link {
  text-shadow: 0 0 0.5px #1A1A1A;
  text-shadow: 0 0 0.5px var(--text);
}
@supports (-webkit-appearance: none) {
  .submenu__item.is-active .submenu__link {
    text-shadow: 0 0 1px #1A1A1A;
    text-shadow: 0 0 1px var(--text);
  }
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__item.is-active .submenu__link {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-shadow: unset;
  }
}
.submenu__item.is-active .submenu__link:before {
  transform: translateY(-50%) scale(1);
  opacity: 1;
  left: -16px;
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__link {
    padding-left: 8px;
  }
}

.submenu__submenu-toggle {
  display: none;
  position: absolute;
  right: 0;
  top: 8px;
  width: 40px;
  height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .submenu__submenu-toggle {
    display: block;
  }
}

.submenu__submenu-icon {
  color: #fff;
  width: 27px;
  height: 16px;
  pointer-events: none;
  transition: transform 0.2s ease;
}
.submenu_container.is-active .submenu__submenu-icon {
  transform: rotate(-180deg);
}

.team-member {
  display: grid;
  grid-template-columns: 45% 65%;
  max-width: 659px;
}
@media print, screen and (max-width: 29.99875em) {
  .team-member {
    display: block;
    max-width: 300px;
  }
}
@media screen and (min-width: 75em) {
  .team-member:nth-child(even) {
    transform: translateY(100px);
  }
}

.team-member__media {
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: 150%;
  position: relative;
  position: relative;
  overflow: hidden;
}
.team-member__media::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.team-member__media.is-in-view::after {
  transform: translateY(100%);
}
.team-member__media img {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__media {
    margin-bottom: 20px;
  }
}

.team-member__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 40px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .team-member__content {
    height: unset;
    padding-left: 0;
  }
}

.team-member__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.team-member__name {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 3px;
}

.team-member__position {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__position {
    font-size: 16px;
    line-height: 21px;
  }
}
.team-member__position {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 20px;
}

.team-member__email {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
}
.team-member__email a {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__email a {
    font-size: 16px;
    line-height: 21px;
  }
}
.team-member__email a {
  color: #1A1A1A;
  color: var(--text);
}

.team-member__email__icon {
  height: 14px;
  width: 18px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 14px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__email__icon {
    margin-right: 7px;
  }
}
.theme--dark .team-member__email__icon {
  color: #00A0AF;
  color: var(--primary);
}

.team-member__phone {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__phone {
    font-size: 16px;
    line-height: 21px;
  }
}
.team-member__phone {
  display: flex;
  align-items: center;
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 8px;
  position: relative;
}

.team-member__phone__icon {
  height: 20px;
  width: 14px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 14px;
  margin-left: 2px;
}
@media print, screen and (max-width: 44.99875em) {
  .team-member__phone__icon {
    margin-right: 7px;
  }
}
.theme--dark .team-member__phone__icon {
  color: #00A0AF;
  color: var(--primary);
}

.teaser {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #285F74;
  border: 1px solid var(--text-primary-dark);
  margin-bottom: 30px;
}

.teaser__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .teaser__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.teaser__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 8px;
}

.teaser__updated {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 18px;
}
.teaser__updated {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 9px;
}

.teaser__type {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.teaser__type {
  display: flex;
  align-items: flex-start;
  color: #285F74;
  color: var(--text-button-white);
  background: #fff;
  padding: 6px 14px;
  z-index: 2;
  border-radius: 40px;
  margin-bottom: 20px;
}

.teaser__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
.teaser__text {
  color: #1A1A1A;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
@media screen and (min-width: 45em) {
  .teaser__text {
    width: 70%;
  }
}

.teaser .read-more-wrapper {
  margin-top: 10px;
}

.timeline__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .timeline__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.timeline__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 30px;
  text-align: center;
}

.timeline__item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 43px;
  max-width: 311px;
}

.timeline__item__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  background: #00A0AF;
  background: var(--background-primary);
  border-radius: 50%;
  margin-right: 39px;
  position: relative;
  border: 1px solid #00A0AF;
  border: 1px solid var(--text-primary);
}
.timeline__item__icon-wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 51px;
  background: #285F74;
  background: var(--text-primary-dark);
}

.timeline__item:last-child .timeline__item__icon-wrapper:after {
  display: none;
}

.timeline__item__icon {
  width: 20px;
  height: 26px;
  color: #fff;
}

.timeline__item__title {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .timeline__item__title {
    font-size: 16px;
    line-height: 21px;
  }
}
.timeline__item__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 2px;
}

.timeline__item__range {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .timeline__item__range {
    font-size: 16px;
    line-height: 21px;
  }
}
.timeline__item__range {
  color: #285F74;
  color: var(--text-primary-dark);
}

.video_container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video_container--youtube {
  height: 0;
  overflow: hidden;
  padding-top: 52.46%;
}

.video_container--youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video_container--instagram iframe {
  width: 468px;
  min-height: 738px;
}
.video_container--tiktok iframe {
  min-height: 738px;
}

.wrap {
  padding-right: 15px;
  padding-left: 15px;
  max-width: 81.25rem;
  margin: 0 auto;
  width: 100%;
}

.archive-layout-block {
  margin-bottom: 140px;
}
@media print, screen and (max-width: 74.99875em) {
  .archive-layout-block {
    margin-bottom: 80px;
  }
}

.filter {
  grid-area: filter;
}

.post-featured-wrapper {
  grid-area: post-featured-wrapper;
}
.two-column-content-block--events .post-featured-wrapper {
  margin: 0 auto;
}

.archive-layout__content {
  grid-area: archive-layout__content;
}

.archive-layout__content-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 5%;
  gap: 5%;
}
@media print, screen and (max-width: 74.99875em) {
  .archive-layout__content-inner {
    grid-template-columns: 1fr;
    grid-gap: 80px;
    gap: 80px;
  }
}

.archive-layout__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  gap: 80px;
}
@media print, screen and (max-width: 98.12375em) {
  .archive-layout__items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 63.99875em) {
  .archive-layout__items {
    grid-gap: 40px;
    gap: 40px;
  }
}

@media screen and (min-width: 75em) {
  .archive-layout {
    display: grid;
    grid-gap: 35px;
    gap: 35px;
    grid-template-areas: ". filter ." ". post-featured-wrapper ." ". archive-layout__content archive-layout__content";
    grid-template-columns: 7% auto 7%;
  }
  .archive-layout.is-reverse {
    display: grid;
    grid-gap: 35px;
    gap: 35px;
    grid-template-areas: ". filter ." ". post-featured-wrapper ." "archive-layout__content archive-layout__content .";
    grid-template-columns: 7% auto 7%;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .archive-layout {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    display: grid;
    grid-gap: 35px;
    gap: 35px;
    grid-template-areas: "filter" "post-featured-wrapper" "archive-layout__content";
  }
}
@media screen and (max-width: 74.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .archive-layout {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (max-width: 74.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .archive-layout {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 74.99875em) and (max-width: 29.99875em) {
  .archive-layout {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.board-directors {
  max-width: 85.625rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .board-directors {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .board-directors {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .board-directors {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.board-directors {
  scroll-margin: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 230px;
}
@media print, screen and (max-width: 74.99875em) {
  .board-directors {
    margin-bottom: 160px;
  }
}

.board-directors__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 60px;
  gap: 60px;
  width: 100%;
}
@media print, screen and (max-width: 44.99875em) {
  .board-directors__items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
    width: 100%;
  }
}

.board-members {
  position: relative;
}
.board-members:after {
  display: block;
  content: "";
  background: #fff;
  background: var(--background-white-dark);
  position: absolute;
  right: 0;
  top: 0;
  width: calc((100vw - 85.625rem) / 2 + 260px);
  height: 100%;
  z-index: -1;
}
@media print, screen and (max-width: 74.99875em) {
  .board-members:after {
    width: 120px;
  }
}
@media screen and (max-width: 63.99875em) {
  .board-members:after {
    width: 45px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .board-members:after {
    display: none;
  }
}

.board-members__inner {
  max-width: 85.625rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .board-members__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .board-members__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .board-members__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.board-members__content {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .board-members__content {
    margin-bottom: 88px;
  }
}
.board-members__content {
  background: #fff;
  background: var(--background-white-dark);
  padding: 138px 0 138px 138px;
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 63.99875em) {
  .board-members__content {
    padding: 40px 0 40px 40px;
  }
}

.board-members__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .board-members__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .board-members__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.board-members__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 70px;
}

.board-members__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 70px;
  gap: 70px;
}
@media screen and (max-width: 63.99875em) {
  .board-members__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .board-members__list {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    gap: 30px;
  }
}

.carousel-story-block {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .carousel-story-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .carousel-story-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel-story-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.carousel-story-block {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .carousel-story-block {
    margin-bottom: 88px;
  }
}
.carousel-story-block {
  padding-left: 136px;
  padding-right: 0;
  margin-right: 0;
  position: relative;
}
@media screen and (max-width: 63.99875em) {
  .carousel-story-block {
    padding-right: 0;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-story-block {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 44.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .carousel-story-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (max-width: 44.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .carousel-story-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 44.99875em) and (max-width: 29.99875em) {
  .carousel-story-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.carousel-story__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .carousel-story__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel-story__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.carousel-story__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 21px;
  text-align: center;
  padding-right: calc(100vw - 101.875rem + 136px);
}
@media screen and (min-width: 125em) {
  .carousel-story__title {
    text-align: left;
    padding-right: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .carousel-story__title {
    padding-right: calc(100vw - 101.875rem + 45px);
  }
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-story__title {
    padding-right: calc(100vw - 101.875rem + 30px);
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel-story__title {
    padding-right: calc(100vw - 101.875rem + 15px);
  }
}

.carousel-story__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-story__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.carousel-story__text {
  color: #1A1A1A;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 80px;
}

.carousel-block {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .carousel-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .carousel-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.carousel-block {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .carousel-block {
    margin-bottom: 88px;
  }
}
.carousel-block {
  position: relative;
  padding-left: 136px;
  padding-right: 0;
  margin-right: 0;
}
@media screen and (max-width: 63.99875em) {
  .carousel-block {
    padding-right: 0;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .carousel-block {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 88px;
  }
}
@media screen and (max-width: 44.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .carousel-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (max-width: 44.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .carousel-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 44.99875em) and (max-width: 29.99875em) {
  .carousel-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.carousel__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .carousel__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.carousel__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 52px;
  text-align: center;
  padding-right: calc(100vw - 101.875rem + 136px);
}
.carousel__title.title-left {
  text-align: left;
}
@media screen and (min-width: 125em) {
  .carousel__title {
    text-align: left;
    padding-right: 0;
  }
}
@media screen and (max-width: 63.99875em) {
  .carousel__title {
    padding-right: calc(100vw - 101.875rem + 45px);
  }
}
@media print, screen and (max-width: 44.99875em) {
  .carousel__title {
    margin-bottom: 32px;
    padding-right: calc(100vw - 101.875rem + 30px);
  }
}
@media print, screen and (max-width: 29.99875em) {
  .carousel__title {
    padding-right: calc(100vw - 101.875rem + 15px);
  }
}

.carousel__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .carousel__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.carousel__text {
  color: #1A1A1A;
  color: var(--text);
  max-width: 700px;
  margin-bottom: 80px;
}

.carousel__item {
  /*    width: calc(38% - 50px);*/
  width: 536px;
  margin-right: 0;
  padding-right: 50px;
  min-height: 100%;
}
@media print, screen and (max-width: 98.12375em) {
  .carousel__item {
    /*      width: calc(58% - 50px);*/
  }
}
@media screen and (max-width: 63.99875em) {
  .carousel__item {
    /*   width: calc(78% - 50px);*/
  }
}
@media print, screen and (max-width: 44.99875em) {
  .carousel__item {
    min-height: 443px;
    width: 100%;
  }
}

.carousel__item-image {
  height: 100%;
}
.carousel__item-image .carousel__item-image-wrapper {
  height: 100%;
}
.carousel__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.carrousel__link {
  display: flex;
  justify-content: center;
  padding-right: calc(100vw - 101.875rem + 136px);
}

.contact {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .contact {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .contact {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .contact {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .contact {
    margin-bottom: 88px;
  }
}
.contact {
  max-width: 1880px;
}
@media print, screen and (max-width: 29.99875em) {
  .contact {
    margin-bottom: 60px;
  }
}

.contact__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .contact__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .contact__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.contact__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 55px;
  text-align: center;
}

.contact__inner {
  display: flex;
  max-width: 1478px;
}
@media screen and (max-width: 63.99875em) {
  .contact__inner {
    flex-direction: column;
  }
}

.contact__map {
  max-width: 1088px;
  width: 100%;
  height: 510px;
  margin-right: 90px;
  z-index: 0;
}
@media print, screen and (max-width: 98.12375em) {
  .contact__map {
    margin-right: 60px;
  }
}
@media screen and (max-width: 63.99875em) {
  .contact__map {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.contact__content {
  width: 300px;
  padding-top: 80px;
}
@media screen and (max-width: 63.99875em) {
  .contact__content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-top: 0;
    grid-column-gap: 40px;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .contact__content {
    display: block;
  }
}

.contact__address-field {
  margin-bottom: 40px;
}
@media screen and (max-width: 63.99875em) {
  .contact__address-field {
    width: 100%;
  }
}

.contact__address-field__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .contact__address-field__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.contact__address-field__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 13px;
}

.contact__address-field__rue,
.contact__address-field__postal-code,
.contact__address-field__phone,
.contact__address-field__fax,
.contact__address-field__address {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .contact__address-field__rue,
  .contact__address-field__postal-code,
  .contact__address-field__phone,
  .contact__address-field__fax,
  .contact__address-field__address {
    font-size: 16px;
    line-height: 21px;
  }
}
.contact__address-field__rue,
.contact__address-field__postal-code,
.contact__address-field__phone,
.contact__address-field__fax,
.contact__address-field__address {
  color: #1A1A1A;
  color: var(--text);
  display: block;
  transition: color 0.2s ease-in;
}

.contact__address-field__phone:hover,
.contact__address-field__fax:hover {
  color: #285F74;
  color: var(--text-primary-dark);
}

.map__marker-icon {
  background-size: 100%;
  position: relative;
  background-color: #285F74;
  background-color: var(--button-primary-dark);
  padding: 6px;
  border-radius: 50%;
}
.map__marker-icon:before {
  display: block;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
}

.downloads {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .downloads {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .downloads {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .downloads {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.downloads {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .downloads {
    margin-bottom: 88px;
  }
}

@media screen and (min-width: 75em) {
  .downloads__inner {
    padding-left: 140px;
  }
}

.downloads__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .downloads__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .downloads__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.downloads__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 49px;
}

.downloads__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 36px;
  gap: 36px;
  padding-left: 18px;
  max-width: 1000px;
  align-items: flex-start;
}
@media screen and (max-width: 63.99875em) {
  .downloads__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .downloads__list {
    grid-template-columns: 1fr;
  }
}

.downloads__item {
  display: flex;
  align-items: center;
  min-width: 144px;
}

.downloads__link {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .downloads__link {
    font-size: 16px;
    line-height: 21px;
  }
}
.downloads__link {
  color: #285F74;
  color: var(--text-primary-dark);
  display: flex;
  align-items: flex-start;
  border-radius: 40px;
  padding: 9px 26px;
  border: 2px solid transparent;
  transition: background 0.2s ease-in-out;
}
.downloads__link:hover, .downloads__link:focus {
  background: rgba(40,95,116,0.10196);
  background: var(--background-download-hover);
}
.downloads__link:active {
  background: rgba(40,95,116,0.10196);
  background: var(--background-download-hover);
  border: 2px solid #285F74;
  border: 2px solid var(--background-primary-dark);
}
.theme--dark .downloads__link:active {
  border: 2px solid #fff;
}

.downloads__item__icon {
  width: 16px;
  height: 16px;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-right: 10px;
  flex-shrink: 0;
  margin-top: 2px;
}

.gallery-text {
  max-width: 75.5rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .gallery-text {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .gallery-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .gallery-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery-text {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .gallery-text {
    margin-bottom: 88px;
  }
}
.gallery-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-text__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  max-width: 750px;
  grid-gap: 90px;
  gap: 90px;
  margin-bottom: 44px;
}
@media screen and (max-width: 63.99875em) {
  .gallery-text__content {
    grid-gap: 40px;
    gap: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-text__content {
    display: flex;
    flex-direction: column-reverse;
    grid-gap: 20px;
    gap: 20px;
    max-width: 530px;
    margin-bottom: 20px;
  }
}

.gallery-text__content__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-text__content__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.gallery-text__content__text {
  color: #1A1A1A;
  color: var(--text);
  padding-left: 40px;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-text__content__text {
    max-width: 600px;
    margin-right: 0;
    padding-left: 0;
  }
}

.gallery-text__content__media {
  --width: 362;
  --height: 239;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-text__content__media {
    width: 100%;
  }
}

.gallery-text__content__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.gallery-text__media {
  display: grid;
  grid-template-columns: 55% 40%;
  grid-gap: 5%;
  gap: 5%;
  max-width: 967px;
  width: 100%;
}
@media print, screen and (max-width: 29.99875em) {
  .gallery-text__media {
    grid-template-columns: 1fr;
    grid-gap: 20px;
    gap: 20px;
  }
}

.gallery-text__media__wrapper--1 {
  --width: 536;
  --height: 354;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}

.gallery-text__media__wrapper--2 {
  --width: 386;
  --height: 254;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
  margin: auto 0;
}

.gallery-text__media__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.gallery {
  max-width: 83rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .gallery {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .gallery {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .gallery {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .gallery {
    margin-bottom: 88px;
  }
}
.gallery {
  margin-top: 75px;
}

.gallery-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px;
  gap: 16px;
}
@media print, screen and (max-width: 74.99875em) {
  .gallery-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 63.99875em) {
  .gallery-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .gallery-list {
    grid-template-columns: 1fr;
  }
}

.gallery-list__item {
  width: 100%;
  height: 260px;
  background: #285F74;
  background: var(--background-primary-dark);
  cursor: pointer;
}

.gallery-list__item__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}

.gallery-block__modal {
  z-index: 200;
  background-color: rgba(93, 93, 93, 0.8);
  background-color: var(--search-background);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s 0.4s ease;
}
.gallery-block__modal.is-active {
  transition: opacity 0.4s ease, visibility 0s ease;
  opacity: 1;
  visibility: visible;
}

.gallery-block__modal__close {
  height: 42px;
  width: 42px;
  position: fixed;
  top: 22px;
  right: 20px;
  background: #285F74;
  background: var(--background-primary-dark);
  border-radius: 50%;
  z-index: 1;
}
.gallery-block__modal__close:hover {
  cursor: pointer;
}
.theme--dark .gallery-block__modal__close {
  background: #285F74;
  background: var(--primary-dark);
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-block__modal__close {
    top: 14px;
    right: 32px;
  }
}
@media screen and (max-width: 63.99875em) {
  .gallery-block__modal__close {
    top: 10px;
    right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .gallery-block__modal__close {
    top: 8px;
    right: 15px;
  }
}

.gallery-block__modal__slider {
  margin: auto;
  transform: translateY(-50px);
  transition: transform 0.4s ease;
  width: 100%;
  max-width: 1430px;
  overflow: hidden;
}
@media print, screen and (max-width: 98.12375em) {
  .gallery-block__modal__slider {
    overflow: unset;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .gallery-block__modal__slider {
    width: 80%;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-block__modal__slider {
    width: 90%;
  }
}
.gallery-block__modal.is-active .gallery-block__modal__slider {
  transform: translateY(0);
}

.gallery-block__modal__slider__media-wrapper {
  width: 100%;
  min-height: 70vh;
}

.gallery-block__modal__slider__media {
  position: relative;
  margin-right: 0;
  max-height: 70vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gallery-block__modal__slider__picture {
  margin: 0 auto;
  max-height: 65vh;
  max-width: 1200px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.4s;
  opacity: 0;
}
@media print, screen and (max-width: 74.99875em) {
  .gallery-block__modal__slider__picture {
    max-width: 100%;
  }
}

.gallery-block__modal__slider__picture.flickity-lazyloaded,
.gallery-block__modal__slider__picture.flickity-lazyerror {
  opacity: 1;
}

.gallery-block__modal-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-block__modal-text {
    font-size: 16px;
    line-height: 21px;
  }
}
.gallery-block__modal-text {
  color: #fff;
  margin-top: 30px;
  width: 90%;
  max-width: 800px;
  text-align: center;
}
@media screen and (max-width: 63.99875em) {
  .gallery-block__modal-text {
    font-size: 16px;
    line-height: 21px;
    width: 90%;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .gallery-block__modal-text {
    width: calc(100% - 120px);
    margin: 30px auto 0;
  }
}

.gallery-block__modal-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.hero-block {
  max-width: 108.75rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .hero-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .hero-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .hero-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.hero-block {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .hero-block {
    margin-bottom: 88px;
  }
}

.hero__media-1 {
  grid-area: hero__media-1;
  max-width: 398px;
}

.hero__media-1__inner {
  --width: 398;
  --height: 600;
  width: 100%;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .hero__media-1__inner {
    --width: 288;
    --height: 435;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .hero__media-1__inner {
    --width: 181;
    --height: 275;
  }
}

.hero__media-2 {
  grid-area: hero__media-2;
  max-width: 536px;
}

.hero__media-2__inner {
  --width: 536;
  --height: 354;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .hero__media-2__inner {
    --width: 394;
    --height: 260;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .hero__media-2__inner {
    --width: 172;
    --height: 114;
  }
}

.hero__media-3 {
  grid-area: hero__media-3;
  max-width: 674px;
}

.hero__media-3__inner {
  --width: 674;
  --height: 445;
  max-width: 674px;
  width: 100%;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media print, screen and (max-width: 74.99875em) {
  .hero__media-3__inner {
    --width: 357;
    --height: 235;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .hero__media-3__inner {
    --width: 172;
    --height: 114;
  }
}

.hero__media__image-wrapper {
  position: relative;
  overflow: hidden;
}
.hero__media__image-wrapper::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.hero__media__image-wrapper.is-in-view::after {
  transform: translateY(100%);
}

.hero__media__image-wrapper-2 {
  position: relative;
  overflow: hidden;
}
.hero__media__image-wrapper-2::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0.3s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.hero__media__image-wrapper-2.is-in-view::after {
  transform: translateY(100%);
}

.hero__image--1,
.hero__image--2,
.hero__image--3 {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.hero__text {
  grid-area: hero__text;
}

.hero__text__inner {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .hero__text__inner {
    font-size: 16px;
    line-height: 21px;
  }
}
.hero__text__inner {
  display: flex;
  flex-direction: column;
  color: #1A1A1A;
  color: var(--text);
  max-width: 690px;
  width: 100%;
  padding-top: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .hero__text__inner {
    max-width: 388px;
    margin-left: -40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .hero__text__inner {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    padding-top: 0;
  }
}

.hero__text__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .hero__text__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.hero__text__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 12px;
}
@media print, screen and (max-width: 44.99875em) {
  .hero__text__title {
    text-align: center;
  }
}

.hero__scroll-button {
  grid-area: hero__scroll-button;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media print, screen and (max-width: 98.12375em) {
  .hero__scroll-button {
    margin-left: 0;
  }
}

@media screen and (min-width: 75em) {
  .hero-block {
    display: grid;
    grid-gap: 60px 40px;
    gap: 60px 40px;
    grid-template-areas: "hero__media-1 hero__text hero__text" "hero__media-1 hero__scroll-button hero__media-2" "hero__media-3 . .";
    grid-template-columns: 40% 20% 40%;
  }
  .hero__media-1 {
    margin-left: 20%;
  }
}
@media print, screen and (max-width: 74.99875em) {
  .hero-block {
    display: grid;
    grid-gap: 40px 20px;
    gap: 40px 20px;
    grid-template-areas: "hero__media-1 hero__text" "hero__media-1 hero__media-2" "hero__media-3 ." "hero__scroll-button hero__scroll-button";
    grid-template-columns: 50% 50%;
  }
  .hero__media-1 {
    margin-right: 70px;
  }
  .hero__scroll-button {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .hero-block {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    grid-template-areas: "hero__media-1 hero__media-2" "hero__media-1 hero__media-3" "hero__text hero__text" "hero__scroll-button hero__scroll-button";
  }
  .hero__media-1 {
    margin-right: 0;
  }
  .hero__media-2 {
    padding-top: 56px;
  }
  .hero__text {
    margin-top: 40px;
  }
  .hero__scroll-button {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.highlight-block {
  scroll-margin: 30px;
  position: relative;
  margin-bottom: 80px;
}
.highlight-block:after {
  content: "";
  display: block;
  background: #fff;
  background: var(--background-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.highlight__wrapper {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .highlight__wrapper {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .highlight__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .highlight__wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.highlight__wrapper {
  margin-left: 0;
}

.highlight__inner {
  display: flex;
  align-items: center;
  background: #fff;
  background: var(--background-white);
  padding: 80px;
}
@media print, screen and (max-width: 74.99875em) {
  .highlight__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .highlight__inner {
    padding: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .highlight__inner {
    margin-right: 5%;
  }
  .highlight--right .highlight__inner {
    margin-left: 5%;
    margin-right: 0;
  }
}

@media print, screen and (max-width: 74.99875em) {
  .highlight-text__media {
    margin-bottom: 20px;
  }
}

.highlight__left {
  margin-right: 96px;
  max-width: 578px;
}
@media print, screen and (max-width: 74.99875em) {
  .highlight__left {
    margin-right: 0;
    margin-bottom: 10px;
    max-width: unset;
  }
}

.highlight__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  line-height: 42px;
}
@media print, screen and (max-width: 74.99875em) {
  .highlight__title {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 63.99875em) {
  .highlight__title {
    font-size: 28px;
    line-height: 36px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .highlight__title {
    font-size: 24px;
    line-height: 31px;
  }
}
.highlight__title {
  margin-bottom: 22px;
  color: #285F74;
  color: var(--text-primary-dark);
}
.highlight__title-wrapper .highlight__title {
  margin-bottom: 0;
}

.highlight__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.highlight__text {
  margin-bottom: 18px;
  color: #1A1A1A;
  color: var(--text);
}

.highlight__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 403px;
}
@media print, screen and (max-width: 74.99875em) {
  .highlight__right {
    max-width: unset;
  }
}

.highlight-block.highlight--right {
  position: relative;
}
.highlight-block.highlight--right:after {
  content: "";
  display: block;
  background: #fff;
  background: var(--background-white);
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.highlight-block.highlight--right .highlight__wrapper {
  margin-left: auto;
}

.home-hero {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-hero {
    margin-bottom: 88px;
  }
}
.home-hero {
  position: relative;
}
@media screen and (min-width: 98.125em) {
  .home-hero {
    min-height: 740px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero:before {
    content: "";
    background: #00A0AF;
    background: var(--background-primary);
    position: absolute;
    top: 30px;
    right: 30px;
    width: calc(100% - 30px);
    height: calc(100% - 230px);
    clip-path: polygon(0% 0%, 0 100%, 80% 100%, 100% 0%);
    z-index: -1;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero:before {
    top: -10px;
    height: calc(100% - 158px);
    clip-path: polygon(0% 0%, 0 100%, 0 100%, 100% 0%);
    max-width: 2000px;
    margin-right: 20%;
  }
}

.home-hero__inner {
  position: relative;
}
.home-hero__inner:before {
  content: "";
  position: absolute;
  top: 48px;
  right: 50%;
  width: 4080px;
  height: 100%;
  background: #00A0AF;
  background: var(--background-primary);
  clip-path: polygon(0% 0%, 0 100%, 90% 100%, 100% 0%);
  z-index: -1;
}
@media screen and (max-width: 63.99875em) {
  .home-hero__inner:before {
    display: none;
  }
}

.home-hero__media-wrapper {
  grid-area: home-hero__media-wrapper;
  position: relative;
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__media-wrapper {
    width: calc(100% - 22px);
  }
}

.home-hero__media {
  position: relative;
  margin-left: 140px;
  max-width: 735px;
}
@media print, screen and (max-width: 124.99875em) {
  .home-hero__media {
    margin-left: 80px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero__media {
    margin-left: 0;
  }
}

.home-hero__image-wrapper {
  --width: 735;
  --height: 371;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
}
@media screen and (max-width: 63.99875em) {
  .home-hero__image-wrapper {
    --width: 590;
    --height: 298;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__image-wrapper {
    --width: 353;
    --height: 178;
  }
}

.home-hero__image-wrapper__in-view {
  position: relative;
  overflow: hidden;
}
.home-hero__image-wrapper__in-view::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.home-hero__image-wrapper__in-view.is-in-view::after {
  transform: translateY(100%);
}

.home-hero__image-wrapper__in-view-2 {
  position: relative;
  overflow: hidden;
}
.home-hero__image-wrapper__in-view-2::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0.3s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.home-hero__image-wrapper__in-view-2.is-in-view::after {
  transform: translateY(100%);
}

.home-hero__image-wrapper:first-child {
  margin-right: 20%;
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__image-wrapper:first-child {
    margin-right: 30px;
  }
}

.home-hero__image-wrapper:last-child {
  margin-left: 20%;
  margin-top: -60px;
}
@media screen and (max-width: 63.99875em) {
  .home-hero__image-wrapper:last-child {
    margin-top: -30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__image-wrapper:last-child {
    margin-left: 30px;
  }
}

.home-hero__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.home-hero__content {
  grid-area: home-hero__content;
}

.home-hero__content__inner {
  padding-top: 114px;
  padding-right: 20px;
}
@media print, screen and (max-width: 98.12375em) {
  .home-hero__content__inner {
    padding-top: 60px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero__content__inner {
    padding-top: 0;
  }
}

.home-hero__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-hero__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.home-hero__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 26px;
  max-width: 598px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-hero__title {
    max-width: 545px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero__title {
    font-size: 28px;
    line-height: 36px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .home-hero__title {
    color: #fff;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__title {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 10px;
    padding-left: 37px;
  }
}

.home-hero__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 38px;
  line-height: 48px;
}
.home-hero__subtitle {
  color: #00A0AF;
  color: var(--text-primary);
  max-width: 690px;
  padding-left: 70px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-hero__subtitle {
    font-size: 32px;
    line-height: 40px;
    max-width: 540px;
    padding-left: 40px;
  }
}
@media print, screen and (max-width: 74.99875em) and (max-width: 74.99875em) {
  .home-hero__subtitle {
    font-size: 21px;
    line-height: 28px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero__subtitle {
    color: #fff;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__subtitle {
    font-size: 24px;
    line-height: 31px;
    color: #00A0AF;
    color: var(--text-primary);
    padding-left: 54px;
  }
}

.scroll-button {
  grid-area: scroll-button;
}
@media screen and (max-width: 63.99875em) {
  .scroll-button {
    margin: 0 auto;
  }
}

@media print, screen and (min-width: 64em) {
  .home-hero__inner {
    margin-top: 75px;
    display: grid;
    grid-template-areas: "home-hero__media-wrapper  home-hero__content" "home-hero__media-wrapper  scroll-button";
    grid-template-columns: 1fr 1fr;
    grid-gap: 76px;
    gap: 76px;
  }
}
@media screen and (max-width: 63.99875em) {
  .home-hero__inner {
    max-width: 51.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 75px;
    display: grid;
    grid-template-areas: "home-hero__media-wrapper" "home-hero__content" "scroll-button";
    grid-template-columns: 1fr;
    grid-gap: 66px;
    gap: 66px;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .home-hero__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .home-hero__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 63.99875em) and (max-width: 29.99875em) {
  .home-hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-hero__inner {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    max-width: 590px;
    margin-top: 63px;
    display: grid;
    grid-template-areas: "home-hero__media-wrapper" "home-hero__content" "scroll-button";
    grid-template-columns: 1fr;
    grid-gap: 50px;
    gap: 50px;
  }
}
@media screen and (max-width: 29.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .home-hero__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (max-width: 29.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .home-hero__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) and (max-width: 29.99875em) {
  .home-hero__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-news {
  max-width: 115rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .home-news {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .home-news {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-news {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-news {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-news {
    margin-bottom: 88px;
  }
}
.home-news {
  scroll-margin: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-news__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-news__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-news__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.home-news__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 40px;
  text-align: center;
}

.home-news__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 85px;
  gap: 85px;
  width: 100%;
}
@media print, screen and (max-width: 74.99875em) {
  .home-news__items {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
}

.home-partners {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .home-partners {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .home-partners {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.home-partners {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-partners {
    margin-bottom: 88px;
  }
}
.home-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-partners__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-partners__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.home-partners__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 40px;
  text-align: center;
}

.home-partners__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-partners__items {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 27px;
    gap: 27px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .home-partners__items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners__items {
    grid-template-columns: 1fr;
  }
}

.home-partners__items--4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 74.99875em) {
  .home-partners__items--4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 27px;
    gap: 27px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .home-partners__items--4 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners__items--4 {
    grid-template-columns: 1fr;
  }
}

.home-partners__items--3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 44.99875em) {
  .home-partners__items--3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners__items--3 {
    grid-template-columns: 1fr;
  }
}

.home-partners__items--2 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 29.99875em) {
  .home-partners__items--2 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}

.home-partners__items--1 {
  grid-template-columns: 1fr;
}

.image-text {
  max-width: 97.5rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .image-text {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .image-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .image-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.image-text {
  scroll-margin: 30px;
  margin-bottom: 80px;
  display: flex;
  justify-content: flex-end;
}
.image-text.is-hero {
  max-width: 115.25rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .image-text.is-hero {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .image-text.is-hero {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .image-text.is-hero {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.image-text.is-hero {
  justify-content: center;
}
.image-text.is-full-width {
  max-width: 1880px;
  justify-content: flex-start;
}

.image-text__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 88px;
  gap: 88px;
  max-width: 883px;
  width: 100%;
}
@media screen and (max-width: 63.99875em) {
  .image-text__inner {
    grid-gap: 40px;
    gap: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .image-text__inner {
    grid-template-columns: 1fr;
  }
}
.is-hero .image-text__inner {
  max-width: 1126px;
  grid-gap: 154px;
  gap: 154px;
}
@media screen and (max-width: 63.99875em) {
  .is-hero .image-text__inner {
    grid-gap: 40px;
    gap: 40px;
  }
}
.is-landscape .image-text__inner {
  max-width: 1200px;
  grid-gap: 60px;
  gap: 60px;
}
.is-full-width .image-text__inner {
  max-width: 1258px;
  grid-gap: 90px;
  gap: 90px;
}
@media screen and (max-width: 63.99875em) {
  .is-full-width .image-text__inner {
    grid-gap: 40px;
    gap: 40px;
  }
}

@media screen and (max-width: 63.99875em) {
  .image-text__media-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

.image-text__media {
  --width: 398;
  --height: 600;
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
  position: relative;
  overflow: hidden;
}
.image-text__media::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.image-text__media.is-in-view::after {
  transform: translateY(100%);
}
.is-full-width .image-text__media {
  width: 100%;
  height: 445px;
  background: #285F74;
  background: var(--background-primary-dark);
}
.is-landscape .image-text__media {
  --width: 600;
  --height: 398;
}
@media print, screen and (max-width: 44.99875em) {
  .image-text__media {
    width: 100%;
  }
}

.image-text > figure {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: calc(100% - 40px);
  position: absolute;
  top: 0;
  left: 0;
}

.image-block > figure {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: relative;
}

figcaption {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 21px;
}
figcaption {
  color: #1A1A1A;
  color: var(--text);
  position: absolute;
  bottom: 0;
}
.image-block figcaption {
  bottom: 40px;
}
.image-text figcaption {
  padding: 10px;
}

.image-text__media__image {
  --caption-height: 40px;
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.image-text__media__image--with-caption {
  height: calc(100% - var(--caption-height));
}

.image-text__content {
  padding-top: 80px;
}
@media screen and (max-width: 63.99875em) {
  .image-text__content {
    padding-top: 0;
    max-width: 530px;
    width: 100%;
    margin: 0 auto;
  }
}
.is-hero .image-text__content {
  padding-top: 20px;
}
@media screen and (max-width: 63.99875em) {
  .is-hero .image-text__content {
    padding-top: 0;
  }
}
.is-full-width .image-text__content {
  padding-top: 70px;
}
@media screen and (max-width: 63.99875em) {
  .is-full-width .image-text__content {
    padding-top: 0;
  }
}

.image-text__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .image-text__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.image-text__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 12px;
}
.is-full-width .image-text__title {
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .is-full-width .image-text__title {
    font-size: 21px;
    line-height: 28px;
  }
}

.image-text__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .image-text__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.image-text__text {
  color: #1A1A1A;
  color: var(--text);
  word-break: break-word;
}

.image-text.is-inverse .image-text__content {
  order: 1;
}
.image-text.is-inverse .image-text__media {
  order: 2;
}

.image-block {
  scroll-margin: 30px;
  position: relative;
  margin-bottom: 80px;
}
.image-block:not(.image--without-frame):after {
  content: "";
  display: block;
  background: #fff;
  background: var(--background-white);
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.image__wrapper {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .image__wrapper {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .image__wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .image__wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.image-block__image {
  max-height: 600px;
  min-width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.image__inner {
  width: 100%;
  background: #fff;
  background: var(--background-white);
  padding: 80px;
}
.image--without-frame .image__inner {
  background: unset;
}
@media print, screen and (max-width: 44.99875em) {
  .image__inner {
    padding: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .image__inner {
    margin-right: 5%;
  }
  .image--right .image__inner {
    margin-left: 5%;
    margin-right: 0;
  }
}

.image__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 403px;
}
@media print, screen and (max-width: 74.99875em) {
  .image__right {
    max-width: unset;
  }
}

.image-block.image--right:not(.image--without-frame) {
  position: relative;
}
.image-block.image--right:not(.image--without-frame):after {
  content: "";
  display: block;
  background: #fff;
  background: var(--background-white);
  position: absolute;
  top: 0;
  right: 0;
  left: unset;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.kpis {
  display: flex;
  justify-content: flex-start;
  position: relative;
  min-height: 685px;
  margin-bottom: 80px;
}

.kpis__inner {
  display: flex;
  align-items: center;
  max-width: 1504px;
  min-height: 505px;
  background: #fff;
  background: var(--background-white);
  padding: 80px 140px 100px 0;
}

.kpis__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 505px;
}
.kpis__item.kpis__item--2, .kpis__item.kpis__item--4 {
  margin-left: -45px;
}
.kpis__item.kpis__item--3 {
  margin-left: -12px;
}

.kpis__number-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}

.kpis__number-wrapper__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  padding: 40px 60px;
}
.kpis__item--odd .kpis__number-wrapper__inner {
  background: #00A0AF;
  background: var(--primary);
}
.kpis__item--even .kpis__number-wrapper__inner {
  background: #285F74;
  background: var(--background-primary-dark);
  opacity: 0.8;
  z-index: 1;
}
.kpis__item--1 .kpis__number-wrapper__inner {
  padding: 74px 68px;
}
.kpis__item--2 .kpis__number-wrapper__inner {
  padding: 110px 77px;
}
.kpis__item--4 .kpis__number-wrapper__inner {
  padding: 138px 116px;
}

.kpis__number {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 156px;
  color: #fff;
  position: relative;
}
.kpis__number:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -160px;
  transform: translateX(-50%);
  height: 160px;
  width: 1px;
  background: #1A1A1A;
  background: var(--text);
}
@media print, screen and (max-width: 74.99875em) {
  .kpis__number {
    font-size: 100px;
  }
}
@media screen and (max-width: 63.99875em) {
  .kpis__number {
    font-size: 52px;
  }
}

.kpis__label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.kpis__label {
  color: #1A1A1A;
  color: var(--text);
}

.mission-vision {
  scroll-margin: 30px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 80px;
}

.mission-vision__inner {
  display: flex;
  background: #285F74;
  background: var(--button-primary-dark);
  padding: 80px 140px;
  margin-left: 20%;
}
@media screen and (max-width: 63.99875em) {
  .mission-vision__inner {
    flex-direction: column;
    padding: 60px 76px 60px 110px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .mission-vision__inner {
    padding: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .mission-vision__inner {
    margin-left: 10%;
  }
}

.mission-vision__content {
  max-width: 536px;
}
.mission-vision__content:first-child {
  margin-right: 140px;
}
@media print, screen and (max-width: 74.99875em) {
  .mission-vision__content:first-child {
    margin-right: 70px;
  }
}
@media screen and (max-width: 63.99875em) {
  .mission-vision__content:first-child {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .mission-vision__content:first-child {
    margin-bottom: 30px;
  }
}

.mission-vision__subtitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 39px;
}
@media screen and (max-width: 63.99875em) {
  .mission-vision__subtitle {
    font-size: 21px;
    line-height: 28px;
  }
}
.mission-vision__subtitle {
  color: #fff;
  margin-bottom: 16px;
}
@media print, screen and (max-width: 44.99875em) {
  .mission-vision__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
  }
}

.mission-vision__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .mission-vision__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .mission-vision__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.mission-vision__title {
  color: #fff;
  line-height: 70px;
}
@media print, screen and (max-width: 74.99875em) {
  .mission-vision__title {
    font-size: 36px;
    line-height: 52px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .mission-vision__title {
    font-size: 28px;
    line-height: 46px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .mission-vision__title {
    font-size: 24px;
    line-height: 36px;
  }
}

.newsletter {
  max-width: 91.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .newsletter {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .newsletter {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .newsletter {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.newsletter {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .newsletter {
    margin-bottom: 88px;
  }
}
.newsletter {
  display: grid;
  grid-template-columns: 40% 50%;
  grid-gap: 12%;
  gap: 12%;
}
@media screen and (max-width: 63.99875em) {
  .newsletter {
    grid-gap: 40px;
    gap: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .newsletter {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 63.99875em) {
  .newsletter__media-wrapper {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

.newsletter__media {
  --width: 398;
  --height: 600;
  background: #285F74;
  background: var(--background-primary-dark);
  height: 0;
  flex-shrink: 0;
  padding-top: calc(var(--height) / var(--width) * 100%);
  position: relative;
  position: relative;
  overflow: hidden;
}
.newsletter__media::after {
  content: "";
  background-color: #285F74;
  background-color: var(--in-view-background);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform 1s 0s cubic-bezier(0.65, 0.005, 0.35, 0.995);
}
.newsletter__media.is-in-view::after {
  transform: translateY(100%);
}
.newsletter__image {
  height: 100%;
  font-family: "object-fit: cover, object-position: center";
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.newsletter__content {
  max-width: 674px;
  width: 100%;
  padding-top: 70px;
}
@media screen and (max-width: 63.99875em) {
  .newsletter__content {
    padding-top: 0;
    max-width: 100%;
  }
}

.newsletter__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.newsletter__text {
  max-width: 536px;
  margin-bottom: 64px;
  color: #1A1A1A;
  color: var(--text);
}

.partners {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .partners {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .partners {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .partners {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.partners {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .partners {
    margin-bottom: 88px;
  }
}
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.partners__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .partners__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .partners__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.partners__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 40px;
  text-align: center;
}

.partners__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .partners__items {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 27px;
    gap: 27px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .partners__items {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .partners__items {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}

.partners__items--4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .partners__items--4 {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 27px;
    gap: 27px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .partners__items--4 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .partners__items--4 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}

.partners__items--3 {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 44.99875em) {
  .partners__items--3 {
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .partners__items--3 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}

.partners__items--2 {
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px;
  gap: 22px;
}
@media print, screen and (max-width: 29.99875em) {
  .partners__items--2 {
    grid-template-columns: 1fr;
    grid-gap: 10px;
    gap: 10px;
  }
}

.partners__items--1 {
  grid-template-columns: 1fr;
}

.programs {
  max-width: 132.5rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .programs {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .programs {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .programs {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.programs {
  scroll-margin: 30px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 80px;
}

.programs__tabs {
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .programs__tabs {
    padding-left: 10%;
  }
}

.programs__tabs__nav {
  display: flex;
  overflow-x: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 63.99875em) {
  .programs__tabs__nav {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10%;
  }
}

.programs__tabs__nav__item {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .programs__tabs__nav__item {
    font-size: 16px;
    line-height: 21px;
  }
}
.programs__tabs__nav__item {
  color: #1A1A1A;
  color: var(--text);
  padding: 13px 20px;
  border-radius: 70px;
  display: inline-flex;
  flex-shrink: 0;
  margin-right: 10px;
  border: 2px solid transparent;
  transition: background 0.2s ease-in, color 0.2s ease-in, border 0.2s ease-in;
}
.programs__tabs__nav__item.is-active {
  color: #fff;
  background: #285F74;
  background: var(--background-primary-dark);
}
.theme--dark .programs__tabs__nav__item.is-active {
  border: 1px solid #285F74;
  border: 1px solid var(--button-primary-dark);
  background: #285F74;
  background: var(--button-primary-dark);
}
.programs__tabs__nav__item:hover {
  border-color: #285F74;
  border-color: var(--button-primary-dark);
  background: rgba(40,95,116,0.30196);
  background: var(--button-hover);
}

.programs__content-inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 24px;
  gap: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(600px);
  transition: transform 0.2s ease, opacity 0.4s ease;
  margin-bottom: 24px;
}
.programs__content-inner.is-active {
  opacity: 1;
  transform: translateY(0);
}
@media print, screen and (max-width: 98.12375em) {
  .programs__content-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media print, screen and (max-width: 44.99875em) {
  .programs__content-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

.team {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .team {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .team {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .team {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.team {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .team {
    margin-bottom: 88px;
  }
}

.team__subgroup {
  margin-bottom: 110px;
}
@media screen and (min-width: 75em) {
  .team__subgroup {
    margin-bottom: 185px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .team__subgroup {
    max-width: 300px;
    margin: 0 auto 80px;
  }
}

.team__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .team__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .team__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.team__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 52px;
  text-align: center;
}

.team__name {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .team__name {
    font-size: 21px;
    line-height: 28px;
  }
}
.team__name {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 80px;
  text-align: center;
}
@media print, screen and (max-width: 29.99875em) {
  .team__name {
    margin-bottom: 40px;
  }
}

.team__members {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 50px 130px;
  gap: 50px 130px;
}
@media print, screen and (max-width: 74.99875em) {
  .team__members {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
}

.two-column-content-block {
  margin-bottom: 140px;
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-content-block {
    margin-bottom: 80px;
  }
}

.two-column-content {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-bottom: 60px;
}
@media print, screen and (max-width: 44.99875em) {
  .two-column-content {
    display: block;
  }
}

.two-column-content__title {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .two-column-content__title {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .two-column-content__title {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .two-column-content__title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.two-column-content__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 52px;
  line-height: 60px;
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-content__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .two-column-content__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.two-column-content__title {
  max-width: 1880px;
  color: #285F74;
  color: var(--text-primary-dark);
  text-align: center;
  margin-bottom: 55px;
}

.two-column-content__inner {
  display: grid;
  grid-template-columns: 30% 70%;
  width: 100%;
}
.two-column-content__inner.is-reverse {
  grid-template-columns: 58% 42%;
  max-width: calc(100vw - 140px);
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-content__inner.is-reverse {
    grid-template-columns: 58% 35%;
    max-width: calc(100vw - 40px);
  }
}
@media screen and (max-width: 63.99875em) {
  .two-column-content__inner.is-reverse {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .two-column-content__inner.is-reverse {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .two-column-content__inner.is-reverse {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 63.99875em) and (max-width: 29.99875em) {
  .two-column-content__inner.is-reverse {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 63.99875em) {
  .two-column-content__inner {
    max-width: 101.875rem;
    padding-left: 120px;
    padding-right: 120px;
    margin-right: auto;
    margin-left: auto;
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 45em) and (max-width: 63.99875em) {
  .two-column-content__inner {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media screen and (max-width: 63.99875em) and (min-width: 30em) and (max-width: 44.99875em) {
  .two-column-content__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 63.99875em) and (max-width: 29.99875em) {
  .two-column-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 98.125em) and (max-width: 124.99875em) {
  .page-template-page-gallery .two-column-content__inner {
    grid-template-columns: 20% 80%;
  }
}

@media screen and (max-width: 63.99875em) {
  .two-column-content__column {
    margin-bottom: 40px;
  }
}

.two-column-content__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  gap: 100px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 130px 45px 0;
  width: 100%;
}
@media print, screen and (max-width: 98.12375em) {
  .two-column-content__content {
    padding: 130px 30px 0;
    grid-template-columns: 1fr;
    grid-gap: 50px;
    gap: 50px;
  }
}
@media screen and (max-width: 63.99875em) {
  .two-column-content__content {
    padding: 0;
  }
}
.two-column-content-block--news .two-column-content__content {
  width: unset;
  padding-top: 0;
  grid-gap: 80px;
  gap: 80px;
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-content-block--news .two-column-content__content {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .two-column-content-block--gallery .two-column-content__content {
    padding: 0;
  }
}

.two-column-content__footer {
  width: 100%;
}

.two-column-text {
  max-width: 79.375rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .two-column-text {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .two-column-text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .two-column-text {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.two-column-text {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-text {
    margin-bottom: 88px;
  }
}
.two-column-text {
  scroll-margin: 30px;
}
@media print, screen and (max-width: 44.99875em) {
  .two-column-text {
    max-width: 590px;
  }
}
@media print, screen and (min-width: 64em) {
  .two-column-text.only-one-column {
    max-width: 840px;
  }
}

.two-column-text__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (max-width: 74.99875em) {
  .two-column-text__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .two-column-text__title {
    font-size: 24px;
    line-height: 26px;
  }
}
.two-column-text__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 21px;
  position: relative;
}
.only-one-column .two-column-text__title {
  cursor: pointer;
}
.only-one-column .two-column-text__title:before {
  content: "";
  display: block;
  position: absolute;
  content: "";
  background: url(svg/bulletpoint.svg) no-repeat;
  transform: rotate(90deg);
  background-size: 100%;
  width: 19px;
  height: 26px;
  right: 0;
  bottom: 0;
  transition: transform 0.25s ease;
}
@media print, screen and (max-width: 29.99875em) {
  .only-one-column .two-column-text__title:before {
    width: 14px;
    margin-top: 2px;
  }
}
.only-one-column.expanded .two-column-text__title:before {
  transform: rotate(-90deg);
}

.two-column-text__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 86px;
  gap: 86px;
}
.two-column-text__inner.only-one-column {
  grid-template-columns: 1fr;
}
@media screen and (max-width: 63.99875em) {
  .two-column-text__inner {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    gap: 40px;
    max-width: 600px;
  }
}

.two-column-text__columm {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .two-column-text__columm {
    font-size: 16px;
    line-height: 21px;
  }
}
.two-column-text__columm {
  color: #1A1A1A;
  color: var(--text);
}
.only-one-column .two-column-text__columm {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}
.only-one-column.expanded .two-column-text__columm {
  max-height: 1000px;
  opacity: 1;
}

.video-block {
  max-width: 108.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .video-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .video-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .video-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.video-block {
  margin-bottom: 110px;
  margin-top: 75px;
}
.video-block-gallery .video-block {
  max-width: 100.25rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .video-block-gallery .video-block {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .video-block-gallery .video-block {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .video-block-gallery .video-block {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.video__wrapper {
  display: block;
  position: relative;
}
.video__wrapper.video__inner--with-text {
  display: grid;
  grid-template-columns: 64% 36%;
  grid-gap: 150px;
  gap: 150px;
  align-items: center;
  max-width: 1502px;
}
@media print, screen and (max-width: 98.12375em) {
  .video__wrapper.video__inner--with-text {
    grid-gap: 70px;
    gap: 70px;
  }
}
@media screen and (max-width: 63.99875em) {
  .video__wrapper.video__inner--with-text {
    grid-gap: 30px;
    gap: 30px;
  }
}
@media print, screen and (max-width: 44.99875em) {
  .video__wrapper.video__inner--with-text {
    grid-template-columns: 1fr;
  }
}

.video__text-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .video__text-title {
    font-size: 21px;
    line-height: 28px;
  }
}
.video__text-title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 22px;
}

.video__text {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .video__text {
    font-size: 16px;
    line-height: 21px;
  }
}
.video__text {
  color: #1A1A1A;
  color: var(--text);
  max-width: 398px;
}

/*for gallery post type*/
.video__description {
  max-width: 669px;
  padding-top: 40px;
  padding-left: 140px;
}
@media print, screen and (max-width: 44.99875em) {
  .video__description {
    padding-left: 0;
  }
}

.video__description__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.video__description__title {
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 10px;
}

.video__description__content {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .video__description__content {
    font-size: 16px;
    line-height: 21px;
  }
}
.video__description__content {
  color: #1A1A1A;
  color: var(--text);
  margin-bottom: 40px;
}

.events-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 50px;
  gap: 50px;
  max-width: 83rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .events-list {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .events-list {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .events-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.event-group {
  margin-bottom: 58px;
}

.event-group__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 32px;
  line-height: 40px;
}
@media print, screen and (max-width: 74.99875em) {
  .event-group__title {
    font-size: 21px;
    line-height: 28px;
  }
}
.event-group__title {
  text-transform: capitalize;
  color: #285F74;
  color: var(--text-primary-dark);
  margin-bottom: 20px;
}

.password-protected__content {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .password-protected__content {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .password-protected__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .password-protected__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.password-protected__content {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  .password-protected__content {
    margin-bottom: 88px;
  }
}

.post-password-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 64px 70px;
  background: #fff;
  background: var(--background-white);
}
@media screen and (max-width: 63.99875em) {
  .post-password-form {
    padding: 34px 25px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .post-password-form {
    padding: 20px;
  }
}
.post-password-form > p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .post-password-form > p {
    font-size: 16px;
    line-height: 21px;
  }
}
.post-password-form > p {
  color: #1A1A1A;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  max-width: 600px;
}
.post-password-form p * p {
  margin-bottom: 30px;
}
.post-password-form input {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  .post-password-form input {
    font-size: 16px;
    line-height: 21px;
  }
}
.post-password-form input {
  background: #F5F5F5;
  background: var(--background);
  border-radius: 28px;
  border: none;
  height: 56px;
  width: 100%;
  padding: 10px 27px;
}
.post-password-form input[type=submit] {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 21px;
  line-height: 28px;
}
.post-password-form input[type=submit] {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #285F74;
  background: var(--button-primary-dark);
  border: 2px solid #285F74;
  border: 2px solid var(--button-primary-dark);
  padding: 16px 52px;
  border-radius: 40px;
  position: relative;
  transition: padding 0.2s ease-in-out;
  margin: 16px;
  max-width: 200px;
}
.post-password-form p:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.press-list {
  max-width: 101.875rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .press-list {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .press-list {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .press-list {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.press-list__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 80px;
  gap: 80px;
}
@media print, screen and (max-width: 74.99875em) {
  .press-list__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 63.99875em) {
  .press-list__inner {
    grid-template-columns: 1fr;
  }
}

.single-event__header {
  max-width: 115.25rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .single-event__header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .single-event__header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .single-event__header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

body .single-post__content-without-blocks {
  max-width: 78.75rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  body .single-post__content-without-blocks {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  body .single-post__content-without-blocks {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  body .single-post__content-without-blocks {
    padding-left: 15px;
    padding-right: 15px;
  }
}
body .single-post__content-without-blocks {
  margin-bottom: 150px;
}
@media print, screen and (max-width: 74.99875em) {
  body .single-post__content-without-blocks {
    margin-bottom: 88px;
  }
}
body .single-post__content-without-blocks {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
}
@media print, screen and (max-width: 44.99875em) {
  body .single-post__content-without-blocks {
    font-size: 16px;
    line-height: 21px;
  }
}
body .single-post__content-without-blocks {
  color: #1A1A1A;
  color: var(--text);
}
body .single-post__content-without-blocks img {
  margin: 0 0 50px 0;
}
body .single-post__content-without-blocks img.alignleft {
  margin-bottom: 10px;
}
body .single-post__content-without-blocks p {
  margin: 15px 0;
}
body .single-post__content-without-blocks ul {
  margin: 30px;
}

.single-program__header {
  max-width: 115.25rem;
  padding-left: 120px;
  padding-right: 120px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 45em) and (max-width: 63.99875em) {
  .single-program__header {
    padding-left: 45px;
    padding-right: 45px;
  }
}
@media print, screen and (min-width: 30em) and (max-width: 44.99875em) {
  .single-program__header {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media print, screen and (max-width: 29.99875em) {
  .single-program__header {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.single-program__news-related {
  margin-bottom: 110px;
}
