/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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;
}

*:focus {
  outline-color: var(--sk-color-);
  outline-offset: 5px;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
  overscroll-behavior: none;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

/* 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 {
  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,
svg {
  display: block;
  border-style: none;
  max-width: 100%;
  height: auto;
}

/* 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-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
:root {
  --sk-line-height--body: 1.6666666667;
  --sk-line-height--h1: 1.1666666667;
  --sk-line-height--h2: 1.2;
  --sk-line-height--h3: 1.2352941176;
  --sk-line-height--h4: 1.32;
  --sk-line-height--h5: 1.5;
  --sk-line-height--h6: 1.4444444444;
  --sk-line-height--lg: 1.4;
  --sk-line-height--xs: 2;
  --sk-line-height--2xs: 1.3333333333;
  --sk-text-base-size: 15px;
  --sk-text--h1: clamp(30px, 13.4482758621px + 0.0323275862 * 100vw, 60px);
  --sk-text--h2: clamp(30px, 18.9655172414px + 0.0215517241 * 100vw, 50px);
  --sk-text--h3: clamp(20px, 12.275862069px + 0.0150862069 * 100vw, 34px);
  --sk-text--h4: clamp(22px, 20.3448275862px + 0.0032327586 * 100vw, 25px);
  --sk-text--h5: clamp(18px, 16.8965517241px + 0.0021551724 * 100vw, 20px);
  --sk-text--h6: clamp(18px, 18px + 0 * 100vw, 18px);
  --sk-text--lg: 20px;
  --sk-text--xs: 14px;
  --sk-text--2xs: 12px;
  --header-height: 102px;
}

@media (max-width: 768px) {
  :root {
    --sk-line-height--h1: 1.1333333333;
    --sk-line-height--h2: 1.1333333333;
    --sk-line-height--h3: 1.3;
    --sk-line-height--h4: 1.3;
    --sk-line-height--h5: 1.3333333333;
    --sk-line-height--h6: 1.375;
    --sk-line-height--lg: 1.5555555556;
    --sk-line-height--2xs: 1.4;
    --sk-text--lg: 16px;
    --header-height: 66px;
  }
}
/* stylelint-disable */
:root {
  --sk-font-primary: "Poppins", sans-serif;
  --sk-font-secondary: var(--sk-font-primary);
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: black;
  --sk-color-white: white;
  --sk-color-primary: var(--sk-color-one);
  --sk-color-one: #b4b239;
  --sk-color-one-dark: #97951f;
  --sk-color-two: #072824;
  --sk-color-three: #000637;
  --sk-color-three-dark: var(--sk-color-one-dark);
  --sk-color-four: var(--sk-color-one-dark);
  --sk-color-five: var(--sk-color-three);
  --sk-color-six: #f7f7f7;
  /* Background colors */
  --sk-color-bg-six: var(--sk-color-six);
  --sk-color-bg-primary: var(--sk-color-white);
  --sk-color-bg-five: var(--sk-color-three);
  /* Typography */
  --sk-color-text: var(--sk-color-two);
  --sk-color-text-heading: var(--sk-color-text);
  --sk-color-link: var(--sk-color-one);
  --sk-color-link-hover: var(--sk-color-one-dark);
  --sk-color-link-visited: var(--sk-color-one);
  /* Border */
  --sk-color-border: rgba(7, 40, 36, 0.2);
  /* Body */
  --sk-color-body: var(--sk-color-text);
  /* Feedback */
  --sk-color-success: green;
  --sk-color-error: #d64522;
  --sk-color-error--light: #f8e3dd;
  --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-primary);
  color: var(--sk-color-text);
  font-weight: 300;
  line-height: var(--sk-line-height--body);
}

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);
  margin-top: 0;
}
@media (max-width: 768px) {
  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 {
    letter-spacing: normal;
  }
}

/* text size */
h1,
.sk-text--h1 {
  font-size: var(--sk-text--h1);
  line-height: var(--sk-line-height--h1);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  h1,
  .sk-text--h1 {
    margin-bottom: 16px;
  }
}

h2,
.sk-text--h2 {
  font-size: var(--sk-text--h2);
  line-height: var(--sk-line-height--h2);
  margin-bottom: 24px;
  font-weight: 300;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  h2,
  .sk-text--h2 {
    margin-bottom: 16px;
  }
}

h3,
.sk-text--h3 {
  font-size: var(--sk-text--h3);
  line-height: var(--sk-line-height--h3);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  h3,
  .sk-text--h3 {
    margin-bottom: 16px;
  }
}

h4,
.sk-text--h4 {
  font-size: var(--sk-text--h4);
  line-height: var(--sk-line-height--h4);
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  h4,
  .sk-text--h4 {
    margin-bottom: 16px;
  }
}

h5,
.sk-text--h5 {
  font-size: var(--sk-text--h5);
  line-height: var(--sk-line-height--h5);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: normal;
}

h6,
.sk-text--h6 {
  font-size: var(--sk-text--h6);
  line-height: var(--sk-line-height--h6);
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: normal;
}

.sk-subheading {
  font-size: var(--sk-text--2xs);
  line-height: var(--sk-line-height--2xs);
  color: var(--sk-color-primary);
  font-weight: 500;
  margin-bottom: 14px !important;
}

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

strong {
  font-weight: 600;
}

