/**
 * Swiper 12.2.0
 * 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: May 27, 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%;
    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;
    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%;
    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;
  }
}

:focus{outline:none}input,textarea,select{border-radius:0}select::-ms-expand{display:none}h1,h2,h3,h4,h5,h6{margin-top:0}img{display:block}ul,ol,li{list-style:none}figure{margin:0}fieldset{margin:0;padding:0;border:0}*{margin:0;padding:0;box-sizing:border-box}*:before,*:after{margin:0;padding:0;box-sizing:border-box}html{font-size:16px}body{font-size:17px;font-family:"Transducer",sans-serif;line-height:1.8;color:#161a25;background-color:#fff;font-weight:400;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}body.is-menu-open{overflow:hidden}a{display:inline-block;color:#161a25;text-decoration:none;transition:color .25s ease-in-out,border-color .25s ease-in-out,background-color .25s ease-in-out}.display-1,h1{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:40px}@media only screen and (min-width: 1025px){.display-1,h1{font-size:60px}}.display-2,h2{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:30px}@media only screen and (min-width: 1025px){.display-2,h2{font-size:50px}}.display-3,h3{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:22px}@media only screen and (min-width: 1025px){.display-3,h3{font-size:30px}}.display-4,h4{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:20px}.display-5,h5{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:17px}.display-6,h6{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:16px}.subtitle{display:block;letter-spacing:1px}p{margin-bottom:20px}p a:focus,p a:hover{text-decoration:underline}img{display:block;max-width:100%;height:auto}strong,dfn{font-weight:bold}em,dfn{font-style:italic}sup,sub{line-height:0}address>*:last-child{margin-bottom:0}address{margin:0 0 20px;display:block;font-style:italic}blockquote>*:last-child{margin-bottom:0}blockquote{margin:0 0 20px;padding:20px;font-style:italic;border:1px solid #000;border-radius:5px}.clear:after{display:block;clear:both;content:""}.centered,.wp-block-columns{padding-right:20px;padding-left:20px}@media only screen and (min-width: 1470px){.centered,.wp-block-columns{padding-right:calc((100% - 1200px)/2);padding-left:calc((100% - 1200px)/2)}}.centered-md{padding-right:20px;padding-left:20px}@media only screen and (min-width: 1470px){.centered-md{padding-right:calc((100% - 1440px)/2);padding-left:calc((100% - 1440px)/2)}}.centered-lg{padding-right:20px;padding-left:20px}@media only screen and (min-width: 1700px){.centered-lg{padding-right:calc((100% - 1680px)/2);padding-left:calc((100% - 1680px)/2)}}.wp-block-columns{margin-bottom:0 !important}.wp-block-column .wp-block-columns{padding-right:0 !important;padding-left:0 !important}@media only screen and (max-width: 1200px){.wp-block-columns .wp-block-column{flex-basis:100%}.wp-block-columns .wp-block-column:nth-child(2n){margin-left:0}}.otgs-development-site-front-end{display:none}.wrapper{position:relative;display:block;width:100%;min-height:100%;overflow-x:clip;padding-top:76px}@media only screen and (min-width: 480px){.wrapper{padding-top:84px}}@media only screen and (min-width: 1200px){.wrapper{padding-top:108px}}@media only screen and (min-width: 1470px){.wrapper{padding-top:130px}}.button{padding:10px 33px;display:inline-flex;align-items:center;font-family:"Transducer",sans-serif;font-size:17px;font-weight:700;white-space:nowrap;text-align:center;color:#fff;vertical-align:middle;border-radius:75px;background:#161a25;transition:color .25s ease-in-out,border-color .25s ease-in-out,background-color .25s ease-in-out;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:manipulation;cursor:pointer;height:55px;line-height:normal;margin-bottom:0;border:0}@media only screen and (min-width: 1025px){.button{height:60px}}.button i.icon-mouse-alt{margin-left:6px}.button span{font-size:16px;position:relative;margin-left:4px;margin-right:2px;overflow:hidden;display:inline-block;width:19px;height:19px}.button span:before,.button span:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-family:"icomoon",sans-serif;transition:.25s ease-in-out}.button span:before{transform:translate(-26px, 10px)}.button:hover,.button[type=submit]:hover,.button[type=reset]:hover,.button[type=button]:hover,.button:focus,.button.is-focused{text-decoration:none;color:#fff;border-color:hsl(224,25.4237288136%,11.318627451%);background-color:#000}.button:hover span:after,.button[type=submit]:hover span:after,.button[type=reset]:hover span:after,.button[type=button]:hover span:after,.button:focus span:after,.button.is-focused span:after{transform:translate(10px, -26px)}.button:hover span:before,.button[type=submit]:hover span:before,.button[type=reset]:hover span:before,.button[type=button]:hover span:before,.button:focus span:before,.button.is-focused span:before{transform:translate(-9px, -7px)}.button:active,.button.is-active{background-image:none}@media only screen and (min-width: 768px){.button+.button{margin-left:38px}}.button--secondary{color:#000;background-color:#efefef}.button--secondary:hover,.button--secondary[type=submit]:hover,.button--secondary[type=reset]:hover,.button--secondary[type=button]:hover,.button--secondary:focus,.button--secondary.is-focused{color:#000;background-color:#efefef}.button--white{color:#161a25;background-color:#fff}.button--no-button{padding:0;font-size:17px;font-weight:700;color:#161a25;height:auto;position:relative;background-color:rgba(0,0,0,0)}.button--no-button span:before,.button--no-button span:after{color:#999}.button--no-button:focus,.button--no-button:hover{color:#161a25;background-color:rgba(0,0,0,0)}.button--no-button:focus span:before,.button--no-button:focus span:after,.button--no-button:hover span:before,.button--no-button:hover span:after{color:#161a25}.button--small{color:#999;font-size:15px;font-weight:400}.button--normal{font-weight:400}.button--light{color:#efefef}.button--light:focus,.button--light:hover{color:#efefef;text-decoration:underline}.button--link{font-size:20px;color:#efefef}.button--link:focus,.button--link:hover{color:#efefef}.button--outline{color:#161a25;border:solid 2px #161a25;background-color:#fff}.header{padding-top:15px;padding-bottom:15px;position:fixed;top:0;left:0;width:100%;z-index:11;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;background-color:#fff;box-shadow:0 0 90px rgba(0,0,0,.35);transition:.25s ease-in-out}@media only screen and (min-width: 1200px){.header{padding-top:24px;padding-bottom:24px}}@media only screen and (min-width: 1470px){.header{padding-top:34px}}.header:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;opacity:0;visibility:hidden;background-color:#fff;transition:.25s ease-in-out}.header__logo{width:230px;position:relative;z-index:2;transition:all .25s ease-in-out}@media only screen and (min-width: 480px){.header__logo{width:270px}}@media only screen and (min-width: 1470px){.header__logo{width:361px}}.header__logo img{width:100%}.header__logo:after{content:"";position:absolute;top:-32px;left:-28px;width:101px;height:101px;border-radius:100%;pointer-events:none;z-index:-1;background-color:#fff;transition:all .25s ease-in-out}@media only screen and (min-width: 480px){.header__logo:after{top:-22px;left:-24px}}@media only screen and (min-width: 1200px){.header__logo:after{top:-28px;left:-33px;width:121px;height:121px}}@media only screen and (min-width: 1470px){.header__logo:after{top:-34px;width:141px;height:141px}}@media only screen and (max-width: 1199px){.header__right{opacity:0;visibility:hidden;display:flex;flex-direction:column;padding:110px 15px 30px 15px;position:fixed;top:0;left:0;width:100%;height:100dvh;overflow-y:scroll;background-color:#fff;transition:all .25s ease-in-out}}@media only screen and (min-width: 1200px){.header__right{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between}}@media only screen and (min-width: 1470px){.header__right{width:64.2%}}.header__menu-list{margin-bottom:0}@media only screen and (min-width: 1200px){.header__menu-list{display:flex;flex-wrap:wrap}}.header__menu-item{position:relative}@media only screen and (min-width: 1200px){.header__menu-item{padding-top:16px}}.header__menu-item:not(:last-child){margin-bottom:20px}@media only screen and (min-width: 1200px){.header__menu-item:not(:last-child){margin-right:25px;margin-bottom:0}}@media only screen and (min-width: 1470px){.header__menu-item:not(:last-child){margin-right:41px}}.header__menu-item.is-active .header__menu-link{color:#161a25}.header__menu-item.is-active .header__menu-link:after{opacity:1;visibility:visible}.header__menu-item:focus .header__menu-subitems,.header__menu-item:hover .header__menu-subitems{opacity:1;visibility:visible}@media only screen and (max-width: 1199px){.header__menu-item:focus .header__menu-subitems,.header__menu-item:hover .header__menu-subitems{display:block}}.header__menu-link{color:#666;font-weight:700;position:relative}@media only screen and (min-width: 1200px){.header__menu-link{padding-bottom:16px}}.header__menu-link span{position:absolute;top:-8px;right:-25px;width:25px;height:25px;font-size:15px;display:flex;align-items:center;justify-content:center;color:#161a25;border-radius:100%;font-weight:400;background-color:#efefef}@media only screen and (min-width: 1200px){.header__menu-link span{top:-18px}}@media only screen and (min-width: 1470px){.header__menu-link span{font-size:17px;right:-30px;width:30px;height:30px}}.header__menu-link:after{content:"";position:absolute;bottom:0;left:0;width:100%;height:3px;opacity:0;visibility:hidden;background-color:#161a25;transition:all .25s ease-in-out;display:none}@media only screen and (min-width: 1200px){.header__menu-link:after{display:block}}.header__menu-link:focus,.header__menu-link:hover{color:#161a25}.header__menu-link:focus:after,.header__menu-link:hover:after{opacity:1;visibility:visible}.header__menu-subitems{padding:15px 0;width:-moz-max-content;width:max-content;transition:all .25s ease-in-out}@media only screen and (max-width: 1199px){.header__menu-subitems{display:none}}@media only screen and (min-width: 1200px){.header__menu-subitems{padding:47px 0 37px 0;opacity:0;visibility:hidden;position:absolute;top:100%;left:-82px;margin-top:-2px;background-color:#fff;border-bottom-right-radius:35px;box-shadow:0 0 100px rgba(6,7,7,.1)}}.header__menu-sublink{padding:6px 20px;color:#666;display:block;transition:.25s ease-in-out}@media only screen and (min-width: 1200px){.header__menu-sublink{padding:6px 101px 6px 61px}}.header__menu-sublink:focus,.header__menu-sublink:hover{font-weight:700;color:#161a25}.header__angle-arrow{font-size:22px;position:absolute;top:0;right:0;width:30px;height:30px;display:flex;align-items:center;justify-content:center;transition:all .25s ease-in-out}@media only screen and (min-width: 1200px){.header__angle-arrow{display:none}}.header__angle-arrow.is-active{transform:rotate(-180deg)}.header__info{margin-top:auto}@media only screen and (min-width: 480px){.header__info{display:flex;flex-wrap:wrap;align-items:center;gap:40px}}@media only screen and (min-width: 1200px){.header__info{gap:0}}@media only screen and (min-width: 1200px){.header__info .button--small{margin-left:21px}}.header__btn{padding:10px 37px}@media only screen and (min-width: 1200px){.header__btn{margin-left:31px}}.header__switcher{margin-top:12px;margin-bottom:12px;position:relative}@media only screen and (min-width: 768px){.header__switcher{margin-top:0;margin-bottom:0}}@media only screen and (min-width: 1200px){.header__switcher{margin-left:21px}}.header__switcher.is-active .header__switcher-button:after{transform:rotate(-180deg)}.header__switcher.is-active .header__switcher-options{opacity:1;visibility:visible;transform:translateY(0);pointer-events:auto;border-radius:5px}.header__switcher-button{font-size:15px;color:#999;font-weight:400;border:0;position:relative;background-color:rgba(0,0,0,0);font-family:"Transducer",sans-serif;padding:0 18px 0 0;cursor:pointer;transition:.25s ease-in-out}.header__switcher-button:after{content:"";position:absolute;top:-1px;right:0;font-size:20px;color:#999;font-family:"icomoon",sans-serif;transition:.25s ease-in-out}.header__switcher-button:focus,.header__switcher-button:hover{color:#161a25}.header__switcher-button:focus:after,.header__switcher-button:hover:after{color:#161a25}.header__switcher-options{font-size:14px;color:#999;font-weight:400;list-style:none;position:absolute;top:calc(100% + 8px);right:0;z-index:3;padding:8px 10px;background-color:#fff;opacity:0;visibility:hidden;transform:translateY(-5px);pointer-events:none;transition:.25s ease-in-out;box-shadow:0 0 20px rgba(0,0,0,.2)}.header__switcher-options li:not(:last-child){margin-bottom:0}.header__switcher-options a{display:block;text-decoration:none}.header__switcher-options a:focus,.header__switcher-options a:hover{opacity:.75}.header__switcher-options img{display:block;width:24px;height:16px;-o-object-fit:cover;object-fit:cover}.header__toggle{position:absolute;top:50%;right:15px;z-index:9;display:flex;align-items:center;justify-content:center;width:32px;height:36px;border:0;background-color:rgba(0,0,0,0);transform:translateY(-50%);transition:.25s ease-in-out}@media only screen and (min-width: 1200px){.header__toggle{display:none}}.header__toggle span{position:relative;width:100%;height:2px;text-indent:-9999px;border-radius:3px;background-color:#161a25;transition:all .25s ease-in-out}.header__toggle span:before,.header__toggle span:after{content:"";position:absolute;display:block;width:100%;height:2px;border-radius:3px;background-color:#161a25;transition:all .25s ease-in-out}.header__toggle span:before{top:-9px;left:0}.header__toggle span:after{right:0;bottom:-9px;width:20px}.header__toggle.is-active span{background:none}.header__toggle.is-active span:before{top:0;width:100%;transform:rotate(135deg)}.header__toggle.is-active span:after{bottom:0;width:100%;transform:rotate(-135deg)}.is-menu-open .header:after{opacity:1;visibility:visible}.is-menu-open .header .header__right{opacity:1;visibility:visible}.header--sticky{padding-top:12px;padding-bottom:12px}@media only screen and (min-width: 1470px){.header--sticky{padding-top:17px;padding-bottom:17px}}.header--sticky .header__logo{width:240px}.header--sticky .header__logo:after{opacity:0;visibility:hidden}.hero{display:flex;flex-wrap:wrap;align-items:flex-end;position:relative;min-height:580px;padding-top:50px;z-index:2}@media only screen and (min-width: 1025px){.hero{min-height:680px}}@media only screen and (min-width: 1470px){.hero{min-height:975px}}.hero__bottom{position:relative;z-index:1;width:100%}.hero__content{margin-bottom:25px}@media only screen and (min-width: 1025px){.hero__content{margin-bottom:44px}}.hero h1{color:#fff;margin-bottom:26px}.hero__intro{max-width:490px;width:100%;line-height:1.5;font-size:18px;color:#fff}@media only screen and (min-width: 1025px){.hero__intro{font-size:20px}}@media only screen and (min-width: 1025px){.hero__intro p{margin-bottom:42px}}.hero__list{padding-top:30px;padding-bottom:30px;width:100%;border-top:solid 1px hsla(0,0%,60%,.25)}@media only screen and (min-width: 1025px){.hero__list{padding-top:69px;padding-bottom:60px}}.hero__list ul{margin-bottom:0}@media only screen and (min-width: 1025px){.hero__list ul{display:flex;flex-wrap:wrap}}@media only screen and (min-width: 1025px){.hero__list li:not(:last-child){margin-right:40px}}.hero__list li a,.hero__list li span{color:#999;position:relative;display:inline-flex;align-items:center}@media only screen and (min-width: 1025px){.hero__list li a,.hero__list li span{font-size:18px}}.hero__list li a:before,.hero__list li span:before{content:"";display:inline-block;vertical-align:middle;margin-right:10px;font-family:"icomoon",sans-serif}.hero__list li a:focus,.hero__list li a:hover,.hero__list li span:focus,.hero__list li span:hover{color:#fff}@media only screen and (max-width: 768px){.hero__button{display:flex;flex-wrap:wrap;-moz-column-gap:20px;column-gap:20px;row-gap:20px}}.hero__photo{position:absolute;top:0;left:0;width:100%;height:100%}.hero__photo:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;pointer-events:none;background:linear-gradient(45deg, #161a25 40%, rgba(22, 26, 37, 0) 58%)}.hero__photo img,.hero__photo video{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.hero__circle{width:930px;position:absolute;bottom:-342px;right:-720px;pointer-events:none;display:none}@media only screen and (min-width: 1025px){.hero__circle{display:block}}@media only screen and (min-width: 1200px){.hero__circle{width:1286px;right:-773px}}.hero__circle img{width:100%}.banner{position:relative;display:flex;flex-wrap:wrap;align-items:flex-end;padding-top:65px;padding-bottom:30px;margin-bottom:20px}@media only screen and (min-width: 1025px){.banner{min-height:458px;padding-bottom:50px;margin-bottom:0}}.banner__block{position:relative;z-index:1;width:100%}.banner h1{color:#fff;margin-bottom:0}.banner__intro{max-width:730px;width:100%;margin-bottom:30px}@media only screen and (min-width: 1025px){.banner__intro{margin-bottom:60px}}.banner__bg-photo{position:absolute;top:0;left:0;width:100%;height:100%}.banner__bg-photo:after{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background:linear-gradient(to right, #161a25 20%, rgba(22, 26, 37, 0) 80%)}.banner__bg-photo img{width:100%;height:100%;-o-object-fit:cover;object-fit:cover}@media only screen and (min-width: 1025px){.banner--is-alt .banner__intro{margin-bottom:120px}}.heading{margin-bottom:50px}@media only screen and (max-width: 1025px){.heading{margin-bottom:37.5pxpx}}@media only screen and (max-width: 768px){.heading{margin-bottom:25pxpx}}@media only screen and (min-width: 1025px){.heading{display:flex;flex-wrap:wrap;-moz-column-gap:20px;column-gap:20px;align-items:flex-end;justify-content:space-between;margin-top:-100px;margin-bottom:132px}}.heading__back{font-size:15px;color:#999;line-height:normal;display:flex;align-items:center;margin-bottom:20px}@media only screen and (min-width: 1025px){.heading__back{margin-bottom:-4px}}.heading__back i{font-size:20px;margin-right:14px}.heading__back:focus,.heading__back:hover{color:#161a25}.heading__title{display:flex;flex-wrap:wrap;align-items:center;padding:30px;position:relative;width:100%}@media only screen and (min-width: 1025px){.heading__title{max-width:601px;padding-top:39px;padding-right:0;padding-bottom:37px;padding-left:122px;min-height:200px}}.heading__title h4,.heading__title h6{position:relative;z-index:1;color:#fff;margin-bottom:0;text-transform:uppercase;width:100%}.heading__title h4 i,.heading__title h6 i{transform:rotate(180deg);display:inline-block}.heading__title:after{content:"";position:absolute;top:0;left:0;width:100VW;height:100%;pointer-events:none;zoom:-1;background-image:url(/wp-content/themes/kig/dist/images//pattern-bg1.jpg);background-repeat:repeat;background-position:center center}.heading form{width:100%}.heading h4{text-transform:unset;margin-bottom:20px}@media only screen and (min-width: 1025px){.heading h4{margin-bottom:28px}}.heading__select{padding:5px 20px;font-size:15px;color:#999;position:relative;z-index:1;height:60px;width:100%;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:solid 2px #fff;background-color:#161a25;font-family:"Transducer",sans-serif;cursor:pointer;background-image:url(/wp-content/themes/kig/dist/images//select-arrow.png);background-repeat:no-repeat;background-position:center right 20px;background-size:15px 9px}@media only screen and (min-width: 1025px){.heading__select{background-position:center right 40px}}@media only screen and (min-width: 1025px){.heading--inner,.heading--is-alt{margin-bottom:70px}}@media only screen and (min-width: 1025px){.heading--inner .heading__title{max-width:480px;padding-left:62px}}.heading--inner .heading__title h6{text-transform:unset}.gform_wrapper.gravity-theme fieldset>*:last-child{margin-bottom:0}.gform_wrapper.gravity-theme fieldset{margin-bottom:50px;padding:20px;border:1px solid #ccc;border-radius:5px}.gform_wrapper.gravity-theme fieldset>p:after{display:block;clear:both;content:""}.gform_wrapper.gravity-theme fieldset>p{margin-bottom:50px}.gform_wrapper.gravity-theme legend{padding:5px 10px;color:#666;border:1px solid #ccc;border-radius:5px;background:#fff}.gform_wrapper.gravity-theme label{margin-bottom:6px;display:block;font-size:16px;font-weight:700;color:#161a25}.gform_wrapper.gravity-theme label.is-radio,.gform_wrapper.gravity-theme label.is-checkbox{margin:0 10px 0 1px;display:inline-block;height:60px;font-size:16px;font-weight:normal;line-height:60px}.gform_wrapper.gravity-theme label.is-checkbox{margin:0 10px}.gform_wrapper.gravity-theme label.is-error{margin-top:10px;padding:5px 10px;position:relative;display:inline-block;clear:both;font-size:16px;font-weight:normal;color:#fff;border-radius:3px;background:#be0404}.gform_wrapper.gravity-theme label.is-error:before{position:absolute;top:-5px;left:10px;display:block;width:0;height:0;border-right:5px solid rgba(0,0,0,0);border-bottom:5px solid #be0404;border-left:5px solid rgba(0,0,0,0);content:""}.gform_wrapper.gravity-theme input,.gform_wrapper.gravity-theme select,.gform_wrapper.gravity-theme textarea{padding:5px 20px;display:block;width:100%;max-width:100%;height:60px;font-family:"Transducer",sans-serif;font-size:16px;color:#161a25;border:1px solid #efefef;border-radius:0;background:#f9f9f9}.gform_wrapper.gravity-theme input::-moz-placeholder, .gform_wrapper.gravity-theme select::-moz-placeholder, .gform_wrapper.gravity-theme textarea::-moz-placeholder{color:#999}.gform_wrapper.gravity-theme input::placeholder,.gform_wrapper.gravity-theme select::placeholder,.gform_wrapper.gravity-theme textarea::placeholder{color:#999}.gform_wrapper.gravity-theme input:focus:not(:-moz-read-only):not([type=submit]):not([type=reset]):not([type=button]), .gform_wrapper.gravity-theme select:focus:not(:-moz-read-only):not([type=submit]):not([type=reset]):not([type=button]), .gform_wrapper.gravity-theme textarea:focus:not(:-moz-read-only):not([type=submit]):not([type=reset]):not([type=button]){border-color:#efefef}.gform_wrapper.gravity-theme input:focus:not(:read-only):not([type=submit]):not([type=reset]):not([type=button]),.gform_wrapper.gravity-theme input .is-focused,.gform_wrapper.gravity-theme select:focus:not(:read-only):not([type=submit]):not([type=reset]):not([type=button]),.gform_wrapper.gravity-theme select .is-focused,.gform_wrapper.gravity-theme textarea:focus:not(:read-only):not([type=submit]):not([type=reset]):not([type=button]),.gform_wrapper.gravity-theme textarea .is-focused{border-color:#efefef}.gform_wrapper.gravity-theme input.is-error,.gform_wrapper.gravity-theme select.is-error,.gform_wrapper.gravity-theme textarea.is-error{border-color:#be0404}.gform_wrapper.gravity-theme input:disabled,.gform_wrapper.gravity-theme input.is-disabled,.gform_wrapper.gravity-theme select:disabled,.gform_wrapper.gravity-theme select.is-disabled,.gform_wrapper.gravity-theme textarea:disabled,.gform_wrapper.gravity-theme textarea.is-disabled{color:#999;background-color:#efefef}.gform_wrapper.gravity-theme input[type=radio],.gform_wrapper.gravity-theme input[type=checkbox],.gform_wrapper.gravity-theme select[type=radio],.gform_wrapper.gravity-theme select[type=checkbox],.gform_wrapper.gravity-theme textarea[type=radio],.gform_wrapper.gravity-theme textarea[type=checkbox]{margin-right:10px;padding:0;display:inline-block;height:auto}.gform_wrapper.gravity-theme input[type=radio],.gform_wrapper.gravity-theme input[type=checkbox],.gform_wrapper.gravity-theme input[type=submit],.gform_wrapper.gravity-theme input[type=reset],.gform_wrapper.gravity-theme input[type=button],.gform_wrapper.gravity-theme select[type=radio],.gform_wrapper.gravity-theme select[type=checkbox],.gform_wrapper.gravity-theme select[type=submit],.gform_wrapper.gravity-theme select[type=reset],.gform_wrapper.gravity-theme select[type=button],.gform_wrapper.gravity-theme textarea[type=radio],.gform_wrapper.gravity-theme textarea[type=checkbox],.gform_wrapper.gravity-theme textarea[type=submit],.gform_wrapper.gravity-theme textarea[type=reset],.gform_wrapper.gravity-theme textarea[type=button]{display:inline-block;width:auto}.gform_wrapper.gravity-theme input[type=submit],.gform_wrapper.gravity-theme input[type=reset],.gform_wrapper.gravity-theme input[type=button]{color:#333;background-color:#efefef}.gform_wrapper.gravity-theme input[type=submit]:hover,.gform_wrapper.gravity-theme input[type=reset]:hover,.gform_wrapper.gravity-theme input[type=button]:hover{color:#333;background-color:#efefef}.gform_wrapper.gravity-theme select{background-image:url("data:image/png;base64,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");background-repeat:no-repeat;background-position:right 10px center;background-size:auto 5px;-webkit-appearance:none;-moz-appearance:none;appearance:none}.gform_wrapper.gravity-theme textarea{width:100%;height:200px}.gform_wrapper.gravity-theme .gform_heading .gform_title{margin:0 0 20px 0;font-family:"Transducer",sans-serif;font-weight:900;line-height:1.2;color:#161a25;font-size:30px}@media only screen and (min-width: 1025px){.gform_wrapper.gravity-theme .gform_heading .gform_title{font-size:50px}}.gform_wrapper.gravity-theme .gform_heading .gform_required_legend{display:none}.gform_wrapper.gravity-theme .gform_heading .gform_description{margin-bottom:20px;display:block}.gform_wrapper.gravity-theme .gform_body .gfield .gfield_label{margin-bottom:5px}.gform_wrapper.gravity-theme .gform_body .gfield input,.gform_wrapper.gravity-theme .gform_body .gfield select,.gform_wrapper.gravity-theme .gform_body .gfield textarea{font-size:16px;padding:15px 20px}.gform_wrapper.gravity-theme .gform_body .gfield textarea{resize:none;padding:18px 20px}.gform_wrapper.gravity-theme .gform_body .gfield textarea.medium{height:140px}.gform_wrapper.gravity-theme .gform_body .gfield textarea.large{height:180px}.gform_wrapper.gravity-theme .gform_body .gform_validation_container{display:none}.gform_wrapper.gravity-theme .gfield--type-fileupload .gform_fileupload_rules{display:none}.gform_wrapper.gravity-theme .gfield--type-fileupload .gform_button_select_files{left:50%;top:50%;width:100%;height:100%;position:absolute;color:rgba(0,0,0,0);transform:translate(-50%, -50%);background-color:rgba(0,0,0,0)}.gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_instructions{margin-bottom:0}.gform_wrapper.gravity-theme .gfield--type-fileupload .gform_fileupload_multifile{overflow:clip}.gform_wrapper .gform_footer{justify-content:center;margin-top:22px !important;margin-bottom:15px !important}.content{margin-bottom:60px}@media only screen and (min-width: 1025px){.content{padding-top:40px;margin-bottom:140px}}.content__holder{max-width:960px;margin:0 auto;line-height:1.5}.content h2{margin-bottom:27px}@media only screen and (min-width: 1025px){.content h2{margin-bottom:46px}}.content h3{margin-bottom:27px}.content p{margin-bottom:27px}@media only screen and (min-width: 1025px){.content p{margin-bottom:47px}}.content ul{list-style:none;margin-left:25px;margin-bottom:24px}.content li{line-height:normal;position:relative;padding-left:15px}.content li:after{content:"";position:absolute;top:7px;left:0;width:6px;height:6px;border-radius:35px;background-color:#161a25}.content li:not(:last-child){margin-bottom:5px}.content h4{font-size:17px;font-weight:700}.content a:focus,.content a:hover{text-decoration:underline}.content--error{padding-top:70px;padding-bottom:70px;margin-bottom:0}@media only screen and (min-width: 1025px){.content--error{padding-top:110px;padding-bottom:110px}}.information{display:flex;flex-wrap:wrap;margin-bottom:60px}@media only screen and (min-width: 1025px){.information{padding-top:5px;margin-bottom:52px}}.information h2{margin-bottom:25px}@media only screen and (min-width: 1025px){.information h2{margin-bottom:40px}}.information h3{margin-bottom:25px}@media only screen and (min-width: 1025px){.information h3{margin-bottom:45px}}.information h4{font-weight:700;margin-bottom:31px}.information__intro{flex:1}.information__intro p{margin-bottom:27px}.information__intro h3{padding-top:5px}@media only screen and (min-width: 1025px){.information__intro h3{padding-top:15px}}.information__intro ul{margin-bottom:36px;margin-left:20px}@media only screen and (min-width: 1025px){.information__intro ul{margin-left:30px}}.information__intro li{position:relative;padding-left:42px;line-height:normal;margin-bottom:21px}.information__intro li:after{content:"";position:absolute;top:1px;left:0;font-family:"icomoon",sans-serif}@media only screen and (min-width: 768px){.information__right{width:40%;margin-top:4px;margin-left:50px}}@media only screen and (min-width: 1025px){.information__right{margin-left:120px}}.information__right .card-apply{position:sticky;top:110px}.image-text{position:relative;padding-top:60px;padding-bottom:50px;z-index:1}@media only screen and (min-width: 1025px){.image-text{padding-top:100px;padding-bottom:100px}}@media only screen and (min-width: 1200px){.image-text{padding-top:200px}}.image-text__holder{display:flex;flex-wrap:wrap;align-items:flex-start;flex-direction:column-reverse;padding-bottom:50px;border-bottom:solid 1px rgba(0,0,0,.1)}@media only screen and (min-width: 768px){.image-text__holder{flex-direction:row}}@media only screen and (min-width: 1025px){.image-text__holder{padding-bottom:88px}}.image-text__intro{flex:1;align-self:center}@media only screen and (min-width: 1025px){.image-text__intro p{margin-bottom:38px}}@media only screen and (min-width: 1025px){.image-text h2{padding-right:7%;margin-bottom:40px}}.image-text__logo{width:150px;margin-bottom:30px}@media only screen and (min-width: 1025px){.image-text__logo{width:240px;margin-bottom:60px}}.image-text__logo img{width:100%}.image-text__photo{width:100%;position:relative;margin-bottom:50px}@media only screen and (max-width: 1025px){.image-text__photo{margin-bottom:37.5pxpx}}@media only screen and (max-width: 768px){.image-text__photo{margin-bottom:25pxpx}}@media only screen and (min-width: 768px){.image-text__photo{width:50%;margin-left:30px;margin-bottom:0}}@media only screen and (min-width: 1025px){.image-text__photo{margin-left:60px}}@media only screen and (min-width: 1200px){.image-text__photo{margin-left:120px}}.image-text__photo:after{content:"";position:absolute;top:50%;right:-40px;z-index:1;width:82px;height:135px;pointer-events:none;transform:translateY(-50%);background-image:url(/wp-content/themes/kig/dist/images//shape01.svg);background-repeat:no-repeat;background-position:center center;background-size:100% 100%}@media only screen and (min-width: 1025px){.image-text__photo:after{right:-56px;margin-top:18px;width:112px;height:165px}}.image-text__photo img{width:100%;border-bottom-right-radius:60px}.image-text__bg-image{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1}.image-text__bg-image:after,.image-text__bg-image:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;z-index:1;pointer-events:none;background:linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%)}.image-text__bg-image:after{content:"";background:linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%)}.image-text__bg-image img{width:100%;height:100%;opacity:.25;-o-object-fit:cover;object-fit:cover}.image-text--is-alt{padding-top:0;padding-bottom:0;margin-bottom:50px}@media only screen and (max-width: 1025px){.image-text--is-alt{margin-bottom:37.5pxpx}}@media only screen and (max-width: 768px){.image-text--is-alt{margin-bottom:25pxpx}}@media only screen and (min-width: 1025px){.image-text--is-alt{margin-bottom:73px}}@media only screen and (min-width: 1200px){.image-text--is-alt .image-text__holder{padding-bottom:131px}}@font-face{font-family:"icomoon";font-weight:normal;font-style:normal;src:url("/wp-content/themes/kig/dist/fonts/icons/icomoon.eot?3xsj03");src:url("/wp-content/themes/kig/dist/fonts/icons/icomoon.eot?3xsj03#iefix") format("embedded-opentype"),url("/wp-content/themes/kig/dist/fonts/icons/icomoon.ttf?3xsj03") format("truetype"),url("/wp-content/themes/kig/dist/fonts/icons/icomoon.woff?3xsj03") format("woff"),url("/wp-content/themes/kig/dist/fonts/icons/icomoon.svg?3xsj03#icomoon") format("svg");font-display:block}[class^=icon-],[class*=" icon-"]{font-family:"icomoon" !important;speak:never;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.icon-exclamation-outline:before{content:""}.icon-mouse-alt:before{content:""}.icon-exclamation-circle:before{content:""}.icon-angle-down:before{content:""}.icon-angle-left:before{content:""}.icon-angle-right:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-right:before{content:""}.icon-arrow-up-right:before{content:""}.icon-check-circle:before{content:""}.icon-minus:before{content:""}.icon-plus:before{content:""}.icon-xmark:before{content:""}.icon-facebook:before{content:""}.icon-linkedin-in:before{content:""}.icon-youtube:before{content:""}@font-face{font-family:"Transducer";src:url("/wp-content/themes/kig/dist/fonts/transducer/Transducer-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}@font-face{font-family:"Transducer";src:url("/wp-content/themes/kig/dist/fonts/transducer/Transducer-Medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}@font-face{font-family:"Transducer";src:url("/wp-content/themes/kig/dist/fonts/transducer/Transducer-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}@font-face{font-family:"Transducer";src:url("/wp-content/themes/kig/dist/fonts/transducer/Transducer-BlackExtended.woff2") format("woff2");font-weight:900;font-style:normal;font-display:swap}@font-face{font-family:"Graphik";src:url("/wp-content/themes/kig/dist/fonts/transducer/Graphik-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}.mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#000;opacity:.95}.mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden}.mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box}.mfp-container:before{content:"";display:inline-block;height:100%;vertical-align:middle}.mfp-align-top .mfp-container:before{display:none}.mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045}.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto}.mfp-ajax-cur{cursor:progress}.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:zoom-out}.mfp-zoom{cursor:pointer;cursor:zoom-in}.mfp-auto-cursor .mfp-content{cursor:auto}.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none}.mfp-loading.mfp-figure{display:none}.mfp-hide{display:none !important}.mfp-preloader{color:#fff;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044}.mfp-preloader a{color:#fff}.mfp-preloader a:hover{color:#fff}.mfp-s-ready .mfp-preloader{display:none}.mfp-s-error .mfp-content{display:none}button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:rgba(0,0,0,0);border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation}button::-moz-focus-inner{padding:0;border:0}.mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:1;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace}.mfp-close:hover,.mfp-close:focus{opacity:1}.mfp-close:active{top:1px}.mfp-close-btn-in .mfp-close{color:#333}.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#fff;right:-6px;text-align:right;padding-right:6px;width:100%}.mfp-counter{position:absolute;top:0;right:0;color:#fff;font-size:12px;line-height:18px;white-space:nowrap}.mfp-arrow{position:absolute;opacity:1;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:rgba(0,0,0,0)}.mfp-arrow:active{margin-top:-54px}.mfp-arrow:hover,.mfp-arrow:focus{opacity:1}.mfp-arrow:before,.mfp-arrow:after{content:"";display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset rgba(0,0,0,0)}.mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px}.mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:.7}.mfp-arrow-left{left:0}.mfp-arrow-left:after{border-right:17px solid #fff;margin-left:31px}.mfp-arrow-left:before{margin-left:25px;border-right:27px solid rgba(0,0,0,0)}.mfp-arrow-right{right:0}.mfp-arrow-right:after{border-left:17px solid #fff;margin-left:39px}.mfp-arrow-right:before{border-left:27px solid rgba(0,0,0,0)}.mfp-iframe-holder{padding-top:40px;padding-bottom:40px}.mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px}.mfp-iframe-holder .mfp-close{top:-40px}.mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%}.mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000}img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto}.mfp-figure{line-height:0}.mfp-figure:after{content:"";position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444}.mfp-figure small{color:#bdbdbd;display:block;font-size:12px;line-height:14px}.mfp-figure figure{margin:0}.mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto}.mfp-title{text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px}.mfp-image-holder .mfp-content{max-width:100%}.mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer}@media screen and (max-width: 800px)and (orientation: landscape),screen and (max-height: 300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0}.mfp-img-mobile img.mfp-img{padding:0}.mfp-img-mobile .mfp-figure:after{top:0;bottom:0}.mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px}.mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box}.mfp-img-mobile .mfp-bottom-bar:empty{padding:0}.mfp-img-mobile .mfp-counter{right:5px;top:3px}.mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0}}@media all and (max-width: 900px){.mfp-arrow{transform:scale(0.75)}.mfp-arrow-left{transform-origin:0}.mfp-arrow-right{transform-origin:100%}.mfp-container{padding-left:6px;padding-right:6px}}.mfp-bg{background-color:rgba(0,0,0,0)}.mfp-close-btn-in .mfp-close{color:#161a25;position:absolute;top:30px;right:28px;font-size:0}.mfp-close-btn-in .mfp-close:after{content:"";font-size:20px;font-family:"icomoon",sans-serif}.vacancies .swiper{overflow:visible;margin-bottom:40px}@media only screen and (min-width: 1025px){.vacancies .swiper{margin-bottom:0}}.photo-slider .swiper{overflow:visible;margin-bottom:40px}@media only screen and (min-width: 1025px){.photo-slider .swiper{overflow:hidden;margin-bottom:0;margin-right:-871px}}.partner .swiper-wrapper{align-items:center;transition-timing-function:linear}.partner .swiper-slide{width:auto}.vacancies .swiper-slide{width:460px;height:auto}.swiper-button-next,.swiper-button-prev{font-size:20px;width:70px;height:70px;display:flex;align-items:center;justify-content:center;border:0;color:#161a25;position:relative;inset:unset;margin:0;overflow:hidden;background-color:#eee;transition:.25s ease-in-out}@media only screen and (min-width: 1025px){.swiper-button-next,.swiper-button-prev{width:90px;height:90px}}@media only screen and (min-width: 1470px){.swiper-button-next,.swiper-button-prev{width:120px;height:120px}}.swiper-button-next svg,.swiper-button-prev svg{display:none}.swiper-button-next:before,.swiper-button-next:after,.swiper-button-prev:before,.swiper-button-prev:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%, -50%);font-family:"icomoon",sans-serif;transition:.25s ease-in-out}.swiper-button-next:before,.swiper-button-prev:before{transform:translate(80px, -50%)}.swiper-button-next:hover,.swiper-button-prev:hover{color:#fff;background-color:#161a25}.swiper-button-next:hover:after,.swiper-button-prev:hover:after{transform:translate(-80px, -50%)}.swiper-button-next:hover:before,.swiper-button-prev:hover:before{transform:translate(-50%, -50%)}.swiper-button-next:before,.swiper-button-next:after{content:""}.swiper-button-next:after{transform:translate(-50%, -50%)}.swiper-button-next:before{transform:translate(-80px, -50%)}.swiper-button-next:hover:after{transform:translate(80px, -50%)}.swiper-button-next:hover:before{transform:translate(-50%, -50%)}

/*# sourceMappingURL=app.128ee.css.map*/