@charset "UTF-8";
/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --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 */
/*! locomotive-scroll v4.1.3 | MIT License | https://github.com/locomotivemtl/locomotive-scroll */
html.has-scroll-smooth {
  overflow: hidden;
}

html.has-scroll-dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}

[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  z-index: 999;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  transform-origin: center right;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0;
}

.c-scrollbar:hover {
  transform: scaleX(1.45);
}

.c-scrollbar:hover,
.has-scroll-scrolling .c-scrollbar,
.has-scroll-dragging .c-scrollbar {
  opacity: 1;
}

[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  transform: scaleY(1);
}

[data-scroll-direction=horizontal] .c-scrollbar:hover {
  transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: grab;
}

.has-scroll-dragging .c-scrollbar_thumb {
  cursor: grabbing;
}

[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

/* 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-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
}

/* stylelint-disable */
:root {
  --sk-line-height--body: 1.4;
  --sk-line-height--h1: 1.3888888889;
  --sk-line-height--h2: 1.4285714286;
  --sk-line-height--h3: 1.4;
  --sk-line-height--h4: 1.4;
  --sk-line-height--h5: 1.4;
  --sk-line-height--h6: 1.4;
  --sk-text-base-size: 15px;
  --sk-text--xs: 12px;
  --sk-text--h1: clamp(20px, 14.0571428571px + 0.0152380952 * 100vw, 36px);
  --sk-text--h2: clamp(16px, 14.1428571429px + 0.0047619048 * 100vw, 21px);
  --sk-text--h3: clamp(15px, 15px + 0 * 100vw, 15px);
  --sk-text--h4: clamp(15px, 15px + 0 * 100vw, 15px);
  --sk-text--h5: clamp(15px, 15px + 0 * 100vw, 15px);
  --sk-text--h6: clamp(15px, 15px + 0 * 100vw, 15px);
}

@media (max-width: 768px) {
  :root {
    --sk-line-height--body: 1.4;
    --sk-line-height--h1: 1.3888888889;
    --sk-line-height--h2: 1.4285714286;
    --sk-line-height--h3: 1.4;
    --sk-line-height--h4: 1.4;
    --sk-line-height--h5: 1.4;
    --sk-line-height--h6: 1.4;
  }
}
/* stylelint-disable */
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Light.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-SemiBold.woff") format("woff"), url("../fonts/OpenSans/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-SemiBold.ttf") format("ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans";
  src: url("../fonts/OpenSans/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/OpenSans/OpenSans-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Condensed";
  src: url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Light.woff") format("woff"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Light.woff2") format("woff2"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Condensed";
  src: url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Regular.woff") format("woff"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Regular.woff2") format("woff2"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSans-Condensed";
  src: url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Bold.woff") format("woff"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Bold.woff2") format("woff2"), url("../fonts/OpenSans-Condensed/OpenSans-Condensed-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --sk-font-primary: OpenSans;
  --sk-font-secondary: OpenSans-Condensed;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: #000000;
  --sk-color-white: #FFFFFF;
  --sk-color-primary: #75AAC6;
  --sk-color-second: #4A3186;
  --sk-color-ligth-grey: #D8D8D8;
  --sk-color-ligth-grey-opacity: rgba(216, 216, 216, 0.35);
  /* Background colors */
  --sk-ligth-blue-gradient: linear-gradient(225deg, #4075aa14 0%, #75aac64a 100%);
  --sk-dark-blue-gradient: linear-gradient(45deg, #4A3186 0%, #BF000000 100%);
  --sk-black-blue-gradient: linear-gradient(45deg, #4a3186f2 0%, #000000e8 100%);
  /* Typography */
  --sk-color-text: var(--sk-color-black);
  --sk-color-text-heading: var(--sk-color-black);
  --sk-color-text-subtle: var(--sk-color-ligth-grey);
  --sk-color-link: var(--sk-color-primary);
  --sk-color-link-hover: var(--sk-color-second);
  --sk-color-link-visited: var(--sk-color-second);
  /* Border */
  --sk-color-border: var(--sk-color-ligth-grey);
  /* 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-primary);
  color: var(--sk-color-text);
  font-weight: 400;
  line-height: var(--sk-line-height--body);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sk-text--h1,
.sk-text--h2,
.sk-text--h3,
.sk-text--h4,
.sk-text--h5,
.sk-text--h6,
.sk-text--xs {
  color: var(--sk-color-text-heading);
  font-weight: 300;
}

/* text size */
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);
}

.sk-text-micro {
  font-family: var(--sk-font-secondary);
  font-size: var(--sk-text--xs);
  text-transform: uppercase;
}

p {
  line-height: var(--sk-line-height--body);
}

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-hover);
  text-decoration: underline;
}

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

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;
}

.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-third);
}
.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-third);
}
.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: 30px;
}
@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;
  }
}
@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;
  }
}

/* stylelint-disable */
:root {
  --sk-container-padding: 25px;
  --sk-container-width-lg: calc(1550px + var(--sk-container-padding) * 2);
  --sk-container-width--md: calc(1200px + var(--sk-container-padding) * 2);
  --sk-container-width--sm: calc(1024px + var(--sk-container-padding) * 2);
}

.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--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;
}

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

.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;
  }
}

.disabled {
  overflow: hidden;
}

.common-label-1[data-pre-title-anim]::before {
  height: 0;
  transition: height 1s;
  transition-timing-function: ease-in-out;
}
.common-label-1[data-pre-title-anim].is-inview::before {
  height: 100px;
}

[data-fade-anim] {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition-duration: 0.9s, 0.7s !important;
  transition-property: opacity, transform;
}
[data-fade-anim].is-inview {
  animation-delay: 0.15s;
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, 0);
}

[data-fade=up] {
  transform: matrix(1, 0, 0, 1, 0, 30);
}

[data-fade=down] {
  transform: matrix(1, 0, 0, 1, 0, -30);
}

[data-fade=left] {
  transform: matrix(1, 0, 0, 1, 30, 0);
}

[data-fade=right] {
  transform: matrix(1, 0, 0, 1, -30, 0);
}