.sk-text--md {
  font-size: var(--sk-text-base-size);
  line-height: var(--sk-line-height--body);
}

.sk-text--lg {
  font-size: var(--sk-text--lg);
  line-height: var(--sk-line-height--lg);
  letter-spacing: 0.4px;
}

p {
  line-height: var(--sk-line-height--body);
  margin: 0;
}
p + h1, p + h2, p + h3, p + h4, p + h5, p + h6 {
  margin-top: 40px;
}
p:not(:last-of-type) {
  margin-bottom: 24px;
}

a,
.sk-link {
  color: var(--sk-color-link);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
}
a:hover, a:active, a:focus, a:focus-within,
.sk-link:hover,
.sk-link:active,
.sk-link:focus,
.sk-link:focus-within {
  color: var(--sk-color-link-hover);
}

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

.sk-typo-mod-color-white {
  color: var(--sk-color-white);
}
.sk-typo-mod-color-primary {
  color: var(--sk-color-primary);
}
.sk-typo-mod-color-one-dark {
  color: var(--sk-color-one-dark);
}
.sk-typo-mod-color-two {
  color: var(--sk-color-two);
}
.sk-typo-mod-bg-color-primary {
  background: var(--sk-color-bg-primary);
}
.sk-typo-mod-bg-color-six {
  background: var(--sk-color-bg-six);
}
.sk-typo-mod-bg-color-four {
  background: var(--sk-color-four);
}
.sk-typo-mod-bg-color-five {
  background: var(--sk-color-bg-five);
}
.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-typo-mod-style-normal {
  font-style: normal;
}
.sk-typo-mod-style-italic {
  font-family: var(--sk-font-secondary);
  font-style: italic;
  font-weight: 400;
}

.sk-wp-editor h1,
.sk-wp-editor .sk-text--h1 {
  margin-bottom: 16px;
}
.sk-wp-editor h2,
.sk-wp-editor .sk-text--h2 {
  margin-bottom: 16px;
}
.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: 24px;
}
.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: 0;
}
@media (max-width: 1024px) {
  .sk-wp-editor br {
    display: none;
  }
}

/* stylelint-disable */
:root {
  --sk-container-padding: 16px;
  --sk-container-width: calc(1184px + var(--sk-container-padding) * 2);
  --sk-container-width--md: calc(976px + var(--sk-container-padding) * 2);
  --sk-container-width--mds: calc(870px + var(--sk-container-padding) * 2);
  --sk-container-width--sm: calc(768px + var(--sk-container-padding) * 2);
}

.sk-container {
  max-width: var(--sk-container-width);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--sk-container-padding);
  padding-right: var(--sk-container-padding);
}
.sk-container--md {
  max-width: var(--sk-container-width--md);
}
.sk-container--mds {
  max-width: var(--sk-container-width--mds);
}
.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;
  }
}

