/**
 * Swiper 12.1.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: April 29, 2026
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
/* Zoom container styles end */

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}


/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: 0.6;
    z-index: 0;

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}

/* stylelint-disable */
/* stylelint-disable max-line-length */
:root {
  --breakpoint-xxl: 1920px;
  --breakpoint-xl-s: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 370px;
}

/* 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 */
/* Usage Examples
    .my-level-1-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 48px;
        margin: 0 0 0 16px;
    }

    .my-level-2-heading-class {
        @include text-crop; // Will use default line height of 1.3
        font-size: 32px; // Don't need to change any settings, will work with any font size automatically
        margin: 0 0 0 16px;
    }

    .my-body-copy-class {
        @include text-crop($line-height: 2); // Larger line height desired, set the line height via the mixin
        font-size: 16px;
    }

    // Sometimes depending on the font-size, the rendering, the browser, etc. you may need to tweak the output. 
    // You can adjust the top and bottom cropping when invoking the component using the $top-adjustment and $bottom-adjustment settings 

    .slight-adjustment-needed {
        @include text-crop($top-adjustment: -0.5px, $bottom-adjustment: 2px);
        font-size: 17px;
    }

    .dont-do-this {
        @include text-crop;
        font-size: 16px;
        line-height: 3; // DO NOT set line height outside of the mixin, the mixin needs the line height value to calculate the crop correctly
    }
*/
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

[data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* 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: border-box;
}

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

/**
 * 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 {
  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;
  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-s: 1600px;
  --breakpoint-xl: 1440px;
  --breakpoint-lg: 1280px;
  --breakpoint-md: 1024px;
  --breakpoint-md-s: 992px;
  --breakpoint-sm: 768px;
  --breakpoint-xs: 512px;
  --breakpoint-xxs: 390px;
  --breakpoint-xxxs: 370px;
}

/* stylelint-disable */
:root {
  --sk-line-height--body: 1.3333333333;
  --sk-line-height--h1: 1.2;
  --sk-line-height--h2: 1.0833333333;
  --sk-line-height--h3: 1.125;
  --sk-line-height--h4: 1.1666666667;
  --sk-line-height--h5: 1.5833333333;
  --sk-line-height--h6: 1.5833333333;
  --sk-text-base-size: 18px;
  --sk-text--h1-up: clamp(42px, 30.8571428571px + 0.0285714286 * 100vw, 72px);
  --sk-text--h1: clamp(26px, 13.3714285714px + 0.0323809524 * 100vw, 60px);
  --sk-text--h2: clamp(28px, 20.5714285714px + 0.019047619 * 100vw, 48px);
  --sk-text--h3: clamp(18px, 12.8px + 0.0133333333 * 100vw, 32px);
  --sk-text--h4: clamp(20px, 18.5142857143px + 0.0038095238 * 100vw, 24px);
  --sk-text--h5: clamp(20px, 18.5142857143px + 0.0038095238 * 100vw, 24px);
  --sk-text--h6: clamp(20px, 19.2571428571px + 0.0019047619 * 100vw, 22px);
  --sk-text--xs: 14px;
  --sk-text--2xs: 12px;
}

@media (max-width: 768px) {
  :root {
    --sk-text-base-size: 16px;
    --sk-line-height--body: 1.5;
    --sk-line-height--h1: 1.3846153846;
    --sk-line-height--h2: 1.4285714286;
    --sk-line-height--h3: 1.5;
    --sk-line-height--h4: 1.6;
    --sk-line-height--h5: 1.6;
    --sk-line-height--h6: 1.4;
  }
}
/* stylelint-disable */
:root {
  --sk-font-primary: "Poppins", serif;
}

/* stylelint-disable */
/**
  Generate colors https://gka.github.io/palettes
 */
