@charset "UTF-8";
/* stylelint-disable */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-d: 1023px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
/* stylelint-disable */
/* stylelint-disable */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
/* stylelint-disable */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  box-sizing: border-box;
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

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

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a, .sk-link {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

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

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0;
  margin: 0;
  display: block;
  border: none;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-d: 1023px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
:root {
  --sk-line-height-body: 1.2;
  --sk-line-height-h1: 1.3;
  --sk-line-height-h2: 1.3;
  --sk-line-height-h3: 1.3;
  --sk-line-height-h4: 1.3;
  --sk-line-height-h5: 1.3;
  --sk-line-height-h6: 1.3;
  --sk-text-base-size: clamp(16px, 15.2571428571px + 0.0019047619 * 100vw, 18px);
  --sk-text-h1-up: clamp(44px, 30.6285714286px + 0.0342857143 * 100vw, 80px);
  --sk-text-h1: clamp(28px, 20.5714285714px + 0.019047619 * 100vw, 48px);
  --sk-text-h2: clamp(24px, 20.2857142857px + 0.0095238095 * 100vw, 34px);
  --sk-text-h3: clamp(24px, 18.0571428571px + 0.0152380952 * 100vw, 40px);
  --sk-text-h4: clamp(22px, 17.5428571429px + 0.0114285714 * 100vw, 34px);
  --sk-text-h5: clamp(18px, 17.2571428571px + 0.0019047619 * 100vw, 20px);
  --sk-text-h6: clamp(16px, 15.2571428571px + 0.0019047619 * 100vw, 18px);
  --sk-text-lg: clamp(24px, 21.7714285714px + 0.0057142857 * 100vw, 30px);
  --sk-text-m: clamp(18px, 17.2571428571px + 0.0019047619 * 100vw, 20px);
  --sk-text-xs: clamp(12px, 11.2571428571px + 0.0019047619 * 100vw, 14px);
  --sk-text-2xs: clamp(10px, 9.2571428571px + 0.0019047619 * 100vw, 12px);
  --sk-text-3xs: clamp(8px, 7.2571428571px + 0.0019047619 * 100vw, 10px);
}

@media (max-width: 768px) {
  :root {
    --sk-line-height-body: 1.2;
    --sk-line-height-h1: 1.3;
    --sk-line-height-h2: 1.3;
    --sk-line-height-h3: 1.3;
    --sk-line-height-h4: 1.3;
    --sk-line-height-h5: 1.3;
    --sk-line-height-h6: 1.3;
  }
}
/* stylelint-disable */
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-Regular.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Regular.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-Italic.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Italic.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Italic.ttf") format("ttf");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-Book.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Book.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Book.ttf") format("ttf");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-BookItalic.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-BookItalic.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-BookItalic.ttf") format("ttf");
  font-weight: 450;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-Bold.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Bold.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMontreal";
  src: url("../fonts/PPNeueMontreal/PPNeueMontreal-BoldItalic.woff") format("woff"), url("../fonts/PPNeueMontreal/PPNeueMontreal-BoldItalic.woff2") format("woff2"), url("../fonts/PPNeueMontreal/PPNeueMontreal-BoldItalic.ttf") format("ttf");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PPNeueMachina";
  src: url("../fonts/PPNeueMachina/PPNeueMachina-InktrapRegular.woff") format("woff"), url("../fonts/PPNeueMachina/PPNeueMachina-InktrapRegular.woff2") format("woff2"), url("../fonts/PPNeueMachina/PPNeueMachina-InktrapRegular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PitchSans";
  src: url("../fonts/PitchSans/PitchSans-semibold.woff") format("woff"), url("../fonts/PitchSans/PitchSans-semibold.woff2") format("woff2"), url("../fonts/PitchSans/PitchSans-semibold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --sk-font-primary: PPNeueMontreal;
  --sk-font-secondary: PPNeueMachina;
  --sk-font-tertiary: PitchSans;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: black;
  --sk-color-white: white;
  --sk-color-primary: #2BFF13;
  --sk-color-primary-light: #81FB7B;
  --sk-color-primary-dark: #0B9604;
  --sk-color-blumine-400: #010304;
  --sk-color-ebony-200: #080018;
  --sk-color-second: #206EFF;
  --sk-color-second-light: #87AFFC;
  --sk-color-second-dark: #053BA2;
  --sk-color-danube-300: #4376C6;
  --sk-color-danube-400: #3D4782;
  --sk-color-blue-50: #E6E9FB;
  --sk-color-cornflower-blue-50: #E6E9FB;
  --sk-color-cornflower-blue-100: #B6C4FB;
  --sk-color-cornflower-blue-200: #87AFFC;
  --sk-color-scooter-50: #DAF1F6;
  --sk-color-scooter-300: #2991A8;
  --sk-color-chinook-50: #E7F3EB;
  --sk-color-gumbo-100: #9EC4CD;
  --sk-color-gumbo-300: #4F7982;
  --sk-color-mint-300: #385057;
  --sk-color-tertiary: #D9353E;
  --sk-color-tertiary-light: #FC9367;
  --sk-color-tertiary-dark: #822904;
  --sk-color-neutral: #B5B5B5;
  --sk-color-neutral-light: #E5E5E5;
  --sk-color-neutral-dark: #7A7A7A;
  --sk-color-grey-300: #E9E9E9;
  --sk-color-grey-400: #F7F6F9;
  --sk-color-grey-500: #CFCFCF;
  --sk-color-grey-700: #DFDFDF;
  --sk-color-athens-gray-50: #FCFCFD;
  --sk-color-athens-gray-100: #F7F6F9;
  --sk-color-athens-gray-200: #F2F1F4;
  --sk-color-athens-gray-300: #CBC8D1;
  --sk-color-athens-gray-400: #807F81;
  --sk-color-athens-gray-450: #4E4D4D;
  --sk-color-athens-gray-500: #1D1C1A;
  /* Background colors */
  --sk-color-bg-primary: #DDDCDD;
  --sk-color-bg-second: #000;
  /* Typography */
  --sk-color-text: #000000;
  --sk-color-text-heading: var(--sk-color-text);
  --sk-color-text-subtle: #8995a6;
  --sk-color-link: var(--sk-color-second);
  --sk-color-link-hover: var(--sk-color-second-light);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: #E6E6E6;
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: red;
  --sk-color-warning: orange;
  /* Icons */
  --sk-color-icon-primary: var(--sk-color-primary);
  --sk-color-icon-secondary: var(--sk-color-second);
}

/* stylelint-disable */
body {
  font-size: var(--sk-text-base-size);
  font-family: var(--sk-font-secondary), sans-serif;
  color: var(--sk-color-text);
  font-weight: 400;
  line-height: var(--sk-line-height-body);
  background-color: var(--sk-color-bg-primary);
}
@media (max-width: 1023px) {
  body.no-scroll {
    overflow: hidden;
    height: 100dvh;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.sk-text-3xl,
.sk-text-h1,
.sk-text-h2,
.sk-text-h3,
.sk-text-h4,
.sk-text-h5,
.sk-text-h6,
.sk-text-2xs {
  color: var(--sk-color-text-heading);
  font-family: var(--sk-font-primary), sans-serif;
  font-weight: 600;
}

/* text size */
.sk-text-h1-up {
  font-size: var(--sk-text-h1-up);
}

h1,
.sk-text-h1 {
  font-size: var(--sk-text-h1);
  color: var(--sk-color-text);
  line-height: var(--sk-line-height-h1);
}

h2,
.sk-text-h2 {
  font-size: var(--sk-text-h2);
  color: var(--sk-color-text);
  line-height: var(--sk-line-height-h2);
}

h3,
.sk-text-h3 {
  color: var(--sk-color-text);
  font-size: var(--sk-text-h3);
  line-height: var(--sk-line-height-h3);
}

h4,
.sk-text-h4 {
  color: var(--sk-color-text);
  font-size: var(--sk-text-h4);
  line-height: var(--sk-line-height-h4);
}

h5,
.sk-text-h5 {
  color: var(--sk-color-text);
  font-size: var(--sk-text-h5);
  line-height: var(--sk-line-height-h5);
}

h6,
.sk-text-h6 {
  color: var(--sk-color-text);
  font-size: var(--sk-text-h6);
  line-height: var(--sk-line-height-h6);
}

.sk-subheading {
  font-size: var(--sk-text-h6);
  color: var(--sk-color-text-subtle);
}

small, .sk-text-xs {
  font-size: var(--sk-text-xs);
  font-family: var(--sk-font-secondary);
}

.sk-text-2xs {
  font-size: var(--sk-text-2xs);
}

p {
  line-height: var(--sk-line-height-body);
  font-family: var(--sk-font-primary), sans-serif;
}

a, .sk-link {
  color: var(--sk-color-link);
  text-decoration: none;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
a:hover, .sk-link:hover, a:active, .sk-link:active, a:focus, .sk-link:focus, a:focus-within, .sk-link:focus-within {
  color: var(--sk-color-link);
  text-decoration: underline;
}

.sk-link {
  text-decoration: underline;
  color: var(--sk-color-text);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
.sk-link {
  margin: 0;
}

hr {
  width: 100%;
  background: transparent;
  margin: 30px 0;
  border: none;
  border-top: 1px solid var(--sk-color-text);
}
hr.sk-hr-dashed {
  border-top-style: dashed;
}

h1:has(.sk-typo-mod-color), h2:has(.sk-typo-mod-color), h3:has(.sk-typo-mod-color), h4:has(.sk-typo-mod-color), h5:has(.sk-typo-mod-color), h6:has(.sk-typo-mod-color), p:has(.sk-typo-mod-color) {
  line-height: 1.6;
}
@media (min-width: 1024px) {
  h1:has(.sk-typo-mod-color), h2:has(.sk-typo-mod-color), h3:has(.sk-typo-mod-color), h4:has(.sk-typo-mod-color), h5:has(.sk-typo-mod-color), h6:has(.sk-typo-mod-color), p:has(.sk-typo-mod-color) {
    line-height: 1.4;
  }
}

.sk-typo-mod-color {
  color: var(--sk-color-danube-400);
  background: var(--sk-color-blue-50);
  padding: 2px 3px 0;
  line-height: 1;
  font-family: var(--sk-font-secondary);
}
.sk-typo-mod-color-purple {
  color: var(--sk-color-danube-400);
  background: var(--sk-color-blue-50);
  border-color: var(--sk-color-danube-400);
}
.sk-typo-mod-color-teal {
  color: var(--sk-color-scooter-300);
  background: var(--sk-color-scooter-50);
  border-color: var(--sk-color-scooter-300);
}
.sk-typo-mod-color-mint {
  color: var(--sk-color-mint-300);
  background: var(--sk-color-chinook-50);
  border-color: var(--sk-color-mint-300);
}
@media (min-width: 1024px) {
  .sk-typo-mod-color {
    border-radius: 8px;
    border: 1px solid var(--sk-color-danube-400);
    padding: 5px 12px 6px;
    font-size: 75%;
  }
}

.swiper-wrapper {
  height: -moz-fit-content;
  height: fit-content;
}

.sk-typo-mod-color-primary {
  color: var(--sk-color-primary);
}
.sk-typo-mod-color-second {
  color: var(--sk-color-second);
}
.sk-typo-mod-color-third {
  color: var(--sk-color-tertiary);
}
.sk-typo-mod-bg-color-primary {
  background: var(--sk-color-primary);
}
.sk-typo-mod-bg-color-second {
  background: var(--sk-color-second);
}
.sk-typo-mod-bg-color-third {
  background: var(--sk-color-tertiary);
}
.sk-typo-mod-font-100 {
  font-weight: 100;
}
.sk-typo-mod-font-200 {
  font-weight: 200;
}
.sk-typo-mod-font-300 {
  font-weight: 300;
}
.sk-typo-mod-font-400 {
  font-weight: 400;
}
.sk-typo-mod-font-500 {
  font-weight: 500;
}
.sk-typo-mod-font-600 {
  font-weight: 600;
}
.sk-typo-mod-font-700 {
  font-weight: 700;
}
.sk-typo-mod-font-900 {
  font-weight: 900;
}

.sk-wp-editor h1,
.sk-wp-editor .sk-text-h1 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h1,
  .sk-wp-editor .sk-text-h1 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor h2,
.sk-wp-editor .sk-text-h2 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h2,
  .sk-wp-editor .sk-text-h2 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor h3,
.sk-wp-editor .sk-text-h3 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h3,
  .sk-wp-editor .sk-text-h3 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor h4,
.sk-wp-editor .sk-text-h4 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h4,
  .sk-wp-editor .sk-text-h4 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor h5,
.sk-wp-editor .sk-text-h5 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h5,
  .sk-wp-editor .sk-text-h5 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor h6,
.sk-wp-editor .sk-text-h6 {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .sk-wp-editor h6,
  .sk-wp-editor .sk-text-h6 {
    margin-bottom: 24px;
  }
}
.sk-wp-editor p {
  margin-bottom: 23px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .sk-wp-editor p {
    margin-bottom: 24px;
  }
}
.sk-wp-editor p + h1, .sk-wp-editor p + h2, .sk-wp-editor p + h3, .sk-wp-editor p + h4, .sk-wp-editor p + h5, .sk-wp-editor p + h6 {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .sk-wp-editor p + h1, .sk-wp-editor p + h2, .sk-wp-editor p + h3, .sk-wp-editor p + h4, .sk-wp-editor p + h5, .sk-wp-editor p + h6 {
    margin-top: 40px;
  }
}
.sk-wp-editor p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .sk-wp-editor br {
    display: none;
  }
}
.sk-wp-editor ul {
  padding-left: 20px;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .sk-wp-editor ul {
    margin: 30px 0;
  }
}
.sk-wp-editor .sk-typo-mod-color {
  color: var(--sk-color-danube-400);
  background: var(--sk-color-blue-50);
  padding: 2px 3px 0;
  line-height: 1;
}
.sk-wp-editor .sk-typo-mod-color-purple {
  color: var(--sk-color-danube-400);
  background: var(--sk-color-blue-50);
  border-color: var(--sk-color-danube-400);
}
.sk-wp-editor .sk-typo-mod-color-teal {
  color: var(--sk-color-scooter-300);
  background: var(--sk-color-scooter-50);
  border-color: var(--sk-color-scooter-300);
}
.sk-wp-editor .sk-typo-mod-color-mint {
  color: var(--sk-color-mint-300);
  background: var(--sk-color-chinook-50);
  border-color: var(--sk-color-gumbo-300);
}
@media (min-width: 1024px) {
  .sk-wp-editor .sk-typo-mod-color {
    border-radius: 8px;
    border: 1px solid var(--sk-color-danube-400);
    padding: 7px 12px 6px;
  }
}

/* stylelint-disable */
:root {
  --sk-container-padding: 50px;
  --sk-container-width-lg: calc(1340px + var(--sk-container-padding) * 2);
  --sk-container-width-md: calc(1280px + var(--sk-container-padding) * 2);
  --sk-container-width-sm: calc(1024px + var(--sk-container-padding) * 2);
  --sk-container-width-xs: calc(660px + var(--sk-container-padding) * 2);
}

@media (max-width: 1024px) {
  :root {
    --sk-container-padding: 24px;
  }
}
html, body {
  overflow-x: clip;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sk-container {
  max-width: var(--sk-container-width-lg);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--sk-container-padding);
  padding-right: var(--sk-container-padding);
}
.sk-container--xs {
  max-width: var(--sk-container-width-xs);
}
.sk-container--md {
  max-width: var(--sk-container-width-md);
}
.sk-container--sm {
  max-width: var(--sk-container-width-sm);
}
.sk-container--fl {
  max-width: 100%;
  width: 100%;
}

.sk-wrapper {
  display: flex;
}
.sk-wrapper--wrap {
  flex-wrap: wrap;
}
.sk-wrapper--jc-sb {
  justify-content: space-between;
}
.sk-wrapper--jc-c {
  justify-content: center;
}
.sk-wrapper--column {
  flex-direction: column;
  align-items: flex-start;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: "";
  display: table;
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0; /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sk-image-cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .sk-only-d {
    display: none;
  }
}

@media (min-width: 768px) {
  .sk-only-m {
    display: none;
  }
}

/**
 * Global focus-visible styles (WCAG 2.1 AA — SC 2.4.7 Focus Visible)
 * Uses :focus-visible so that mouse users don't see the outline,
 * while keyboard users always get a clear focus indicator.
 */
:focus-visible {
  outline: 2px solid var(--sk-color-second);
  outline-offset: 2px;
}

/* Remove default outline only when :focus-visible is also set
   (prevents double outline in some browsers) */
:focus:not(:focus-visible) {
  outline: none;
}

.header {
  --sk-custom-container-padding: 40px;
}
@media (max-width: 1024px) {
  .header {
    --sk-custom-container-padding: 24px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--sk-color-white);
  z-index: 1000;
  transition: background 0.3s ease;
  border-bottom: 0.5px solid #CFCFCF;
}
@media (min-width: 1024px) {
  .header {
    border-bottom: none;
  }
}
.header .sk-container {
  max-width: calc(1360px + var(--sk-custom-container-padding) * 2);
  padding-left: var(--sk-custom-container-padding);
  padding-right: var(--sk-custom-container-padding);
}
.header-logo {
  width: 144px;
  height: 28px;
  display: flex;
  color: var(--sk-color-text);
  transition: color 0.3s ease;
}
.header-logo svg {
  height: inherit;
  width: inherit;
}
.header-logo:hover {
  color: var(--sk-color-text);
}
.header-burger {
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.8px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  text-transform: uppercase;
  padding: 0;
  color: transparent;
  position: relative;
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.header-burger span {
  font-size: 16px;
}
.header-burger span, .header-burger::before, .header-burger::after {
  content: "";
  height: 2px;
  width: 20px;
  background: var(--sk-color-black);
  transition: all 0.3s ease;
  transform-origin: left;
}
@media (min-width: 1024px) {
  .header-burger {
    color: var(--sk-color-text);
    width: auto;
  }
  .header-burger span {
    height: auto;
    width: 156px;
    background: transparent;
  }
  .header-burger::before, .header-burger::after {
    content: "";
  }
}
.header-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
@media (min-width: 1024px) {
  .header-wrapper {
    padding: 20px 0;
  }
}
.header .socials-links {
  display: none;
}
.header .socials-links .social-link {
  color: var(--sk-color-text);
}
.header .socials-links .social-link:hover {
  color: var(--sk-color-cornflower-blue-200);
}
@media (min-width: 1024px) {
  .header .socials-links {
    display: flex;
  }
}
.header .popup-menu {
  position: fixed;
  top: 80px;
  border-top: 0.5px solid var(--sk-color-grey-300);
  left: 0;
  width: 100%;
  background: var(--sk-color-white);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow: hidden;
  box-sizing: border-box;
  opacity: 0;
  height: 0;
}
.header .popup-menu .sk-container {
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 1024px) {
  .header .popup-menu .sk-container {
    height: 100%;
  }
}
.header .popup-menu .nav-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.header .popup-menu .nav-main ul .menu-item__link {
  color: var(--sk-color-text);
  font-family: var(--sk-font-primary), sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  z-index: 2;
}
.header .popup-menu .nav-main ul .menu-item__link:hover, .header .popup-menu .nav-main ul .menu-item__link:focus-visible {
  text-decoration: none;
  /* stylelint-disable-next-line */
}
.header .popup-menu .nav-main ul .menu-item__link:hover .header-menu__item-arrow, .header .popup-menu .nav-main ul .menu-item__link:focus-visible .header-menu__item-arrow {
  opacity: 1;
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul .menu-item__link {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul > li:nth-child(4) {
    grid-row: 1;
    /* stylelint-disable-next-line */
  }
  .header .popup-menu .nav-main ul > li:nth-child(4) .header-menu__item-image {
    max-height: 134px;
    width: 100%;
    aspect-ratio: 265/138;
  }
}
.header .popup-menu .nav-main ul {
  /* stylelint-disable-next-line */
}
.header .popup-menu .nav-main ul .header-menu__item-image {
  display: none;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul .header-menu__item-image {
    display: block;
    margin-top: 6px;
    width: auto;
    max-height: 200px;
    aspect-ratio: 300/200;
  }
}
@media (min-width: 1280px) {
  .header .popup-menu .nav-main ul .header-menu__item-image {
    max-height: 300px;
    height: 265px;
    aspect-ratio: auto;
  }
}
.header .popup-menu .nav-main ul .header-menu__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.header .popup-menu .nav-main ul {
  /* stylelint-disable-next-line */
}
.header .popup-menu .nav-main ul .header-menu__item-arrow {
  display: none;
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul .header-menu__item-arrow {
    position: absolute;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sk-color-tertiary);
    color: var(--sk-color-white);
    border-radius: 5px;
    right: 6px;
    bottom: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .header .popup-menu .nav-main ul .header-menu__item-arrow svg {
    width: 14px;
    height: 14px;
    transform: rotate(-45deg);
  }
}
.header .popup-menu .nav-main ul ul {
  padding-left: 24px;
  padding-top: 24px;
}
.header .popup-menu .nav-main ul ul .menu-item__link {
  font-weight: 400;
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul ul .menu-item__link {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul ul {
    padding: 0;
    background: var(--sk-color-athens-gray-100);
    margin-top: auto;
    border-top: 1px solid var(--sk-color-grey-700);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }
  .header .popup-menu .nav-main ul ul li {
    height: 100%;
    padding-left: 20px;
    border-bottom: 1px solid var(--sk-color-grey-700);
    transition: all 0.3s ease;
  }
  .header .popup-menu .nav-main ul ul li .menu-item__link {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 5px 0;
  }
  .header .popup-menu .nav-main ul ul li:last-child {
    border-bottom: none;
  }
  .header .popup-menu .nav-main ul ul li:hover, .header .popup-menu .nav-main ul ul li:focus-visible {
    background: var(--sk-color-grey-700);
  }
}
@media (min-width: 1024px) and (min-width: 1280px) {
  .header .popup-menu .nav-main ul ul {
    margin-top: 34px;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
  .header .popup-menu .nav-main ul ul li {
    max-height: 132px;
    padding-left: 40px;
  }
}
@media (min-width: 1280px) {
  .header .popup-menu .nav-main ul li:has(ul) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* stylelint-disable-next-line */
  }
  .header .popup-menu .nav-main ul li:has(ul) .header-menu__item-image {
    width: calc(100% + 20px);
    aspect-ratio: 200/260;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul li {
    grid-row: 1/-1;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main ul {
    gap: 0 24px;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main > ul {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    grid-template-rows: auto auto auto;
    gap: 22px;
  }
}
@media (min-width: 1280px) {
  .header .popup-menu .nav-main > ul {
    grid-template-columns: minmax(200px, 1fr) minmax(400px, 490px) minmax(200px, 1fr) minmax(200px, 1fr);
  }
}
.header .popup-menu .nav-main {
  /* stylelint-disable */
}
.header .popup-menu .nav-main .header-menu_item--subscribe,
.header .popup-menu .nav-main .header-menu_item--donate {
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main .header-menu_item--subscribe,
  .header .popup-menu .nav-main .header-menu_item--donate {
    width: 100%;
  }
  .header .popup-menu .nav-main .header-menu_item--subscribe .menu-item__link,
  .header .popup-menu .nav-main .header-menu_item--donate .menu-item__link {
    display: flex;
    padding: 6px 9px 6px 12px;
    background: var(--sk-color-athens-gray-100);
    border: 1px solid var(--sk-color-grey-700);
    border-radius: 8px;
  }
  .header .popup-menu .nav-main .header-menu_item--subscribe .menu-item__link:hover,
  .header .popup-menu .nav-main .header-menu_item--donate .menu-item__link:hover {
    border-color: var(--sk-color-black);
    background: transparent;
    color: var(--sk-color-black);
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main .header-menu_item--subscribe {
    display: block;
    grid-column: 4;
    grid-row: auto;
  }
}
@media (max-width: 1024px) {
  .header .popup-menu .nav-main .header-menu_item--subscribe {
    margin-top: auto;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu .nav-main .header-menu_item--donate {
    display: block;
    grid-column: 4;
    grid-row: auto;
  }
}
@media (max-width: 1024px) {
  .header .popup-menu .nav-main {
    flex: 1;
    padding-bottom: 24px;
  }
  .header .popup-menu .nav-main > ul {
    height: 100%;
  }
}
.header .popup-menu .socials-links.popup-socials {
  display: flex;
  margin-top: auto;
}
@media (min-width: 1024px) {
  .header .popup-menu .socials-links.popup-socials {
    display: none;
  }
}
@media (min-width: 1024px) {
  .header .popup-menu {
    border-top: none;
  }
}
.header--transparent {
  background: transparent;
  transition-delay: 0.3s;
}
.header--transparent .header-logo {
  color: var(--sk-color-white);
}
.header--transparent .header-logo:hover {
  color: var(--sk-color-white);
}
.header--transparent .header-burger span, .header--transparent .header-burger::before, .header--transparent .header-burger::after {
  background: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .header--transparent .header-burger {
    color: var(--sk-color-white);
  }
  .header--transparent .header-burger span {
    background: transparent;
  }
}
.header--transparent .socials-links.header-socials .social-link {
  color: var(--sk-color-white);
}
.header--transparent .socials-links.header-socials .social-link:hover {
  color: var(--sk-color-cornflower-blue-100);
}
.header--transparent.menu-open {
  background: var(--sk-color-white);
  transition-delay: 0s;
}
.header--transparent.menu-open .header-logo {
  color: var(--sk-color-text);
}
.header--transparent.menu-open .header-logo:hover {
  color: var(--sk-color-text);
}
.header--transparent.menu-open .header-burger span, .header--transparent.menu-open .header-burger::before, .header--transparent.menu-open .header-burger::after {
  background: var(--sk-color-black);
}
@media (min-width: 1024px) {
  .header--transparent.menu-open .header-burger {
    color: var(--sk-color-text);
  }
  .header--transparent.menu-open .header-burger span {
    background: transparent;
  }
}
.header--transparent.menu-open .socials-links .social-link {
  color: var(--sk-color-text);
}
.header--transparent.menu-open .socials-links .social-link:hover {
  color: var(--sk-color-cornflower-blue-100);
}
.header.menu-open .popup-menu {
  -webkit-user-select: auto;
     -moz-user-select: auto;
          user-select: auto;
  border-top: 0.5px solid var(--sk-color-grey-300);
}
.header.menu-open .header-burger span {
  opacity: 0;
}
@media (min-width: 1024px) {
  .header.menu-open .header-burger span {
    opacity: 1;
  }
}
.header.menu-open .header-burger::before {
  transform: rotate(30deg);
  width: 23px;
}
.header.menu-open .header-burger::after {
  transform: rotate(-30deg);
  width: 23px;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background-color: var(--sk-color-bg-second);
}
.footer .nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(26px, 20.8px + 0.0133333333 * 100vw, 40px);
  margin-bottom: clamp(36px, 34.5142857143px + 0.0038095238 * 100vw, 40px);
}
@media (min-width: 1024px) {
  .footer .nav-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-logo {
  color: var(--sk-color-athens-gray-200);
  width: 215px;
  height: 42px;
  display: flex;
}
.footer-logo svg {
  width: inherit;
  height: inherit;
}
.footer-logo:hover {
  color: var(--sk-color-athens-gray-200);
}
.footer .socials-links a:hover, .footer .socials-links .sk-link:hover {
  color: var(--sk-color-cornflower-blue-100);
}
.footer .nav-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.0571428571px + 0.0152380952 * 100vw, 24px);
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .footer .nav-main ul {
    flex-flow: row wrap;
  }
}
.footer .nav-main a, .footer .nav-main .sk-link {
  color: var(--sk-color-white);
  font-size: 12px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.6px;
}
.footer .nav-main a:hover, .footer .nav-main .sk-link:hover {
  color: var(--sk-color-cornflower-blue-100);
}
.footer .more-info-wrapper {
  display: flex;
  gap: clamp(38px, 37.2571428571px + 0.0019047619 * 100vw, 40px);
  flex-flow: column wrap;
  width: -moz-fit-content;
  width: fit-content;
}
.footer .more-info-wrapper .links-wrapper {
  display: grid;
  gap: 6px;
}
.footer .more-info-wrapper .links-wrapper a, .footer .more-info-wrapper .links-wrapper .sk-link, .footer .more-info-wrapper .links-wrapper p {
  color: var(--sk-color-white);
  font-family: var(--sk-font-secondary), sans-serif;
  display: block;
  font-size: 12px;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.6px;
}
@media (max-width: 768px) {
  .footer .more-info-wrapper .links-wrapper a:nth-child(3), .footer .more-info-wrapper .links-wrapper .sk-link:nth-child(3), .footer .more-info-wrapper .links-wrapper p:nth-child(3) {
    grid-row: 2;
  }
}
.footer .more-info-wrapper .links-wrapper a:hover, .footer .more-info-wrapper .links-wrapper .sk-link:hover {
  color: var(--sk-color-cornflower-blue-100);
}
@media (min-width: 768px) {
  .footer .more-info-wrapper .links-wrapper {
    gap: 0 40px;
    grid-template-columns: repeat(2, auto);
  }
}
@media (min-width: 768px) {
  .footer .more-info-wrapper {
    margin-left: auto;
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: 50px 0;
  }
}

input:not([type=checkbox]),
textarea {
  border-radius: 15px;
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
  padding: 10px;
  font-weight: 400;
  border: 1px solid var(--sk-color-black);
  background: var(--sk-color-white);
  color: var(--sk-color-black);
  font-size: var(--sk-text-xs);
}
input:not([type=checkbox]):focus,
textarea:focus {
  outline: none;
  border-color: var(--sk-input-color-border-focus);
}
input:not([type=checkbox])::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--sk-input-color-placeholder);
}
input:not([type=checkbox])::placeholder,
textarea::placeholder {
  color: var(--sk-input-color-placeholder);
}

textarea {
  min-height: 200px;
  resize: none;
}

.sk-form {
  background: var(--sk-color-white);
  padding: 0;
  margin-bottom: 40px;
}
.sk-form form {
  width: 560px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .sk-form form {
    width: 100%;
  }
}
.sk-form form fieldset {
  width: 100%;
}
.sk-form-field {
  width: 100%;
}
.sk-form-field label {
  width: 100%;
}
.sk-form-field label span {
  color: var(--sk-color-primary);
  font-size: var(--sk-text-h5);
  width: 100%;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
}
.sk-form-field:last-child input {
  margin-bottom: 38px;
}

blockquote.sk-blockquote {
  position: relative;
  margin: 0;
  max-width: 890px;
}
blockquote.sk-blockquote::before, blockquote.sk-blockquote::after {
  content: "";
  display: block;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 32px;
}
@media (max-width: 1024px) {
  blockquote.sk-blockquote::before, blockquote.sk-blockquote::after {
    width: 60px;
    height: 60px;
  }
}
blockquote.sk-blockquote::before {
  background-image: url("../img/blockquote-start.svg");
  top: 0;
  left: -78px;
}
@media (max-width: 1024px) {
  blockquote.sk-blockquote::before {
    left: 0;
    top: -70px;
  }
}
blockquote.sk-blockquote::after {
  background-image: url("../img/blockquote-end.svg");
  bottom: -10px;
  right: -78px;
}
@media (max-width: 1024px) {
  blockquote.sk-blockquote::after {
    right: 0;
    bottom: -70px;
  }
}

a.sk-btn,
button.sk-btn,
.sk-btn {
  font-family: var(--sk-font-secondary), sans-serif;
  border-radius: 8px;
  background: var(--sk-color-tertiary);
  color: var(--sk-color-white);
  height: 28px;
  line-height: 26px;
  border: 1px solid var(--sk-color-tertiary);
  padding: 0 15px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
  font-size: clamp(10px, 8.5142857143px + 0.0038095238 * 100vw, 14px);
  letter-spacing: 1.2px;
  font-weight: 400;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 1024px) {
  a.sk-btn,
  button.sk-btn,
  .sk-btn {
    letter-spacing: 1.4px;
  }
}
a.sk-btn,
button.sk-btn,
.sk-btn {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* stylelint-disable-next-line */
}
a.sk-btn .sk-btn__icon,
button.sk-btn .sk-btn__icon,
.sk-btn .sk-btn__icon {
  display: block;
  width: auto;
  height: auto;
  transition: transform 0.3s ease-in-out;
  border-radius: 4px;
}
a.sk-btn .sk-btn__icon--arrow-right,
button.sk-btn .sk-btn__icon--arrow-right,
.sk-btn .sk-btn__icon--arrow-right {
  width: 9px;
  height: 8px;
}
a.sk-btn .sk-btn__icon--arrow-left,
button.sk-btn .sk-btn__icon--arrow-left,
.sk-btn .sk-btn__icon--arrow-left {
  width: 9px;
  height: 8px;
  transform: rotate(180deg);
  order: -1;
}
a.sk-btn .sk-btn__icon--plus,
button.sk-btn .sk-btn__icon--plus,
.sk-btn .sk-btn__icon--plus {
  width: 8px;
  height: 8px;
}
a.sk-btn .sk-btn__icon--download,
button.sk-btn .sk-btn__icon--download,
.sk-btn .sk-btn__icon--download {
  width: 10px;
  height: 9.5px;
}
a.sk-btn-icon,
button.sk-btn-icon,
.sk-btn-icon {
  width: 28px;
  padding: 0;
  border-radius: 4px;
}
a.sk-btn:hover,
button.sk-btn:hover,
.sk-btn:hover {
  background: transparent;
  color: var(--sk-color-tertiary);
}
a.sk-btn-primary,
button.sk-btn-primary,
.sk-btn-primary {
  background: var(--sk-color-primary);
  border-radius: 30px;
  border: 0 solid var(--sk-color-white);
}
a.sk-btn-primary:hover, a.sk-btn-primary:active,
button.sk-btn-primary:hover,
button.sk-btn-primary:active,
.sk-btn-primary:hover,
.sk-btn-primary:active {
  color: var(--sk-color-white);
  background: var(--sk-color-primary-dark);
}
a.sk-btn-secondary,
button.sk-btn-secondary,
.sk-btn-secondary {
  background: var(--sk-color-second-dark);
  color: var(--sk-color-white);
  border: 2px solid var(--sk-color-white);
  border-radius: 30px;
}
a.sk-btn-secondary:hover,
button.sk-btn-secondary:hover,
.sk-btn-secondary:hover {
  color: var(--sk-color-white);
  background: var(--sk-color-second-light);
}
a.sk-btn-disabled, a.sk-btn[disabled], a.sk-btn[readonly],
button.sk-btn-disabled,
button.sk-btn[disabled],
button.sk-btn[readonly],
.sk-btn-disabled,
.sk-btn[disabled],
.sk-btn[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}
a.sk-btn-lg,
button.sk-btn-lg,
.sk-btn-lg {
  font-size: var(--sk-text-base-size);
  width: 245px;
  height: 45px;
}
a.sk-btn-md,
button.sk-btn-md,
.sk-btn-md {
  font-size: var(--sk-text-xs);
  width: 150px;
  height: 50px;
}
a.sk-btn-sm,
button.sk-btn-sm,
.sk-btn-sm {
  font-size: var(--sk-text-base-size);
  width: 110px;
  height: 45px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  a.sk-btn-sm,
  button.sk-btn-sm,
  .sk-btn-sm {
    width: 120px;
    height: 40px;
  }
}
a.sk-btn-auto,
button.sk-btn-auto,
.sk-btn-auto {
  max-width: inherit;
  width: auto;
}
a.sk-btn-full-w,
button.sk-btn-full-w,
.sk-btn-full-w {
  width: 100%;
}
a.sk-btn-rectangle,
button.sk-btn-rectangle,
.sk-btn-rectangle {
  border-radius: 15px;
}
a.sk-btn-shadow,
button.sk-btn-shadow,
.sk-btn-shadow {
  border: unset;
  filter: drop-shadow(1px 4px 3px rgba(0, 0, 0, 0.3));
}
a.sk-btn-shadow:hover,
button.sk-btn-shadow:hover,
.sk-btn-shadow:hover {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
a.sk-btn.blue,
button.sk-btn.blue,
.sk-btn.blue {
  border-color: var(--sk-color-danube-400);
  color: var(--sk-color-danube-400);
  background: var(--sk-color-cornflower-blue-50);
}
a.sk-btn.blue:hover, a.sk-btn.blue:focus-visible,
button.sk-btn.blue:hover,
button.sk-btn.blue:focus-visible,
.sk-btn.blue:hover,
.sk-btn.blue:focus-visible {
  background: var(--sk-color-danube-400);
  color: var(--sk-color-white);
}
a.sk-btn.blue-tr,
button.sk-btn.blue-tr,
.sk-btn.blue-tr {
  border-color: var(--sk-color-danube-400);
  color: var(--sk-color-danube-400);
  background: transparent;
}
a.sk-btn.blue-tr:hover, a.sk-btn.blue-tr:focus-visible,
button.sk-btn.blue-tr:hover,
button.sk-btn.blue-tr:focus-visible,
.sk-btn.blue-tr:hover,
.sk-btn.blue-tr:focus-visible {
  background: var(--sk-color-danube-400);
  color: var(--sk-color-white);
}
a.sk-btn.white,
button.sk-btn.white,
.sk-btn.white {
  border-color: var(--sk-color-athens-gray-100);
  color: var(--sk-color-athens-gray-500);
  background: var(--sk-color-athens-gray-100);
}
a.sk-btn.white:hover, a.sk-btn.white:focus-visible,
button.sk-btn.white:hover,
button.sk-btn.white:focus-visible,
.sk-btn.white:hover,
.sk-btn.white:focus-visible {
  background: transparent;
  color: var(--sk-color-athens-gray-500);
  border-color: var(--sk-color-athens-gray-500);
}

.sk-list {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  list-style: none;
  padding-left: 0;
}
.sk-list > li {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  margin: 0 0 10px;
}
.sk-list > li::before {
  content: "~";
  margin: 0 8px;
}
.sk-list > li::after {
  content: "";
}
.sk-list > li:last-child::after {
  display: none !important;
}

.sk-eyebrow {
  color: var(--sk-color-text);
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-base-size);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sk-eyebrow--sm {
  font-size: clamp(8px, 5.0285714286px + 0.0076190476 * 100vw, 16px);
  letter-spacing: clamp(0.4px, 0.2514285714px + 0.0003809524 * 100vw, 0.8px);
}

.sk-simple-text {
  color: var(--sk-color-text);
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-m);
  font-weight: 400;
  line-height: 1.45;
}
.sk-simple-text p {
  margin-bottom: 18px;
  font-family: var(--sk-font-primary), sans-serif;
  line-height: 1.45;
}
@media (min-width: 1024px) {
  .sk-simple-text p {
    margin-bottom: 20px;
  }
}
.sk-simple-text p:last-child {
  margin-bottom: 0;
}

.sk-tagline {
  display: inline;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-lg);
  font-weight: 400;
  line-height: 1.3;
  color: #2991A8;
  background: #DAF1F6;
}
@media (min-width: 1024px) {
  .sk-tagline {
    display: inline-block;
    line-height: 1;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1F6E7F;
    color: #1F6E7F;
  }
}
.sk-tagline--2 {
  padding: 0 5px;
  color: #2991A8;
  background: #E6E9FB;
}
@media (min-width: 1024px) {
  .sk-tagline--2 {
    padding: 12px;
    color: #3D4782;
    border-color: #3D4782;
    background: #E6E9FB;
  }
}

.sk-slider-nav {
  display: flex;
  gap: 10px;
}
.sk-slider-nav .swiper-button-prev, .sk-slider-nav .swiper-button-next {
  position: relative;
  inset: 0;
  display: block;
  border: none;
  padding: 0;
  margin-top: unset;
  width: 20px;
  height: 20px;
  background: none;
}
.sk-slider-nav .swiper-button-prev svg, .sk-slider-nav .swiper-button-next svg {
  position: absolute;
  fill: none;
  height: 17px;
  width: 13px;
  inset: 50% 0 0 50%;
  transform: translate(-50%, -50%);
}
.sk-slider-nav .swiper-button-prev.swiper-button-lock, .sk-slider-nav .swiper-button-next.swiper-button-lock {
  display: none;
}

.socials-links {
  display: flex;
  gap: clamp(15px, 13.1428571429px + 0.0047619048 * 100vw, 20px);
}
.socials-links .social-link {
  display: flex;
  color: var(--sk-color-white);
  transition: color 0.3s ease;
  max-width: 24px;
  max-height: 19px;
}
.socials-links .social-link:hover {
  color: var(--sk-color-cornflower-blue-200);
}

.gf-form-styles .gform_title {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .gfield.gfield--width-half {
  grid-column: span 6;
}
.gf-form-styles .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
  line-height: normal;
  min-height: 35px;
}
@media (min-width: 768px) {
  .gf-form-styles .gform_wrapper.gravity-theme input:not([type=radio]):not([type=checkbox]):not([type=image]):not([type=file]) {
    min-height: 30px;
  }
}
.gf-form-styles .gform_wrapper.gravity-theme form {
  position: relative;
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .gfield_label {
  text-transform: uppercase;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: clamp(14px, 13.2571428571px + 0.0019047619 * 100vw, 16px);
  margin-bottom: 4px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .gf-form-styles .gform_wrapper.gravity-theme .gfield_label {
    margin-bottom: 9px;
  }
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields {
  gap: 14px;
}
@media (min-width: 768px) {
  .gf-form-styles .gform_wrapper.gravity-theme .gform_fields {
    gap: 14px 20px;
  }
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield input,
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield textarea {
  padding: 5px;
  height: auto;
  font-weight: 300;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield input:focus-visible,
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield textarea:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield textarea {
  min-height: unset;
  height: 100px;
}
@media (min-width: 768px) {
  .gf-form-styles .gform_wrapper.gravity-theme .gform_fields .gfield textarea {
    height: 160px;
  }
}
.gf-form-styles .gform_wrapper.gravity-theme .gform-footer {
  margin: 0;
  padding: 0;
}
.gf-form-styles .gform_wrapper.gravity-theme .gform-footer .sk-btn-text {
  margin: clamp(14px, 12.5142857143px + 0.0038095238 * 100vw, 18px) 0 0;
  padding: 0 10px;
}
.gf-form-styles .gform_wrapper.gravity-theme .gfield_description {
  margin-top: 0;
  padding: 0;
  background: transparent;
  border: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .ginput_container_fileupload .gform_fileupload_rules {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .ginput_container_fileupload .ginput_preview_list {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .gfield_required {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none;
}
.gf-form-styles .gform_wrapper.gravity-theme .gfield_validation_message {
  font-size: 11px;
}
.gf-form-styles .gform_confirmation_message {
  color: black;
  font-weight: 400;
}
.gf-form-styles .gform-loader {
  position: absolute !important;
  bottom: 0;
  right: 0;
}

.customFileInput {
  position: relative;
}
.customFileInput input[type=file] {
  position: absolute;
  opacity: 0;
  width: 0.1px;
  height: 0.1px;
  overflow: hidden;
  z-index: -1;
}
.customFileInput .custom-file-upload {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(246, 245, 244, 0.6);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.customFileInput .custom-file-upload:hover .upload-btn {
  background: #e2d5eb;
}
.customFileInput .custom-file-upload:focus {
  outline: 1px solid var(--sk-color-second);
  outline-offset: 1px;
}
.customFileInput .custom-file-upload:focus .upload-btn {
  background: #e2d5eb;
}
.customFileInput .file-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 100px);
  font-size: 15px;
}
.customFileInput .upload-btn {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #ECE3F0;
  transition: background-color 0.3s ease-in-out;
}
.customFileInput .upload-btn:hover {
  background-color: var(--sk-color-second);
}

.post-card {
  height: 100%;
  position: relative;
  padding: 10px;
  border-radius: 8.851px;
  border: 1px solid var(--sk-color-athens-gray-300);
  background: #fff;
  transition: border-color 0.3s ease-in-out;
}
.post-card:hover {
  border-color: #7C9FDA;
}
.post-card:hover .post-card__img-wrap img, .post-card:hover .post-card__img-wrap svg {
  transform: scale(1.05);
}
.post-card:hover .sk-btn {
  background: #FEF6F6;
  color: var(--sk-color-tertiary);
}
.post-card--featured .post-card__row {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (min-width: 512px) {
  .post-card--featured .post-card__row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .post-card--featured .post-card__row {
    flex-direction: column;
  }
}
@media (min-width: 1280px) {
  .post-card--featured .post-card__row {
    flex-direction: row;
  }
}
.post-card--featured .post-card__col:nth-child(1) {
  width: 100%;
}
@media (min-width: 768px) {
  .post-card--featured .post-card__col:nth-child(1) {
    width: 300px;
  }
}
@media (min-width: 1024px) {
  .post-card--featured .post-card__col:nth-child(1) {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .post-card--featured .post-card__col:nth-child(1) {
    width: 300px;
  }
}
.post-card--featured .post-card__col:nth-child(2) {
  width: 100%;
}
@media (min-width: 768px) {
  .post-card--featured .post-card__col:nth-child(2) {
    width: calc(100% - 320px);
  }
}
@media (min-width: 1024px) {
  .post-card--featured .post-card__col:nth-child(2) {
    width: 100%;
  }
}
@media (min-width: 1280px) {
  .post-card--featured .post-card__col:nth-child(2) {
    width: calc(100% - 320px);
  }
}
.post-card--featured .post-card__img-wrap {
  aspect-ratio: 309/156;
}
@media (min-width: 512px) {
  .post-card--featured .post-card__img-wrap {
    min-height: 219px;
    aspect-ratio: unset;
  }
}
.post-card--featured.post-card--press {
  border-color: var(--sk-color-athens-gray-300);
  background: #F3F6FC;
}
.post-card--featured.post-card--press:hover {
  border-color: #4376C6;
}
.post-card--featured.post-card--blog {
  border-color: var(--sk-color-athens-gray-300);
  background: #E7F3EB;
}
.post-card--featured.post-card--blog:hover {
  border-color: #77BB8F;
}
.post-card--featured.post-card--publication {
  border-color: var(--sk-color-athens-gray-300);
  background: #CFE3E8;
}
.post-card--featured.post-card--publication:hover {
  border-color: #4F7982;
}
.post-card--featured-column {
  background: var(--sk-color-cornflower-blue-50);
}
.post-card--featured-column .post-card__tag-list .post-card__tag {
  border-color: var(--sk-color-danube-400);
  background: var(--sk-color-cornflower-blue-50);
}
.post-card--featured-column .post-card__tag-list .post-card__tag.has-svg {
  display: none;
}
.post-card--compact .post-card__col:nth-child(1) {
  display: none;
}
.post-card--press .post-card__tag {
  border-color: #7C9FDA;
  background: #F3F6FC;
  color: #3D4782;
}
.post-card--press .post-card__tag--category {
  background: #4376C6;
  color: var(--sk-color-white);
}
.post-card--press .post-card__img-wrap svg {
  color: #7C9FDA;
}
.post-card--blog .post-card__tag {
  border-color: #9DD7B1;
  background: #E7F3EB;
  color: #3D4782;
}
.post-card--blog .post-card__tag--category {
  background: #77BB8F;
  color: var(--sk-color-white);
}
.post-card--blog .post-card__img-wrap svg {
  color: #9DD7B1;
}
.post-card--publication .post-card__tag {
  border-color: #6FA3AE;
  background: #CFE3E8;
  color: #3D4782;
}
.post-card--publication .post-card__tag--category {
  border-color: #E87277;
  background: #4F7982;
  color: var(--sk-color-white);
}
.post-card--publication .post-card__img-wrap svg {
  color: #6FA3AE;
}
.post-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.post-card__row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: inherit;
}
.post-card__row .post-card__col:nth-child(2) {
  height: 100%;
}
.post-card__row .post-card__col:nth-child(2) .post-card__content-group {
  height: inherit;
}
.post-card__row .post-card__col:nth-child(2) .post-card__footer {
  margin-top: auto;
}
.post-card__img-wrap {
  min-height: 150px;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sk-color-athens-gray-300);
  background: var(--sk-color-white);
}
.post-card__img-wrap img {
  position: absolute;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.post-card__img-wrap svg {
  display: block;
  position: absolute;
  top: -21px;
  right: 41px;
  width: 392px;
  aspect-ratio: 392/343;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
@media (min-width: 1024px) {
  .post-card__img-wrap svg {
    top: -20px;
    right: 34px;
  }
}
.post-card__content-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card__tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  max-height: 49px;
  overflow: hidden;
}
.post-card__tag {
  position: relative;
  padding: 0 8px;
  border-radius: 2px;
  border: 0.5px solid #7C9FDA;
  background: #F3F6FC;
  color: #3D4782;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-2xs);
  font-weight: 400;
  height: 22px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.post-card__tag--press {
  background: #4376C6;
  color: var(--sk-color-white);
}
.post-card__tag--blog {
  background: #77BB8F;
  color: var(--sk-color-white);
}
.post-card__tag--publication {
  border-color: #E87277;
  background: #4F7982;
  color: var(--sk-color-white);
}
.post-card__tag.has-svg {
  padding-left: 23px;
}
.post-card__tag.has-svg svg {
  position: absolute;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  display: block;
  width: 14px;
  height: 13px;
  -o-object-fit: contain;
     object-fit: contain;
}
.post-card__title {
  color: #000;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-h6);
  font-style: normal;
  font-weight: 700;
  line-height: 145%; /* 26.1px */
  max-height: 4.2em;
  overflow: hidden;
}
.post-card__excerpt {
  color: #010304;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.post-card__article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-card__article-meta hr {
  width: 1px;
  height: 13px;
  margin: 0;
  padding: 0;
  background: #3D4782;
  border: none;
}
.post-card__article-meta hr:first-child {
  display: none;
}
.post-card__article-meta div {
  position: relative;
  color: #3D4782;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-2xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.post-card__article-meta div.post-card__authors {
  max-height: 12px;
  overflow: hidden;
}
.post-card__date {
  white-space: nowrap;
}

.team-member-card {
  position: relative;
  width: 100%;
  padding: 10px;
  border-radius: 8.851px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.team-member-card:hover {
  border-color: #D9353E;
}
.team-member-card:hover .team-member-card__image-wrap img {
  transform: scale(1.05);
}
.team-member-card:hover .sk-btn {
  background: #FEF6F6;
  color: var(--sk-color-tertiary);
}
.team-member-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.team-member-card__image-wrap {
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  border-radius: 8.851px;
  width: 100%;
}
.team-member-card__image-wrap::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.team-member-card__image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.team-member-card__content-group {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-member-card__name {
  margin-bottom: 5px;
  color: #000;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-h6);
  font-weight: 700;
  line-height: 1.45;
}
.team-member-card__name:last-child {
  margin-bottom: 0;
}
.team-member-card__position {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 8px;
  border-radius: 2px;
  color: var(--sk-color-athens-gray-500);
  border: 0.5px solid var(--sk-color-athens-gray-500);
  background: #F7F6F9;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-2xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.team-member-card__position:last-child {
  margin-bottom: 0;
}
.team-member-card__academic_affiliation {
  color: var(--sk-color-athens-gray-500);
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-2xs);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.team-member-card__footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.team-member-card__li-link {
  display: block;
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #F7F6F9;
}
.team-member-card__li-link svg {
  position: absolute;
  display: block;
  width: 13px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.career-card {
  height: 100%;
  position: relative;
  padding: 10px;
  border-radius: 8.851px;
  border: 0.738px solid var(--sk-color-athens-gray-300);
  background: #fff;
}
.career-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.career-card__row {
  display: flex;
  gap: 20px;
  height: 100%;
}
.career-card__image {
  display: none;
}
@media (min-width: 1024px) {
  .career-card__image {
    display: block;
    width: 180px;
    flex-shrink: 0;
  }
}
.career-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 1024px) {
  .career-card__content {
    padding-top: 5px;
  }
}
.career-card__header {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .career-card__header {
    display: block;
  }
}
.career-card__header-image {
  width: 80px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .career-card__header-image {
    display: none;
  }
}
.career-card__header-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.career-card__img-wrap {
  aspect-ratio: 1;
  width: 100%;
  min-height: 100%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--sk-color-athens-gray-300);
  background: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .career-card__img-wrap {
    width: 100%;
    height: 100%;
    min-height: 180px;
    aspect-ratio: unset;
  }
}
.career-card__img-wrap svg {
  display: block;
  position: absolute;
  top: -21px;
  right: -185px;
  width: 392px;
  aspect-ratio: 392/343;
  color: #7C9FDA;
}
@media (min-width: 1024px) {
  .career-card__img-wrap svg {
    top: -22px;
    right: -87px;
  }
}
.career-card__tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.career-card__tag {
  position: relative;
  padding: 0 4px;
  border-radius: 2px;
  border: 0.5px solid #7C9FDA;
  background: #4376C6;
  color: var(--sk-color-white);
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-3xs);
  font-weight: 400;
  height: 22px;
  line-height: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.career-card__title {
  color: #000;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-h6);
  font-style: normal;
  font-weight: 700;
  line-height: 145%;
  margin: 0;
}
.career-card__excerpt {
  margin-top: 10px;
  color: #010304;
  font-family: var(--sk-font-primary), sans-serif;
  font-size: var(--sk-text-xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .career-card__excerpt {
    max-width: 380px;
  }
}
.career-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.career-card__footer-col {
  position: relative;
  z-index: 2;
}
.career-card__job-info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.career-card__job-info-item {
  position: relative;
  color: #3D4782;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: var(--sk-text-3xs);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.career-card__job-info-item:first-child::before {
  display: none;
}
.career-card__job-info-item::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 1px);
  left: -8px;
  transform: translateY(-50%);
  width: 1px;
  height: 90%;
  background: #3D4782;
}

.sk-posts-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .sk-posts-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sk-posts-grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 512px) {
  .sk-posts-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sk-posts-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sk-posts-grid-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 512px) {
  .sk-posts-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .sk-posts-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sk-section-header-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.sk-filters-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 13px;
  flex-direction: column;
  align-items: unset;
  gap: 16px;
}
@media (min-width: 1024px) {
  .sk-filters-row {
    margin-bottom: 20px;
    flex-direction: column;
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .sk-filters-row__col--eyebrow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.sk-filters-row__col--filters {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
@media (min-width: 768px) {
  .sk-filters-row__col--filters {
    flex-direction: row;
    align-items: center;
    gap: 15px;
  }
}
@media (min-width: 1024px) {
  .sk-filters-row__col--filters {
    align-items: center;
  }
}
.sk-filters-row__filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 768px) {
  .sk-filters-row__filters {
    flex-flow: row wrap;
  }
}
@media (min-width: 1024px) {
  .sk-filters-row__filters {
    justify-content: flex-start;
  }
}
.sk-filters-row__filter-label {
  color: var(--sk-color-athens-gray-450);
}
.sk-filters-row__clear-btn-wrap {
  order: 10;
}
@media (min-width: 1024px) {
  .sk-filters-row__clear-btn-wrap {
    order: unset;
  }
}
.sk-filters-row__clear-btn-wrap .sk-btn {
  height: 24px;
  line-height: 22px;
}

.panel-share-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 20px;
  color: var(--sk-color-danube-400);
}
.panel-share-wrapper .panel-share-label {
  font-size: clamp(12px, 11.2571428571px + 0.0019047619 * 100vw, 14px);
}
.panel-share-wrapper .panel-share-list {
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-wrap: wrap;
}
.panel-share-wrapper .panel-share-list .panel-share-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  border: 1px solid var(--sk-color-danube-400);
  color: var(--sk-color-danube-400);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.panel-share-wrapper .panel-share-list .panel-share-link svg {
  max-width: 12px;
  max-height: 12px;
}
.panel-share-wrapper .panel-share-list .panel-share-link:hover, .panel-share-wrapper .panel-share-list .panel-share-link:focus-visible {
  outline: none;
  background: var(--sk-color-danube-400);
  color: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .panel-share-wrapper {
    gap: 10px 20px;
  }
  .panel-share-wrapper .panel-share-list {
    gap: 10px;
  }
}

.sk-custom-dropdown {
  position: relative;
  width: 200px;
}
.sk-custom-dropdown input {
  position: absolute;
  opacity: 0;
}
.sk-custom-dropdown .checkbox {
  margin-top: 1px;
  width: clamp(12px, 10.5142857143px + 0.0038095238 * 100vw, 16px);
  height: clamp(12px, 10.5142857143px + 0.0038095238 * 100vw, 16px);
  border-radius: 1px;
  border: 0.5px solid var(--sk-color-athens-gray-500);
  background: transparent;
  flex-shrink: 0;
}
.sk-custom-dropdown--category .sk-custom-dropdown__toggle, .sk-custom-dropdown--green .sk-custom-dropdown__toggle {
  border-color: #4F7982;
  background: #E7F3EB;
}
.sk-custom-dropdown--category .sk-custom-dropdown__content, .sk-custom-dropdown--green .sk-custom-dropdown__content {
  border-color: #4F7982;
  background: #E7F3EB;
}
.sk-custom-dropdown--category input:checked + .checkbox, .sk-custom-dropdown--green input:checked + .checkbox {
  background: #4F7982;
}
.sk-custom-dropdown--tag .sk-custom-dropdown__toggle, .sk-custom-dropdown--blue .sk-custom-dropdown__toggle {
  border-color: #3D4782;
  background: #E6E9FB;
}
.sk-custom-dropdown--tag .sk-custom-dropdown__content, .sk-custom-dropdown--blue .sk-custom-dropdown__content {
  border-color: #3D4782;
  background: #E6E9FB;
}
.sk-custom-dropdown--tag input:checked + .checkbox, .sk-custom-dropdown--blue input:checked + .checkbox {
  background: #3D4782;
}
.sk-custom-dropdown--author .sk-custom-dropdown__toggle, .sk-custom-dropdown--cyan .sk-custom-dropdown__toggle {
  border-color: #3D4782;
  background: #DAF1F6;
}
.sk-custom-dropdown--author .sk-custom-dropdown__content, .sk-custom-dropdown--cyan .sk-custom-dropdown__content {
  border-color: #3D4782;
  background: #DAF1F6;
}
.sk-custom-dropdown--author input:checked + .checkbox, .sk-custom-dropdown--cyan input:checked + .checkbox {
  background: #6FA3AE;
}
.sk-custom-dropdown__toggle {
  position: relative;
  width: 100%;
  padding: 0 25px 0 8px;
  height: 24px;
  line-height: 24px;
  border: 0.5px solid #4F7982;
  background: #E7F3EB;
  color: #3D4782;
  border-radius: 2px;
  text-align: left;
  cursor: pointer;
  font-size: clamp(12px, 11.2571428571px + 0.0019047619 * 100vw, 14px);
  text-transform: uppercase;
}
.sk-custom-dropdown__toggle::after {
  content: "↓";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 8px;
}
.sk-custom-dropdown__content {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  display: none;
  z-index: 10;
  border: 0.5px solid #807F81;
  background: #E7F3EB;
  color: #3D4782;
  border-radius: 2px;
}
.sk-custom-dropdown__content-inner {
  padding: 4px;
  max-height: 200px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
}
.sk-custom-dropdown__content-inner::-webkit-scrollbar {
  width: 4px;
}
.sk-custom-dropdown__content-inner::-webkit-scrollbar-track {
  background: transparent;
}
.sk-custom-dropdown__content-inner::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 2px;
}
.sk-custom-dropdown__content-inner::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.35);
}
.sk-custom-dropdown.is-open .sk-custom-dropdown__content {
  display: block;
}
.sk-custom-dropdown__option {
  padding: 4px;
  display: flex;
  gap: 5px;
  font-size: clamp(12px, 11.2571428571px + 0.0019047619 * 100vw, 14px);
  color: var(--sk-color-athens-gray-500);
  border-radius: 2px;
  outline: none;
}
.sk-custom-dropdown__option:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.sk-custom-dropdown__option input {
  margin: 0;
}
.sk-custom-dropdown__option span {
  cursor: pointer;
}

.sk-img-with-description {
  position: relative;
  aspect-ratio: 327/200;
}
@media (min-width: 1024px) {
  .sk-img-with-description {
    aspect-ratio: 654/360;
  }
}
.sk-img-with-description__img-wrap {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.sk-img-with-description img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sk-img-with-description__description, .sk-img-with-description__cta-wrap {
  max-width: calc(100% - 60px);
  border-radius: 10px 0 0;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--bg-color);
  display: none;
}
@media (min-width: 768px) {
  .sk-img-with-description__description, .sk-img-with-description__cta-wrap {
    display: block;
  }
}
.sk-img-with-description__description svg.deco-corner, .sk-img-with-description__cta-wrap svg.deco-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  color: var(--bg-color, --sk-color-bg-primary);
}
.sk-img-with-description__description svg.deco-corner:nth-of-type(1), .sk-img-with-description__cta-wrap svg.deco-corner:nth-of-type(1) {
  transform: rotate(-90deg);
  bottom: 0;
  left: -10px;
}
.sk-img-with-description__description svg.deco-corner:nth-of-type(2), .sk-img-with-description__cta-wrap svg.deco-corner:nth-of-type(2) {
  transform: rotate(-90deg);
  top: -10px;
  right: 0;
}
.sk-img-with-description__description {
  padding: 10px 0 0 10px;
}
@media (min-width: 1280px) {
  .sk-img-with-description__description {
    padding: 10px 36px 0 10px;
  }
}
.sk-img-with-description__description span {
  padding: 8px 12px;
  display: inline-block;
  border-radius: 8px;
  border: 1px solid #3D4782;
  background: #E6E9FB;
  color: #3D4782;
  font-family: var(--sk-font-secondary), sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.sk-img-with-description__cta-wrap {
  padding: 10px 0 0 10px;
}

.skip-link {
  position: absolute;
  top: -1000em;
  left: 0;
  background: var(--sk-color-bg-primary);
  color: var(--sk-color-second);
  padding: 8px 16px;
  z-index: 100000;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.15s ease-in-out;
}

.skip-link:focus {
  top: 10px;
  left: 10px;
  text-decoration: none;
}

.pagination__btn {
  border: none;
  border-radius: 4px;
  width: 28px;
  height: 28px;
  background-color: #080018;
  color: #FCFCFD;
  font-size: clamp(10px, 9.2571428571px + 0.0019047619 * 100vw, 12px);
  cursor: pointer;
}
.pagination__btn.is-active, .pagination__btn:hover {
  background-color: #D9353E;
}
.pagination__btn svg {
  display: block;
  margin: 0 auto;
  width: 9px;
  height: 8px;
}
.pagination__btn--prev[disabled], .pagination__btn--next[disabled] {
  display: none;
}