.disable-scroll {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  padding: 29px 0;
  z-index: 10;
  will-change: background-color;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
    transform: translateY(0) !important;
  }
}
.header--dark + main {
  padding-top: var(--header-height);
}
.header.show .nav-main {
  top: 0;
}
.header-logo {
  width: 210px;
  height: 40px;
}
@media (max-width: 1024px) {
  .header-logo {
    width: 140px;
    height: 26px;
  }
}
.header-logo svg {
  width: 100%;
  height: 100%;
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header-wrapper {
    align-items: center;
  }
}
.header .nav-main {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header .nav-main {
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: -100vh;
    background-color: var(--sk-color-five);
    height: 100vh;
    overflow-y: scroll;
    will-change: top;
    transition-property: top;
    padding: 120px 0;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
  }
  .header .nav-main .sk-btn, .header .nav-main input[type=submit] {
    width: 100%;
    max-width: 278px;
  }
}
.header .nav-main ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .header .nav-main ul {
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }
}
.header .nav-main ul li {
  margin-right: 40px;
  line-height: 1;
}
@media (max-width: 1280px) {
  .header .nav-main ul li {
    margin-right: 24px;
  }
}
@media (max-width: 768px) {
  .header .nav-main ul li {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
.header .nav-main ul li a {
  color: var(--sk-color-white);
  text-decoration: none;
  font-size: var(--sk-text--xs);
  line-height: 24px;
  position: relative;
}
@media (max-width: 768px) {
  .header .nav-main ul li a {
    font-size: 20px;
    font-weight: 500;
  }
}
.header .nav-main ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.header .nav-main ul li a:hover::after {
  width: 100%;
}
.header .nav-main ul li.current-menu-item a::after, .header .nav-main ul li.current_page_item a::after {
  width: 100%;
}
.header .nav-toggler {
  display: none;
}
@media (max-width: 768px) {
  .header .nav-toggler {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    background-color: transparent;
    border: none;
    height: -moz-fit-content;
    height: fit-content;
    padding: 4px;
  }
  .header .nav-toggler .menu-title {
    font-size: var(--sk-text--xs);
    color: var(--sk-color-white);
    font-weight: 600;
    margin-left: 10px;
  }
  .header .nav-toggler .menu-icon {
    width: 16px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .header .nav-toggler .menu-icon__line {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: var(--sk-color-white);
    transform-origin: left;
    transition: 0.3s;
    transition-timing-function: ease-in-out;
  }
  .header .nav-toggler .menu-icon__line.small {
    width: 10px;
    margin-left: auto;
  }
  .header .nav-toggler:hover {
    cursor: pointer;
  }
  .header .nav-toggler:hover .menu-icon__line.small {
    width: 100%;
  }
  .header .nav-toggler.menu-open .menu-title {
    color: var(--sk-color-white);
  }
  .header .nav-toggler.menu-open .menu-icon__line {
    background-color: var(--sk-color-white);
  }
  .header .nav-toggler.menu-open .menu-icon__line.small {
    width: 100%;
    transform: rotate(45deg) translateY(-1px);
  }
  .header .nav-toggler.menu-open .menu-icon__line:nth-child(2) {
    display: none;
  }
  .header .nav-toggler.menu-open .menu-icon__line:nth-child(3) {
    transform: rotate(-45deg) translateY(1px);
  }
}
.header.sticky, .header.header--dark, .search .header.header--light {
  background-color: var(--sk-color-white);
}
.header.sticky .menu-item a, .header.header--dark .menu-item a, .search .header.header--light .menu-item a {
  color: var(--sk-color-five);
}
@media (max-width: 768px) {
  .header.sticky .menu-item a, .header.header--dark .menu-item a, .search .header.header--light .menu-item a {
    color: var(--sk-color-white);
  }
}
.header.sticky .menu-item.current-menu-item a, .header.sticky .menu-item.current_page_item a, .header.sticky .menu-item:hover a, .header.sticky .menu-item:focus a, .header.header--dark .menu-item.current-menu-item a, .header.header--dark .menu-item.current_page_item a, .header.header--dark .menu-item:hover a, .header.header--dark .menu-item:focus a, .search .header.header--light .menu-item.current-menu-item a, .search .header.header--light .menu-item.current_page_item a, .search .header.header--light .menu-item:hover a, .search .header.header--light .menu-item:focus a {
  color: var(--sk-color-primary);
}
@media (max-width: 768px) {
  .header.sticky .menu-item.current-menu-item a, .header.sticky .menu-item.current_page_item a, .header.sticky .menu-item:hover a, .header.sticky .menu-item:focus a, .header.header--dark .menu-item.current-menu-item a, .header.header--dark .menu-item.current_page_item a, .header.header--dark .menu-item:hover a, .header.header--dark .menu-item:focus a, .search .header.header--light .menu-item.current-menu-item a, .search .header.header--light .menu-item.current_page_item a, .search .header.header--light .menu-item:hover a, .search .header.header--light .menu-item:focus a {
    color: var(--sk-color-white);
  }
}
.header.sticky .menu-title, .header.header--dark .menu-title, .search .header.header--light .menu-title {
  color: var(--sk-color-primary);
}
.header.sticky .menu-icon__line, .header.header--dark .menu-icon__line, .search .header.header--light .menu-icon__line {
  background-color: var(--sk-color-primary);
}
.header.sticky .header-logo path[fill=white], .header.header--dark .header-logo path[fill=white], .search .header.header--light .header-logo path[fill=white] {
  fill: #001180;
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
.footer {
  padding: 80px 0 20px;
  background-color: var(--sk-color-bg-five);
  color: var(--sk-color-white);
}
@media (max-width: 1024px) {
  .footer {
    padding: 60px 0 24px;
  }
}
.footer .footer-wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  min-height: 225px;
}
@media (max-width: 1024px) {
  .footer .footer-wrapper {
    flex-direction: column;
    gap: 21px;
    padding-bottom: 16px;
  }
}
.footer__heading {
  flex-basis: 22%;
}
.footer__heading h1,
.footer__heading h2,
.footer__heading h3,
.footer__heading h4,
.footer__heading h5,
.footer__heading p {
  color: var(--sk-color-white);
  letter-spacing: 0.1px;
}
.footer__heading h1 .sk-typo-mod-style-italic,
.footer__heading h2 .sk-typo-mod-style-italic,
.footer__heading h3 .sk-typo-mod-style-italic,
.footer__heading h4 .sk-typo-mod-style-italic,
.footer__heading h5 .sk-typo-mod-style-italic,
.footer__heading p .sk-typo-mod-style-italic {
  letter-spacing: -0.5px;
}
.footer__body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-basis: 73.5%;
}
.footer__body a {
  color: var(--sk-color-white);
}
@media (max-width: 1024px) {
  .footer__body {
    flex-direction: row-reverse;
    width: 100%;
    align-items: baseline;
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .footer__contacts {
    flex-basis: 50%;
  }
}
.footer__contacts p {
  font-size: var(--sk-text--xs);
  line-height: 2;
}
.footer__contacts p:first-child {
  margin-bottom: 12px;
}
.footer__contacts a {
  text-decoration: none;
  font-weight: 400;
}
.footer__contacts strong {
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
}
@media (max-width: 1024px) {
  .footer__contacts strong {
    line-height: 2.9;
  }
}
@media (max-width: 1024px) {
  .footer__contacts {
    padding-right: 5px;
  }
}
@media (max-width: 390px) {
  .footer__contacts {
    padding-right: 0;
  }
}
.footer__divider {
  background-color: var(--sk-color-white);
  opacity: 60%;
  margin: 22px 0 20px;
}
@media (max-width: 1024px) {
  .footer__divider {
    margin: 23px 0;
  }
}
.footer__copyright {
  display: flex;
  opacity: 60%;
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  align-items: baseline;
}
@media (min-width: 1024px) {
  .footer__copyright p {
    margin-right: 40px;
  }
}
.footer__copyright a {
  text-decoration: none;
  font-weight: 400;
  color: currentColor;
}
.footer__copyright a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.footer__copyright a:hover::after {
  width: 100%;
}
.footer__copyright a:not(:last-of-type) {
  margin-right: 16px;
}
@media (max-width: 1024px) {
  .footer__copyright {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 5px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.footer .nav-main ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
@media (max-width: 1024px) {
  .footer .nav-main ul {
    flex-direction: column;
    gap: 7px;
  }
}
.footer .nav-main ul li a {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration-color: transparent;
  display: block;
}
.footer .nav-main ul li a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.footer .nav-main ul li a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .footer .nav-main ul li {
    font-weight: 500;
    line-height: 23px;
  }
}

input,
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:focus,
textarea:focus {
  outline: none;
  border-color: var(--sk-input-color-border-focus);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--sk-input-color-placeholder);
}
input::placeholder,
textarea::placeholder {
  color: var(--sk-input-color-placeholder);
}

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

.gform_wrapper.gravity-theme .gform_heading {
  height: 0;
  overflow: hidden;
}
.gform_wrapper.gravity-theme .gform-body .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container input,
.gform_wrapper.gravity-theme .gform-body .ginput_container select,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea {
  background-color: var(--sk-color-six);
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--sk-font-primary);
  color: var(--sk-color-five);
  font-size: var(--sk-text--xs);
  line-height: 24px;
  font-weight: 500;
  height: 48px;
  border: 1px solid var(--sk-color-six);
  margin-bottom: 0;
  width: 100%;
  display: block;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container input:focus, .gform_wrapper.gravity-theme .gform-body .ginput_container input:active,
.gform_wrapper.gravity-theme .gform-body .ginput_container select:focus,
.gform_wrapper.gravity-theme .gform-body .ginput_container select:active,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea:focus,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea:active {
  border-color: var(--sk-color-five);
  background-color: var(--sk-color-white);
}
.gform_wrapper.gravity-theme .gform-body .ginput_container input::-moz-placeholder, .gform_wrapper.gravity-theme .gform-body .ginput_container select::-moz-placeholder, .gform_wrapper.gravity-theme .gform-body .ginput_container textarea::-moz-placeholder {
  color: var(--sk-color-five);
  opacity: 1;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container input::placeholder, .gform_wrapper.gravity-theme .gform-body .ginput_container input::-moz-placeholder, .gform_wrapper.gravity-theme .gform-body .ginput_container input::-webkit-input-placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container select::placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container select::-moz-placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container select::-webkit-input-placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea::placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea::-moz-placeholder,
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea::-webkit-input-placeholder {
  color: var(--sk-color-five);
  opacity: 1;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container textarea {
  border-radius: 20px;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container select:focus, .gform_wrapper.gravity-theme .gform-body .ginput_container select:active {
  outline: none;
}
.gform_wrapper.gravity-theme .gform-body .gfield textarea.small {
  min-height: 150px;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container_select {
  position: relative;
}
.gform_wrapper.gravity-theme .gform-body .ginput_container_select::after {
  content: "";
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  background-image: url("../img/Triangle-arrow-for-select.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  top: 20px;
  right: 27px;
  pointer-events: none;
}
.gform_wrapper.gravity-theme .gform-body .gfield_error {
  border-color: var(--sk-color-error);
  position: relative;
}
.gform_wrapper.gravity-theme .gform-body .gfield_error::after {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  position: absolute;
  background-image: url("../img/form-error-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 14px;
  right: 14px;
  pointer-events: none;
}
.gform_wrapper.gravity-theme .gform-body .gfield_error .gfield_validation_message {
  position: absolute;
  top: 20px;
  width: 60%;
  height: auto;
  right: 31px;
  padding: 5px 10px;
  margin: 0;
  border: none;
  z-index: -1;
  opacity: 0;
  font-family: var(--sk-font-primary);
  color: var(--sk-color-error);
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  pointer-events: none;
  background-color: var(--sk-color-error--light);
  border-radius: 5px;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.gform_wrapper.gravity-theme .gform-body .gfield_error input {
  border-color: var(--sk-color-error);
}
.gform_wrapper.gravity-theme .gform-body .hidden_label .gfield_label {
  display: none;
  font-family: var(--sk-font-primary);
  color: var(--sk-color-five);
  font-size: var(--sk-text--xs);
  line-height: 24px;
  font-weight: 600;
  padding-left: 10px;
}
.gform_wrapper.gravity-theme .gform-body .gfield_required {
  color: var(--sk-color-five);
}
.gform_wrapper.gravity-theme .gform-body .gfield_error:hover .gfield_validation_message {
  z-index: 0;
  top: 14px;
  opacity: 1;
}
.gform_wrapper.gravity-theme .gform-body .gfield_custom_success {
  border-color: var(--sk-color-five);
  position: relative;
}
.gform_wrapper.gravity-theme .gform-body .gfield_custom_success::after {
  content: "";
  display: block;
  height: 22px;
  width: 22px;
  position: absolute;
  background-image: url("../img/form-success-icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: 14px;
  right: 14px;
  pointer-events: none;
}
.gform_wrapper.gravity-theme .gform-body .gfield_description {
  padding: 0;
  margin: 0;
  height: 0;
  border: none;
  overflow: hidden;
}
.gform_wrapper.gravity-theme .gform_footer.top_label {
  padding: 0;
  margin: 8px 0 0;
}
.gform_wrapper.gravity-theme .gform_footer.top_label input[type=submit] {
  margin-top: 0;
  height: 53px;
  font-size: 16.8px;
  font-weight: 600;
  line-height: 28.8px;
  text-align: center;
  margin-bottom: 0;
  border-radius: 100px;
}

.gform_validation_errors * {
  font-size: var(--sk-text--xs);
  color: var(--sk-color-error);
}
.gform_validation_errors:focus-visible, .gform_validation_errors:focus {
  outline: none;
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
.post-card {
  width: 382px;
}
@media (max-width: 512px) {
  .post-card {
    width: 100%;
  }
}
.post-card__title {
  letter-spacing: -0.4px;
  margin-top: 7px;
  max-width: 94%;
  font-weight: 400;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.post-card__subtitle {
  text-decoration: none;
  letter-spacing: 1px;
  margin-bottom: 8px !important;
}
.post-card__image {
  display: block;
  height: 235px;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
}
.post-card__image img,
.post-card__image svg {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 300ms ease-in-out;
}
.post-card a {
  text-decoration-color: transparent;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.post-card a:hover {
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.post-card a:hover .post-card__title {
  color: var(--sk-color-link-hover);
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
.post-card a:hover .sk-subheading {
  text-decoration-color: transparent;
}
.post-card a:hover .post-card__image img {
  transform: scale(1.05);
  transition: all 300ms ease-in-out;
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
.related.section {
  margin: 80px 0 120px;
}
@media (max-width: 1024px) {
  .related.section {
    margin: 60px 0;
  }
}
.related__posts {
  display: flex;
  justify-content: flex-start;
  gap: 19px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .related__posts {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.related__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.related__header a {
  display: block;
  color: var(--sk-color-one);
  text-decoration: underline;
  padding-right: 2px;
  padding-top: 14px;
  min-width: 20%;
  text-align: end;
}
.related__header a:hover, .related__header a:active {
  color: var(--sk-color-link-hover);
}
.related__title {
  padding-bottom: 66px;
  margin: 0;
}
@media (max-width: 1024px) {
  .related__title {
    padding-bottom: 32px;
  }
}
.related__subtitle {
  margin-bottom: 8px !important;
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
:root {
  --sk-cta-min-height: 540px;
}
@media (max-width: 768px) {
  :root {
    --sk-cta-min-height: 340px;
  }
}

.section-cta {
  min-height: var(--sk-cta-min-height);
  padding: 60px 0 100px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.section-cta .sk-container {
  z-index: 2;
}
.section-cta.section-bg::before {
  content: unset;
}
.section-cta__content {
  max-width: 723px;
}
.section-cta__content h1,
.section-cta__content h2 {
  margin-bottom: 32px;
  letter-spacing: normal;
}
@media (max-width: 1024px) {
  .section-cta__content h1,
  .section-cta__content h2 {
    margin-bottom: 24px;
  }
}
.section-cta__content * {
  color: inherit;
}
@media (max-width: 1024px) {
  .section-cta .plyr {
    height: 100%;
  }
  .section-cta .plyr iframe {
    height: 56.25vw;
    left: 50%;
    min-height: 460px;
    min-width: 130vh;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .section-cta .plyr.plyr--vimeo iframe {
    min-height: 100vh;
    min-width: 177.77vh;
  }
}
@media (max-width: 512px) {
  .section-cta .plyr__video-embed__container {
    transform: translateY(-30%) !important;
  }
}

blockquote,
.sk-blockquote {
  margin: 40px 0;
}
blockquote p,
.sk-blockquote p {
  font-size: var(--sk-text--h6);
  line-height: var(--sk-line-height--h6);
  font-weight: 500;
  margin-bottom: 16px;
}

a.sk-btn,
button.sk-btn,
.sk-btn,
input[type=submit],
.mf-widget button {
  background: var(--sk-color-primary);
  color: var(--sk-color-white);
  border-radius: 120px;
  border: none;
  padding: 13px 28px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: var(--sk-text--xs);
  line-height: 24px;
  font-weight: 600;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.sk-btn:hover, a.sk-btn:active, a.sk-btn:focus, a.sk-btn:focus-within,
button.sk-btn:hover,
button.sk-btn:active,
button.sk-btn:focus,
button.sk-btn:focus-within,
.sk-btn:hover,
input[type=submit]:hover,
.sk-btn:active,
input[type=submit]:active,
.sk-btn:focus,
input[type=submit]:focus,
.sk-btn:focus-within,
input[type=submit]:focus-within,
.mf-widget button:hover,
.mf-widget button:active,
.mf-widget button:focus,
.mf-widget button:focus-within {
  background-color: var(--sk-color-one-dark);
}
@media (max-width: 768px) {
  a.sk-btn,
  button.sk-btn,
  .sk-btn,
  input[type=submit],
  .mf-widget button {
    padding: 11px 28px;
  }
}
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],
input[disabled][type=submit],
.sk-btn[readonly],
input[readonly][type=submit],
.mf-widget button--disabled,
.mf-widget button[disabled],
.mf-widget button[readonly] {
  opacity: 0.6;
  cursor: not-allowed;
}
a.sk-btn--md, a.sk-btn--sm,
button.sk-btn--md,
button.sk-btn--sm,
.sk-btn--md,
.sk-btn--sm,
.mf-widget button--md,
.mf-widget button--sm {
  font-size: var(--sk-text--xs);
  line-height: 24px;
  margin-top: 0;
  border-radius: 25px;
}
a.sk-btn--md,
button.sk-btn--md,
.sk-btn--md,
.mf-widget button--md {
  padding: 10px 24px;
}
a.sk-btn--sm,
button.sk-btn--sm,
.sk-btn--sm,
.mf-widget button--sm {
  padding: 6px 24px;
}
a.sk-btn--auto,
button.sk-btn--auto,
.sk-btn--auto,
.mf-widget button--auto {
  max-width: inherit;
  width: auto;
}
a.sk-btn--full-w,
button.sk-btn--full-w,
.sk-btn--full-w,
input[type=submit],
.mf-widget button--full-w {
  width: 100%;
}
a.sk-btn__download,
button.sk-btn__download,
.sk-btn__download,
.mf-widget button__download {
  width: 25px;
  height: 25px;
  min-width: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 7px;
  border: 1px solid var(--sk-color-white);
  border-radius: 50%;
}
a.sk-btn-plus, a.sk-btn-arrow, a.sk-btn-play,
button.sk-btn-plus,
button.sk-btn-arrow,
button.sk-btn-play,
.sk-btn-plus,
.sk-btn-arrow,
.sk-btn-play,
.mf-widget button-plus,
.mf-widget button-arrow,
.mf-widget button-play {
  border-radius: 50%;
  font-size: 0;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
a.sk-btn-play,
button.sk-btn-play,
.sk-btn-play,
.mf-widget button-play {
  width: 84px;
  height: 84px;
  padding: 8px;
  background-color: var(--sk-color-three);
  color: var(--sk-color-white);
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.sk-btn-play:hover, a.sk-btn-play:active, a.sk-btn-play:focus, a.sk-btn-play:focus-within,
button.sk-btn-play:hover,
button.sk-btn-play:active,
button.sk-btn-play:focus,
button.sk-btn-play:focus-within,
.sk-btn-play:hover,
.sk-btn-play:active,
.sk-btn-play:focus,
.sk-btn-play:focus-within,
.mf-widget button-play:hover,
.mf-widget button-play:active,
.mf-widget button-play:focus,
.mf-widget button-play:focus-within {
  background-color: var(--sk-color-three-dark);
  transform: translate(-50%, -50%) scale(1.1);
}
a.sk-btn-play::before,
button.sk-btn-play::before,
.sk-btn-play::before,
.mf-widget button-play::before {
  content: url("data:image/svg+xml,%3Csvg width='13' height='17' viewBox='0 0 13 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 8.50001L0.749999 16.7273L0.75 0.272766L13 8.50001Z' fill='white'/%3E%3C/svg%3E%0A");
  display: block;
}
@media (max-width: 768px) {
  a.sk-btn-play,
  button.sk-btn-play,
  .sk-btn-play,
  .mf-widget button-play {
    width: 60px;
    height: 60px;
  }
  a.sk-btn-play::before,
  button.sk-btn-play::before,
  .sk-btn-play::before,
  .mf-widget button-play::before {
    transform: scale(0.65);
  }
}
a.sk-btn-plus,
button.sk-btn-plus,
.sk-btn-plus,
.mf-widget button-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1.5px solid var(--sk-color-primary);
  background-color: transparent;
}
a.sk-btn-plus::before, a.sk-btn-plus::after,
button.sk-btn-plus::before,
button.sk-btn-plus::after,
.sk-btn-plus::before,
.sk-btn-plus::after,
.mf-widget button-plus::before,
.mf-widget button-plus::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 1.5px;
  background-color: var(--sk-color-primary);
  border-radius: 1.5px;
  transition: 0.3s;
  transition-timing-function: ease-in-out;
}
a.sk-btn-plus::after,
button.sk-btn-plus::after,
.sk-btn-plus::after,
.mf-widget button-plus::after {
  transform: rotate(90deg);
}
a.sk-btn-plus.active, .active a.sk-btn-plus, a.sk-btn-plus:hover,
button.sk-btn-plus.active,
.active button.sk-btn-plus,
button.sk-btn-plus:hover,
.sk-btn-plus.active,
.active .sk-btn-plus,
.sk-btn-plus:hover,
.mf-widget button-plus.active,
.active .mf-widget button-plus,
.mf-widget button-plus:hover {
  background-color: var(--sk-color-primary);
  border-color: var(--sk-color-primary);
}
a.sk-btn-plus.active::before, a.sk-btn-plus.active::after, .active a.sk-btn-plus::before, .active a.sk-btn-plus::after, a.sk-btn-plus:hover::before, a.sk-btn-plus:hover::after,
button.sk-btn-plus.active::before,
button.sk-btn-plus.active::after,
.active button.sk-btn-plus::before,
.active button.sk-btn-plus::after,
button.sk-btn-plus:hover::before,
button.sk-btn-plus:hover::after,
.sk-btn-plus.active::before,
.sk-btn-plus.active::after,
.active .sk-btn-plus::before,
.active .sk-btn-plus::after,
.sk-btn-plus:hover::before,
.sk-btn-plus:hover::after,
.mf-widget button-plus.active::before,
.mf-widget button-plus.active::after,
.active .mf-widget button-plus::before,
.active .mf-widget button-plus::after,
.mf-widget button-plus:hover::before,
.mf-widget button-plus:hover::after {
  background-color: var(--sk-color-white);
}
a.sk-btn-plus.active::after, .active a.sk-btn-plus::after,
button.sk-btn-plus.active::after,
.active button.sk-btn-plus::after,
.sk-btn-plus.active::after,
.active .sk-btn-plus::after,
.mf-widget button-plus.active::after,
.active .mf-widget button-plus::after {
  transform: rotate(0deg) !important;
}
a.sk-btn-plus.active:hover::after, .active a.sk-btn-plus:hover::after,
button.sk-btn-plus.active:hover::after,
.active button.sk-btn-plus:hover::after,
.sk-btn-plus.active:hover::after,
.active .sk-btn-plus:hover::after,
.mf-widget button-plus.active:hover::after,
.active .mf-widget button-plus:hover::after {
  transform: rotate(90deg);
}
a.sk-btn-arrow,
button.sk-btn-arrow,
.sk-btn-arrow,
.mf-widget button-arrow {
  width: 50px;
  height: 50px;
  border: 1.5px solid var(--sk-color-white);
  background-color: transparent;
}
a.sk-btn-arrow::before,
button.sk-btn-arrow::before,
.sk-btn-arrow::before,
.mf-widget button-arrow::before {
  content: url("data:image/svg+xml,%3Csvg width='20' height='16' viewBox='0 0 20 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19 8H1.5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 0.928711L19.0711 7.99978L12 15.0708' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  display: block;
}
a.sk-btn-arrow:hover, a.sk-btn-arrow:active, a.sk-btn-arrow:focus, a.sk-btn-arrow:focus-within,
button.sk-btn-arrow:hover,
button.sk-btn-arrow:active,
button.sk-btn-arrow:focus,
button.sk-btn-arrow:focus-within,
.sk-btn-arrow:hover,
.sk-btn-arrow:active,
.sk-btn-arrow:focus,
.sk-btn-arrow:focus-within,
.mf-widget button-arrow:hover,
.mf-widget button-arrow:active,
.mf-widget button-arrow:focus,
.mf-widget button-arrow:focus-within {
  background-color: var(--sk-color-primary);
  border-color: var(--sk-color-primary);
}
a.sk-btn-arrow--left::before,
button.sk-btn-arrow--left::before,
.sk-btn-arrow--left::before,
.mf-widget button-arrow--left::before {
  transform: rotate(180deg);
}

ul {
  padding-left: 24px;
  margin: 16px 0;
}

.sk-list,
.sk-list-circle {
  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,
.sk-list-circle > li {
  display: flex;
  flex-wrap: nowrap;
}
.sk-list > li::after,
.sk-list-circle > li::after {
  content: "";
}
.sk-list > li:last-child::after,
.sk-list-circle > li:last-child::after {
  display: none !important;
}

.sk-list > li::before {
  content: url("data:image/svg+xml,%3Csvg width='14' height='12' viewBox='0 0 14 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 6L6 10.5L12.5 1.5' stroke='%233BB28D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  margin: 0 10px 0 0;
}

.sk-list-circle {
  margin: 25px 0;
}
@media (max-width: 760px) {
  .sk-list-circle {
    margin: 20px 0;
  }
}
.sk-list-circle > li {
  letter-spacing: -0.33px;
}
.sk-list-circle > li::before {
  content: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='8' fill='%233BB28D'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.05721 11.636C6.57156 11.636 6.10684 11.4355 5.76767 11.0747L3.85153 9.03315C3.54538 8.70739 3.57071 8.20443 3.90989 7.90945C4.24797 7.61446 4.77105 7.63993 5.07609 7.96568L6.99333 10.0062L7.1431 9.98495L10.8553 4.71343C11.1108 4.34948 11.624 4.25292 12.0028 4.50121C12.3795 4.74739 12.4786 5.24292 12.2231 5.60581L8.51083 10.8784C8.20138 11.3187 7.71905 11.5925 7.18935 11.6318C7.1453 11.6349 7.10125 11.636 7.05721 11.636Z' fill='white'/%3E%3C/svg%3E%0A");
  margin: 3px 10px -3px 0;
}

.section {
  margin: 128px 0;
}
@media (max-width: 768px) {
  .section {
    margin: 64px 0;
  }
}
.section.section-bg {
  background: var(--sk-color-six);
  padding: 128px 0;
  margin: 0;
}
@media (max-width: 768px) {
  .section.section-bg {
    padding: 64px 0;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
:root {
  --plyr-color-main: var(--sk-color-three);
  --plyr-control-icon-size: 16px;
}
@media (max-width: 768px) {
  :root {
    --plyr-control-icon-size: 12px;
  }
}

.section-bg-video, .section__embed-wrapp {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section__embed-wrapp {
  width: 100%;
  pointer-events: none;
}
.section__embed-wrapp .plyr__controls {
  display: none;
}
.section-video__wrapp {
  position: relative;
}

.plyr__control {
  --plyr-control-spacing: 25px;
}
@media (max-width: 768px) {
  .plyr__control {
    --plyr-control-spacing: 16px;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-lg-m: 1100px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-sm-s: 760px;
  --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);
*/
.sk-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
}
.sk-popup.show {
  opacity: 1;
  visibility: visible;
  z-index: 15;
}
.sk-popup.show.animate {
  opacity: 0;
}
.sk-popup__wrap {
  position: relative;
  width: calc(100% - 60px);
  max-width: 900px;
  height: auto;
}
.sk-popup__close {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  font-size: 32px;
  line-height: 1;
  font-weight: normal;
  text-align: center;
  text-transform: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
  color: var(--sk-color-white);
  top: -24px;
  right: -24px;
  background: none;
  border: none;
  border-radius: 0;
  z-index: 1;
}
.sk-popup__close:hover {
  opacity: 1;
}

.legal-disclaimer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  transition: 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.legal-disclaimer.show {
  z-index: 99;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.legal-disclaimer__popup-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 20px 100px;
}
.legal-disclaimer__popup-wrapper {
  background-color: #fff;
  border-radius: 20px;
  padding: 50px 20px 30px;
  position: relative;
}
.legal-disclaimer__close-btn {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 50%;
  border: 1px solid var(--sk-color-text);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.legal-disclaimer__close-btn::after, .legal-disclaimer__close-btn::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--sk-color-text);
  content: "";
}
.legal-disclaimer__close-btn::after {
  transform: rotate(45deg);
  left: 4px;
}
.legal-disclaimer__close-btn::before {
  transform: rotate(-45deg);
  left: 4px;
}
.legal-disclaimer__agree {
  background: var(--sk-color-primary);
  color: var(--sk-color-white);
  padding: 6px 24px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  margin-top: 30px;
  display: block;
  font-size: 20px;
}
.legal-disclaimer__agree:hover {
  color: var(--sk-color-white);
  opacity: 0.8;
}

.mf-widget {
  color: var(--sk-color-text);
}
.mf-widget.mf-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.mf-widget table {
  border-collapse: collapse;
  width: 100%;
}
.mf-widget table tr:nth-child(n+1) {
  border-bottom-width: 1px;
}
.mf-widget table thead tr,
.mf-widget table tr:nth-child(n+1) {
  border-color: var(--sk-color-border);
  border-left-width: 1px;
  border-right-width: 1px;
}
.mf-widget table thead tr {
  background-color: var(--sk-color-border);
}
.mf-widget table td,
.mf-widget table th {
  padding: 8px;
  font-size: 12px;
  text-align: left;
}
.mf-widget .mf-volume-dates {
  font-size: 12px;
}
.mf-widget .source-text {
  color: var(--sk-color-five);
  font-size: 12px;
  margin-top: 0.5rem;
}
.mf-widget .mfn-archive {
  min-width: 600px;
}
.mf-widget .mfn-archive .mfn-archive-header {
  background-color: rgba(0, 0, 0, 0.2);
  color: currentColor;
}
.mf-widget .mfn-archive .mfn-archive-event-date {
  color: var(--sk-color-five);
  font-size: 12px;
}
.mf-widget .mfn-archive .mfn-archive-header-year,
.mf-widget .mfn-archive .mfn-archive-event-title {
  font-size: 12px;
}
.mf-widget .mfn-archive .mfn-archive-header-item-type {
  font-size: 12px;
  text-align: center;
}
.mf-widget .mfn-archive td {
  min-width: 6rem;
}
.mf-widget .mfn-archive td.mfn-archive-item {
  text-align: center;
}
.mf-widget .mfn-archive .mfn-archive-item img {
  height: 20px;
}
.mf-widget .mfn-archive td.mfn-archive-item a {
  display: inline-block;
  transition-duration: 0.15s;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.mf-widget .mfn-archive td.mfn-archive-item a:hover {
  opacity: 0.5;
}
.mf-widget #mf_calendar_top_buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mf-widget #mf_calendar_top_buttons button {
  font-size: 12px;
  padding: 6px 24px;
}
.mf-widget #mf_calendar_buttons {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 24px;
}
.mf-widget #mf_calendar_buttons button {
  font-size: 12px;
  padding: 6px 24px;
}
.mf-widget #mf_calendar_table .event_links a {
  margin-right: 10px;
}
.mf-widget div[id^=mf-ticker] {
  border-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  border-width: 1px;
  display: inline-flex;
  flex-wrap: wrap;
  padding: 1rem;
}
.mf-widget div[id^=mf-ticker] .stock-symbol {
  font-size: 1.25rem;
  width: 100%;
}
.mf-widget div[id^=mf-ticker] .negative {
  color: rgb(239, 68, 68);
}
.mf-widget div[id^=mf-ticker] .positive {
  color: var(--sk-color-primary);
}
.mf-widget div[id^=mf-ticker] .latest-price {
  font-size: 2.25rem;
  width: 100%;
}
.mf-widget div[id^=mf-ticker] .delta-today,
.mf-widget div[id^=mf-ticker] div[class^=delta-today-] {
  font-size: 1.25rem;
  width: 100%;
}
.mf-widget div[id^=mf-ticker] .latest-date,
.mf-widget div[id^=mf-ticker] .latest-time {
  margin-right: 0.25rem;
  margin-top: 0.75rem;
}