:root {
  /* Main colors */
  --sk-color-black: black;
  --sk-color-white: white;
  --sk-color-primary: #ffb612;
  --sk-color-primary-light: #ffedc4;
  --sk-color-second: #0f3943;
  --sk-color-second-light: #015468;
  --sk-color-second-dark: #1A434C;
  --sk-color-third: #f6f6f4;
  /* Background colors */
  --sk-color-bg-primary: var(--sk-color-third);
  --sk-color-bg-second: var(--sk-color-second);
  /* Typography */
  --sk-color-text: #012027;
  --sk-color-text-dark: #01262F;
  --sk-color-text-heading: var(--sk-color-text);
  --sk-color-text-subtle: var(--sk-color-text);
  --sk-color-link: inherit;
  --sk-color-link-hover: var(--sk-color-primary);
  --sk-color-link-visited: inherit;
  --sk-color-placeholder-primary: #B3C0C3;
  --sk-color-placeholder-secondary: #92A4A8;
  --sk-color-button: #011B21;
  --sk-color-input: #0e333c;
  /* Border */
  --sk-color-border: rgba(15, 57, 67, 0.2);
  --sk-color-border-primary: #E5EAEB;
  --sk-color-border-secondary: #406269;
  /* 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 {
  background-color: var(--sk-color-third);
  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);
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}

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 {
  font-family: var(--sk-font-primary);
  font-weight: 400;
}

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

h1,
.sk-text--h1 {
  line-height: 1.3;
}
h1::before, h1::after,
.sk-text--h1::before,
.sk-text--h1::after {
  content: "";
  display: block;
  height: 0;
  width: 0;
}
h1::before,
.sk-text--h1::before {
  margin-bottom: calc(-0.4835em + 18px);
}
h1::after,
.sk-text--h1::after {
  margin-top: calc(-0.3168333333em + 20px);
}
h1,
.sk-text--h1 {
  font-size: var(--sk-text--h1);
  line-height: var(--sk-line-height--h1);
  letter-spacing: -0.05em;
}
@media (max-width: 1024px) {
  h1,
  .sk-text--h1 {
    letter-spacing: -0.04em;
  }
}
@media (max-width: 768px) {
  h1,
  .sk-text--h1 {
    letter-spacing: -0.03em;
  }
}

h2,
.sk-text--h2 {
  font-size: var(--sk-text--h2);
  line-height: var(--sk-line-height--h2);
  letter-spacing: -0.05em;
}
@media (max-width: 1024px) {
  h2,
  .sk-text--h2 {
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -0.04em;
  }
}
@media (max-width: 768px) {
  h2,
  .sk-text--h2 {
    font-size: var(--sk-text--h2);
    line-height: var(--sk-line-height--h2);
    letter-spacing: -0.03em;
  }
}

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

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

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

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

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

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

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

p {
  line-height: var(--sk-line-height--body);
  font-family: var(--sk-font-secondary);
}
@media (max-width: 1024px) {
  p {
    font-size: 16px;
    line-height: 24px;
  }
}

a, .sk-link {
  color: var(--sk-color-link);
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  position: relative;
}
a:not([class])::after, .sk-link:not([class])::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
}
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);
  outline: none;
}
a:hover::after, .sk-link:hover::after, a:active::after, .sk-link:active::after, a:focus::after, .sk-link:focus::after, a:focus-within::after, .sk-link:focus-within::after {
  width: 100%;
}

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

*:focus-visible {
  outline-width: 0;
  outline-color: transparent;
}

.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-primary-light {
  background: var(--sk-color-primary-light);
}
.sk-typo-mod-bg-color-second {
  background: var(--sk-color-second);
}
.sk-typo-mod-bg-color-second-light {
  background: var(--sk-color-second-light);
}
.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: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h1,
  .sk-wp-editor .sk-text--h1 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor h2,
.sk-wp-editor .sk-text--h2 {
  margin-bottom: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h2,
  .sk-wp-editor .sk-text--h2 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor h3,
.sk-wp-editor .sk-text--h3 {
  margin-bottom: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h3,
  .sk-wp-editor .sk-text--h3 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor h4,
.sk-wp-editor .sk-text--h4 {
  margin-bottom: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h4,
  .sk-wp-editor .sk-text--h4 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor h5,
.sk-wp-editor .sk-text--h5 {
  margin-bottom: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h5,
  .sk-wp-editor .sk-text--h5 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor h6,
.sk-wp-editor .sk-text--h6 {
  margin-bottom: var(--sk-spacing-40);
  font-weight: 500;
}
@media (max-width: 768px) {
  .sk-wp-editor h6,
  .sk-wp-editor .sk-text--h6 {
    margin-bottom: var(--sk-spacing-25);
  }
}
.sk-wp-editor p {
  margin-bottom: var(--sk-spacing-30);
}
@media (max-width: 768px) {
  .sk-wp-editor p {
    margin-bottom: var(--sk-spacing-25);
  }
}
.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: var(--sk-spacing-40);
}
@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: var(--sk-spacing-25);
  }
}
@media (max-width: 1024px) {
  .sk-wp-editor br {
    display: none;
  }
}
.sk-wp-editor figure {
  margin: var(--sk-spacing-95) 0;
}
@media (max-width: 1024px) {
  .sk-wp-editor figure {
    margin: var(--sk-spacing-50) 0;
  }
}
.sk-wp-editor figure img {
  border-radius: 25px;
}
.sk-wp-editor ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sk-wp-editor ul li {
  position: relative;
}
.sk-wp-editor ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--sk-color-primary);
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -10px;
  transform: translateY(-50%);
}
.sk-wp-editor ol {
  padding: 0;
}

/* stylelint-disable */
:root {
  --sk-container-padding: var(--sk-spacing-50);
  --sk-container-width-lg: calc(1340px + var(--sk-container-padding) * 2);
  --sk-container-width--ml: calc(1140px + var(--sk-container-padding) * 2);
  --sk-container-width--md: calc(900px + var(--sk-container-padding) * 2);
  --sk-container-width--sm: calc(600px + var(--sk-container-padding) * 2);
}
@media (max-width: 1024px) {
  :root {
    --sk-container-padding: var(--sk-spacing-60);
  }
}
@media (max-width: 768px) {
  :root {
    --sk-container-padding: calc(var(--sk-spacing-50) / 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--ml {
  max-width: var(--sk-container-width--ml);
}
.sk-container--md {
  max-width: var(--sk-container-width--md);
}
.sk-container--sm {
  max-width: var(--sk-container-width--sm);
}
.sk-container--fl {
  max-width: 100%;
  width: 100%;
}

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

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

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

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

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

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

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

.disabled {
  overflow: hidden;
}

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

#scroll-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hide-on-mobile {
  display: none;
}
@media (min-width: 1280px) {
  .hide-on-mobile {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hide-on-desktop {
    display: none;
  }
}

.hidden {
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.loading {
  height: 0;
  width: 0;
  padding: 10px;
  border: 5px solid var(--sk-color-primary);
  border-right-color: var(--sk-color-second);
  border-radius: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotateLoader 1s infinite linear;
  z-index: 10;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

@keyframes rotateLoader {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
*::-moz-selection {
  background-color: var(--sk-color-white);
  color: var(--sk-color-second);
}
*::selection {
  background-color: var(--sk-color-white);
  color: var(--sk-color-second);
}

@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --sk-spacing-5: 5px;
  --sk-spacing-10: 10px;
  --sk-spacing-15: 15px;
  --sk-spacing-20: 20px;
  --sk-spacing-25: 25px;
  --sk-spacing-30: 30px;
  --sk-spacing-35: 35px;
  --sk-spacing-40: 40px;
  --sk-spacing-45: 45px;
  --sk-spacing-50: 50px;
  --sk-spacing-55: 55px;
  --sk-spacing-60: 60px;
  --sk-spacing-65: 65px;
  --sk-spacing-70: 70px;
  --sk-spacing-75: 75px;
  --sk-spacing-80: 80px;
  --sk-spacing-85: 85px;
  --sk-spacing-90: 90px;
  --sk-spacing-95: 95px;
  --sk-spacing-100: 100px;
  --sk-spacing-110: 110px;
  --sk-spacing-115: 115px;
  --sk-spacing-120: 120px;
  --sk-spacing-130: 130px;
  --sk-spacing-145: 145px;
  --sk-spacing-150: 150px;
  --sk-spacing-200: 200px;
  --sk-spacing-215: 215px;
  --sk-spacing-225: 225px;
  --sk-spacing-235: 235px;
  --sk-spacing-250: 250px;
  --sk-spacing-275: 275px;
  --sk-spacing-300: 300px;
  --sk-spacing-350: 350px;
  --sk-spacing-500: 500px;
}

section {
  position: relative;
  z-index: 1;
}
section.section-bg-dark {
  background-color: var(--sk-color-bg-second);
  color: var(--sk-color-white);
}
section.section-bg-light {
  background-color: var(--sk-color-bg-primary);
  color: var(--sk-color-text);
}
section.section-border-rounded {
  border-top-left-radius: var(--sk-spacing-50);
  border-top-right-radius: var(--sk-spacing-50);
  margin-top: calc(var(--sk-spacing-50) * -1);
}
@media (max-width: 1024px) {
  section.section-border-rounded {
    border-top-left-radius: var(--sk-spacing-40);
    border-top-right-radius: var(--sk-spacing-40);
    overflow: hidden;
  }
}
@media (max-width: 512px) {
  section.section-border-rounded {
    border-top-left-radius: var(--sk-spacing-25);
    border-top-right-radius: var(--sk-spacing-25);
  }
}
section.section-decoration {
  padding-top: var(--sk-spacing-65);
}
section.section-decoration .decoration svg {
  width: 55px;
  height: 14px;
}
@media (min-width: 1024px) {
  section.section-decoration .decoration svg {
    width: 84px;
    height: 20px;
  }
}
@media (min-width: 1024px) {
  section.section-decoration {
    padding-top: var(--sk-spacing-130);
  }
}
@media (min-width: 1280px) {
  section.section-decoration {
    padding-top: var(--sk-spacing-100);
  }
}
section.section-decoration .decoration {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sk-spacing-25);
}
@media (min-width: 1280px) {
  section.section-decoration .decoration {
    margin-bottom: var(--sk-spacing-20);
  }
}
section .section-bg-image {
  padding: var(--sk-spacing-45) 0;
  text-align: center;
  background-image: url("../img/hero.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  section .section-bg-image {
    background-position: center 50px;
  }
}
section .section-bg-image__title {
  margin-bottom: var(--sk-spacing-30);
}
@media (min-width: 1440px) {
  section .section-bg-image__title {
    margin-bottom: var(--sk-spacing-85);
  }
  section .section-bg-image__title h1 {
    font-size: 48px;
    line-height: 52px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 10;
  padding-top: 15px;
}
@media (max-width: 1024px) {
  .header {
    padding-top: 25px;
    transform: translateY(0) !important;
  }
}
@media (max-width: 512px) {
  .header {
    padding-top: 7px;
  }
}
.header.show .nav-main {
  top: 0;
}
.header.show .nav-main li {
  animation: fadeSlideUp 0.4s ease forwards;
  animation-delay: var(--delay, 0s);
}
.header-logo {
  width: 200px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1024px) {
  .header-logo {
    width: 265px;
  }
}
@media (max-width: 768px) {
  .header-logo {
    width: 160px;
  }
}
.header-logo svg {
  width: 100%;
  height: 100%;
}
.dark .header-logo svg path[fill=white], .sticky:not(.show) .header-logo svg path[fill=white] {
  fill: var(--sk-color-text);
}
@media (max-width: 1024px) {
  .header-logo svg path[fill=white] {
    transition: 0.6s;
    transition-timing-function: ease-in-out;
  }
}
.header-wrapper {
  width: calc(100% - var(--sk-container-padding) * 2);
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 10px 0;
  background-color: transparent;
  backdrop-filter: blur(0);
  will-change: background-color, backdrop-filter;
  transition: all 0.4s ease-in-out;
}
.sticky:not(.show) .header-wrapper {
  padding: 10px 15px;
  background-color: rgb(255, 255, 255);
  color: var(--sk-color-text);
}
.sticky:not(.show) .header-wrapper .nav-main ul li a,
.sticky:not(.show) .header-wrapper .nav-main ul li .sk-link {
  color: var(--sk-color-text);
  font-size: 15px;
  line-height: 18px;
}
.sticky:not(.show) .header-wrapper .nav-main ul li a svg path[stroke=white],
.sticky:not(.show) .header-wrapper .nav-main ul li .sk-link svg path[stroke=white] {
  stroke: var(--sk-color-text);
}
.sticky:not(.show) .header-wrapper .header-logo {
  width: 150px;
  height: 30px;
  padding-right: 17px;
}
.sticky:not(.show) .header-wrapper .sk-btn, .sticky:not(.show) .header-wrapper .sk-form .form button[type=submit], .sk-form .form .sticky:not(.show) .header-wrapper button[type=submit], .sticky:not(.show) .header-wrapper input[type=submit] {
  padding: var(--sk-spacing-5) var(--sk-spacing-25);
  font-size: 15px;
  line-height: 18px;
  border-radius: 5px;
}
.sticky:not(.show) .header-wrapper .nav-toggler .menu-icon__line {
  background-color: var(--sk-color-text);
}
@media (max-width: 1024px) {
  .header-wrapper .sk-btn, .header-wrapper .sk-form .form button[type=submit], .sk-form .form .header-wrapper button[type=submit], .header-wrapper .sk-form-gravity_footer .gform_wrapper input[type=submit], .sk-form-gravity_footer .gform_wrapper .header-wrapper input[type=submit], .header-wrapper input[type=submit] {
    display: none;
  }
}
.header .nav-main {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .header .nav-main {
    display: block;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: calc(-100vh - 25px);
    background-color: var(--sk-color-second);
    height: calc(100vh + 25px);
    transition: 0.6s;
    transition-timing-function: ease-in-out;
    will-change: top;
    transition-property: top;
    padding: 198px 40px;
    margin: -25px -60px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .header .nav-main {
    padding: 198px 60px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .header .nav-main {
    margin: -25px;
    padding: 198px 25px;
  }
}
@media screen and (max-width: 1024px) and (max-height: 500px) {
  .header .nav-main {
    padding: 130px 25px;
  }
}
@media (max-width: 1024px) and (max-width: 512px) {
  .header .nav-main {
    padding: 125px 25px;
  }
}
@media (max-width: 1024px) {
  .header .nav-main .sk-btn, .header .nav-main .sk-form .form button[type=submit], .sk-form .form .header .nav-main button[type=submit], .header .nav-main input[type=submit] {
    width: 100%;
    max-width: 278px;
  }
}
.header .nav-main__bg {
  display: none;
}
@media (max-width: 1024px) {
  .header .nav-main__bg {
    display: block;
    position: absolute;
    inset: 0;
  }
  .header .nav-main__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(15, 57, 67, 0.8);
  }
  .header .nav-main__bg img,
  .header .nav-main__bg video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1024px) {
  .header .nav-main__menu {
    overflow-y: scroll;
    height: calc(100vh - 198px);
  }
}
@media (max-width: 512px) {
  .header .nav-main__menu {
    height: calc(100vh - 100px);
  }
}
.header .nav-main ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .header .nav-main ul {
    flex-direction: column;
  }
}
.header .nav-main ul li {
  position: relative;
  margin: 0 var(--sk-spacing-25);
}
@media (max-width: 1280px) {
  .header .nav-main ul li {
    margin: 0 10px;
  }
}
@media (max-width: 1024px) {
  .header .nav-main ul li {
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 40px;
    opacity: 0;
  }
}
@media (max-width: 512px) {
  .header .nav-main ul li {
    margin-bottom: 25px;
  }
}
.header .nav-main ul li .submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  padding-top: 12px;
}
@media (max-width: 1024px) {
  .header .nav-main ul li .submenu {
    position: relative;
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    padding-top: 0;
  }
}
.header .nav-main ul li .submenu__container {
  background-color: rgb(255, 255, 255);
  padding: 21px var(--sk-spacing-25);
  border-radius: 5px;
  min-width: 188px;
}
@media (max-width: 1024px) {
  .header .nav-main ul li .submenu__container {
    background-color: transparent;
    padding: 16px 0 0;
  }
}
.header .nav-main ul li .submenu ul {
  display: block;
}
.header .nav-main ul li .submenu ul li:not(:last-of-type) {
  margin: 0 0 10px 0;
}
@media (max-width: 1024px) {
  .header .nav-main ul li .submenu ul li:not(:last-of-type) {
    margin: 0 0 16px 0;
  }
}
@media (max-width: 512px) {
  .header .nav-main ul li .submenu ul li:not(:last-of-type) {
    margin: 0 0 10px 0;
  }
}
.header .nav-main ul li .submenu ul li:last-of-type {
  margin: 0;
}
.header .nav-main ul li .submenu ul li a, .header .nav-main ul li .submenu ul li .sk-link {
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  color: var(--sk-color-text);
}
@media (max-width: 1024px) {
  .header .nav-main ul li .submenu ul li a, .header .nav-main ul li .submenu ul li .sk-link {
    font-size: 24px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--sk-color-white);
  }
}
@media (max-width: 512px) {
  .header .nav-main ul li .submenu ul li a, .header .nav-main ul li .submenu ul li .sk-link {
    font-size: 18px;
  }
}
.header .nav-main ul li a, .header .nav-main ul li .sk-link {
  display: inline-block;
  color: var(--sk-color-white);
  text-decoration: none;
  font-size: var(--sk-text-base-size);
  font-weight: 500;
  line-height: 24px;
  position: relative;
}
.dark .header .nav-main ul li a, .dark .header .nav-main ul li .sk-link {
  color: var(--sk-color-text);
}
@media (max-width: 1280px) {
  .header .nav-main ul li a, .header .nav-main ul li .sk-link {
    font-size: 16px;
    line-height: 18px;
  }
}
@media (max-width: 1024px) {
  .header .nav-main ul li a, .header .nav-main ul li .sk-link {
    font-size: 42px;
    line-height: 36px;
    letter-spacing: -0.03em;
  }
}
@media (max-width: 512px) {
  .header .nav-main ul li a, .header .nav-main ul li .sk-link {
    font-size: 32px;
  }
}
.header .nav-main ul li a svg, .header .nav-main ul li .sk-link svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1024px) {
  .header .nav-main ul li a svg, .header .nav-main ul li .sk-link svg {
    display: none;
  }
}
.header .nav-main ul li a::after, .header .nav-main ul li .sk-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}
.header .nav-main ul li a:hover::after, .header .nav-main ul li .sk-link:hover::after {
  width: 100%;
}
.header .nav-main ul li.menu-item-has-children:hover .submenu, .header .nav-main ul li.menu-item-has-children a:focus + .submenu, .header .nav-main ul li.menu-item-has-children .sk-link:focus + .submenu,
.header .nav-main ul li.menu-item-has-children .submenu:focus-within {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.header .nav-main ul li.menu-item-has-children a, .header .nav-main ul li.menu-item-has-children .sk-link {
  padding-right: 20px;
}
.dark .header .nav-main ul li.menu-item-has-children svg path[stroke=white] {
  stroke: var(--sk-color-text);
}
.header .nav-main ul li.current-menu-item a::after, .header .nav-main ul li.current-menu-item .sk-link::after, .header .nav-main ul li.current_page_item a::after, .header .nav-main ul li.current_page_item .sk-link::after {
  width: 100%;
}
.header .nav-toggler {
  display: none;
}
@media (max-width: 1024px) {
  .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: 0;
  }
  .header .nav-toggler:hover {
    cursor: pointer;
  }
  .header .nav-toggler:hover .menu-icon__line.small {
    width: 100%;
  }
}
.header .nav-toggler.menu-open .menu-icon {
  width: 32px;
  height: 26px;
}
.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) {
  transform: rotate(45deg) translateY(1px);
}
.header .nav-toggler .menu-icon {
  width: 50px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header .nav-toggler .menu-icon__line {
  display: block;
  width: 100%;
  height: 5px;
  border-radius: 2px;
  background-color: var(--sk-color-white);
  transform-origin: right;
}
.dark .header .nav-toggler .menu-icon__line {
  background-color: var(--sk-color-text);
}
.header .nav-toggler .menu-icon__line {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.header .nav-toggler .menu-icon__line.small {
  width: 25px;
  margin-left: auto;
}

.footer {
  margin-top: -60px;
  padding: var(--sk-spacing-60) 0 var(--sk-spacing-25);
  background-color: var(--sk-color-bg-second);
  color: var(--sk-color-white);
  border-radius: 40px 40px 0 0;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .footer {
    padding: var(--sk-spacing-75) 0;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding: var(--sk-spacing-50) 0;
  }
}
@media (min-width: 1024px) {
  .footer .sk-container {
    padding: 0 var(--sk-spacing-60);
  }
}
@media (min-width: 1280px) {
  .footer .sk-container {
    padding: 0 var(--sk-spacing-50);
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
}
.footer__logo {
  width: 87px;
  height: 40px;
  margin-bottom: var(--sk-spacing-25);
  padding-left: 8px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .footer__logo {
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .footer__logo {
    width: 106px;
    height: 50px;
    margin-bottom: 0;
  }
}
.footer__logo a, .footer__logo .sk-link,
.footer__logo img {
  display: block;
  width: 100%;
  height: 100%;
}
.footer__logo a::before, .footer__logo .sk-link::before, .footer__logo a::after, .footer__logo .sk-link::after,
.footer__logo img::before,
.footer__logo img::after {
  content: none;
}
.footer__title-mobile {
  margin-right: -5px;
}
.footer__title-mobile p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
  color: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .footer__title-mobile p {
    font-size: 26px;
    line-height: 1.38;
    width: 85%;
  }
}
.footer__top {
  margin-bottom: var(--sk-spacing-50);
}
@media (min-width: 768px) {
  .footer__top {
    display: flex;
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .footer__top {
    margin-bottom: var(--sk-spacing-110);
  }
}
@media (min-width: 1280px) {
  .footer__top {
    margin-bottom: var(--sk-spacing-60);
  }
}
.footer__content {
  margin-bottom: var(--sk-spacing-60);
}
@media (min-width: 1024px) {
  .footer__content {
    display: grid;
    grid-template-columns: 1fr 544px;
    gap: 46px;
  }
}
@media (min-width: 1280px) {
  .footer__content {
    grid-template-columns: 336px 1fr 430px;
    gap: 115px;
    margin-bottom: 0;
  }
}
.footer__content .footer__title {
  color: var(--sk-color-white);
  font-size: 24px;
  line-height: 1.333;
  font-weight: 500;
}
.footer__links-columns {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: var(--sk-spacing-50);
}
.footer__links-columns > div {
  width: 45%;
}
@media (min-width: 1280px) {
  .footer__links-columns > div {
    width: 37%;
  }
}
@media (min-width: 1024px) {
  .footer__links-columns {
    margin-bottom: 0;
  }
}
@media (min-width: 512px) {
  .footer__links-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .footer__links-column {
    width: 43%;
    align-items: flex-start;
  }
}
.footer__links-column p {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: var(--sk-spacing-30);
  color: var(--sk-color-white);
}
@media (min-width: 1280px) {
  .footer__links-column p {
    margin-bottom: var(--sk-spacing-15);
  }
}
.footer__links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links-column ul li a, .footer__links-column ul li .sk-link {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media (min-width: 1280px) {
  .footer__links-column ul li a, .footer__links-column ul li .sk-link {
    font-size: 15px;
  }
}
.footer__links-column ul li a::after, .footer__links-column ul li .sk-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
}
.footer__links-column ul li a:hover, .footer__links-column ul li .sk-link:hover {
  text-decoration: none;
  color: var(--sk-color-primary);
}
.footer__links-column ul li a:hover::after, .footer__links-column ul li .sk-link:hover::after {
  width: 100%;
}
.footer__links-column ul li:not(:last-child) {
  margin-bottom: var(--sk-spacing-15);
}
@media (min-width: 1280px) {
  .footer__links-column ul li:not(:last-child) {
    margin-bottom: var(--sk-spacing-10);
  }
}
.footer__form {
  background: transparent;
  max-width: 544px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: var(--sk-spacing-15);
  margin-bottom: var(--sk-spacing-60);
}
@media (min-width: 512px) {
  .footer__socials {
    justify-content: center;
  }
}
@media (min-width: 1024px) {
  .footer__socials {
    justify-content: flex-start;
  }
}
@media (min-width: 1280px) {
  .footer__socials {
    margin-top: -40px;
  }
}
.footer__socials-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: var(--sk-color-white);
}
.footer__socials-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__socials-links li {
  width: 25px;
  height: 25px;
}
.footer__socials-links li a, .footer__socials-links li .sk-link {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--sk-color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.footer__socials-links li a svg, .footer__socials-links li .sk-link svg {
  width: 12px;
  height: 12px;
}
.footer__socials-links li a:hover, .footer__socials-links li .sk-link:hover {
  background-color: var(--sk-color-primary);
}
.footer__socials-links li a::after, .footer__socials-links li .sk-link::after, .footer__socials-links li a::before, .footer__socials-links li .sk-link::before {
  content: none;
}
.footer__bottom {
  padding: var(--sk-spacing-25) 0 0 0;
  position: relative;
  font-size: 12px;
  line-height: 1;
}
@media (min-width: 1024px) {
  .footer__bottom {
    padding: var(--sk-spacing-60) 0 var(--sk-spacing-20) 0;
  }
}
@media (min-width: 1280px) {
  .footer__bottom {
    padding: var(--sk-spacing-50) 0 var(--sk-spacing-20) 0;
  }
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--sk-color-second-dark);
}
@media (min-width: 1280px) {
  .footer__bottom::before {
    display: none;
  }
}
.footer__bottom a:hover, .footer__bottom .sk-link:hover {
  text-decoration: none;
  color: var(--sk-color-primary);
}
.footer__rights {
  display: flex;
  flex-direction: column;
  gap: var(--sk-spacing-10);
}
@media (min-width: 512px) {
  .footer__rights {
    justify-content: center;
  }
  .footer__rights > div {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .footer__rights {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__rights-right {
  color: rgba(255, 255, 255, 0.15);
}
.footer__rights-right a, .footer__rights-right .sk-link {
  position: relative;
}
.footer__rights-right a::after, .footer__rights-right .sk-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
}
.footer__rights-right a:hover, .footer__rights-right .sk-link:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.15);
}
.footer__rights-right a:hover::after, .footer__rights-right .sk-link:hover::after {
  width: 100%;
}

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

.sk-form-gravity .gform_fields {
  grid-row-gap: var(--sk-spacing-15) !important;
  grid-column-gap: va(--sk-spacing-15) !important;
}
@media (min-width: 1280px) {
  .sk-form-gravity .gform_fields {
    grid-row-gap: var(--sk-spacing-10) !important;
  }
}
.sk-form-gravity .gform_wrapper .gform_fields {
  align-items: flex-start;
}
.sk-form-gravity .gform_wrapper .gform_validation_errors {
  display: none;
}
.sk-form-gravity .gform_wrapper .gform_ajax_spinner {
  display: none !important;
}
.sk-form-gravity .gform_wrapper .gform_footer {
  margin: 0 !important;
  padding: 0 !important;
}
.sk-form-gravity .gform_wrapper .ginput_container {
  display: flex;
}
.sk-form-gravity .gform_wrapper .gfield_required {
  display: none !important;
}
.sk-form-gravity .gform_wrapper .gfield {
  position: relative;
}
.sk-form-gravity .gform_wrapper .gfield::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  line-height: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sk-color-placeholder-primary);
  opacity: 0;
  transition: all 0.6s ease;
}
.sk-form-gravity .gform_wrapper .gfield.active::after {
  opacity: 1;
}
.sk-form-gravity .gform_wrapper .gfield label {
  position: absolute;
  top: 15px;
  left: 16px;
  right: auto;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400 !important;
  margin: 0 !important;
  color: var(--sk-color-placeholder-primary);
  transition: all 0.6s ease;
}
.sk-form-gravity .gform_wrapper .gfield label.active {
  opacity: 0;
}
.sk-form-gravity .gform_wrapper .gfield input,
.sk-form-gravity .gform_wrapper .gfield input[type]:not([type=submit]),
.sk-form-gravity .gform_wrapper .gfield textarea {
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--sk-color-border-primary);
  padding: 13px 16px;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-bottom: 0;
  color: var(--sk-color-text);
  outline: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
}
.sk-form-gravity .gform_wrapper .gfield input::-moz-placeholder, .sk-form-gravity .gform_wrapper .gfield input[type]:not([type=submit])::-moz-placeholder, .sk-form-gravity .gform_wrapper .gfield textarea::-moz-placeholder {
  font-size: 0;
  color: transparent;
}
.sk-form-gravity .gform_wrapper .gfield input::placeholder,
.sk-form-gravity .gform_wrapper .gfield input[type]:not([type=submit])::placeholder,
.sk-form-gravity .gform_wrapper .gfield textarea::placeholder {
  font-size: 0;
  color: transparent;
}
.sk-form-gravity .gform_wrapper .gfield input,
.sk-form-gravity .gform_wrapper .gfield input[type] {
  height: 50px;
}
.sk-form-gravity .gform_wrapper .gfield textarea {
  min-height: 150px !important;
  height: 150px !important;
}
.sk-form-gravity .gform_wrapper .gfield .gform_validation_errors {
  display: none;
}
.sk-form-gravity .gform_wrapper .gfield.gfield_error label {
  font-size: 15px !important;
  color: var(--sk-color-placeholder-secondary);
  opacity: 1;
}
.sk-form-gravity .gform_wrapper .gfield.gfield_error label.active {
  opacity: 1;
}
.sk-form-gravity .gform_wrapper .gfield.gfield_error.active label {
  opacity: 0;
}
.sk-form-gravity .gform_wrapper .gfield.gfield_error.active::after {
  opacity: 1;
}
.sk-form-gravity .gform_wrapper .gfield .validation_message {
  padding: 0;
  background-color: transparent;
  color: var(--sk-color-placeholder-secondary);
  font-size: 12px;
  line-height: normal;
  border: none;
  padding-left: 16px;
  margin-top: var(--sk-spacing-10);
}
.sk-form-gravity input[type=submit] {
  width: auto;
}
.sk-form-gravity_footer .gform_title {
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  color: var(--sk-color-white);
  margin-bottom: var(--sk-spacing-30);
}
@media (min-width: 1280px) {
  .sk-form-gravity_footer .gform_title {
    margin-bottom: var(--sk-spacing-15);
  }
}
.sk-form-gravity_footer .gform_description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: var(--sk-spacing-20);
}
@media (min-width: 1024px) {
  .sk-form-gravity_footer .gform_description {
    margin-bottom: var(--sk-spacing-15);
  }
}
@media (min-width: 1280px) {
  .sk-form-gravity_footer .gform_description {
    margin-bottom: var(--sk-spacing-20);
  }
}
.sk-form-gravity_footer .gform_wrapper .gfield label {
  color: var(--sk-color-placeholder-secondary);
}
.sk-form-gravity_footer .gform_wrapper .gfield textarea,
.sk-form-gravity_footer .gform_wrapper .gfield input,
.sk-form-gravity_footer .gform_wrapper .gfield input[type]:not([type=submit]),
.sk-form-gravity_footer .gform_wrapper .gfield [aria-invalid=true] {
  background-color: #0e333c;
  border-color: var(--sk-color-border-secondary) !important;
  color: var(--sk-color-placeholder-secondary);
}
.sk-form-gravity_footer .gform_wrapper .gfield textarea {
  min-height: 100px !important;
  max-height: 100px !important;
}
@media (min-width: 1280px) {
  .sk-form-gravity_footer .gform_wrapper .gfield.gfield--width-three-quarter,
  .sk-form-gravity_footer .gform_wrapper .gfield.gfield--width-quarter {
    grid-column: span 12 !important;
  }
}
.sk-form-gravity_footer .gform_wrapper input[type=submit] {
  width: 100%;
  margin: 0 !important;
  height: auto;
  line-height: 1 !important;
  min-width: auto !important;
  font-weight: 500 !important;
  font-size: 18px !important;
}
.sk-form-gravity_footer .gform_wrapper input[type=submit]:hover {
  background-color: var(--sk-color-white);
  color: var(--sk-color-button);
}
@media (min-width: 1280px) {
  .sk-form-gravity_footer .gform_wrapper input[type=submit] {
    width: auto !important;
    width: 150px !important;
    margin-top: 10px !important;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10;
  display: none;
}
.modal__container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(10%);
  transition-duration: 0.6s;
}
.modal .modal-active {
  opacity: 1;
  transform: translateY(0);
}
.modal__wrapper {
  width: 90%;
  height: auto;
  max-height: 85%;
  overflow: auto;
  max-width: 650px;
  background-color: var(--sk-color-white);
  padding: 50px;
  position: relative;
  opacity: 1;
}
@media (min-width: 1024px) {
  .modal__wrapper {
    padding: 100px;
  }
}
.modal__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 50px;
  height: 50px;
  background-color: var(--sk-color-white);
  cursor: pointer;
}
.modal__close span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition-duration: 0.6s;
}
.modal__close span:hover {
  transform: rotate(90deg);
}
.modal__close span:hover::before, .modal__close span:hover::after {
  background-color: var(--sk-color-third);
}
.modal__close span::before, .modal__close span::after {
  position: absolute;
  content: " ";
  height: 25px;
  width: 3px;
  background-color: var(--sk-color-black);
  border-radius: 10px;
  transition: background-color 0.4s ease;
}
.modal__close span::before {
  transform: rotate(45deg);
}
.modal__close span::after {
  transform: rotate(-45deg);
}