.header {
  padding: 25px 0;
  z-index: 10;
  position: relative;
}
@media (min-width: 1024px) {
  .header {
    padding: 50px 0;
  }
}
.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.header-logo {
  display: block;
  width: 200px;
  height: 75px;
}
@media (min-width: 1280px) {
  .header-logo {
    width: 275px;
    height: 100px;
  }
}
.header-logo svg,
.header-logo img {
  max-width: 100%;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
}
.header-logo.h-hover .cls-1 {
  stroke-dasharray: 301 303;
  stroke-dashoffset: 302;
}
.header-logo.h-hover .EScHVMPy_0 {
  stroke-dasharray: 301 303;
  stroke-dashoffset: 302;
  animation: EScHVMPy_draw 636ms ease 0ms forwards;
}
.header-logo.h-hover .EScHVMPy_1 {
  stroke-dasharray: 122 124;
  stroke-dashoffset: 123;
  animation: EScHVMPy_draw 259ms ease 236ms forwards;
}
.header-logo.h-hover .EScHVMPy_2 {
  stroke-dasharray: 13 15;
  stroke-dashoffset: 14;
  animation: EScHVMPy_draw 29ms ease 495ms forwards;
}
.header-logo.h-hover .EScHVMPy_3 {
  stroke-dasharray: 551 553;
  stroke-dashoffset: 552;
  animation: EScHVMPy_draw 1163ms ease 525ms forwards;
}
.header-logo.h-hover .EScHVMPy_4 {
  stroke-dasharray: 1 3;
  stroke-dashoffset: 2;
  animation: EScHVMPy_draw 4ms ease 788ms forwards;
}
.header-logo.h-hover .EScHVMPy_5 {
  stroke-dasharray: 267 269;
  stroke-dashoffset: 268;
  animation: EScHVMPy_draw 564ms ease 892ms forwards;
}
.header-logo.h-hover .EScHVMPy_6 {
  stroke-dasharray: 399 401;
  stroke-dashoffset: 400;
  animation: EScHVMPy_draw 842ms ease 957ms forwards;
}
.header-logo.h-hover .eEzYDUSx_en_0 {
  stroke-dasharray: 316 318;
  stroke-dashoffset: 317;
  animation: eEzYDUSx_draw 640ms ease 0ms forwards;
}
.header-logo.h-hover .eEzYDUSx_en_1 {
  stroke-dasharray: 407 409;
  stroke-dashoffset: 408;
  animation: eEzYDUSx_draw 824ms ease 240ms forwards;
}
.header-logo.h-hover .eEzYDUSx_en_2 {
  stroke-dasharray: 542 544;
  stroke-dashoffset: 543;
  animation: eEzYDUSx_draw 1097ms ease 465ms forwards;
}
.header-logo.h-hover .eEzYDUSx_en_3 {
  stroke-dasharray: 105 107;
  stroke-dashoffset: 106;
  animation: eEzYDUSx_draw 214ms ease 563ms forwards;
}
.header-logo.h-hover .eEzYDUSx_en_4 {
  stroke-dasharray: 109 111;
  stroke-dashoffset: 110;
  animation: eEzYDUSx_draw 222ms ease 777ms forwards;
}
.header__toggler {
  position: relative;
  z-index: 35;
}
@media (min-width: 1024px) {
  .header__toggler {
    display: none;
  }
}
.header__toggler button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  width: 40px;
  height: 40px;
  padding: 0;
}
.header__toggler button .navbar-toggler-icon {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__toggler button .navbar-toggler-icon::after {
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background-color: var(--sk-color-second);
  position: absolute;
  top: 8px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header__toggler button .navbar-toggler-icon::before {
  content: "";
  width: 100%;
  border-radius: 2px;
  height: 3px;
  background-color: var(--sk-color-second);
  position: absolute;
  bottom: 8px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header__toggler button .navbar-toggler-icon .nav-icon {
  display: block;
  opacity: 1;
  width: 100%;
  height: 3px;
  background-color: var(--sk-color-second);
  border-radius: 2px;
}
.header .options-btns {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  gap: 10px;
}
.header .options-btns button,
.header .options-btns .contact-btn,
.header .options-btns .lang-switcher {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  width: 50px;
  height: 50px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  color: var(--sk-color-white);
  background-color: var(--sk-color-primary);
}
.header .options-btns button svg,
.header .options-btns .contact-btn svg,
.header .options-btns .lang-switcher svg {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header .options-btns button:hover, .header .options-btns button:active, .header .options-btns button:focus, .header .options-btns button:focus-within,
.header .options-btns .contact-btn:hover,
.header .options-btns .contact-btn:active,
.header .options-btns .contact-btn:focus,
.header .options-btns .contact-btn:focus-within,
.header .options-btns .lang-switcher:hover,
.header .options-btns .lang-switcher:active,
.header .options-btns .lang-switcher:focus,
.header .options-btns .lang-switcher:focus-within {
  background: var(--sk-color-second);
}
.header .nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .header .nav ul {
    transform: translateY(8px);
  }
}
.header .nav ul li a, .header .nav ul li .sk-link {
  font-weight: 300;
  font-size: var(--sk-text--h2);
  color: var(--sk-color-text);
  position: relative;
}
.header .nav ul li a:hover, .header .nav ul li .sk-link:hover, .header .nav ul li a:active, .header .nav ul li .sk-link:active, .header .nav ul li a:focus, .header .nav ul li .sk-link:focus, .header .nav ul li a:focus-within, .header .nav ul li .sk-link:focus-within {
  text-decoration: none;
  color: var(--sk-color-second);
}
.header .nav ul li a .menu-item-count, .header .nav ul li .sk-link .menu-item-count {
  font-family: var(--sk-font-secondary);
  font-size: var(--sk-text--xs);
  color: var(--sk-color-ligth-grey);
  font-weight: 600;
}
.header .nav ul li a .menu-item-arrow, .header .nav ul li .sk-link .menu-item-arrow {
  position: absolute;
  display: flex;
  width: 10px;
  height: 5px;
  opacity: 0;
  transition: 0.4s, transform 0.2s 0.3s;
}
.header .nav ul li a .menu-item-arrow svg, .header .nav ul li .sk-link .menu-item-arrow svg {
  width: 11px;
  height: 6px;
}
.header__nav-main {
  display: none;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 1024px) {
  .header__nav-main {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    height: 100px;
    justify-content: space-between;
  }
}
.header__nav-main ul li a .menu-item-arrow, .header__nav-main ul li .sk-link .menu-item-arrow {
  bottom: -10px;
  left: 10px;
  transform: rotate(45deg);
  transform-origin: top right;
  opacity: 1;
}
.header__nav-main ul li a:hover .menu-item-arrow, .header__nav-main ul li .sk-link:hover .menu-item-arrow, .header__nav-main ul li a:active .menu-item-arrow, .header__nav-main ul li .sk-link:active .menu-item-arrow, .header__nav-main ul li a:focus .menu-item-arrow, .header__nav-main ul li .sk-link:focus .menu-item-arrow, .header__nav-main ul li a:focus-within .menu-item-arrow, .header__nav-main ul li .sk-link:focus-within .menu-item-arrow {
  opacity: 1;
  left: 50%;
  transform: translateY(-50%) rotate(0);
}
.header__nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
  width: 100%;
  visibility: hidden;
  z-index: 30;
}
@media (min-width: 1024px) {
  .header__nav-mobile {
    display: none;
  }
}
.header__nav-mobile nav {
  width: 82%;
  height: 100vh;
  padding: 100px 30px;
  background: var(--sk-ligth-blue-gradient);
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transform: translateX(-110%);
  transition: all 0.3s linear;
}
.header__nav-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.header__nav-mobile ul li a .menu-item-arrow, .header__nav-mobile ul li .sk-link .menu-item-arrow {
  right: -50px;
  top: 50%;
  transform: translateX(-50%) rotate(-90deg);
}
.header__nav-mobile ul li a:hover .menu-item-arrow, .header__nav-mobile ul li .sk-link:hover .menu-item-arrow, .header__nav-mobile ul li a:active .menu-item-arrow, .header__nav-mobile ul li .sk-link:active .menu-item-arrow, .header__nav-mobile ul li a:focus .menu-item-arrow, .header__nav-mobile ul li .sk-link:focus .menu-item-arrow, .header__nav-mobile ul li a:focus-within .menu-item-arrow, .header__nav-mobile ul li .sk-link:focus-within .menu-item-arrow {
  right: -25px;
  opacity: 1;
}
.header__nav-mobile .options-btns .lang-switcher__dropdown {
  top: unset;
  bottom: calc(100% + 10px);
}
.header .open-mobile-menu {
  display: block;
  background: var(--sk-color-white);
  transition: all 0.3s linear;
  visibility: visible;
}
.header .open-mobile-menu nav {
  transform: translateX(0);
  transition: transform 0.3s linear;
  overflow: auto;
}
.header .close-menu .navbar-toggler-icon .nav-icon {
  opacity: 0;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header .close-menu .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 50%;
}
.header .close-menu .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 50%;
}
.header_inner {
  border-bottom: 1px solid var(--sk-color-black);
}
.header_inner .header__top {
  display: none;
}

@keyframes EScHVMPy_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes EScHVMPy_fade {
  0% {
    stroke-opacity: 1;
  }
  94.8051948051948% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
@keyframes eEzYDUSx_draw {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes eEzYDUSx_fade {
  0% {
    stroke-opacity: 1;
  }
  94.44444444444444% {
    stroke-opacity: 1;
  }
  100% {
    stroke-opacity: 0;
  }
}
.footer {
  padding: 50px 0 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 150px 0 0;
  }
}
@media (min-width: 768px) {
  .footer .footer__social-list {
    padding-bottom: 0;
  }
}
.footer .sk-container--footer-top {
  padding: 0;
}
@media (min-width: 1440px) {
  .footer .sk-container--footer-top {
    padding: 0 var(--sk-container-padding);
  }
}
.footer__wrapper {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 1000px;
  width: 100%;
  padding: 50px 0 50px;
}
@media (min-width: 768px) {
  .footer__wrapper {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 350px; /* second column = form width */
    grid-template-areas: "title  ." "text   form" "social form";
    -moz-column-gap: 50px;
         column-gap: 50px;
    row-gap: 0;
    padding: 104px 0 113px;
  }
}
.footer__top {
  background: var(--sk-ligth-blue-gradient);
  padding: 50px 25px;
}
@media (min-width: 768px) {
  .footer__top {
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    display: flex;
    flex-direction: column;
    padding: 67px 25px 65px;
  }
}
.footer__subheading {
  text-align: center;
  position: relative;
  font-family: var(--sk-font-secondary);
  font-weight: bold;
  color: var(--sk-color-second);
}
.footer__subheading::before {
  content: "";
  position: absolute;
  bottom: 33px;
  left: 50%;
  width: 1px;
  height: 100px;
  background: var(--sk-color-ligth-grey);
}
.footer__title {
  color: var(--sk-color-second);
  font-weight: 300;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .footer__title {
    grid-area: title;
    margin-bottom: 34px;
  }
}
.footer__text {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .footer__text {
    grid-area: text;
  }
}
@media (min-width: 768px) {
  .footer__social {
    grid-area: social;
  }
}
.footer__social-title {
  color: var(--sk-color-second);
  font-weight: 600;
}
.footer__social-list {
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  display: flex;
  gap: 10px;
  padding: 20px 0;
  list-style: none;
  margin: 0;
}
.footer__social-list .social__item {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.footer__social-list .social__item:hover, .footer__social-list .social__item:active, .footer__social-list .social__item:focus, .footer__social-list .social__item:focus-within {
  transform: translateY(-10px);
}
.footer__social-list .social__item svg {
  display: block;
}
.footer__social-list .social__item .bg-path {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.footer__social-list .social__item--linkedin:hover .bg-path, .footer__social-list .social__item--linkedin:active .bg-path, .footer__social-list .social__item--linkedin:focus .bg-path, .footer__social-list .social__item--linkedin:focus-within .bg-path {
  fill: #0072b1;
}
.footer__social-list .social__item--instagram:hover .bg-path, .footer__social-list .social__item--instagram:active .bg-path, .footer__social-list .social__item--instagram:focus .bg-path, .footer__social-list .social__item--instagram:focus-within .bg-path {
  fill: #e1306c;
}
.footer__social-list .social__item--spotify:hover .bg-path, .footer__social-list .social__item--spotify:active .bg-path, .footer__social-list .social__item--spotify:focus .bg-path, .footer__social-list .social__item--spotify:focus-within .bg-path {
  fill: #1ed760;
}
.footer__social-list .social__item--twitter:hover .bg-path, .footer__social-list .social__item--twitter:active .bg-path, .footer__social-list .social__item--twitter:focus .bg-path, .footer__social-list .social__item--twitter:focus-within .bg-path {
  fill: #000;
}
.footer__social-list .social__item--youtube:hover .bg-path, .footer__social-list .social__item--youtube:active .bg-path, .footer__social-list .social__item--youtube:focus .bg-path, .footer__social-list .social__item--youtube:focus-within .bg-path {
  fill: #f61c0d;
}
.footer__social-list .social__item--facebook:hover .bg-path, .footer__social-list .social__item--facebook:active .bg-path, .footer__social-list .social__item--facebook:focus .bg-path, .footer__social-list .social__item--facebook:focus-within .bg-path {
  fill: #168bdc;
}
.footer__content {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__content {
    display: contents; /* dissolve the wrapper so its children become grid items */
  }
}
.footer__form {
  order: -1;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__form {
    grid-area: form;
    width: auto; /* width is now set by the 350px column */
    max-width: none;
    margin-top: 0; /* the magic 96px is no longer needed */
    order: unset;
  }
}
@media (min-width: 768px) {
  .footer__form .inf-form {
    height: 100%; /* form fills the height of text + social */
  }
}
.footer__form .inf-success h4 {
  font-size: var(--sk-text--h2);
  color: var(--sk-color-text);
  line-height: var(--sk-line-height--h2);
}
.footer__form .inf-success .inf-btn {
  display: none;
}
.footer__form .inf-submit {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  margin-top: 75px;
}
.footer__form .inf-submit button[type=submit] {
  position: relative;
  font-size: var(--sk-text--h2);
  padding: 23px 54px 23px 30px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.footer__form .inf-submit button[type=submit] svg {
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  right: 27px;
  display: block;
  width: 6px;
  height: 10px;
}
.footer__form .inf-submit button[type=submit]:hover, .footer__form .inf-submit button[type=submit]:active, .footer__form .inf-submit button[type=submit]:focus, .footer__form .inf-submit button[type=submit]:focus-within {
  border-color: var(--sk-color-second);
  color: var(--sk-color-second);
}
.footer__bottom {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  padding: 50px 0 75px;
  font-family: var(--sk-font-secondary);
  font-weight: 600;
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.footer__bottom .copyright {
  font-size: var(--sk-text--xs);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .footer__bottom .copyright {
    flex: 0 1 300px;
  }
}
.footer__bottom .copyright--right {
  text-align: right;
}
.footer__bottom .copyright a, .footer__bottom .copyright .sk-link {
  color: currentColor;
}
.footer__bottom .copyright a:hover, .footer__bottom .copyright .sk-link:hover {
  text-decoration: none;
  color: var(--sk-color-primary);
}
.footer__bottom .btn-to-top {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  margin-bottom: 50px;
  padding: 0;
  order: -1;
  gap: 20px;
  flex-direction: column;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: transparent;
  font-size: var(--sk-text--xs);
  color: var(--sk-color-black);
}
@media (min-width: 768px) {
  .footer__bottom .btn-to-top {
    order: unset;
    margin-bottom: unset;
  }
}
.footer__bottom .btn-to-top:hover, .footer__bottom .btn-to-top:active, .footer__bottom .btn-to-top:focus, .footer__bottom .btn-to-top:focus-within {
  color: var(--sk-color-second);
}
.footer__bottom .btn-to-top:hover .btn-to-top__icon, .footer__bottom .btn-to-top:active .btn-to-top__icon, .footer__bottom .btn-to-top:focus .btn-to-top__icon, .footer__bottom .btn-to-top:focus-within .btn-to-top__icon {
  top: -10px;
}
.footer__bottom .btn-to-top:hover .btn-to-top__icon path, .footer__bottom .btn-to-top:active .btn-to-top__icon path, .footer__bottom .btn-to-top:focus .btn-to-top__icon path, .footer__bottom .btn-to-top:focus-within .btn-to-top__icon path {
  fill: var(--sk-color-second);
}
.footer__bottom .btn-to-top__icon {
  position: relative;
  top: 0;
  display: flex;
  width: 25px;
  height: 15px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.footer__bottom .btn-to-top__icon svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer__bottom .btn-to-top__icon svg path {
  fill: var(--sk-color-primary);
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

input,
textarea {
  position: relative;
  height: 50px;
  width: 100%;
  padding: 15px 0 0;
  border: none;
  border-bottom: 2px solid var(--sk-color-white);
  background: transparent;
  border-radius: 0;
  color: var(--sk-color-black);
  font-family: var(--sk-font-primary);
  font-size: var(--sk-text--h2) !important;
  font-weight: 300 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: var(--sk-color-second);
}
input,
textarea {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
input::-moz-placeholder, textarea::-moz-placeholder {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--sk-input-color-placeholder);
  font-family: var(--sk-font-primary);
  font-size: var(--sk-text--h2);
  font-weight: 300;
  -moz-transition: 0.4s;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
input::placeholder,
textarea::placeholder {
  position: absolute;
  top: 15px;
  left: 0;
  color: var(--sk-input-color-placeholder);
  font-family: var(--sk-font-primary);
  font-size: var(--sk-text--h2);
  font-weight: 300;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

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

input[type=submit],
button[type=submit] {
  border: 2px solid var(--sk-color-white);
  color: var(--sk-color-black);
  font-size: var(--sk-text--h2);
  font-weight: 300;
  background: transparent;
  margin: 0 auto;
  width: auto;
  padding: 25px 42px;
  cursor: pointer;
}
input[type=submit]:active svg,
button[type=submit]:active svg {
  right: 20px !important;
}

.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;
}
@media (max-width: 767px) {
  .sk-form input,
  .sk-form textarea,
  .sk-form select {
    border-radius: 0 !important;
    -webkit-appearance: none; /* iOS Safari fix */
    box-shadow: none !important;
  }
}

.sk-form-gravity .gform_fields {
  grid-row-gap: 25px !important;
  grid-column-gap: 25px !important;
}
.sk-form-gravity .gform_ajax_spinner {
  display: none !important;
}
.sk-form-gravity_wrapper .gform_heading {
  display: none;
}
.sk-form-gravity_wrapper .gform_validation_errors {
  display: none;
}
.sk-form-gravity_wrapper .gform_footer {
  margin: 25px 0 0 !important;
  padding-bottom: 0 !important;
}
.sk-form-gravity_wrapper .gfield_required {
  color: var(--sk-color-white) !important;
}
.sk-form-gravity .validation_message {
  display: none;
}
@media screen and (max-width: 640px) {
  .sk-form-gravity .spacer {
    display: none;
  }
}
.sk-form-gravity .gfield {
  position: relative;
  margin-bottom: 30px;
}
.sk-form-gravity .gfield label {
  position: absolute;
  bottom: 6px;
  left: 0;
  font-size: 16px;
  font-weight: 300 !important;
  line-height: 20px;
  transition: ease-in-out 0.3s;
}
.sk-form-gravity .gfield label.active {
  transform: translateY(-30px);
  font-size: 8px;
}
@media (min-width: 992px) {
  .sk-form-gravity .gfield label.active {
    transform: translateY(-20px);
  }
}
.sk-form-gravity .gfield input {
  background: transparent;
  border-radius: unset;
  border: unset !important;
  border-bottom: 3px solid var(--sk-color-black) !important;
  padding: 0 0 6px 0 !important;
  font-size: 16px !important;
  height: auto;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 0;
  color: var(--sk-color-black) !important;
}
.sk-form-gravity .gfield textarea {
  height: 45px !important;
  min-height: 45px !important;
  background: transparent;
  border-radius: unset;
  border: unset !important;
  border-bottom: 3px solid var(--sk-color-black) !important;
  padding: 0 0 6px 0 !important;
  font-size: 16px !important;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 0;
  color: var(--sk-color-black);
}
.sk-form-gravity .gfield .gform_validation_errors {
  display: none;
}
.sk-form-gravity .gfield.gfield_error label {
  transform: translateY(-30px);
  font-size: 12px !important;
  color: var(--sk-color-third) !important;
}
@media (min-width: 992px) {
  .sk-form-gravity .gfield.gfield_error label {
    transform: translateY(-20px);
  }
}
.sk-form-gravity .gfield.gfield_error input,
.sk-form-gravity .gfield.gfield_error textarea {
  border-radius: unset;
  border: unset !important;
  border-bottom: 3px solid var(--sk-color-third) !important;
}
.sk-form-gravity .gfield.gfield_error .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border-radius: unset;
  border: unset !important;
  border-bottom: 3px solid var(--sk-color-third) !important;
}
.sk-form-gravity .gfield.gfield_req label {
  transform: translateY(-30px);
  font-size: 8px !important;
}
@media (min-width: 992px) {
  .sk-form-gravity .gfield.gfield_req label {
    transform: translateY(-20px);
  }
}
.sk-form-gravity .sk-form-textarea label {
  top: 0;
  left: 0;
  bottom: unset;
}
.sk-form-gravity input[type=submit] {
  min-width: 100%;
  display: inline-flex;
  align-items: center;
  border-radius: unset;
  height: 50px;
  border: 3px solid var(--sk-color-white);
  color: var(--sk-color-white);
  padding: 0;
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .sk-form-gravity input[type=submit] {
    margin-left: auto;
    min-width: 250px;
  }
}
.sk-form-gravity input[type=submit]:hover {
  background: var(--sk-color-black);
  border-color: var(--sk-color-black);
}
.sk-form-gravity input[type=submit]:focus {
  outline: var(--sk-color-black) solid 2px;
}
@media (max-width: 767px) {
  .sk-form-gravity input,
  .sk-form-gravity textarea,
  .sk-form-gravity select {
    border-radius: 0 !important;
    -webkit-appearance: none; /* iOS Safari fix */
    box-shadow: none !important;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--sk-black-blue-gradient);
  z-index: 10;
  display: none;
  overflow: hidden;
}
.modal.active {
  display: block;
  transform: translateY(0);
}
.modal.active .modal__container {
  opacity: 1;
}
.modal__container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 25px;
  padding: 25px 25px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.modal__container::-webkit-scrollbar {
  display: none;
}
@media (min-width: 512px) {
  .modal__container {
    padding: 50px 25px;
  }
}
.modal__wrapper {
  width: 100%;
  max-width: 750px;
  height: auto;
  position: relative;
  opacity: 1;
}
.modal__wrapper.modal--gallery {
  max-width: 1200px;
}
.modal__wrapper.modal--gallery picture {
  display: flex;
}
.modal__video {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  margin-bottom: 24px;
  display: none;
}
.modal__video iframe,
.modal__video video {
  width: 100%;
  height: 100%;
  background: var(--sk-color-black);
}
.modal__gallery {
  width: 100%;
  overflow: hidden;
  margin-bottom: 25px;
  display: none;
}
.modal__gallery .image-with-gallery__icon {
  display: none;
}
.modal__gallery img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__gallery .modal-gallery-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.modal__gallery .modal-gallery-swiper .swiper-wrapper {
  display: flex;
  width: 100%;
  transition-property: transform, height;
}
.modal__gallery .modal-gallery-swiper .swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: auto;
}
.modal__gallery .modal-gallery-swiper .swiper-slide picture {
  display: flex;
}
.modal__gallery .modal-gallery-swiper .swiper-slide video {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--sk-color-black);
  display: block;
}
.modal__gallery .swiper-button-prev,
.modal__gallery .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}
.modal__gallery .swiper-button-prev img,
.modal__gallery .swiper-button-next img {
  width: 50px;
  height: 50px;
}
.modal__gallery .swiper-button-prev .swiper-navigation-icon,
.modal__gallery .swiper-button-next .swiper-navigation-icon {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .modal__gallery .swiper-button-prev:hover,
  .modal__gallery .swiper-button-next:hover {
    background: var(--sk-color-primary);
  }
}
.modal__gallery .swiper-button-prev {
  top: -57px;
  left: 50%;
  transform: translateX(-100px);
}
.modal__gallery .swiper-button-next {
  top: -57px;
  right: 50%;
  transform: translateX(100px);
}
@media (min-width: 768px) {
  .modal__content {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    display: flex;
    gap: 10px;
  }
}
.modal__text {
  color: var(--sk-color-white);
}
.modal__text h2 {
  color: var(--sk-color-primary);
}
.modal__text h2::before {
  background: var(--sk-color-primary);
}
.modal__text .image-with-gallery__text {
  display: flex;
}
@media (min-width: 768px) {
  .modal__text {
    flex: 0 1 50%;
  }
}
.modal__legend {
  color: var(--sk-color-white);
  text-transform: uppercase;
  margin-bottom: 25px;
  font-size: var(--sk-text--xs);
  font-family: var(--sk-font-secondary);
  font-weight: bold;
}
@media (min-width: 768px) {
  .modal__legend {
    flex: 0 1 50%;
  }
}
.modal__legend p {
  line-height: 9.2px;
}
.modal__legend .image-with-gallery__cta-icon-wrap {
  opacity: 1;
  margin-top: 25px;
}
.modal__legend .image-with-gallery__cta-icon-wrap svg path {
  fill: var(--sk-color-white);
}
.modal__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.modal__button-prev, .modal__button-next, .modal__close {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.modal__button-prev:hover, .modal__button-prev:active, .modal__button-prev:focus, .modal__button-prev:focus-within, .modal__button-next:hover, .modal__button-next:active, .modal__button-next:focus, .modal__button-next:focus-within, .modal__close:hover, .modal__close:active, .modal__close:focus, .modal__close:focus-within {
  background: var(--sk-color-primary);
}
.modal__button-prev:disabled, .modal__button-next:disabled, .modal__button-prev.swiper-button-disabled, .modal__button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.modal .slide-video {
  position: relative;
}
.modal .slide-video video {
  display: block;
}
.modal .slide-video__play {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 27px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  border: 0;
  padding: 0;
  z-index: 93;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.modal .slide-video__play:hover {
  background: var(--sk-color-second);
}

.image-with-text {
  padding: 50px 0;
}
.image-with-text__pre-title {
  margin: 21px 0 50px;
}
@media (min-width: 768px) {
  .image-with-text__pre-title {
    margin: 21px 0 95px;
  }
}
.image-with-text__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  max-width: 1300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .image-with-text__wrapper {
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .image-with-text__wrapper {
    gap: 200px;
    flex-direction: row;
    align-items: center;
  }
}
.image-with-text__wrapper.image-left {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .image-with-text__wrapper.image-left .image-with-text__image {
    transform: translateX(50px);
  }
}
.image-with-text__wrapper.image-left .image-with-text__legend {
  left: 0;
}
.image-with-text__wrapper.image-right {
  justify-content: flex-end;
}
.image-with-text__wrapper.image-right .image-with-text__image {
  transform: translateX(0);
}
.image-with-text__wrapper.image-right .image-with-text__legend {
  right: 0;
}
@media (min-width: 992px) {
  .image-with-text__wrapper.image-right .image-with-text__media {
    order: 2;
  }
}
.image-with-text__wrapper.with-link:hover .image-with-text__icon, .image-with-text__wrapper.with-link:active .image-with-text__icon, .image-with-text__wrapper.with-link:focus .image-with-text__icon, .image-with-text__wrapper.with-link:focus-within .image-with-text__icon {
  background: var(--sk-color-second);
}
.image-with-text__wrapper.with-link:hover .image-with-text__image, .image-with-text__wrapper.with-link:active .image-with-text__image, .image-with-text__wrapper.with-link:focus .image-with-text__image, .image-with-text__wrapper.with-link:focus-within .image-with-text__image {
  opacity: 0.7;
}
.image-with-text__wrapper.with-lire-la-suite .image-with-text__content {
  z-index: 1;
}
.image-with-text__link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.image-with-text__media {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.image-with-text__legend {
  position: absolute;
  padding: 7px;
  top: 49px;
  font-weight: bold;
  font-size: var(--sk-text--xs);
  font-family: var(--sk-font-secondary);
  color: var(--sk-color-ligth-grey);
  letter-spacing: 0.55px;
  line-height: 1;
  text-transform: uppercase;
  background: var(--sk-color-second);
}
.image-with-text__legend p {
  margin-bottom: 0;
}
.image-with-text__image {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  aspect-ratio: 1.375/1;
  position: relative;
  right: 0;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 768px) {
  .image-with-text__image {
    width: calc(100% - 50px);
  }
}
.image-with-text__image picture {
  width: 100%;
  height: 100%;
}
.image-with-text__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-with-text__icon {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 27px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.image-with-text__video-container {
  display: none;
}
.image-with-text__content {
  position: relative;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 768px) {
  .image-with-text__content {
    margin-top: 28px;
    max-width: 350px;
  }
}
.image-with-text__cta-icon-wrap {
  margin-top: -30px;
  margin-bottom: 10px;
  position: relative;
  right: unset;
  top: unset;
  width: 40px;
  height: 40px;
}
@media (min-width: 1350px) {
  .image-with-text__cta-icon-wrap {
    margin: 0;
    position: absolute;
    right: calc(100% + 49px);
    top: 30px;
    width: 50px;
    height: 50px;
  }
}
.image-with-text__cta-icon-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-with-text__title {
  font-weight: 600;
  color: var(--sk-color-second);
  margin-bottom: 40px !important;
  padding-top: 23px;
  position: relative;
}
.image-with-text__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--sk-color-second);
}
.image-with-text__text p:last-child {
  margin-bottom: 0;
}
.image-with-text__lire-la-suite {
  display: inline-block;
  margin-top: 32px;
  padding: 6px 0;
  font-family: var(--sk-font-primary);
  font-size: var(--sk-text--h2);
  font-weight: 300;
  color: var(--sk-color-black);
  text-decoration: none !important;
  transition: color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}
.image-with-text__lire-la-suite::after {
  content: " ›";
  margin-left: 0;
  transition: margin-left 0.4s ease-in-out;
}
.image-with-text__lire-la-suite::before {
  content: "";
  width: 0;
  left: 0;
  bottom: 0;
  position: absolute;
  height: 2px;
  background: var(--sk-color-border);
  transition: width 0.4s ease-in-out;
}
.image-with-text__lire-la-suite:hover {
  text-decoration: none;
  color: black;
}
.image-with-text__lire-la-suite:hover::before {
  width: 100%;
}
.image-with-text__lire-la-suite:hover::after {
  margin-left: 10px;
}

.image-with-gallery__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 auto;
}
.image-with-gallery__wrapper.with-link .image-with-gallery__icon {
  z-index: 2;
  opacity: 0;
  transition: 0.6s;
  transition-timing-function: ease-in-out;
}
.image-with-gallery__wrapper.with-link .image-with-gallery__image::before {
  content: "";
  background: var(--sk-color-second);
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.image-with-gallery__wrapper.with-link .image-with-gallery__image picture {
  transform: scale(1);
  transition: 0.6s;
  transition-timing-function: ease-in-out;
}
@media (hover: hover) and (pointer: fine) {
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__icon, .image-with-gallery__wrapper.with-link:active .image-with-gallery__icon, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__icon, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__icon {
    opacity: 1;
  }
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__image::before, .image-with-gallery__wrapper.with-link:active .image-with-gallery__image::before, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__image::before, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__image::before {
    opacity: 0.9;
  }
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__image picture, .image-with-gallery__wrapper.with-link:active .image-with-gallery__image picture, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__image picture, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__image picture {
    transform: scale(1.3);
  }
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__content, .image-with-gallery__wrapper.with-link:active .image-with-gallery__content, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__content, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__content {
    margin-top: 0;
  }
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__title, .image-with-gallery__wrapper.with-link:active .image-with-gallery__title, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__title, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__title {
    opacity: 1;
  }
  .image-with-gallery__wrapper.with-link:hover .image-with-gallery__legend .image-with-gallery__cta-icon-wrap, .image-with-gallery__wrapper.with-link:active .image-with-gallery__legend .image-with-gallery__cta-icon-wrap, .image-with-gallery__wrapper.with-link:focus .image-with-gallery__legend .image-with-gallery__cta-icon-wrap, .image-with-gallery__wrapper.with-link:focus-within .image-with-gallery__legend .image-with-gallery__cta-icon-wrap {
    opacity: 1;
  }
}
.image-with-gallery__link {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.image-with-gallery__media {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.image-with-gallery__legend {
  position: absolute;
  top: 25px;
  left: 25px;
}
.image-with-gallery__legend p {
  margin-bottom: 0;
  display: none;
}
.image-with-gallery__image {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  aspect-ratio: 1/1;
  position: relative;
  right: 0;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.image-with-gallery__image picture {
  width: 100%;
  height: 100%;
}
.image-with-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.image-with-gallery__icon {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  display: flex;
  position: absolute;
  top: calc(50% - 27px);
  left: calc(50% - 27px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.image-with-gallery__video-container {
  display: none;
}
.image-with-gallery__content {
  position: relative;
  max-width: 350px;
  width: 100%;
}
.image-with-gallery__cta-icon-wrap {
  opacity: 0;
  width: 50px;
  height: 50px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.image-with-gallery__cta-icon-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.image-with-gallery__cta-icon-wrap svg path {
  fill: var(--sk-color-white);
}
.image-with-gallery__wrapper .image-with-gallery__title {
  font-size: 12px;
  line-height: 0.8em;
  font-weight: 700;
  color: var(--sk-color-ligth-grey);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 25px 25px;
  width: 100%;
  margin-bottom: 0 !important;
  text-transform: uppercase;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
@media (min-width: 1024px) {
  .image-with-gallery__wrapper .image-with-gallery__title {
    margin-bottom: 45px;
  }
}
.image-with-gallery__wrapper .image-with-gallery__title::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--sk-color-second);
  max-width: 500px;
}
.image-with-gallery__text {
  display: none;
  max-width: 500px;
}
.image-with-gallery__text a, .image-with-gallery__text .sk-link {
  cursor: pointer;
  -webkit-text-decoration: underline transparent;
          text-decoration: underline transparent;
  transition: text-decoration-color 0.3s ease;
}
.image-with-gallery__text a:hover, .image-with-gallery__text .sk-link:hover {
  text-decoration-color: var(--sk-color-link);
  color: var(--sk-color-link);
}

.gallery-modal-gallery__item picture {
  width: 100%;
  height: 100%;
}
.gallery-modal-gallery__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal__text .image-with-gallery__title {
  font-weight: 600;
  font-size: 15px;
  color: var(--sk-color-primary);
  margin-bottom: 25px;
  padding-top: 28px;
  position: relative;
  max-width: 500px;
  text-transform: none;
}
@media (min-width: 1024px) {
  .modal__text .image-with-gallery__title {
    margin-bottom: 45px;
  }
}
.modal__text .image-with-gallery__title::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 5px;
  background: var(--sk-color-primary);
  max-width: 500px;
}

.common-media-wrap {
  width: 100%;
  background: var(--sk-color-primary);
  position: relative;
  overflow: hidden;
}
.common-media-wrap__parallax-wrap {
  position: relative;
  height: 100%;
  top: 0;
  will-change: transform;
}
.common-media-wrap::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 100%;
}
.common-media-wrap img,
.common-media-wrap video, .common-media-wrap__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.common-media-wrap a, .common-media-wrap .sk-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.common-label-1 {
  text-align: center;
  position: relative;
  font-size: var(--sk-text--xs);
  color: var(--sk-color-second);
  font-family: var(--sk-font-secondary);
  font-weight: 600;
  text-transform: uppercase;
}
.common-label-1::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 1px;
  background: var(--sk-color-ligth-grey);
  left: 50%;
  transform: translateX(-50%);
  bottom: 38px;
}

.otgs-development-site-front-end {
  display: none;
}

.common-posts-grid {
  min-height: 300px;
}
.common-posts-grid .posts-loader {
  position: absolute;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.common-posts-grid .posts-loader div {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--sk-color-second);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.common-posts-grid .nothing-found {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

[data-img-parallax] img {
  height: calc(100% + 120px);
  top: -60px;
}

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 {
  position: relative;
  font-family: var(--sk-font-primary);
  color: currentColor;
  display: inline-flex;
  padding: 0 25px 0 0;
  cursor: pointer;
  text-decoration: none;
  line-height: 40px;
  font-size: var(--sk-text--h2);
  font-weight: 300;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
a.sk-btn::before,
button.sk-btn::before,
.sk-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sk-color-ligth-grey);
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
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;
}
a.sk-btn:hover::before, a.sk-btn:active::before, a.sk-btn:focus::before, a.sk-btn:focus-within::before,
button.sk-btn:hover::before,
button.sk-btn:active::before,
button.sk-btn:focus::before,
button.sk-btn:focus-within::before,
.sk-btn:hover::before,
.sk-btn:active::before,
.sk-btn:focus::before,
.sk-btn:focus-within::before {
  width: 100%;
}
a.sk-btn:hover svg, a.sk-btn:active svg, a.sk-btn:focus svg, a.sk-btn:focus-within svg,
button.sk-btn:hover svg,
button.sk-btn:active svg,
button.sk-btn:focus svg,
button.sk-btn:focus-within svg,
.sk-btn:hover svg,
.sk-btn:active svg,
.sk-btn:focus svg,
.sk-btn:focus-within svg {
  right: 0;
}
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--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 svg,
button.sk-btn svg,
.sk-btn svg {
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  right: 10px;
  display: block;
  width: 6px;
  height: 10px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

.sk-btn-2 {
  position: relative;
  background: none;
  border: 2px solid var(--sk-color-ligth-grey);
  text-align: center;
  font-size: var(--sk-text--h2);
  font-weight: 300;
  padding: 23px 64px 23px 30px;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.sk-btn-2::before {
  display: none;
}
.sk-btn-2 svg {
  position: absolute;
  top: calc(50% + 2px);
  transform: translateY(-50%);
  right: 27px;
  display: block;
  width: 6px;
  height: 10px;
}
.sk-btn-2:hover, .sk-btn-2:active, .sk-btn-2:focus, .sk-btn-2:focus-within {
  border-color: var(--sk-color-second);
  color: var(--sk-color-second);
}

.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;
}

.wp-block .introduction,
.introduction {
  border-bottom: 2px solid var(--sk-color-second);
  padding: 90px 0 clamp(80px, 35.4285714286px + 0.1142857143 * 100vw, 200px);
  overflow: hidden;
}
.wp-block .introduction.without-border,
.introduction.without-border {
  border-bottom: none;
}
.wp-block .introduction--team,
.introduction--team {
  padding-bottom: clamp(80px, 54px + 0.0666666667 * 100vw, 150px);
}
.wp-block .introduction--team .introduction__inner,
.introduction--team .introduction__inner {
  max-width: 1100px;
}
.wp-block .introduction--team .introduction__text-wrap,
.introduction--team .introduction__text-wrap {
  max-width: 1090px;
  margin-bottom: 28px;
}
@media (min-width: 768px) {
  .wp-block .introduction--team .introduction__text-wrap,
  .introduction--team .introduction__text-wrap {
    margin-bottom: clamp(28px, 10.1714285714px + 0.0457142857 * 100vw, 76px);
  }
}
.wp-block .introduction--team .introduction__pre-title,
.introduction--team .introduction__pre-title {
  margin-bottom: clamp(80px, 41.3714285714px + 0.099047619 * 100vw, 184px);
}
.wp-block .introduction--team .introduction__pre-title:last-child,
.introduction--team .introduction__pre-title:last-child {
  margin-bottom: 0;
}
.wp-block .introduction--team .introduction__text[class*=sk-text],
.introduction--team .introduction__text[class*=sk-text] {
  max-width: unset;
}
.wp-block .introduction__pre-title,
.introduction__pre-title {
  margin-bottom: clamp(80px, 42.1142857143px + 0.0971428571 * 100vw, 182px);
  z-index: 1;
}
.wp-block .introduction__pre-title:last-child,
.introduction__pre-title:last-child {
  margin-bottom: 0;
}
.wp-block .introduction__inner,
.introduction__inner {
  margin-bottom: 33px;
}
.wp-block .introduction__inner:last-child,
.introduction__inner:last-child {
  margin-bottom: 0;
}
.wp-block .introduction__text-wrap,
.introduction__text-wrap {
  position: relative;
  margin-bottom: clamp(28px, 8.6857142857px + 0.0495238095 * 100vw, 80px);
}
.wp-block .introduction__text-wrap:last-child,
.introduction__text-wrap:last-child {
  margin-bottom: 0;
}
.wp-block .introduction__text[class*=sk-text],
.introduction__text[class*=sk-text] {
  color: var(--sk-color-primary);
  max-width: 1000px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.wp-block .introduction__text[class*=sk-text] p:last-child,
.introduction__text[class*=sk-text] p:last-child {
  margin-bottom: 0;
}
.wp-block .introduction__bottom-row,
.introduction__bottom-row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .wp-block .introduction__bottom-row,
  .introduction__bottom-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.wp-block .introduction__bottom-col,
.introduction__bottom-col {
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .wp-block .introduction__bottom-col,
  .introduction__bottom-col {
    max-width: 50%;
    width: auto;
    margin-bottom: 0;
  }
}
.wp-block .introduction__bottom-col:last-child,
.introduction__bottom-col:last-child {
  margin-bottom: 0;
}
.wp-block .introduction__cta.sk-btn,
.introduction__cta.sk-btn {
  border-color: var(--sk-color-ligth-grey);
  margin-left: 0;
}
@media (min-width: 768px) {
  .wp-block .introduction__cta.sk-btn,
  .introduction__cta.sk-btn {
    margin-left: clamp(1px, -35.7714285714px + 0.0942857143 * 100vw, 100px);
  }
}
.wp-block .introduction__img-wrapper,
.introduction__img-wrapper {
  position: absolute;
  top: 50%;
  left: 85%;
  max-width: 100%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .wp-block .introduction__img-wrapper,
  .introduction__img-wrapper {
    height: auto;
  }
}
.wp-block .introduction__img,
.introduction__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  pointer-events: none;
}
.wp-block .introduction__members-list-wrap ul,
.introduction__members-list-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .wp-block .introduction__members-list-wrap ul,
  .introduction__members-list-wrap ul {
    margin: -15px 0 0;
  }
}
.wp-block .introduction__members-list-wrap ul li,
.introduction__members-list-wrap ul li {
  position: relative;
  padding: 15px 0 clamp(15px, 3.8571428571px + 0.0285714286 * 100vw, 45px);
  width: 100%;
  border-bottom: 5px solid var(--sk-color-second);
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.wp-block .introduction__members-list-wrap ul li:hover, .wp-block .introduction__members-list-wrap ul li:active, .wp-block .introduction__members-list-wrap ul li:focus, .wp-block .introduction__members-list-wrap ul li:focus-within,
.introduction__members-list-wrap ul li:hover,
.introduction__members-list-wrap ul li:active,
.introduction__members-list-wrap ul li:focus,
.introduction__members-list-wrap ul li:focus-within {
  padding: 15px 25px clamp(15px, 3.8571428571px + 0.0285714286 * 100vw, 45px);
}
@media (min-width: 768px) {
  .wp-block .introduction__members-list-wrap ul li,
  .introduction__members-list-wrap ul li {
    width: 350px;
  }
}
.wp-block .introduction__members-list-wrap ul li:first-child,
.introduction__members-list-wrap ul li:first-child {
  border-top: 5px solid var(--sk-color-second);
}
.wp-block .introduction__members-list-wrap ul li:last-child,
.introduction__members-list-wrap ul li:last-child {
  border-bottom: none;
}
.wp-block .introduction__members-list-wrap ul li a,
.introduction__members-list-wrap ul li a,
.introduction__members-list-wrap ul li .sk-link {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.wp-block .introduction__members-list-wrap ul li svg,
.introduction__members-list-wrap ul li svg {
  position: absolute;
  width: 25px;
  height: 25px;
  top: 24px;
  right: 0;
}
.wp-block .introduction__member-name,
.introduction__member-name {
  color: var(--sk-color-second);
  font-size: var(--sk-text--h2);
  line-height: var(--sk-line-height--h2);
  font-weight: 600;
}
.wp-block .introduction__member-position,
.introduction__member-position {
  font-size: var(--sk-text--h3);
  line-height: var(--sk-line-height--h3);
}
