@charset "UTF-8";
/* -------------------------------------
	Font face
	------------------------------------- */
@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Light.woff2") format("woff2"), url("../fonts/FiraSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Regular.woff2") format("woff2"), url("../fonts/FiraSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Medium.woff2") format("woff2"), url("../fonts/FiraSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-SemiBold.woff2") format("woff2"), url("../fonts/FiraSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FiraSans";
  src: url("../fonts/FiraSans-Bold.woff2") format("woff2"), url("../fonts/FiraSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IstokWeb";
  src: url("../fonts/IstokWeb-Bold.woff2") format("woff2"), url("../fonts/IstokWeb-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "IstokWeb";
  src: url("../fonts/IstokWeb-Regular.woff2") format("woff2"), url("../fonts/IstokWeb-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.woff2") format("woff2"), url("../fonts/Lato-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.woff2") format("woff2"), url("../fonts/Lato-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* -------------------------------------
	Libs
	------------------------------------- */
/* ----- swiper slider ----- */
/**
 * Swiper 6.3.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 20, 2020
 */
:root {
  --swiper-theme-color:#007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight {
  height: auto;
}

.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size:44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after, .swiper-button-next:after {
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-button-prev.swiper-button-white, .swiper-button-next.swiper-button-white {
  --swiper-navigation-color:#ffffff;
}

.swiper-button-prev.swiper-button-black, .swiper-button-next.swiper-button-black {
  --swiper-navigation-color:#000000;
}

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

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color:#ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color:#000000;
}

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

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

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

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > img, .swiper-zoom-container > svg, .swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

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

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active {
  pointer-events: auto;
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ----- fancybox ----- */
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  -webkit-transition-duration: inherit;
       -o-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
       -o-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
       -o-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  -o-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide:before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image:before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
          animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable="true"] {
  cursor: text;
}

.fancybox-image {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-iframe, .fancybox-video {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
  color: #ccc;
}

.fancybox-button:link, .fancybox-button:visited {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled] {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
       -o-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(transparent));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:link, .fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

.fancybox-loading {
  -webkit-animation: a 1s linear infinite;
          animation: a 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

@keyframes a {
  to {
    -webkit-transform: rotate(1turn);
            transform: rotate(1turn);
  }
}

.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
       -o-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
       -o-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
          transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
          transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-1turn);
      -ms-transform: rotate(-1turn);
          transform: rotate(-1turn);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(1turn);
      -ms-transform: rotate(1turn);
          transform: rotate(1turn);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
          transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scaleX(1) translateZ(0);
          transform: scaleX(1) translateZ(0);
}

.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
          transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
          transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translateZ(0) scale(1);
          transform: translateZ(0) scale(1);
}

@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a:before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}

@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

/* ----- simplebar ----- */
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  visibility: visible;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
}

.simplebar-content-wrapper::-webkit-scrollbar {
  display: none;
}

.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.simplebar-content:after, .simplebar-content:before {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
          box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
      -ms-flex-positive: inherit;
          flex-grow: inherit;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: #000;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  -o-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

[data-simplebar-direction="rtl"] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

/* -------------------------------------
	Reset
	------------------------------------- */
article, aside, dialog, figcaption, figure, footer, header, main, nav, section, details, menu {
  display: block;
}

@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}

* {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

*::before, *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  margin: 0;
  position: relative;
  font: 16px/1.55 "FiraSans", sans-serif, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-align: left;
  color: #4A4C52;
  background-color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .title {
  margin-top: 0;
  margin-bottom: .5em;
  line-height: 1.3;
  font-family: "IstokWeb", sans-serif;
  font-weight: 700;
  color: #202125;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b, strong {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-transition: all 0.05s linear;
  -o-transition: all 0.05s linear;
  transition: all 0.05s linear;
}

a:hover {
  color: inherit;
}

a:focus {
  outline: none;
}

a:hover, a:focus {
  text-decoration: none;
}

a:active, a:hover {
  outline-width: 0;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

figure {
  margin: 0 0 1rem;
}

img {
  font-size: 10px;
  text-transform: uppercase;
  color: #1779D9;
  vertical-align: middle;
  border-style: none;
}

img::-moz-selection {
  background: none;
}

img::selection {
  background: none;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #4A4C52;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: .5rem;
}

a, area, button, [role="button"], input, label, select, summary, textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

button:focus {
  outline: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
}

input[type="radio"], input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type="radio"]:disabled, input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] {
  -webkit-appearance: listbox;
}

input[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

label {
  display: block;
  margin: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

[role="button"] {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[hidden] {
  display: none !important;
}

.swiper-slide * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.swiper-pagination-bullet {
  outline: none;
}

.fancybox-bg {
  background: rgba(32, 33, 37, 0.61);
}

@media screen and (min-width: 1200px) {
  .fancybox-active > .page {
    -webkit-filter: blur(1px);
            filter: blur(1px);
  }
}

.fancybox-button {
  padding: 0;
  background-color: transparent;
}

.fancybox-button svg {
  fill: none;
}

.fancybox-button:hover path {
  stroke: #1779D9;
}

@media screen and (min-width: 1200px) {
  .fancybox-slide--image .fancybox-content {
    top: -50px;
  }
  .fancybox-image {
    max-height: calc(100% - 50px);
    margin-top: 50px;
  }
}

.fancybox-caption {
  color: #fff;
  padding-top: 30px;
  padding-bottom: 30px;
}

.fancybox-caption__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
}

@media screen and (max-width: 767px) {
  .fancybox-caption__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fancybox-caption .title {
  color: inherit;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .fancybox-caption .title {
    font-size: 18px;
  }
}

.fancybox-caption .button {
  margin: 0 30px;
  border-color: #fff;
}

.fancybox-caption .button:hover {
  text-decoration: none;
}

.fancybox-caption .button--arrow::after {
  background-image: url("../img/icons/caret-white.svg");
}

@media screen and (max-width: 767px) {
  .fancybox-caption .button {
    margin-top: 10px;
  }
}

.fancybox-galery-btn {
  width: 100%;
  margin-top: 25px;
  pointer-events: all;
}

/* -------------------------------------
	Common styles
	------------------------------------- */
.main-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}

.main-wrapper .page {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .main-wrapper {
    display: block;
  }
}

.page {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  .page {
    padding-top: 70px;
  }
}

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 45px;
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 0 60px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1450px;
    padding: 0 20px;
  }
}

.flex, .flex-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.img {
  display: block;
  max-width: 100%;
  height: auto;
}

.img--cover, .img--contain {
  width: 100%;
  height: 100%;
}