.hs-form {
  display: grid;
  gap: var(--sk-spacing-15) !important;
}
@media (min-width: 1024px) {
  .hs-form {
    grid-template-columns: 1fr 1fr;
    gap: var(--sk-spacing-25);
  }
}
@media (min-width: 1024px) {
  .hs-form .hs-submit {
    grid-row-start: 2;
    grid-column-start: 2;
  }
}
.hs-form ul.hs-error-msgs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.hs-form ul.hs-error-msgs label {
  display: block;
  padding-left: 16px;
  font-size: 12px;
  color: var(--sk-color-placeholder-secondary);
  margin-top: 0;
}
.hs-form .hs_error_rollup {
  display: none;
}
.hs-form .hs-form-field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.hs-form .hs-form-field ul label.hs-error-msg,
.hs-form .hs-form-field .hs-error-msgs label {
  display: block;
  padding-left: 16px;
  font-size: 12px;
  color: var(--sk-color-placeholder-secondary);
  margin-top: 10px;
}
.hs-form .hs-form-field .hs-error-msgs label {
  margin-top: 0;
}
.hs-form .hs-form-field label:not(.hs-error-msg) {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400 !important;
  color: var(--sk-color-placeholder-primary);
  transition: all 0.6s ease;
  margin: 0 !important;
}
.hs-form .hs-form-field label.active {
  opacity: 0;
}
.hs-form .hs-form-field input,
.hs-form .hs-form-field textarea {
  background: transparent;
  border-radius: 10px;
  border: 1px solid var(--sk-color-border-primary);
  padding: 13px 16px;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  margin-bottom: 0;
  color: var(--sk-color-text);
  outline: none !important;
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  transition: border-color 0.3s ease;
}
.hs-form .hs-form-field input::-moz-placeholder, .hs-form .hs-form-field textarea::-moz-placeholder {
  font-size: 0;
  color: transparent;
}
.hs-form .hs-form-field input::placeholder,
.hs-form .hs-form-field textarea::placeholder {
  font-size: 0;
  color: transparent;
}
.hs-form .hs-form-field input {
  height: 50px;
}
.hs-form .hs-form-field textarea {
  min-height: 150px !important;
  height: 150px !important;
}
.hs-form .hs-form-field input:focus,
.hs-form .hs-form-field textarea:focus {
  border-color: var(--sk-color-primary);
}
.hs-form .hs-form-field::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  line-height: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sk-color-placeholder-primary);
  opacity: 0;
  transition: all 0.6s ease;
}
.hs-form .hs-form-field.active::after {
  opacity: 1;
}
.hs-form .hs-form-field.hs-form-field-error label {
  font-size: 15px !important;
  color: var(--sk-color-placeholder-secondary);
  opacity: 1;
}
.hs-form .hs-form-field.hs-form-field-error .hs-error-msg {
  display: block;
  padding: 0;
  background-color: transparent;
  color: var(--sk-color-placeholder-secondary);
  font-size: 12px;
  line-height: normal;
  margin-top: 5px;
}
.hs-form .hs-form-required {
  display: none;
}

input[type=submit] {
  background-color: var(--sk-color-primary);
  color: var(--sk-color-white);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100% !important;
  height: 50px !important;
  margin-bottom: 0 !important;
}
input[type=submit]:hover {
  background-color: var(--sk-color-primary-dark);
}

.hs-form .hs-form-field input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  background-color: var(--sk-color-white);
  border: 1px solid var(--sk-color-border-primary);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding: 0;
}
.hs-form .hs-form-field input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--sk-color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.hs-form .hs-form-field input[type=checkbox]:checked::before {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.subscription {
  padding-bottom: var(--sk-spacing-200);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .subscription {
    padding-bottom: var(--sk-spacing-215);
  }
}
@media (min-width: 1280px) {
  .subscription {
    padding-bottom: var(--sk-spacing-275);
  }
}
@media (min-width: 1024px) {
  .subscription .sk-container {
    padding: 0 75px;
  }
}
.subscription.section-hidden {
  padding-top: 0;
}
@media (min-width: 1024px) {
  .subscription.section-hidden {
    padding-top: var(--sk-spacing-35);
  }
}
@media (min-width: 1280px) {
  .subscription.section-hidden {
    padding-top: 0;
  }
}
.subscription::after {
  content: "";
  position: absolute;
  bottom: -300px;
  transform: translateX(-50%);
  left: 50%;
  width: 500px;
  height: 500px;
  background-image: url("../img/subscription-decoration.png");
  background-size: cover;
  animation: rotate 40s linear infinite;
  opacity: 0.4;
}
@media (min-width: 1024px) {
  .subscription::after {
    width: 1094px;
    height: 1094px;
    bottom: -850px;
  }
}
@media (min-width: 1280px) {
  .subscription::after {
    width: 1187px;
    height: 1187px;
    bottom: -950px;
  }
}
@keyframes rotate {
  0% {
    transform: translateX(-50%) rotateZ(0);
  }
  100% {
    transform: translateX(-50%) rotateZ(360deg);
  }
}
.subscription__wrapper {
  position: relative;
  z-index: 10;
}
.subscription__title, .subscription__description {
  text-align: center;
  margin-bottom: var(--sk-spacing-25);
}
.subscription__title h2 {
  letter-spacing: -0.04em;
}
@media (min-width: 1024px) {
  .subscription__title h2 {
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -0.005em;
  }
}
@media (min-width: 1440px) {
  .subscription__title h2 {
    letter-spacing: -0.05em;
    line-height: 52px;
    margin-bottom: var(--sk-spacing-30);
  }
}
.subscription__description {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .subscription__description {
    margin-bottom: var(--sk-spacing-65);
  }
}
.subscription__description p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.005em;
}
@media (min-width: 1024px) {
  .subscription__description p {
    font-size: 24px;
    line-height: 28px;
  }
}
@media (min-width: 512px) {
  .subscription__content, .subscription__form {
    max-width: 50%;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .subscription__content, .subscription__form {
    max-width: unset;
  }
}
@media (min-width: 1280px) {
  .subscription__content, .subscription__form {
    max-width: 872px;
  }
}
.subscription__content {
  margin-bottom: var(--sk-spacing-40);
}
.subscription__form .sk-form .form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sk-spacing-10);
}
.subscription__form .sk-form .sk-form__container {
  flex-basis: calc(50% - 5px);
}
@media (max-width: 768px) {
  .subscription__form .sk-form .sk-form__container {
    flex-basis: 100%;
  }
}
.subscription__form .sk-form .sk-form__submit {
  margin-bottom: var(--sk-spacing-25);
}
.subscription__form .sk-form .sk-form__submit button[type=submit] {
  margin-top: 0;
}
.subscription.text-content {
  padding-bottom: var(--sk-spacing-250);
}
@media (min-width: 1024px) {
  .subscription.text-content {
    padding-bottom: var(--sk-spacing-300);
  }
}
@media (min-width: 1280px) {
  .subscription.text-content {
    padding-bottom: var(--sk-spacing-350);
  }
}
.subscription.text-content .subscription__content p {
  font-size: 15px;
  line-height: 21px;
}
.subscription.text-content .subscription__content p:not(:last-child) {
  margin-bottom: var(--sk-spacing-25);
}
.subscription.text-content .subscription__content a, .subscription.text-content .subscription__content .sk-link {
  font-weight: 600;
}
@media (min-width: 512px) {
  .subscription.text-content .subscription__content {
    max-width: unset;
  }
}
@media (min-width: 1024px) {
  .subscription.text-content .subscription__content {
    text-align: center;
  }
}
@media (min-width: 1280px) {
  .subscription.text-content .subscription__content {
    max-width: 900px;
  }
}