.img--cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.img--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.svg {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-list ul, .custom-list ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-list ul li {
  position: relative;
  padding-left: 27px;
  margin-bottom: 15px;
}

.custom-list ul li:last-child {
  margin-bottom: 0;
}

.custom-list ul li::before {
  content: '';
  display: block;
  width: 13px;
  height: 2px;
  position: absolute;
  z-index: 0;
  left: 0;
  top: .6em;
  background: #1779D9;
  border-radius: 2px;
}

.fw-300 {
  font-weight: 300;
}

@media screen and (max-width: 1199px) {
  .hide-xl {
    display: none !important;
  }
}

@media screen and (min-width: 1200px) {
  .show-xl {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {
  .hide-lg {
    display: none !important;
  }
}

@media screen and (min-width: 992px) {
  .show-lg {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .hide-md {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .show-md {
    display: none !important;
  }
}

/* ---------- Titles & text ---------- */
h1, .title-1 {
  font-size: 56px;
  line-height: 1.25;
}

@media screen and (max-width: 767px) {
  h1, .title-1 {
    font-size: 32px;
  }
}

h2, .title-2 {
  font-size: 48px;
  line-height: 1.25;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  h2, .title-2 {
    font-size: 28px;
    line-height: 1.4;
  }
}

h3, .title-3 {
  font-size: 32px;
  line-height: 1.25;
}

.text__col h3, .text__col .title-3 {
  font-size: 28px;
}

h4, .title-4 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  h4, .title-4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.fz-18 {
  font-size: 18px;
  line-height: 1.55;
}

@media screen and (max-width: 767px) {
  .fz-18 {
    font-size: 16px;
    line-height: 1.5;
  }
}

.section {
  margin: 100px 0;
}

@media screen and (max-width: 767px) {
  .section {
    margin: 45px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title__txt {
  max-width: 850px;
  margin: 0 auto;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 25px;
  }
  .section-title__txt {
    font-size: 16px;
  }
}

/* ----- Кнопки ----- */
.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  padding: 6px 28px;
  font-size: 18px;
  line-height: 1;
  color: #1779D9;
  position: relative;
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid #1779D9;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

@media screen and (min-width: 1200px) {
  .button:hover {
    background-color: rgba(23, 121, 217, 0.15);
    border-color: transparent;
    color: #1779D9;
  }
}

@media screen and (max-width: 767px) {
  .button {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.button--arrow::after {
  content: '';
  display: block;
  width: 10px;
  min-width: 10px;
  height: 14px;
  margin-left: 16px;
  background: url("../img/icons/caret-accent.svg") no-repeat 50% 50%/contain;
}

@media screen and (min-width: 1200px) {
  .button--arrow:hover::after {
    background-image: url("../img/icons/caret-white.svg");
  }
}

.button--square {
  height: 60px;
  border-radius: 0;
  background: #1779D9;
  border-radius: 5px;
  color: #fff;
}

.button--square:hover {
  background: #146abd;
  color: #fff;
}

.textmore-hidden {
  display: none;
}

@media screen and (min-width: 1200px) {
  .textmore-hidden.hide-xl {
    display: block;
  }
}

.textmore-btn.is-open::after {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.contacts-block {
  color: #202125;
}

.contacts-block__title {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contacts-block__title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}

.contacts-block__txt {
  margin-bottom: 35px;
  color: #4A4C52;
}

@media screen and (max-width: 767px) {
  .contacts-block__txt {
    margin-bottom: 25px;
  }
}

.contacts-list {
  font-size: 24px;
}

@media screen and (max-width: 767px) {
  .contacts-list {
    font-size: 16px;
  }
}

.contacts-list li {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .contacts-list li {
    margin-bottom: 15px;
  }
}

.contacts-list li:last-child {
  margin-bottom: 0;
}

.contacts-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts-list__ic {
  font-size: 10px;
  width: 3.2em;
  min-width: 3.2em;
  height: 3.2em;
  margin-right: 1.5em;
}

@media screen and (max-width: 767px) {
  .contacts-list__ic {
    font-size: 7.5px;
  }
}

.contacts-list address {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .contacts-list [href*="mailto"] {
    text-decoration: underline;
  }
}

.worktime {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.worktime span {
  display: block;
}

.worktime span:first-child {
  min-width: 102px;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .worktime span:first-child {
    min-width: 68px;
    margin-right: 15px;
  }
}

/* -------------------------------------
	Modules
	------------------------------------- */
/* ----- Forms ----- */
*::-webkit-input-placeholder {
  color: #4A4C52;
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::-moz-placeholder {
  color: #4A4C52;
  opacity: 1;
  -moz-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*:-ms-input-placeholder {
  color: #4A4C52;
  opacity: 1;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::-ms-input-placeholder {
  color: #4A4C52;
  opacity: 1;
  -ms-transition: all 0.1s linear;
  transition: all 0.1s linear;
}
*::placeholder {
  color: #4A4C52;
  opacity: 1;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

body input:focus:required:invalid, body textarea:focus:required:invalid,
body input:required:valid, body textarea:required:valid {
  color: #202125;
}

.input {
  display: block;
  width: 100%;
  min-width: 1px;
  height: 64px;
  margin-bottom: 30px;
  padding: 18px 25px;
  background-color: #fff;
  border: 1px solid #4A4C52;
  border-radius: 3px;
  font-size: 18px;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.input:hover {
  background-color: #ECEFF6;
  border-color: #202125;
}

.input:focus {
  outline: none;
  border-color: #202125;
}

.input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.input:focus::-moz-placeholder {
  opacity: 0;
}

.input:focus:-ms-input-placeholder {
  opacity: 0;
}

.input:focus::-ms-input-placeholder {
  opacity: 0;
}

.input:focus::placeholder {
  opacity: 0;
}

.input--err::-webkit-input-placeholder {
  color: #EE2D38;
}

.input--err::-moz-placeholder {
  color: #EE2D38;
}

.input--err:-ms-input-placeholder {
  color: #EE2D38;
}

.input--err::-ms-input-placeholder {
  color: #EE2D38;
}

.input--err::placeholder {
  color: #EE2D38;
}

.input--err + .input-placeholder {
  color: #EE2D38;
}

@media screen and (max-width: 767px) {
  .input {
    margin-bottom: 16px;
  }
}

.textarea {
  height: 150px;
  resize: none;
}

.input-block {
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.1s linear;
  -o-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

.input-block .input {
  height: 48px;
  padding: 10px 0;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #4A4C52;
  background: transparent;
}

.input-block .input::-webkit-input-placeholder {
  opacity: 0;
}

.input-block .input::-moz-placeholder {
  opacity: 0;
}

.input-block .input:-ms-input-placeholder {
  opacity: 0;
}

.input-block .input::-ms-input-placeholder {
  opacity: 0;
}

.input-block .input::placeholder {
  opacity: 0;
}

.input-block .input:focus, .input-block .input.--placeholder, .input-block .input.input--err {
  padding-top: 16px;
  padding-bottom: 4px;
}

.input-block .input:focus + .input-placeholder, .input-block .input.--placeholder + .input-placeholder, .input-block .input.input--err + .input-placeholder {
  font-size: 12px;
  top: 2px;
  z-index: 1;
}

.input-block .input:focus + .input-placeholder, .input-block .input.--placeholder + .input-placeholder {
  color: #1779D9;
}

.input-block .input.input--err {
  border-color: #EE2D38;
}

.input-block .input.input--err + .input-placeholder {
  color: #EE2D38;
}

.input-block .textarea {
  height: 120px;
}

.input-block .textarea:focus, .input-block .textarea.--placeholder, .input-block .textarea.input--err {
  padding-top: 26px;
}

.input-placeholder {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: 0;
  font-size: 18px;
  line-height: 1;
  color: #4A4C52;
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.p-err {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1;
  color: #EE2D38;
}

.form-row {
  margin: 0 -10px;
}

.form-col {
  padding: 0 10px;
}

.form-col-1 {
  width: 25%;
}

@media screen and (max-width: 767px) {
  .form-col-1 {
    width: 50%;
  }
}

.form-col-2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}

.form-submit .button {
  padding: 18px 64px;
  border-radius: 4px;
}

@media screen and (max-width: 767px) {
  .form-submit .button {
    width: 100%;
  }
}

/* ----- Radiobox & Checkbox  ----- */
.radiobox, .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  cursor: pointer;
  position: relative;
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .radiobox, .checkbox {
    margin-bottom: 20px;
  }
}

.radiobox__wrap, .checkbox__wrap {
  position: relative;
  display: inline-block;
  font-size: 20px;
  width: 1em;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1em;
          flex: 0 0 1em;
  height: 1em;
  margin-right: 12px;
  border: 1px solid #4A4C52;
  -webkit-transition: all .15s;
  -o-transition: all .15s;
  transition: all .15s;
}

.radiobox__text, .checkbox__text {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: #4A4C52;
  text-align: left;
}

.radiobox__text a, .checkbox__text a {
  color: #1779D9;
  text-decoration: underline;
}

.radiobox__text a:hover, .checkbox__text a:hover {
  text-decoration: none;
}

.radiobox:hover .checkbox__wrap, .checkbox:hover .checkbox__wrap {
  border-color: #1779D9;
}

.radiobox input, .checkbox input {
  display: none;
}

.radiobox__wrap {
  border-radius: 50%;
}

.radiobox input:checked + .radiobox__wrap {
  background: #1779D9;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 0 1px #1779D9;
          box-shadow: 0 0 0 1px #1779D9;
}

.checkbox {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .checkbox {
    margin-bottom: 25px;
  }
}

.checkbox__wrap {
  border-radius: 2px;
}

.checkbox__check {
  width: 85%;
  position: absolute;
  top: 2px;
  left: 2px;
  stroke: #fff;
  fill: #fff;
  stroke-width: 1.5px;
  stroke-dasharray: 19px;
  stroke-dashoffset: 19px;
  -webkit-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  transition: .2s ease-out;
}

.checkbox input:checked + .checkbox__wrap {
  background: #1779D9;
  border-color: #1779D9;
}

.checkbox input:checked + .checkbox__wrap .checkbox__check {
  stroke-dashoffset: 36px;
}

.policy-novalid .checkbox__wrap {
  border-color: #EE2D38;
}

.policy-novalid .checkbox__text {
  color: #EE2D38;
}

/* ----- Custom select ----- */
.my-select-wrapper {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.my-select-wrapper select {
  display: none;
}

.my-select {
  position: relative;
}

.my-select__trigger {
  display: block;
  position: relative;
  padding-right: 30px !important;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.my-select__trigger::after {
  content: '';
  position: absolute;
  right: 0;
  top: 2em;
  font-size: 10px;
  width: 1.4em;
  min-width: 1.4em;
  height: .9em;
  margin-left: 1.5em;
  background: url("../img/icons/caret.svg") no-repeat 50% 50%/contain;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

.my-select__options {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  font-size: 18px;
  background: #fff;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
  z-index: 1;
}

.my-select__option {
  position: relative;
  display: block;
  padding: 10px 30px;
  padding-right: 50px;
  color: #4A4C52;
  cursor: pointer;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.my-select__option:hover, .my-select__option.is-selected {
  color: #1779D9;
}

.my-select__option.is-selected::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 0;
  right: 30px;
  top: 50%;
  margin-top: -10px;
  background: url("../img/icons/check.svg") no-repeat 50% 50%/contain;
}

@media screen and (max-width: 767px) {
  .my-select__option {
    padding: 10px 15px;
    padding-right: 30px;
  }
  .my-select__option.is-selected::after {
    right: 15px;
  }
}

.my-select.is-opened .my-select__trigger::after {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.my-select.is-opened .my-select__options {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.my-select.input--err .my-select__trigger {
  border-color: #EE2D38;
}

/* ----- breadcrumbs ----- */
.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #fff;
}

.breadcrumbs li {
  display: inline-block;
}

.breadcrumbs li + li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 8px;
  margin: 0 7px;
  background: url("../img/icons/caret-white.svg") no-repeat 50% 50%/contain;
}

.breadcrumbs li:last-child {
  font-weight: 500;
}

.breadcrumbs a:hover {
  color: #1779D9;
}

/* -------------------------------------
	Sections
	------------------------------------- */
/* ----- header ----- */
.header {
  height: 90px;
  position: fixed;
  z-index: 11;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding-left: 40px;
  background: #fff;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

.header.is-fixed {
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1199px) {
  .header {
    padding: 0 30px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 0 20px;
    height: 70px;
  }
}

.header__row {
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__row .logo {
  margin-right: 65px;
}

@media screen and (max-width: 1450px) {
  .header__row .logo {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header__row .logo {
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .header__row .logo {
    max-width: 40%;
  }
}

.header-badge {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 40px;
  padding: 10px 35px;
  line-height: 1.5;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#EF6F6F), to(#CB4B4A));
  background: -o-linear-gradient(left, #EF6F6F 0%, #CB4B4A 100%);
  background: linear-gradient(90deg, #EF6F6F 0%, #CB4B4A 100%);
}

.header-badge__title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 7px;
}

.header-badge__small {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

@media screen and (max-width: 1450px) {
  .header-badge {
    padding: 10px 15px;
    margin-left: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .header-badge {
    display: none;
  }
}

.nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
}

@media screen and (max-width: 1199px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    max-width: 500px;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    background: #fff;
    -webkit-box-shadow: 0 0 29px rgba(0, 0, 0, 0.17);
            box-shadow: 0 0 29px rgba(0, 0, 0, 0.17);
    font-size: 26px;
    will-change: transform;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    transition: all 0.4s linear;
  }
  .nav .menu {
    display: block;
  }
  .nav .menu > li {
    display: block;
    position: relative;
    margin-right: 0;
    padding: 0 60px 0 30px;
  }
  .nav .menu > li > a {
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .nav {
    font-size: 18px;
  }
  .nav .menu > li {
    padding: 0 50px 0 20px;
  }
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.menu-toggle {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  margin-left: 24px;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform .25s linear;
  transition: -webkit-transform .25s linear;
  -o-transition: transform .25s linear;
  transition: transform .25s linear;
  transition: transform .25s linear, -webkit-transform .25s linear;
  will-change: transform;
}

@media screen and (max-width: 1199px) {
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .menu-toggle {
    margin-left: 12px;
    border-radius: 50%;
    border: 1px solid #CCD4DB;
  }
}

.menu-ic {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background-color: #202125;
  position: relative;
  z-index: 10;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.menu-ic::before, .menu-ic::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  border-radius: 2px;
  background-color: #202125;
  -webkit-transition: all .25s;
  -o-transition: all .25s;
  transition: all .25s;
}

.menu-ic::before {
  top: -8px;
}

.menu-ic::after {
  top: 8px;
}

@media screen and (max-width: 767px) {
  .menu-ic {
    width: 17px;
  }
  .menu-ic::before {
    top: -6px;
  }
  .menu-ic::after {
    top: 6px;
  }
}

.menu a {
  display: block;
}

.menu .is-active > a {
  font-weight: 600;
}

.menu .is-active > .submenu-ic {
  opacity: 1;
}

.menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 45px;
}

@media screen and (max-width: 1450px) {
  .menu > li {
    margin-right: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .menu > li:hover > a {
    color: #1779D9;
  }
}

.menu > li > a {
  padding: 33px 0;
  white-space: nowrap;
  color: #4A4C52;
}

@media screen and (max-width: 1450px) {
  .menu > li > a {
    padding: 26px 0;
  }
}

@media screen and (min-width: 1200px) {
  .menu > li:hover > .submenu {
    display: block;
  }
  .menu > li:hover > .submenu-ic {
    -webkit-transform: scale(-1);
        -ms-transform: scale(-1);
            transform: scale(-1);
  }
}

.submenu {
  display: none;
}

@media screen and (min-width: 1200px) {
  .submenu {
    max-width: 320px;
    padding: 20px 0;
    border-radius: 0px 0px 10px 10px;
    position: absolute;
    top: 100%;
    -webkit-box-shadow: 0px 0px 10px rgba(15, 18, 33, 0.1);
            box-shadow: 0px 0px 10px rgba(15, 18, 33, 0.1);
    background: #fff;
  }
}

.submenu-ic {
  display: inline-block;
  font-size: 10px;
  width: 1.4em;
  min-width: 1.4em;
  height: .9em;
  margin-left: 1.5em;
  background: url("../img/icons/caret.svg") no-repeat 50% 50%/contain;
  -webkit-transition: all .15s linear;
  -o-transition: all .15s linear;
  transition: all .15s linear;
}

@media screen and (max-width: 1199px) {
  .submenu-ic {
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-size: 1.4em .9em;
    position: absolute;
    right: 20px;
    top: 12px;
    margin: 0;
  }
}

@media screen and (max-width: 767px) {
  .submenu-ic {
    font-size: 14px;
  }
}

.submenu li {
  margin-bottom: 10px;
}

.submenu li:last-child {
  margin-bottom: 0;
}

.submenu a {
  display: block;
  padding: 0 20px;
}

@media screen and (max-width: 1199px) {
  .submenu a {
    padding-right: 0;
  }
}

@media screen and (min-width: 1200px) {
  .submenu a:hover {
    color: #1779D9;
  }
}

.is-open > .submenu-ic {
  -webkit-transform: scale(-1);
      -ms-transform: scale(-1);
          transform: scale(-1);
}

.tel-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: #202125;
}

.tel-link::before {
  content: '';
  display: block;
  font-size: 10px;
  width: 2.5em;
  min-width: 2.5em;
  height: 2.5em;
  margin-right: 1.5em;
  background: url("../img/icons/PhoneCall.svg") no-repeat 50% 50%/contain;
}

@media screen and (max-width: 767px) {
  .tel-link {
    font-size: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #CCD4DB;
  }
  .tel-link::before {
    margin-right: 0;
    font-size: 9.6px;
  }
}

@media screen and (min-width: 1200px) {
  .tel-link:hover {
    color: #0E5DAB;
  }
  .tel-link:hover::before {
    background-image: url("../img/icons/PhoneCall-blue.svg");
  }
}

.menu-expanded {
  overflow: hidden;
}

.menu-expanded .nav {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.menu-expanded .menu-toggle {
  z-index: 100;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.menu-expanded .menu-ic {
  background: transparent;
}

.menu-expanded .menu-ic::before, .menu-expanded .menu-ic::after {
  top: 0;
}

.menu-expanded .menu-ic::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.menu-expanded .menu-ic::after {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ----- footer ----- */
.footer {
  padding-top: 50px;
  border-top: 1px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 25px;
    border-top-color: #CCD4DB;
  }
}

.footer__row {
  font-size: 18px;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 991px) {
  .footer__row {
    display: block;
  }
}

.footer__col {
  width: 20%;
  padding-right: 15px;
}

.footer__col-1 {
  width: 40%;
}

@media screen and (max-width: 991px) {
  .footer__col {
    width: 100%;
    padding-right: 0;
  }
  .footer__col-1 {
    margin-bottom: 40px;
  }
  .footer__col-2 {
    margin-bottom: 25px;
  }
  .footer__col-3 {
    margin-bottom: 45px;
  }
  .footer__col-4 .footer-title {
    display: none;
  }
}

.footer .logo {
  margin-bottom: 26px;
}

@media screen and (max-width: 767px) {
  .footer .logo {
    margin-bottom: 20px;
  }
}

.footer-info {
  margin-bottom: 40px;
  max-width: 420px;
}

@media screen and (max-width: 767px) {
  .footer-info {
    margin-bottom: 25px;
  }
}

.footer-tel {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .footer-tel {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.footer-title {
  font-size: 20px;
  font-family: "IstokWeb", sans-serif;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .footer-title {
    position: relative;
  }
  .footer-title::after {
    content: attr(data-mehr);
    display: inline-block;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    color: #1779D9;
    font-weight: 400;
  }
  .footer-title.is-open::after {
    content: attr(data-less);
  }
}

@media screen and (max-width: 767px) {
  .footer-title {
    margin-bottom: 20px;
  }
}

.footer-list li {
  margin-bottom: 20px;
}

.footer-list li:last-child {
  margin-bottom: 0;
}

.footer-list a:hover {
  color: #1779D9;
}

@media screen and (max-width: 991px) {
  .footer-list {
    display: none;
  }
}

.footer-contacts address, .footer-contacts a {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .footer-contacts address, .footer-contacts a {
    margin-bottom: 15px;
  }
}

.footer-contacts a {
  display: block;
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid #FAF8F7;
}

@media screen and (max-width: 767px) {
  .footer__bottom {
    margin-top: 30px;
    padding: 25px 0;
    border-top: none;
    position: relative;
    display: block;
  }
  .footer__bottom::before {
    content: '';
    display: block;
    width: calc(100% + 40px);
    height: 1px;
    position: absolute;
    z-index: 0;
    left: -20px;
    top: 0;
    background: #CCD4DB;
  }
}

.footer__bottom .copy {
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .footer__bottom .social {
    margin-bottom: 15px;
  }
}

.copy {
  font-size: 16px;
  font-weight: 300;
  color: #626B82;
}

.social a {
  display: block;
}

.social a img {
  width: 40px;
  height: 40px;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-filter: grayscale(1) brightness(0.5);
          filter: grayscale(1) brightness(0.5);
}

.social a:hover img {
  -webkit-filter: grayscale(0) brightness(1);
          filter: grayscale(0) brightness(1);
}

.page-hero {
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: F3F6F9;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.page-hero::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background: #0D0D0D;
  opacity: .35;
}

@media screen and (max-width: 767px) {
  .page-hero {
    height: 345px;
  }
}

.page-hero .title-1 {
  text-align: center;
  color: inherit;
}

@media screen and (max-width: 767px) {
  .page-hero .title-1 {
    margin-bottom: 12px;
  }
}

.hero-geschichte {
  background-image: url("../img/hero-geschichte.jpg");
}

@media screen and (max-width: 575px) {
  .hero-geschichte {
    background-image: url("../img/hero-geschichte-sm.jpg");
  }
}

.hero-about {
  background-image: url("../img/hero-about.jpg");
}

.hero-about::before {
  opacity: 0.3;
}

@media screen and (max-width: 575px) {
  .hero-about {
    background-image: url("../img/hero-about-sm.jpg");
  }
}

.hero-kundendienst {
  background-image: url("../img/hero-kundendienst.jpg");
}

.hero-kundendienst::before {
  opacity: 0.3;
}

@media screen and (max-width: 575px) {
  .hero-kundendienst {
    background-image: url("../img/hero-kundendienst-sm.jpg");
  }
}

.hero-referenzen {
  background-image: url("../img/hero-referenzen.jpg");
}

.hero-referenzen::before {
  opacity: 0.3;
}

@media screen and (max-width: 575px) {
  .hero-referenzen {
    background-image: url("../img/hero-referenzen-sm.jpg");
  }
}

.hero-bad {
  background-image: url("../img/hero-bad.jpg");
}

@media screen and (max-width: 575px) {
  .hero-bad {
    background-image: url("../img/hero-bad-sm.jpg");
  }
}

.hero-heizung {
  background-image: url("../img/hero-heizung.jpg");
}

@media screen and (max-width: 575px) {
  .hero-heizung {
    background-image: url("../img/hero-heizung-sm.jpg");
  }
}

.hero-klempnerei {
  background-image: url("../img/hero-klempnerei.jpg");
}

@media screen and (max-width: 575px) {
  .hero-klempnerei {
    background-image: url("../img/hero-klempnerei-sm.jpg");
  }
}

.text__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1199px) {
  .text__row {
    display: block;
  }
}

.text__row--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 1199px) {
  .text__row--reverse .text__img {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .text__row--reverse .text__img {
    margin-bottom: 25px;
  }
}

.text__row--rtl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (min-width: 1200px) {
  .text__row--rtl .text__col {
    padding: 0 0 0 80px;
  }
}

.text__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  padding-right: 80px;
}

@media screen and (max-width: 1199px) {
  .text__col {
    padding-right: 0;
  }
}

.text__col .title-2 {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .text__col .title-2 {
    margin-bottom: 10px;
  }
}

.text__col .custom-list {
  font-weight: 400;
}

.text__img {
  width: 690px;
  max-width: 50%;
  overflow: hidden;
  border-radius: 5px;
}

@media screen and (min-width: 1200px) {
  .text__img .img {
    margin: 0 auto;
  }
}

.text__img-bg {
  position: relative;
  z-index: 1;
  overflow: visible;
  padding: 100px 0;
}

.text__img-bg::before {
  content: '';
  display: block;
  font-size: 10px;
  width: 62em;
  height: 62em;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #F3F6F9;
  border: 2.8em solid #fff;
  -webkit-box-shadow: 0 0 0 2px rgba(23, 121, 217, 0.15);
          box-shadow: 0 0 0 2px rgba(23, 121, 217, 0.15);
}

@media screen and (max-width: 1199px) {
  .text__img {
    max-width: 100%;
    margin-top: 50px;
  }
  .text__img-bg {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (max-width: 767px) {
  .text__img {
    margin-top: 25px;
  }
  .text__img-bg {
    padding: 12vw 0;
  }
  .text__img-bg::before {
    font-size: 1.3vw;
  }
}

.text__subtitle {
  margin-bottom: 25px;
  color: #4A4C52;
}

@media screen and (max-width: 767px) {
  .text__subtitle {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.text__txt {
  margin-bottom: 35px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .text__txt {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .center-md {
    text-align: center;
  }
  .center-md .button {
    width: 100%;
  }
}

.page-nav {
  max-width: 100%;
  position: relative;
  top: -36px;
  margin-bottom: -36px;
  z-index: 2;
}

.page-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-nav li {
  margin: 0 15px;
}

.page-nav .button {
  min-width: 240px;
  height: 72px;
  border-radius: 50px;
  background-color: #fff;
}

.page-nav .button:hover, .page-nav .button.is-active {
  background: #1779D9;
  color: #fff;
}

.page-nav .simplebar-track.simplebar-horizontal {
  bottom: 0;
}

.page-nav .simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  top: 0;
  height: 100%;
}

.page-nav .simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
  background: #1779D9;
}

.brands {
  padding: 100px 0;
  background: #F3F6F9;
}

@media screen and (max-width: 767px) {
  .brands {
    padding: 35px 0;
  }
}

.brands__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brands-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 210px;
  height: 97px;
  margin: 0 12px;
}

/* -------------------------------------
	Home
	------------------------------------- */
.hero {
  position: relative;
}

.hero__slider .img {
  min-height: 550px;
  max-height: calc(100vh - 90px);
}

@media screen and (max-width: 767px) {
  .hero__slider .img {
    min-height: 480px;
  }
}

.hero__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  color: #fff;
}

.hero__content {
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 80px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .hero__content {
    bottom: 150px;
  }
}

.hero__content * {
  color: inherit;
}

@media screen and (max-width: 767px) {
  .hero__content .title-1 {
    font-size: 23px;
  }
}

.hero__content .title-4 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .hero__content .title-4 {
    margin-bottom: 35px;
  }
}

.hero__btn {
  width: 260px;
  height: 70px;
  border-radius: 0;
  border-color: #fff;
  font-size: 18px;
  font-family: "Lato", sans-serif;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.hero__btn::before {
  content: '';
  display: block;
  width: 10px;
  min-width: 10px;
  height: 10px;
  margin-right: 14px;
  border-radius: 50%;
  background: #EE2D38;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.hero__btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.hero__btn:hover::before {
  background: #0E5DAB;
}

@media screen and (max-width: 767px) {
  .hero__btn {
    width: 220px;
  }
}

.slider-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.slider-num {
  font-size: 18px;
  font-family: #202125;
  font-weight: 700;
}

.slider-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 12px;
}

.slider-dots .swiper-pagination-bullet {
  width: 15px;
  height: 3px;
  background: #B1B1B1;
  opacity: 1;
  border-radius: 0;
}

.slider-dots .swiper-pagination-bullet:first-child {
  border-radius: 3px 0 0 3px;
}

.slider-dots .swiper-pagination-bullet:last-child {
  border-radius: 0 3px 3px 0;
}

.slider-dots .swiper-pagination-bullet-active {
  border-radius: 3px !important;
  background: #fff;
}

.slider-arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
}

.slider-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 10px;
  width: 9em;
  height: 9em;
  background: #FAFAFA;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.slider-arrow::before {
  content: '';
  font-size: 1em;
  display: block;
  width: 1.4em;
  height: .9em;
  position: absolute;
  background: url("../img/icons/caret.svg") no-repeat 50% 50%/contain;
}

.slider-arrow:hover {
  background-color: #EEE;
}

@media screen and (max-width: 767px) {
  .slider-arrow {
    font-size: 5.557px;
  }
  .slider-arrow::before {
    font-size: 9px;
  }
}

.slider-prev {
  border-right: 1px solid #EEE;
}

.slider-prev::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.slider-next::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.welcome__row {
  margin: 0 -15px;
}

@media screen and (max-width: 991px) {
  .welcome__row {
    margin-bottom: -30px;
  }
}

@media screen and (max-width: 767px) {
  .welcome__row {
    margin: 0 -6px -12px;
  }
}

.welcome__col {
  width: 25%;
  padding: 0 15px;
}

@media screen and (max-width: 991px) {
  .welcome__col {
    width: 50%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .welcome__col {
    padding: 0 6px;
    margin-bottom: 12px;
  }
}

.welcome-item {
  height: 100%;
  border: 1px solid #CCD4DB;
  border-radius: 5px;
  padding: 50px 25px 40px;
  text-align: center;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

@media screen and (min-width: 1200px) {
  .welcome-item:hover {
    -webkit-box-shadow: 0 15px 35px rgba(62, 77, 91, 0.2);
            box-shadow: 0 15px 35px rgba(62, 77, 91, 0.2);
  }
}

@media screen and (max-width: 767px) {
  .welcome-item {
    padding: 30px 10px 25px;
  }
}

.welcome-item__ic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 45px;
}

.welcome-item__ic .img {
  max-height: 100%;
}

@media screen and (max-width: 767px) {
  .welcome-item__ic {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
}

.welcome-item__txt {
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .welcome-item__txt {
    font-size: 14px;
  }
}

@media screen and (max-width: 575px) {
  .welcome-item__txt {
    font-size: 12px;
  }
}

.referenzen__grid {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: minmax(15px, -webkit-max-content);
  grid-template-rows: minmax(15px, max-content);
}

@media screen and (max-width: 991px) {
  .referenzen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .referenzen__grid {
    grid-gap: 12px;
  }
}

.referenzen-item {
  grid-column-end: span 1;
}

.referenzen-item .img {
  max-height: 100%;
}

.referenzen-item.grid-1-1 {
  grid-row-end: span 10;
}

.referenzen-item.grid-1-2 {
  grid-row-end: span 14;
}

.referenzen-item.grid-1-3 {
  grid-row-end: span 17;
}

@media screen and (max-width: 767px) {
  .referenzen-item.grid-1-1, .referenzen-item.grid-1-2 {
    grid-row-end: span 11;
  }
  .referenzen-item.grid-1-1 .img, .referenzen-item.grid-1-2 .img {
    max-height: 125px;
  }
  .referenzen-item.grid-1-3 .img {
    max-height: 195px;
  }
  .referenzen-item:first-child {
    grid-column-end: span 2;
  }
  .referenzen-item:first-child .img {
    max-height: 200px;
  }
}

.referenzen-item a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .referenzen-item [data-fancybox] {
    position: relative;
  }
  .referenzen-item [data-fancybox]::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    left: 0;
    top: 0;
    background: rgba(32, 33, 37, 0.65) url("../img/icons/zoom.svg") no-repeat 50% 50%/80px 80px;
    -webkit-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
    opacity: 0;
  }
  .referenzen-item [data-fancybox]:hover::before {
    opacity: 1;
  }
}

.referenzen-item .img {
  border-radius: 5px;
}

.referenzen-cta {
  background-color: #1779D9;
  margin: 0;
  padding: 40px 40px 40px 40%;
  text-align: right;
  border-radius: 5px;
  color: #fff;
  position: relative;
}

.referenzen-cta:hover {
  background-color: #0E5DAB;
  color: #fff;
}

.referenzen-cta__el {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: absolute;
  left: 60px;
  bottom: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
}

.referenzen-cta__el::before, .referenzen-cta__el::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  position: absolute;
  z-index: 1;
  background: #fff;
}

.referenzen-cta__el::after {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.referenzen-cta__circles {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.referenzen-cta__circles::before, .referenzen-cta__circles::after {
  content: '';
  display: block;
  position: absolute;
  border: 2px solid #fff;
  border-radius: 50%;
}

.referenzen-cta__circles::before {
  top: -16px;
  left: -16px;
  bottom: -16px;
  right: -16px;
  opacity: 0.25;
}

.referenzen-cta__circles::after {
  top: -37px;
  left: -37px;
  bottom: -37px;
  right: -37px;
  opacity: 0.1;
}

.referenzen__link {
  text-align: center;
  margin-top: 55px;
}

@media screen and (max-width: 767px) {
  .referenzen__link {
    margin-top: 25px;
  }
}

.geschmack__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .geschmack__row {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .geschmack__row {
    padding-top: 20px;
  }
}

.geschmack__img {
  font-size: 10px;
  width: 50.8em;
  height: 68.4em;
  position: relative;
  z-index: 1;
}

.geschmack__img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  background: #F3F5F9;
  border-radius: 5px;
}

.geschmack__img .img {
  font-size: 1em;
  width: 50em;
  height: 78.5em;
  position: absolute;
  bottom: 0;
  left: 7em;
}

@media screen and (max-width: 1199px) {
  .geschmack__img {
    font-size: 8px;
  }
}

@media screen and (max-width: 991px) {
  .geschmack__img {
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .geschmack__img {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 575px) {
  .geschmack__img {
    font-size: 5.2px;
  }
}

.geschmack__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #EE2D38;
  font-size: 18px;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  color: #fff;
  position: absolute;
  bottom: 105px;
  right: 0;
  margin-right: -60px;
}

.geschmack__link:hover {
  color: #fff;
  background-color: #F24A53;
}

.geschmack__link:hover::before, .geschmack__link:hover::after {
  border-color: #EE2D38;
}

.geschmack__link:hover::before {
  opacity: 0.5;
}

.geschmack__link:hover::after {
  opacity: 0.2;
}

.geschmack__link::before, .geschmack__link::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 1;
  -webkit-transition: all .25s linear;
  -o-transition: all .25s linear;
  transition: all .25s linear;
}

.geschmack__link::before {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}

.geschmack__link::after {
  -webkit-transform: scale(1.6);
      -ms-transform: scale(1.6);
          transform: scale(1.6);
}

@media screen and (max-width: 991px) {
  .geschmack__link {
    display: none;
  }
}

.geschmack__col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  max-width: 100%;
  padding-left: 94px;
}

@media screen and (max-width: 991px) {
  .geschmack__col {
    padding-left: 0;
  }
}

.geschmack__title {
  margin-bottom: 70px;
  max-width: 570px;
}

@media screen and (max-width: 991px) {
  .geschmack__title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .geschmack__title {
    margin-bottom: 15px;
  }
}

.geschmack__txt {
  max-width: 570px;
  padding-left: 65px;
}

@media screen and (max-width: 767px) {
  .geschmack__txt {
    padding-left: 25px;
  }
}

/* -------------------------------------
	Geschichte
	------------------------------------- */
.timeline {
  overflow: hidden;
}

@media screen and (min-width: 1200px) {
  .timeline {
    margin: 200px 0;
  }
}

.timeline__title {
  margin-bottom: 45px;
}

.timeline-years {
  margin-bottom: 60px;
  overflow: visible;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .timeline-years {
    margin-bottom: 30px;
  }
}

.timeline-years .swiper-slide {
  width: 27px;
}

.timeline-years .swiper-slide::before {
  content: '';
  display: block;
  width: 460px;
  height: 2px;
  position: absolute;
  z-index: -1;
  left: 100%;
  bottom: 15px;
  background: #CCD4DB;
}

@media screen and (max-width: 1599px) {
  .timeline-years .swiper-slide::before {
    width: 345px;
  }
}

@media screen and (max-width: 1199px) {
  .timeline-years .swiper-slide::before {
    width: 160px;
  }
}

.timeline-years .swiper-slide:last-of-type::before {
  display: none;
}

.timeline-years .swiper-slide-thumb-active .timeline-year {
  color: #202125;
  font-weight: 500;
}

.timeline-years .swiper-slide-thumb-active .timeline-year svg {
  fill: #202125;
}

.timeline-year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 75px;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  font-weight: 400;
  color: #8D919F;
  white-space: nowrap;
  cursor: pointer;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.timeline-year span {
  position: absolute;
  top: 0;
  display: inline-block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.timeline-year.ta-left span {
  left: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.timeline-year svg {
  display: block;
  width: 27px;
  height: 33px;
  margin: 8px auto 0;
  fill: #8D919F;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

@media screen and (min-width: 1200px) {
  .timeline-year:hover {
    color: #1779D9;
    font-weight: 500;
  }
  .timeline-year:hover svg {
    fill: #1779D9;
  }
}

@media screen and (max-width: 767px) {
  .timeline-year {
    font-size: 24px;
  }
}

.timeline-slider-wrap {
  position: relative;
}

.timeline-slider__row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 991px) {
  .timeline-slider__row {
    width: 100%;
  }
}

.timeline-slider__col {
  width: 26.5%;
  margin-right: 55px;
}

@media screen and (max-width: 1199px) {
  .timeline-slider__col {
    width: 28%;
    margin-right: 30px;
  }
}

@media screen and (max-width: 991px) {
  .timeline-slider__col {
    width: 100%;
    margin: 0 0 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .timeline-slider__col {
    margin-bottom: 25px;
  }
}

.timeline-slider__col a {
  color: #1779D9;
}

.timeline-slider__title {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .timeline-slider__title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}

.timeline-slider__img {
  width: 37.5%;
  margin-left: auto;
  border-radius: 5px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .timeline-slider__img {
    width: 100%;
  }
}

.timeline-slider-next {
  font-size: 10px;
  width: 4.5em;
  height: 8.1em;
  background: url("../img/icons/caret-big.svg") no-repeat 50% 50%/contain;
  position: absolute;
  z-index: 1;
  left: 100%;
  top: 50%;
  margin-top: -4.05em;
  -webkit-transform: translateX(250%);
      -ms-transform: translateX(250%);
          transform: translateX(250%);
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

@media screen and (max-width: 1900px) {
  .timeline-slider-next {
    -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@media screen and (max-width: 1600px) {
  .timeline-slider-next {
    font-size: 6px;
    -webkit-transform: translate(0, -14em);
        -ms-transform: translate(0, -14em);
            transform: translate(0, -14em);
    top: auto;
    left: auto;
    margin-top: 0;
    bottom: 100%;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .timeline-slider-next {
    font-size: 5px;
  }
}

.timeline-slider-next.swiper-button-disabled {
  opacity: 0;
  visibility: hidden;
}

/* -------------------------------------
	About
	------------------------------------- */
@media screen and (max-width: 360px) {
  .about-text .title-2 {
    font-size: 22px;
  }
}

.stability {
  min-height: 750px;
  padding: 100px 0;
  background: url("../img/stability-bg.jpg") no-repeat 50% 50%/cover;
}

@media screen and (max-width: 767px) {
  .stability {
    min-height: 450px;
    padding: 35px 0;
  }
}

@media screen and (max-width: 575px) {
  .stability {
    background-image: url("../img/stability-bg-sm.jpg");
  }
}

.stability .section-title__txt {
  max-width: 820px;
  color: #777;
}

/* -------------------------------------
	Jobs
	------------------------------------- */
.hero-jobs {
  height: 600px;
  margin: 0 auto;
  padding-top: 160px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1199px) {
  .hero-jobs {
    padding-left: 30%;
  }
}

@media screen and (max-width: 767px) {
  .hero-jobs {
    height: 315px;
    padding-top: 30px;
    padding-left: 20%;
  }
}

.hero-jobs__col {
  max-width: 570px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 1199px) {
  .hero-jobs__col {
    text-align: left;
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .hero-jobs__col {
    max-width: 208px;
    margin-left: auto;
  }
}

.hero-jobs__col .title-1 {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .hero-jobs__col .title-1 {
    margin-bottom: 15px;
  }
}

.hero-jobs__btn {
  margin-top: 45px;
}

.hero-jobs__btn .button {
  min-width: 245px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .hero-jobs__btn {
    margin-top: 25px;
  }
  .hero-jobs__btn .button {
    min-width: 100%;
  }
}

.hero-jobs .hero-scroll-btn {
  margin: 50px auto 0;
}

@media screen and (max-width: 1199px) {
  .hero-jobs .hero-scroll-btn {
    display: none;
  }
}

.hero-jobs-img {
  width: 626px;
  position: absolute;
  overflow: hidden;
  top: 0;
  border-radius: 65px;
}

.hero-jobs-img-1 {
  left: 50%;
  -webkit-transform: translateX(-162%);
      -ms-transform: translateX(-162%);
          transform: translateX(-162%);
}

@media screen and (max-width: 1199px) {
  .hero-jobs-img-1 {
    -webkit-transform: translateX(-134%);
        -ms-transform: translateX(-134%);
            transform: translateX(-134%);
  }
}

@media screen and (max-width: 991px) {
  .hero-jobs-img-1 {
    -webkit-transform: translateX(-124%);
        -ms-transform: translateX(-124%);
            transform: translateX(-124%);
  }
}

@media screen and (max-width: 767px) {
  .hero-jobs-img-1 {
    -webkit-transform: translateX(-720px);
        -ms-transform: translateX(-720px);
            transform: translateX(-720px);
  }
}

.hero-jobs-img-2 {
  right: 50%;
  -webkit-transform: translateX(162%);
      -ms-transform: translateX(162%);
          transform: translateX(162%);
}

@media screen and (max-width: 1199px) {
  .hero-jobs-img-2 {
    display: none;
  }
}

.hero-scroll-btn {
  display: block;
  font-size: 10px;
  width: 5em;
  height: 5em;
  background: url("../img/icons/caret-down.svg") no-repeat 50% 50%/contain;
}

.jobs-cards {
  padding-bottom: 1px;
}

.jobs-cards__row {
  margin: 0 -15px;
}

@media screen and (max-width: 991px) {
  .jobs-cards__row {
    display: block;
    margin: 0 0 -15px;
  }
}

.jobs-cards__col {
  width: 33.33333%;
  padding: 0 15px;
}

@media screen and (max-width: 991px) {
  .jobs-cards__col {
    width: 100%;
    margin-bottom: 15px;
    padding: 0;
  }
}

.jobs-cards__item {
  height: 100%;
  position: relative;
  padding: 40px 40px 80px;
  border: 1px solid #CCD4DB;
  border-radius: 5px;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

@media screen and (min-width: 1200px) {
  .jobs-cards__item:hover {
    -webkit-box-shadow: 0px 15px 35px rgba(62, 77, 91, 0.2);
            box-shadow: 0px 15px 35px rgba(62, 77, 91, 0.2);
  }
}

@media screen and (max-width: 991px) {
  .jobs-cards__item {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .jobs-cards__item {
    padding: 20px 16px;
  }
}

@media screen and (max-width: 767px) {
  .jobs-cards__title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.jobs-cards__txt {
  font-weight: 300;
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .jobs-cards__txt {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.jobs-cards__btn {
  position: absolute;
  bottom: 40px;
}

@media screen and (max-width: 991px) {
  .jobs-cards__btn {
    position: static;
  }
}

.app {
  padding: 100px 0;
  background: #F3F6F9;
}

@media screen and (max-width: 767px) {
  .app {
    padding: 35px 0;
  }
}

.app__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px;
}

@media screen and (max-width: 1450px) {
  .app__row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 991px) {
  .app__row {
    display: block;
    margin: 0;
  }
}

.app__col {
  width: 550px;
  padding: 0 15px;
}

@media screen and (max-width: 991px) {
  .app__col {
    width: 100%;
    margin-bottom: 50px;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .app__col {
    margin-bottom: 25px;
  }
}

.app__grow {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
  padding: 0 15px;
}

@media screen and (max-width: 991px) {
  .app__grow {
    padding: 0;
  }
}

.app-block {
  min-height: 100%;
  padding: 50px 40px;
  background: #fff;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .app-block {
    padding: 25px 15px;
  }
}

.app-block .contacts-list {
  margin-bottom: 45px;
}

@media screen and (max-width: 767px) {
  .app-block .contacts-list {
    margin-bottom: 0;
  }
}

.app-block__btn .button {
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .app-block__btn {
    display: none;
  }
}

.app-grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(28, 0.52083vw);
  grid-template-rows: repeat(18, 0.52083vw);
}

@media screen and (max-width: 1199px) {
  .app-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .app-grid {
    grid-gap: 12px;
  }
}

.app-grid a {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 1200px) {
  .app-grid .grid-1 {
    grid-column-end: span 11;
    grid-row-end: span 6;
  }
}

@media screen and (max-width: 1199px) {
  .app-grid .grid-1 {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .app-grid .grid-2 {
    grid-column-start: span 8;
    grid-row-end: span 6;
  }
}

@media screen and (max-width: 1199px) {
  .app-grid .grid-2 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
}

@media screen and (min-width: 1200px) {
  .app-grid .grid-3 {
    grid-column-start: span 9;
    grid-row-end: span 10;
  }
}

@media screen and (max-width: 1199px) {
  .app-grid .grid-3 {
    grid-column-start: 1;
    grid-row-start: 3;
    grid-column-end: span 1;
    grid-row-end: span 2;
  }
}

@media screen and (min-width: 1200px) {
  .app-grid .grid-4 {
    grid-column-start: span 19;
    grid-row-end: span 12;
  }
}

@media screen and (max-width: 1199px) {
  .app-grid .grid-4 {
    grid-row-start: 1;
    grid-column-end: span 2;
    grid-row-end: span 2;
  }
}

@media screen and (min-width: 1200px) {
  .app-grid .grid-5 {
    grid-column-start: span 9;
    grid-row-end: span 8;
  }
}

@media screen and (max-width: 1199px) {
  .app-grid .grid-5 {
    grid-column-end: span 1;
    grid-row-end: span 1;
  }
}

.app-grid .img {
  border-radius: 5px;
}

/* -------------------------------------
	Contacts
	------------------------------------- */
.contacts {
  padding: 90px 0;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .contacts {
    padding-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .contacts {
    padding-bottom: 45px;
  }
}

.contacts__col {
  width: 670px;
  max-width: 50%;
  padding-right: 35px;
}

@media screen and (max-width: 1199px) {
  .contacts__col {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .contacts__col .contacts-block__title {
    font-size: 32px;
  }
}

.contacts__map {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 1199px) {
  .contacts__map {
    position: static;
    width: 100%;
    height: 640px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .contacts__map {
    width: calc(100% + 40px);
    height: 320px;
    margin-left: -20px;
    margin-bottom: 25px;
  }
}

.map {
  width: 100%;
  height: 100%;
  border-radius: 5px;
  overflow: hidden;
}

.map .gm-style-cc, .map a {
  display: none !important;
}

.contacts-form {
  padding: 100px 0 0;
  background: #F3F6F9;
}

@media screen and (max-width: 1199px) {
  .contacts-form {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .contacts-form {
    padding: 35px 0;
  }
}

@media screen and (max-width: 1199px) {
  .contacts-form__row {
    display: block;
  }
}

.contacts-form__col {
  width: 50%;
}

@media screen and (max-width: 1199px) {
  .contacts-form__col {
    width: 100%;
  }
}

.contacts-form__col:first-child {
  padding-right: 50px;
}

@media screen and (max-width: 1199px) {
  .contacts-form__col:first-child {
    padding-right: 0;
  }
}

.contacts-form__title {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .contacts-form__title {
    margin-bottom: 15px;
  }
}

.contacts-form__subtxt {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contacts-form__subtxt {
    margin-bottom: 10px;
  }
}

.contacts-form__img {
  width: 466px;
  position: relative;
  padding-top: 127px;
}

@media screen and (max-width: 1199px) {
  .contacts-form__img {
    display: none;
  }
}

.contacts-form__el {
  width: 536px;
  height: 450px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -268px;
}

.contacts-form__man {
  width: 324px;
  height: 546px;
  margin: 0 auto;
  position: relative;
}

.contacts-form__man .data-info {
  position: absolute;
  left: 100%;
  top: 150px;
  white-space: nowrap;
}

.contacts-form__man .data-name {
  margin-bottom: 6px;
}

.contacts-form__man .data-pos {
  font-size: 18px;
}

/* -------------------------------------
	Kundendienst
	------------------------------------- */
.kundendienst {
  padding-bottom: 1px;
}

.kundendienst .section-title {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1199px) {
  .kundendienst__main {
    display: block;
  }
  .kundendienst__main > .kundendienst__col {
    width: 100%;
  }
}

.kundendienst__row {
  margin: 0 -15px -30px;
}

@media screen and (max-width: 767px) {
  .kundendienst__row {
    margin: 0 -6px -12px;
  }
}

.kundendienst__col {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .kundendienst__col {
    padding: 0 6px;
    margin-bottom: 12px;
  }
}

.kundendienst-item {
  height: 390px;
  padding: 50px 0 0;
  background: #F3F6F9;
  border-radius: 5px;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear;
}

.kundendienst-item:hover {
  background: #fff;
  -webkit-box-shadow: 0 10px 35px rgba(68, 81, 95, 0.2);
          box-shadow: 0 10px 35px rgba(68, 81, 95, 0.2);
}

@media screen and (max-width: 767px) {
  .kundendienst-item {
    height: 61vw;
    padding-top: 5vw;
  }
}

.kundendienst-item__title {
  margin-bottom: 35px;
  padding: 0 20px;
}

@media screen and (min-width: 768px) {
  .kundendienst-item__title br {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .kundendienst-item__title {
    margin-bottom: 16px;
    padding: 0 10px;
  }
}

.kundendienst-item__img {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
}

.kundendienst-item__img .img {
  max-height: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .kundendienst-item__img {
    height: 40vw;
  }
  .kundendienst-item__img .img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.kundendienst__block {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px;
  background: #F3F6F9;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .kundendienst__block {
    padding: 25px 15px;
    margin-top: 25px;
  }
}

/* -------------------------------------
	Referenzen
	------------------------------------- */
@media screen and (max-width: 767px) {
  .referenzen__title {
    margin-bottom: 15px;
  }
}

.referenzen-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 1199px) {
  .referenzen-tabs {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    overflow: auto;
    padding-bottom: 10px;
  }
}

.referenzen-tab {
  margin: 0 10px;
}

.referenzen-tab.is-active {
  background-color: #1779D9;
  color: #fff;
  font-weight: 500;
}

@media screen and (max-width: 1199px) {
  .referenzen-tab {
    margin: 0 20px 0 0;
  }
}

.js-ref-container > .referenzen-item {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