.sk-form {
  position: relative;
}
.sk-form__title p {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--sk-color-white);
  margin-bottom: var(--sk-spacing-30);
}
@media (min-width: 512px) {
  .sk-form__title p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .sk-form__title p {
    text-align: left;
    margin-bottom: var(--sk-spacing-25);
  }
}
@media (min-width: 1280px) {
  .sk-form__title p {
    margin-bottom: var(--sk-spacing-15);
    line-height: 1;
  }
}
.sk-form__desciprion p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: var(--sk-spacing-20);
}
@media (min-width: 512px) {
  .sk-form__desciprion p {
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .sk-form__desciprion p {
    text-align: left;
    margin-bottom: var(--sk-spacing-15);
  }
}
@media (min-width: 1280px) {
  .sk-form__desciprion p {
    font-size: 15px;
    margin-bottom: var(--sk-spacing-20);
  }
}
.sk-form .form {
  display: grid;
  gap: var(--sk-spacing-15);
}
@media (min-width: 1280px) {
  .sk-form .form {
    gap: var(--sk-spacing-10);
  }
}
.sk-form .form .sk-form__container {
  position: relative;
  width: 100%;
}
.sk-form .form .sk-form__container.checkbox .sk-form__validation-message {
  padding-left: 32px;
}
.sk-form .form .sk-form__container .sk-form__field:not(.sk-form__field-checkbox) label {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--sk-color-placeholder-primary);
  transition: all 0.3s ease;
  cursor: auto;
}
.sk-form .form .sk-form__container .sk-form__field:not(.sk-form__field-checkbox) label.active {
  opacity: 0;
}
.sk-form .form .sk-form__container .sk-form__field {
  position: relative;
  display: flex;
  flex-direction: column;
}
.sk-form .form .sk-form__container .sk-form__field::after {
  content: attr(data-placeholder);
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  line-height: 10px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--sk-color-placeholder-primary);
  opacity: 0;
  transition: all 0.3s ease;
}
.sk-form .form .sk-form__container .sk-form__field.active::after {
  opacity: 1;
}
.sk-form .form .sk-form__container .sk-form__field-checkbox {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .sk-form .form .sk-form__container .sk-form__field-checkbox {
    margin-top: var(--sk-spacing-15);
  }
}
.sk-form .form .sk-form__container .sk-form__field-checkbox label p {
  font-size: 12px;
  line-height: 18px;
  color: var(--sk-color-text-dark);
  padding-left: var(--sk-spacing-15);
}
.sk-form .form .sk-form__container .sk-form__field-checkbox label a::after, .sk-form .form .sk-form__container .sk-form__field-checkbox label .sk-link::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
}
.sk-form .form .sk-form__container .sk-form__field-checkbox label a:hover, .sk-form .form .sk-form__container .sk-form__field-checkbox label .sk-link:hover {
  color: var(--sk-color-primary);
}
.sk-form .form .sk-form__container .sk-form__field textarea,
.sk-form .form .sk-form__container .sk-form__field input {
  width: 100%;
  background: transparent;
  border-radius: 10px;
  background-color: var(--sk-color-white);
  border-color: var(--sk-color-border-primary);
  padding: 13px 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--sk-color-dark);
  margin-bottom: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.sk-form .form .sk-form__container .sk-form__field textarea::-moz-placeholder, .sk-form .form .sk-form__container .sk-form__field input::-moz-placeholder {
  font-size: 0;
  color: transparent;
}
.sk-form .form .sk-form__container .sk-form__field textarea::placeholder,
.sk-form .form .sk-form__container .sk-form__field input::placeholder {
  font-size: 0;
  color: transparent;
}
.sk-form .form .sk-form__container .sk-form__field textarea {
  min-height: 150px;
  height: 150px;
}
.sk-form .form .sk-form__container .sk-form__field input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 15px;
  height: 15px;
  background-color: var(--sk-color-white);
  border: 1px solid var(--sk-color-border-primary);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  padding: 0;
  flex-shrink: 0;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.sk-form .form .sk-form__container .sk-form__field input[type=checkbox]:focus {
  border: 1px solid var(--sk-color-text);
}
.sk-form .form .sk-form__container .sk-form__field input[type=checkbox]:checked {
  border: 1px solid var(--sk-color-border-primary);
}
.sk-form .form .sk-form__container .sk-form__field input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--sk-color-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all 0.3s ease;
}
.sk-form .form .sk-form__container .sk-form__field input[type=checkbox]:checked::before {
  width: 8px;
  height: 8px;
  opacity: 1;
}
.sk-form .form .sk-form__container .sk-form__validation-message {
  padding-left: 16px;
  background-color: transparent;
  color: var(--sk-color-error);
  font-size: 12px;
  line-height: normal;
  opacity: 0;
  visibility: hidden;
  height: 0;
  margin-bottom: 0;
  transition: 0.3s ease opacity;
}
.sk-form .form .sk-form__container.error .sk-form__validation-message {
  margin-top: var(--sk-spacing-10);
  opacity: 1;
  visibility: visible;
  height: auto;
}
.sk-form .form button[type=submit] {
  width: 100%;
}
@media (min-width: 1280px) {
  .sk-form .form button[type=submit] {
    margin-top: 15px;
  }
}
.sk-form .form button[type=submit]:hover {
  background-color: var(--sk-color-second);
  color: var(--sk-color-white);
}
@media (min-width: 1024px) {
  .sk-form .form_footer {
    grid-template-columns: 1fr 130px;
    grid-template-rows: repeat(2, auto);
    align-items: flex-start;
  }
}
.sk-form .form_footer .sk-form__container .sk-form__field textarea,
.sk-form .form_footer .sk-form__container .sk-form__field input {
  border-color: var(--sk-color-border-secondary);
  background-color: var(--sk-color-input);
  color: var(--sk-color-placeholder-secondary);
}
.sk-form .form_footer .sk-form__container .sk-form__field textarea {
  min-height: 100px;
  height: 100px;
}
.sk-form .form_footer .sk-form__container .sk-form__validation-message {
  color: var(--sk-color-placeholder-secondary);
}
@media (min-width: 1024px) {
  .sk-form .form_footer .sk-form__container.textarea {
    grid-column: 1/3;
    grid-row: 1/2;
  }
}
@media (min-width: 1024px) {
  .sk-form .form_footer .sk-form__container.email {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 1280px) {
  .sk-form .form_footer .sk-form__container.email {
    grid-column: 1/3;
  }
}
.sk-form .form_footer button[type=submit]:hover {
  background-color: var(--sk-color-white);
  color: var(--sk-color-button);
}
@media (min-width: 768px) {
  .sk-form .form_footer button[type=submit] {
    width: 150px;
  }
}
@media (min-width: 1024px) {
  .sk-form .form_footer button[type=submit] {
    grid-column: 2/3;
    grid-row: 2/3;
    width: 130px;
    min-width: 130px !important;
  }
}
@media (min-width: 1280px) {
  .sk-form .form_footer button[type=submit] {
    grid-column: 1/3;
    grid-row: 3/3;
    width: 150px;
    min-width: 150px !important;
    margin-top: 10px;
  }
}
.sk-form__submit-message {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .sk-form__submit-message {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (min-width: 1280px) {
  .sk-form__submit-message {
    font-size: 24px;
    line-height: 32px;
  }
}

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-form .form button[type=submit],
.sk-btn,
input[type=submit],
.sk-form-gravity input[type=submit],
.sk-form-gravity_footer .gform_wrapper input[type=submit] {
  font-family: var(--sk-font-primary);
  background: var(--sk-color-primary);
  color: var(--sk-color-text);
  min-width: 150px;
  border-radius: 10px;
  border: none;
  padding: 16px 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  font-size: var(--sk-text-base-size);
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
a.sk-btn:hover, a.sk-btn:active, a.sk-btn:focus, a.sk-btn:focus-within,
button.sk-btn:hover,
.sk-form .form button[type=submit]:hover,
button.sk-btn:active,
.sk-form .form button[type=submit]:active,
button.sk-btn:focus,
.sk-form .form button[type=submit]:focus,
button.sk-btn:focus-within,
.sk-form .form button[type=submit]:focus-within,
.sk-btn:hover,
input[type=submit]:hover,
.sk-form-gravity_footer .gform_wrapper input[type=submit]:hover,
.sk-btn:active,
input[type=submit]:active,
.sk-form-gravity_footer .gform_wrapper input[type=submit]:active,
.sk-btn:focus,
input[type=submit]:focus,
.sk-form-gravity_footer .gform_wrapper input[type=submit]:focus,
.sk-btn:focus-within,
input[type=submit]:focus-within,
.sk-form-gravity_footer .gform_wrapper input[type=submit]:focus-within {
  outline: none;
}
a.sk-btn,
button.sk-btn,
.sk-form .form button[type=submit],
.sk-btn,
input[type=submit],
.sk-form-gravity input[type=submit],
.sk-form-gravity_footer .gform_wrapper input[type=submit] {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.sk-btn--primary:hover, a.sk-btn--primary:active,
button.sk-btn--primary:hover,
button.sk-btn--primary:active,
.sk-btn--primary:hover,
input[type=submit]:hover,
.sk-btn--primary:active,
input[type=submit]:active {
  color: var(--sk-color-white);
  background: var(--sk-color-second);
}
.section-bg-dark a.sk-btn--primary:hover, .section-bg-dark a.sk-btn--primary:active,
.section-bg-dark button.sk-btn--primary:hover,
.section-bg-dark button.sk-btn--primary:active,
.section-bg-dark .sk-btn--primary:hover,
.section-bg-dark input[type=submit]:hover,
.section-bg-dark .sk-btn--primary:active,
.section-bg-dark input[type=submit]:active {
  background-color: var(--sk-color-third);
  color: var(--sk-color-text);
}
a.sk-btn--secondary,
button.sk-btn--secondary,
.sk-btn--secondary {
  background: var(--sk-color-white);
  color: var(--sk-color-text);
}
a.sk-btn--secondary:hover,
button.sk-btn--secondary:hover,
.sk-btn--secondary:hover {
  background: var(--sk-color-primary);
}
a.sk-btn--download,
button.sk-btn--download,
.sk-btn--download {
  background-color: transparent;
  border: 2px solid var(--sk-color-second);
  color: var(--sk-color-second);
  font-size: 15px;
  line-height: 14px;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
  justify-content: space-between;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.section-bg-dark > .section-products-slider-product__content > a.sk-btn--download,
.section-bg-dark > .section-products-slider-product__content > button.sk-btn--download,
.section-bg-dark > .section-products-slider-product__content > .sk-btn--download {
  border: 2px solid var(--sk-color-third);
  color: var(--sk-color-third);
}
.section-bg-dark > .section-products-slider-product__content > a.sk-btn--download svg path,
.section-bg-dark > .section-products-slider-product__content > button.sk-btn--download svg path,
.section-bg-dark > .section-products-slider-product__content > .sk-btn--download svg path {
  fill: currentColor;
  stroke: currentColor;
}
.section-bg-dark > .section-products-slider-product__content > a.sk-btn--download:hover,
.section-bg-dark > .section-products-slider-product__content > button.sk-btn--download:hover,
.section-bg-dark > .section-products-slider-product__content > .sk-btn--download:hover {
  border: 2px solid var(--sk-color-primary);
  color: var(--sk-color-second);
}
a.sk-btn--download svg,
button.sk-btn--download svg,
.sk-btn--download svg {
  margin-left: 6px;
  transition: transform 0.3s ease-in-out;
}
a.sk-btn--download:hover, a.sk-btn--download:active,
button.sk-btn--download:hover,
button.sk-btn--download:active,
.sk-btn--download:hover,
.sk-btn--download:active {
  border-color: var(--sk-color-primary);
  background: var(--sk-color-primary);
}
a.sk-btn--download:hover svg, a.sk-btn--download:active svg,
button.sk-btn--download:hover svg,
button.sk-btn--download:active svg,
.sk-btn--download:hover svg,
.sk-btn--download:active svg {
  transform: rotate(45deg);
}
a.sk-btn--plus,
button.sk-btn--plus,
.sk-btn--plus {
  padding: 16px 20px;
  min-width: 200px;
  justify-content: space-between;
  gap: var(--sk-spacing-10);
}
a.sk-btn--disabled, a.sk-btn[disabled], a.sk-btn[readonly],
button.sk-btn--disabled,
button.sk-btn[disabled],
.sk-form .form button[disabled][type=submit],
button.sk-btn[readonly],
.sk-form .form button[readonly][type=submit],
.sk-btn--disabled,
.sk-btn[disabled],
input[disabled][type=submit],
.sk-form-gravity_footer .gform_wrapper input[disabled][type=submit],
.sk-btn[readonly],
input[readonly][type=submit],
.sk-form-gravity_footer .gform_wrapper input[readonly][type=submit] {
  opacity: 0.6;
  cursor: not-allowed;
}
a.sk-btn--lg,
button.sk-btn--lg,
.sk-btn--lg,
input[type=submit] {
  font-size: var(--sk-text-base-size);
  width: 245px;
  height: 45px;
}
a.sk-btn--md,
button.sk-btn--md,
.sk-btn--md {
  font-size: var(--sk-text--xs);
  width: 150px;
  height: 50px;
}
a.sk-btn--sm,
button.sk-btn--sm,
.sk-btn--sm {
  font-size: var(--sk-text-base-size);
  width: 110px;
  height: 45px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  a.sk-btn--sm,
  button.sk-btn--sm,
  .sk-btn--sm {
    width: 120px;
    height: 40px;
  }
}
a.sk-btn--auto,
button.sk-btn--auto,
.sk-btn--auto {
  max-width: inherit;
  width: auto;
}
a.sk-btn--full-w,
button.sk-btn--full-w,
.sk-btn--full-w {
  width: 100%;
}
a.sk-btn--rectangle,
button.sk-btn--rectangle,
.sk-btn--rectangle {
  border-radius: 15px;
}
a.sk-btn--shadow,
button.sk-btn--shadow,
.sk-btn--shadow {
  border: unset;
  filter: drop-shadow(1px 4px 3px rgba(0, 0, 0, 0.3));
}
a.sk-btn--shadow:hover,
button.sk-btn--shadow:hover,
.sk-btn--shadow:hover {
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
a.sk-btn--back,
button.sk-btn--back,
.sk-btn--back {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--sk-color-third);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
a.sk-btn--back svg path,
button.sk-btn--back svg path,
.sk-btn--back svg path {
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
a.sk-btn--back:hover,
button.sk-btn--back:hover,
.sk-btn--back:hover {
  background-color: var(--sk-color-primary);
}

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

.post-card {
  padding: var(--sk-spacing-25);
  border-radius: 15px;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .post-card {
    padding: var(--sk-spacing-15);
    border: solid 1px rgba(15, 57, 67, 0.2);
    transition: border 0.3s ease-in-out;
  }
  .section-bg-dark .post-card {
    border: solid 1px rgba(246, 246, 244, 0.5);
  }
  .post-card:hover {
    border: solid 1px rgb(15, 57, 67);
  }
  .section-bg-dark .post-card:hover {
    border: solid 1px rgb(246, 246, 244);
  }
}
.post-card > a, .post-card > .sk-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
}
.post-card > a:hover, .post-card > .sk-link:hover {
  text-decoration: none;
}
.post-card > a:hover svg, .post-card > .sk-link:hover svg {
  transform: rotate(45deg);
}
.post-card > a:hover svg path[fill=white], .post-card > .sk-link:hover svg path[fill=white] {
  fill: var(--sk-color-primary);
}
.post-card > a:hover svg path[stroke=white], .post-card > .sk-link:hover svg path[stroke=white] {
  stroke: var(--sk-color-primary);
}
.post-card > a svg, .post-card > .sk-link svg,
.post-card > a svg path,
.post-card > .sk-link svg path {
  transition: all 0.4s ease-in-out;
}
.post-card > a > *, .post-card > .sk-link > * {
  pointer-events: none;
}
.post-card__image {
  height: 200px;
}
.post-card__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card__content {
  background-color: var(--sk-color-second);
  color: var(--sk-color-white);
  padding: var(--sk-spacing-25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sk-spacing-40);
  flex-grow: 1;
  text-align: left;
}
@media (max-width: 768px) {
  .post-card__content {
    padding: var(--sk-spacing-15);
  }
}
.section-bg-dark .post-card__content {
  background-color: var(--sk-color-third);
  color: var(--sk-color-text);
}
.section-bg-dark .post-card__content path[fill=white] {
  fill: var(--sk-color-text);
}
.section-bg-dark .post-card__content path[stroke=white] {
  stroke: var(--sk-color-text);
}
.post-card__title, .post-card__date {
  font-size: 15px;
  line-height: 21px;
}
.post-card__date {
  position: relative;
}
.post-card__date::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--sk-color-primary);
  border-radius: 50%;
  margin-right: 10px;
}
.post-card__bottom {
  display: flex;
  justify-content: space-between;
}

.pagination {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.pagination .btn.prev button,
.pagination .btn.prev a,
.pagination .btn.prev .sk-link, .pagination .btn.next button,
.pagination .btn.next a,
.pagination .btn.next .sk-link {
  width: var(--sk-spacing-50);
  height: var(--sk-spacing-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: transparent;
}
.pagination .btn.prev button:not([disabled]):hover,
.pagination .btn.prev a:not([disabled]):hover,
.pagination .btn.prev .sk-link:not([disabled]):hover, .pagination .btn.next button:not([disabled]):hover,
.pagination .btn.next a:not([disabled]):hover,
.pagination .btn.next .sk-link:not([disabled]):hover {
  cursor: pointer;
  background-color: var(--sk-color-white);
}
.pagination .btn.prev {
  margin-right: var(--sk-spacing-10);
}
@media (max-width: 512px) {
  .pagination .btn.prev {
    margin-right: 0;
  }
}
.pagination .btn.next {
  margin-left: var(--sk-spacing-10);
}
@media (max-width: 512px) {
  .pagination .btn.next {
    margin-left: 0;
  }
}
.pagination .btn button,
.pagination .btn a,
.pagination .btn .sk-link {
  display: flex;
  border: none;
  background-color: transparent;
  padding: 0;
}
.pagination .btn button[disabled],
.pagination .btn a[disabled],
.pagination .btn [disabled].sk-link {
  opacity: 0.5;
}
.pagination .btn button::after, .pagination .btn button::before,
.pagination .btn a::after,
.pagination .btn .sk-link::after,
.pagination .btn a::before,
.pagination .btn .sk-link::before {
  content: none;
}
.pagination .btn svg path {
  transition: all 0.3s ease-in-out;
}
.pagination .btn:hover a svg path, .pagination .btn:hover .sk-link svg path {
  fill: var(--sk-color-primary);
  stroke: var(--sk-color-primary);
}
.pagination .page-number,
.pagination .dots {
  background-color: var(--sk-color-white);
  width: var(--sk-spacing-50);
  height: var(--sk-spacing-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 512px) {
  .pagination .page-number,
  .pagination .dots {
    width: var(--sk-spacing-35);
    height: var(--sk-spacing-35);
  }
}
.pagination .page-number:hover {
  text-decoration: none;
  background-color: var(--sk-color-primary);
}
.pagination .page-number.current {
  background-color: var(--sk-color-second);
  color: var(--sk-color-white);
}

.border-hover-wrap .cursor {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: solid 1px rgba(15, 57, 67, 0.2);
  box-sizing: border-box;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.1s ease-in-out;
}
@media (max-width: 768px) {
  .border-hover-wrap .cursor {
    display: none;
  }
}
.border-hover-wrap.section-bg-dark .cursor {
  border: solid 1px rgba(246, 246, 244, 0.5);
}
.border-hover-wrap.hover .cursor {
  opacity: 1;
  visibility: visible;
}

.socials {
  padding: var(--sk-spacing-50) 0 var(--sk-spacing-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .socials {
    justify-content: center;
  }
}
@media (min-width: 1440px) {
  .socials {
    padding: var(--sk-spacing-90) 0 var(--sk-spacing-235);
  }
}
.socials__title {
  position: relative;
  padding-right: 25px;
}
.socials__title p {
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 500;
}
.socials__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 15px;
  height: 15px;
  background-image: url("../img/share.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.socials__links {
  display: flex;
  gap: 10px;
}
.socials__links a, .socials__links .sk-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  background-color: var(--sk-color-second);
  border-radius: 50%;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.socials__links a:hover, .socials__links .sk-link:hover {
  background-color: var(--sk-color-primary);
}

.reveal-text .word {
  display: inline-block;
  opacity: 0.5;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}
.reveal-text .word.active {
  opacity: 1;
}
@media (max-width: 768px) {
  .reveal-text p {
    text-align: left !important;
  }
}
