@charset "UTF-8";
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url('ajax-loader.gif') center center no-repeat;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover,
.slick-next:hover,
.slick-prev:focus,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Icons */
}
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url('fonts/slick.eot');
  src: url('fonts/slick.eot?#iefix') format('embedded-opentype'), url('fonts/slick.woff') format('woff'), url('fonts/slick.ttf') format('truetype'), url('fonts/slick.svg#slick') format('svg');
}
.slick-prev {
  left: -25px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir="rtl"] .slick-prev:before {
  content: "→";
}
.slick-next {
  right: -25px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir="rtl"] .slick-next:before {
  content: "←";
}
/* Dots */
.slick-dotted .slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}
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;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}
.fancybox-container * {
  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;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}
.fancybox-is-open .fancybox-bg {
  opacity: .9;
  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;
  transition: opacity .25s ease,visibility 0s ease .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;
  transition: opacity .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;
  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;
  transition-property: transform,opacity;
  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 {
  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;
  transform-origin: top left;
  transition-property: transform,opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .fancybox-content {
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}
.fancybox-container [data-selectable=true] {
  cursor: text;
}
.fancybox-image,
.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%;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}
.fancybox-slide--video .fancybox-content {
  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;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}
.fancybox-button,
.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],
.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 svg path {
  fill: currentColor;
  stroke-width: 0;
}
.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;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .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(0%);
  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: 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;
}
@supports (padding:max(0px)) {
  .fancybox-caption {
    padding: 75px 44px 25px 44px;
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.fancybox-loading {
  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: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}
@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  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;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}
.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}
.fancybox-fx-tube.fancybox-slide--current {
  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;
  }
  @supports (padding:max(0px)) {
    .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;
  transition: all .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;
  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(92%);
  max-width: calc(46%);
  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;
  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(90%);
  }
}
/* Colors */
/* Values */
/* Media breakpoints */
.main-container {
  color: #283044;
}
@media (min-width: 768px) {
  .main-container {
    min-height: calc(-169vH);
  }
}
@media (max-width: 767px) {
  .main-container {
    min-height: calc(-348vH);
  }
}
.menu {
  float: right;
  padding: 13px 10px 0;
  text-align: left;
  font-size: 15px;
}
.menu .menu-toggle {
  cursor: pointer;
}
@media (min-width: 768px) {
  .menu .menu-toggle:hover .menu-bar {
    background-color: #008ccf;
  }
}
.menu .menu-bar {
  width: 30px;
  height: 2px;
  background-color: #333;
  margin: 8px 0;
  transition: 0.4s;
}
.menu .menu-icon {
  float: right;
  position: relative;
  z-index: 204;
}
.menu .menu-text {
  float: left;
  line-height: 40px;
  font-weight: bold;
  padding-right: 10px;
  font-family: "Proxima Nova Semibold";
  font-size: 15px;
}
.menu .menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  max-width: 100%;
  z-index: 202;
  background: #fff;
  height: 0;
  overflow: auto;
  max-height: 96vH;
}
@media (max-width: 767px) {
  .menu .menu-wrap {
    max-height: 100vH;
  }
}
.menu .menu-item {
  cursor: pointer;
  color: #283044;
}
.menu .menu-item:hover,
.menu .menu-item.active {
  color: #008ccf;
  text-decoration: none;
}
.menu .menu-ul {
  padding: 30px 0 20px;
  list-style-type: none;
  margin: 0;
}
@media (min-width: 768px) {
  .menu .menu-ul {
    min-height: 380px;
  }
}
.menu .menu-ul-submenu {
  margin: 0;
  padding: 5px 0 0 0;
}
.menu .menu-submenu {
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
}
.menu .menu-li {
  display: inline-block;
  width: 100%;
  padding: 7px 20px 7px 80px;
  text-transform: uppercase;
  position: relative;
  font-family: "Proxima Nova Bold";
}
.menu .menu-li[data-open="true"] .menu-submenu {
  max-height: 300px;
}
.menu .menu-li[data-open="true"] > .menu-item {
  color: #008ccf;
}
.menu .menu-li-submenu {
  display: inline-block;
  width: 100%;
  padding: 4px 0 4px 20px;
  text-transform: none;
  font-family: "Proxima Nova Regular";
}
.menu .menu-submenu-toggle {
  position: relative;
}
.menu .menu-submenu-toggle:before {
  content: "";
  position: absolute;
  left: -40px;
  width: 20px;
  top: 0;
  margin: auto;
  bottom: 0;
  height: 2px;
  background: #008ccf;
}
.menu .menu-socials {
  padding: 30px 0;
  margin: 0 0 7px 80px;
  position: relative;
}
.menu .menu-socials a {
  margin-right: 30px;
  display: inline-block;
  transition: all 0.3s ease 0s;
}
.menu .menu-socials a:hover {
  transform: scale(1.1);
  opacity: 0.7;
}
.menu .menu-socials:before {
  width: 60px;
  height: 1px;
  content: '';
  background: #000;
  top: 0px;
  left: 0px;
  position: absolute;
}
.menu[data-open="true"] .menu-bar1 {
  transform: rotate(-45deg) translate(-7px, 7px);
}
.menu[data-open="true"] .menu-bar2 {
  opacity: 0;
}
.menu[data-open="true"] .menu-bar3 {
  transform: rotate(45deg) translate(-7px, -7px);
}
.menu[data-open="true"] .menu-wrap {
  height: auto;
  box-shadow: 0 5px 25px rgba(255, 255, 255, 0.5);
}
.menu[data-open="true"] + .menu-overlay {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 201;
}
@media (min-width: 768px) {
  .menu {
    padding: 30px 10px 0;
    font-size: 18px;
  }
  .menu .menu-wrap {
    top: 20px;
  }
  .menu .menu-submenu {
    font-size: 16px;
  }
}
header {
  background: #FFF;
  display: inline-block;
  width: 100%;
  height: 60px;
  box-shadow: 1px 0 7px rgba(0, 0, 0, 0.1);
  position: fixed;
  z-index: 204;
  top: 0;
  left: 0;
  right: 0;
}
header .container {
  padding: 0;
  position: relative;
}
header .logo-wrap {
  position: relative;
  z-index: 1;
  display: inline-block;
}
header .logo {
  float: left;
  padding-left: 10px;
}
.header-motto {
  font-family: "Proxima Nova Regular";
  float: left;
  font-size: 15px;
  text-align: center;
  padding: 24px 0 10px 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  display: none;
}
.header-motto-title {
  font-size: 140%;
  color: #008ccf;
}
.header-motto-description {
  color: #283044;
  margin-top: -2px;
}
@media (min-width: 768px) {
  header {
    height: 100px;
  }
  header .logo {
    height: 100px;
    width: 165px;
    padding: 0;
  }
  .header-motto {
    display: block;
  }
}
.lazy-load,
.lazy-loaded {
  transition: opacity 1s;
  opacity: 0;
}
.lazy-loaded {
  opacity: 1;
}
.noscript {
  display: none;
}
.sliderWrap {
  width: 100%;
  position: relative;
  opacity: 1 !important;
}
.initSlider {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
}
.initSlider {
  opacity: 1;
}
.initSlider img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  user-select: none;
}
.galerie-body.desktop #sliderGalerie {
  margin-bottom: 20px;
}
.initSlider,
.initSlider *,
.initSlider *:after,
.initSlider *:before {
  box-sizing: border-box;
}
.initSlider .slide {
  position: relative;
  text-align: center;
}
.slide.hide,
.slide.hideSlide {
  display: none;
}
.slide a {
  position: relative;
  z-index: 55;
}
.initSlider img {
  max-width: 110%;
  max-height: 110%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}
.initSlider .slide {
  float: left;
  display: inline-block;
  overflow: hidden;
}
.initSlider[data-direction="x"] .firstImg {
  position: absolute;
  right: 100%;
  top: 0;
}
.initSlider[data-direction="x"] .lastImg {
  position: absolute;
  left: 100%;
  top: 0;
}
.initSlider[data-direction="y"] .firstImg {
  position: absolute;
  right: 0;
  left: 0;
  overflow: hidden;
  bottom: 100%;
}
.initSlider[data-direction="y"] .lastImg {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  overflow: hidden;
}
.initSlider .containerGallery {
  position: relative;
  display: inline-block;
}
.navigation {
  overflow: hidden;
  margin: 10px -10px;
}
.navigation.itemShow3 {
  margin: 10px 100px;
}
.slide-navigation {
  float: left;
  opacity: 0;
  transition: opacity .3s linear;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  position: relative;
}
.slide-navigation.visible {
  padding: 10px;
  opacity: 1;
}
.itemShow3 .slide-navigation.visible {
  padding: 10px 30px;
}
.slide-navigation:hover {
  opacity: 0.5;
}
.slide-navigation.active {
  cursor: default;
  opacity: 1;
}
.slide-navigation.active .slide-navigation-inner {
  border-top: 2px solid #EE1700;
  padding-top: 69%;
}
.slide-navigation-inner {
  padding-top: 70%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.slide-navigation img {
  width: auto;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
@keyframes loader-big-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-small-ring {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.loading {
  position: absolute;
  z-index: 30;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s, opacity 0.5s linear;
}
.loadingAds .initSlider .loading,
#sliderGalerie.beforeInit .loading,
#sliderClanek.beforeInit .loading {
  visibility: visible;
  opacity: 1;
}
.loading span {
  position: absolute;
  display: block;
  z-index: 30;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  transform: scale(0.4);
}
.loading.loading50 span {
  transform: scale(0.3);
}
.loading span:before,
.loading span:after {
  content: "";
  position: absolute;
  display: block;
  z-index: 30;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
  border: 14px solid #000;
}
.loading span:before {
  width: 160px;
  height: 160px;
  border-color: #333 transparent #333 transparent;
  animation: loader-big-ring 1.4s linear infinite;
}
.loading span:after {
  width: 120px;
  height: 120px;
  border-color: transparent #DDD transparent #DDD;
  animation: loader-small-ring 1.4s linear infinite;
}
#denik .loading span:before {
  border-color: #1d3f72 transparent #1d3f72 transparent;
}
#denik .loading span:after {
  border-color: transparent #0080C8 transparent #0080C8;
}
#denik.loadingAds .initSlider .slide img,
#denik #sliderClanek.beforeInit .slide img,
#denik #sliderGalerie.beforeInit .slide img {
  filter: blur(3px);
}
.initSlider.stable .slide {
  opacity: 0;
}
.initSlider.stable .slide.visible {
  opacity: 1;
}
@font-face {
  font-family: 'Futura Book';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/FuturaPTBook.eot');
  src: url('../fonts/vlmedia/FuturaPTBook.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/FuturaPTBook.woff') format('woff'), url('../fonts/vlmedia/FuturaPTBook.ttf') format('truetype'), url('../fonts/vlmedia/FuturaPTBook.svg#futuraptbook') format('svg');
}
@font-face {
  font-family: 'Futura Heavy';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/FuturaPTHeavy.eot');
  src: url('../fonts/vlmedia/FuturaPTHeavy.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/FuturaPTHeavy.woff') format('woff'), url('../fonts/vlmedia/FuturaPTHeavy.ttf') format('truetype'), url('../fonts/vlmedia/FuturaPTHeavy.svg#futuraptheavy') format('svg');
}
@font-face {
  font-family: 'Futura Bold';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/FuturaPTBold.eot');
  src: url('../fonts/vlmedia/FuturaPTBold.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/FuturaPTBold.woff') format('woff'), url('../fonts/vlmedia/FuturaPTBold.ttf') format('truetype'), url('../fonts/vlmedia/FuturaPTBold.svg#futuraptbold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Medium';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaMedium.eot');
  src: url('../fonts/vlmedia/ProximaNovaMedium.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaMedium.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaMedium.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaMedium.svg#proximanovamedium') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Bold';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaBold.eot');
  src: url('../fonts/vlmedia/ProximaNovaBold.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaBold.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaBold.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaBold.svg#proximanovabold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Regular';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaRegular.eot');
  src: url('../fonts/vlmedia/ProximaNovaRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaRegular.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaRegular.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaRegular.svg#proximanovaregular') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Semibold';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaSemibold.eot');
  src: url('../fonts/vlmedia/ProximaNovaSemibold.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaSemibold.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaSemibold.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaSemibold.svg#proximanovasemibold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Light';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaLight.eot');
  src: url('../fonts/vlmedia/ProximaNovaLight.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaLight.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaLight.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaLight.svg#proximanovalight') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Light Italic';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/ProximaNovaLightItalic.eot');
  src: url('../fonts/vlmedia/ProximaNovaLightItalic.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/ProximaNovaLightItalic.woff') format('woff'), url('../fonts/vlmedia/ProximaNovaLightItalic.ttf') format('truetype'), url('../fonts/vlmedia/ProximaNovaLightItalic.svg#proximanovalightitalic') format('svg');
}
@font-face {
  font-family: 'Lato Thin';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/Lato-Thin.eot');
  src: url('../fonts/vlmedia/Lato-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/Lato-Thin.woff') format('woff'), url('../fonts/vlmedia/Lato-Thin.ttf') format('truetype'), url('../fonts/vlmedia/Lato-Thin.svg#lato-thin') format('svg');
}
@font-face {
  font-family: 'Courgette Regular';
  font-weight: 'normal';
  src: url('../fonts/vlmedia/CourgetteRegular.eot');
  src: url('../fonts/vlmedia/CourgetteRegular.eot?#iefix') format('embedded-opentype'), url('../fonts/vlmedia/CourgetteRegular.woff') format('woff'), url('../fonts/vlmedia/CourgetteRegular.ttf') format('truetype'), url('../fonts/vlmedia/CourgetteRegular.svg#courgetteregular') format('svg');
}
.futura-book {
  font-family: "Futura Book";
}
.futura-heavy {
  font-family: "Futura Heavy";
}
.futura-bold {
  font-family: "Futura Bold";
}
.proxima-nova-medium {
  font-family: "Proxima Nova Medium";
}
.proxima-nova-bold {
  font-family: "Proxima Nova Bold";
}
.proxima-nova-regular {
  font-family: "Proxima Nova Regular";
}
.proxima-nova-semibold {
  font-family: "Proxima Nova Semibold";
}
.proxima-nova-light {
  font-family: "Proxima Nova Light";
}
.proxima-nova-light-italic {
  font-family: "Proxima Nova Light Italic";
}
.lato-thin {
  font-family: "Lato Thin";
}
.courgette-regular {
  font-family: "Courgette Regular";
}
.fontsize-extrasmall {
  font-size: 12px;
}
.fontsize-small {
  font-size: 14px;
}
.fontsize-normal {
  font-size: 16px;
}
@media (max-width: 768px) {
  .fontsize-normal {
    font-size: 14px;
  }
}
.fontsize-medium {
  font-size: 18px;
}
@media (max-width: 1100px) {
  .fontsize-medium {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .fontsize-medium {
    font-size: 14px;
  }
}
.fontsize-large {
  font-size: 20px;
}
@media (max-width: 1100px) {
  .fontsize-large {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .fontsize-large {
    font-size: 16px;
  }
}
.fontsize-bigest {
  font-size: 80px;
}
@media (max-width: 1100px) {
  .fontsize-bigest {
    font-size: 50px;
  }
}
.fontsize-big-1 {
  font-size: 50px;
}
@media (max-width: 1100px) {
  .fontsize-big-1 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .fontsize-big-1 {
    font-size: 28px;
  }
}
.fontsize-big-2 {
  font-size: 40px;
}
@media (max-width: 1100px) {
  .fontsize-big-2 {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .fontsize-big-2 {
    font-size: 26px;
  }
}
.fontsize-big-3 {
  font-size: 30px;
}
@media (max-width: 1100px) {
  .fontsize-big-3 {
    font-size: 22px;
  }
}
.fontsize-big-4 {
  font-size: 25px;
}
@media (max-width: 1100px) {
  .fontsize-big-4 {
    font-size: 21px;
  }
}
.fontsize-big-5 {
  font-size: 24px;
}
@media (max-width: 1100px) {
  .fontsize-big-5 {
    font-size: 20px;
  }
}
.fontsize-big-5-type2 {
  font-size: 24px;
}
@media (max-width: 1100px) {
  .fontsize-big-5-type2 {
    font-size: 18px;
  }
}
.zamestnanci {
  background: #FFF;
  margin-top: 2em;
  padding-top: 5em;
}
.zamestnanci-name {
  text-transform: uppercase;
  font-family: "Proxima Nova Bold";
  font-size: 30px;
  color: #283044;
}
@media (max-width: 1100px) {
  .zamestnanci-name {
    font-size: 22px;
  }
}
.zamestnanci-position {
  color: #008ccf;
  font-family: "Proxima Nova Light";
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .zamestnanci-position {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .zamestnanci-position {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .zamestnanci-position {
    margin-bottom: 15px;
  }
}
.zamestnanci-texty {
  text-align: left;
}
.zamestnanci-text {
  font-family: "Proxima Nova Regular";
  font-size: 16px;
  color: #283044;
}
@media (max-width: 768px) {
  .zamestnanci-text {
    font-size: 14px;
  }
}
.zamestnanci-text-long {
  display: none;
}
.zamestnanci-arrows {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 10px;
}
.zamestnanci-arrow {
  cursor: pointer;
  display: block !important;
}
.zamestnanci-arrow:hover svg,
.zamestnanci-arrow[data-hide="true"] svg {
  opacity: 0.5;
}
.zamestnanci-more {
  float: right;
  color: #008ccf;
  cursor: pointer;
  padding: 10px 0 20px;
  clear: both;
}
.zamestnanci-arrow-left {
  float: left;
}
@media (max-width: 767px) {
  .zamestnanci-arrow-left {
    display: none !important;
  }
}
.zamestnanci-arrow-right {
  float: right;
}
@media (max-width: 767px) {
  .zamestnanci-arrow-right {
    display: none !important;
  }
}
.zamestnanci-arrow-down {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 20%;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3) 10%, #fff 90%);
  z-index: 2;
}
.zamestnanci-arrow-down svg {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 10px;
}
@media (min-width: 768px) {
  .zamestnanci-arrow-down {
    display: none !important;
  }
}
.zamestnanci-slider {
  padding: 10px 0 0 0;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .zamestnanci-slider {
    display: inline-block;
  }
}
.zamestnanci-slider-content {
  width: 60%;
  max-width: 760px;
  float: left;
  padding: 0 10px 70px 10px;
  position: relative;
}
@media (max-width: 1100px) {
  .zamestnanci-slider-content {
    width: 74%;
  }
}
@media (max-width: 767px) {
  .zamestnanci-slider-content {
    width: 65%;
    width: calc(100% - 120px);
    padding: 0 10px 0 5px;
  }
}
.zamestnanci-slider-nav {
  width: 40%;
  float: left;
  position: relative;
}
@media (max-width: 1100px) {
  .zamestnanci-slider-nav {
    width: 26%;
  }
}
@media (max-width: 767px) {
  .zamestnanci-slider-nav {
    width: 35%;
    width: 120px;
  }
}
.zamestnanci-info {
  float: right;
  width: 45%;
  min-width: calc(100% - 301px);
  position: relative;
}
@media (max-width: 767px) {
  .zamestnanci-info {
    width: 100%;
  }
}
.zamestnanci-info-img {
  float: left;
  width: 300px;
  max-width: 54%;
  height: auto;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .zamestnanci-info-img {
    display: none;
  }
}
#sliderZamestnanciNav {
  max-width: 1100px;
  float: right;
}
#sliderZamestnanciNav .slide {
  overflow: visible;
  position: relative;
  padding: 0px 10px 0 10px;
}
@media (max-width: 767px) {
  #sliderZamestnanciNav .slide {
    width: 100%;
  }
}
#sliderZamestnanciNav .slide .zamestnanci-img-wrap {
  overflow: hidden;
  height: 0;
  padding-top: 125%;
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #sliderZamestnanciNav .slide .zamestnanci-img-wrap {
    margin-top: 129%;
  }
}
#sliderZamestnanciNav .slide .zamestnanci-img,
#sliderZamestnanciNav .slide .zamestnanci-img-cb {
  position: absolute;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  width: auto;
  height: 100%;
  left: -100%;
  right: -100%;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: 0.4s;
}
#sliderZamestnanciNav .slide .zamestnanci-img {
  opacity: 0;
}
@media (max-width: 767px) {
  #sliderZamestnanciNav .slide.active {
    padding: 0 10px 0 10px;
  }
  #sliderZamestnanciNav .slide.active .zamestnanci-img {
    display: block;
    opacity: 1;
  }
  #sliderZamestnanciNav .slide.active .zamestnanci-img-cb {
    opacity: 0;
    transition: none;
  }
  #sliderZamestnanciNav .slide.active .zamestnanci-img-wrap {
    margin-top: 0;
    padding-top: 147%;
    height: 0;
  }
}
.company-management {
  background: #FFF;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  margin-top: 2em;
  padding-top: 5em;
}
@media (max-width: 767px) {
  .company-management {
    padding-top: 3em;
  }
}
.company-management-img {
  position: relative;
  overflow: hidden;
  margin-top: -5%;
}
.company-management-img img {
  position: relative;
  margin-bottom: -5px;
  max-width: 100%;
  height: auto;
}
.company-management-img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 46%;
  background: #000;
}
.management-name {
  text-transform: uppercase;
  font-family: "Proxima Nova Bold";
  font-size: 30px;
  color: #283044;
}
@media (max-width: 1100px) {
  .management-name {
    font-size: 22px;
  }
}
.company-more-info {
  text-align: center;
  margin-bottom: 4em;
  display: inline-block;
  width: 100%;
  font-family: "Proxima Nova Regular";
  font-size: 18px;
}
.company-more-info.link {
  margin-bottom: 0;
  max-width: 620px;
  margin: 0 auto;
  margin-top: 50px;
  display: inherit;
}
@media only screen and (max-width: 1200px) {
  .company-more-info.link {
    margin-bottom: 20px;
    margin-top: 30px;
  }
}
.company-more-info.link a {
  color: #283044;
  margin-top: 20px;
  display: block;
  text-align: center;
}
.company-more-info.link a .blue {
  color: #008ccf;
}
@media only screen and (max-width: 768px) {
  .company-more-info {
    margin-bottom: 40px !important;
  }
}
.management-position {
  color: #008ccf;
  font-family: 'Proxima Nova Light';
  font-size: 18px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .management-position {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
.management-texty {
  text-align: left;
}
.management-text {
  color: #283044;
  font-size: 16px;
}
@media (max-width: 767px) {
  .management-text {
    font-size: 14px;
  }
}
.management-text-long {
  display: none;
}
.management-arrows {
  overflow: hidden;
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 10px;
}
.management-arrow {
  cursor: pointer;
  display: block !important;
}
.management-arrow:hover svg,
.management-arrow[data-hide="true"] svg {
  opacity: .5;
}
.management-more {
  float: right;
  color: #008ccf;
  cursor: pointer;
  padding: 10px 0 20px;
  clear: both;
  font-size: 0.9em;
}
.management-arrow-left {
  float: left;
}
@media (max-width: 767px) {
  .management-arrow-left {
    display: none !important;
  }
}
.management-arrow-right {
  float: right;
}
@media (max-width: 767px) {
  .management-arrow-right {
    display: none !important;
  }
}
.management-arrow-down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.3) 10%, #fff 90%);
  z-index: 2;
}
.management-arrow-down svg {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 10px;
}
@media (min-width: 768px) {
  .management-arrow-down {
    display: none !important;
  }
}
.company-management-slider {
  padding: 6em 0 2em 0;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-pack: left;
      justify-content: left;
  -ms-flex: 1 0 0;
  flex: 1 0 0;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 767px) {
  .company-management-slider {
    display: inline-block;
    padding-top: 3em;
  }
}
.company-management-slider-content {
  width: 45%;
  max-width: 450px;
  float: left;
  padding: 0 10px 70px 20px;
  position: relative;
}
@media (max-width: 767px) {
  .company-management-slider-content {
    width: 65%;
    width: calc(100% - 120px);
    padding: 0 10px 0 5px;
  }
}
.company-management-slider-nav {
  width: 55%;
  float: left;
  position: relative;
}
@media (max-width: 767px) {
  .company-management-slider-nav {
    width: 35%;
    width: 120px;
  }
}
.company-more-info {
  text-align: center;
  margin-bottom: 4em;
  display: inline-block;
  width: 100%;
}
#sliderManagement {
  min-height: 430px;
}
#sliderManagement .slide {
  text-align: left;
}
#sliderManagementNav {
  max-width: 1100px;
  float: right;
}
#sliderManagementNav .slide {
  overflow: visible;
  position: relative;
  padding: 0px 10px 0 10px;
}
@media (max-width: 767px) {
  #sliderManagementNav .slide {
    width: 100%;
  }
}
#sliderManagementNav .slide .management-img-wrap {
  overflow: hidden;
  height: 0;
  padding-top: 123%;
  position: relative;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  #sliderManagementNav .slide .management-img-wrap {
    margin-top: 123%;
  }
}
#sliderManagementNav .slide .management-img,
#sliderManagementNav .slide .management-img-cb {
  position: absolute;
  min-width: 0;
  min-height: 0;
  max-width: none;
  max-height: none;
  width: auto;
  height: 100%;
  left: -100%;
  right: -100%;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 1;
  transition: .4s;
}
#sliderManagementNav .slide .management-img {
  opacity: 0;
}
#sliderManagementNav .slide.active {
  padding: 0 10px 0 10px;
}
#sliderManagementNav .slide.active .management-img {
  display: block;
  opacity: 1;
}
#sliderManagementNav .slide.active .management-img-cb {
  opacity: 0;
  transition: none;
}
#sliderManagementNav .slide.active .management-img-wrap {
  margin-top: 0;
  padding-top: 246%;
  height: 0;
}
@font-face {
  font-family: 'Futura';
  src: url('/fonts/Futura-Bold-03.eot');
  src: local('☺'), url('/fonts/Futura-Bold-03.woff') format('woff'), url('/fonts/Futura-Bold-03.ttf') format('truetype'), url('/fonts/Futura-Bold-03.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima';
  src: url('/fonts/ProximaNovaRegular.eot');
  src: local('☺'), url('/fonts/ProximaNovaRegular.woff') format('woff'), url('/fonts/Proxima Nova Regular.ttf') format('truetype'), url('/fonts/Proxima Nova Regular.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Proxima-Bold';
  src: url('/fonts/ProximaNovaBold.eot');
  src: local('☺'), url('/fonts/ProximaNovaBold.woff') format('woff'), url('/fonts/Proxima Nova Bold.ttf') format('truetype'), url('/fonts/Proxima Nova Bold.svg') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Futura Book';
  font-weight: 'normal';
  src: url('/fonts/FuturaPTBook.eot');
  src: url('/fonts/FuturaPTBook.eot?#iefix') format('embedded-opentype'), url('/fonts/FuturaPTBook.woff') format('woff'), url('/fonts/FuturaPTBook.ttf') format('truetype'), url('/fonts/FuturaPTBook.svg#futuraptbook') format('svg');
}
@font-face {
  font-family: 'Futura Heavy';
  font-weight: 'normal';
  src: url('/fonts/FuturaPTHeavy.eot');
  src: url('/fonts/FuturaPTHeavy.eot?#iefix') format('embedded-opentype'), url('/fonts/FuturaPTHeavy.woff') format('woff'), url('/fonts/FuturaPTHeavy.ttf') format('truetype'), url('/fonts/FuturaPTHeavy.svg#futuraptheavy') format('svg');
}
@font-face {
  font-family: 'Futura Bold';
  font-weight: 'normal';
  src: url('/fonts/FuturaPTBold.eot');
  src: url('/fonts/FuturaPTBold.eot?#iefix') format('embedded-opentype'), url('/fonts/FuturaPTBold.woff') format('woff'), url('/fonts/FuturaPTBold.ttf') format('truetype'), url('/fonts/FuturaPTBold.svg#futuraptbold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Medium';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaMedium.eot');
  src: url('/fonts/ProximaNovaMedium.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaMedium.woff') format('woff'), url('/fonts/ProximaNovaMedium.ttf') format('truetype'), url('/fonts/ProximaNovaMedium.svg#proximanovamedium') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Bold';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaBold.eot');
  src: url('/fonts/ProximaNovaBold.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaBold.woff') format('woff'), url('/fonts/ProximaNovaBold.ttf') format('truetype'), url('/fonts/ProximaNovaBold.svg#proximanovabold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Regular';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaRegular.eot');
  src: url('/fonts/ProximaNovaRegular.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaRegular.woff') format('woff'), url('/fonts/ProximaNovaRegular.ttf') format('truetype'), url('/fonts/ProximaNovaRegular.svg#proximanovaregular') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Semibold';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaSemibold.eot');
  src: url('/fonts/ProximaNovaSemibold.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaSemibold.woff') format('woff'), url('/fonts/ProximaNovaSemibold.ttf') format('truetype'), url('/fonts/ProximaNovaSemibold.svg#proximanovasemibold') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Light';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaLight.eot');
  src: url('/fonts/ProximaNovaLight.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaLight.woff') format('woff'), url('/fonts/ProximaNovaLight.ttf') format('truetype'), url('/fonts/ProximaNovaLight.svg#proximanovalight') format('svg');
}
@font-face {
  font-family: 'Proxima Nova Light Italic';
  font-weight: 'normal';
  src: url('/fonts/ProximaNovaLightItalic.eot');
  src: url('/fonts/ProximaNovaLightItalic.eot?#iefix') format('embedded-opentype'), url('/fonts/ProximaNovaLightItalic.woff') format('woff'), url('/fonts/ProximaNovaLightItalic.ttf') format('truetype'), url('/fonts/ProximaNovaLightItalic.svg#proximanovalightitalic') format('svg');
}
@font-face {
  font-family: 'Lato Thin';
  font-weight: 'normal';
  src: url('/fonts/Lato-Thin.eot');
  src: url('/fonts/Lato-Thin.eot?#iefix') format('embedded-opentype'), url('/fonts/Lato-Thin.woff') format('woff'), url('/fonts/Lato-Thin.ttf') format('truetype'), url('/fonts/Lato-Thin.svg#lato-thin') format('svg');
}
body {
  font-family: 'Proxima', sans-serif;
  font-size: 16px;
}
p {
  color: #000;
}
.side-breadcrumb {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}
.side-breadcrumb.fade-out {
  display: none;
}
@media only screen and (max-width: 1600px) {
  .side-breadcrumb {
    display: none;
  }
}
.side-breadcrumb ul {
  padding: 0;
}
.side-breadcrumb ul li {
  width: 200px;
  text-align: right;
  position: relative;
  padding: 10px 22px 10px 0;
  list-style: none;
  font-size: 0.8em;
  opacity: 0.5;
}
.side-breadcrumb ul li a {
  color: #283044;
  text-shadow: 0 0 1px #f2f2f2;
}
.side-breadcrumb ul li:after {
  position: absolute;
  right: 0;
  top: 14px;
  width: 13px;
  height: 13px;
  content: '';
  border: 1px solid #283044;
  border-radius: 20px;
  opacity: 0.5;
}
.side-breadcrumb ul li:before {
  width: 1px;
  height: 18px;
  background: #b7bac0;
  right: 6px;
  top: -8px;
  position: absolute;
  content: '';
}
.side-breadcrumb ul li:first-child:before {
  display: none;
}
.side-breadcrumb ul li.active {
  opacity: 1;
}
.side-breadcrumb ul li.active:after {
  background: #283044;
  border-color: #283044;
  opacity: 1;
}
.side-breadcrumb.white ul li a {
  color: #fff;
}
.side-breadcrumb.white ul li:after {
  border: 1px solid #fff;
}
.side-breadcrumb.white ul li:before {
  background: #a9b3be;
}
.side-breadcrumb.white ul li.active {
  opacity: 1;
}
.side-breadcrumb.white ul li.active:after {
  background: #fff;
  border-color: #fff;
}
.page-submenu {
  margin-top: 100px;
  background: #000;
  display: -ms-flexbox;
  display: flex;
}
.page-submenu .container {
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
}
.page-submenu ul {
  padding: 0;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}
.page-submenu ul li {
  list-style: none;
}
.page-submenu ul li a {
  color: #fff;
  font-size: 1.15em;
  padding: 18px 5px;
  display: block;
  text-decoration: none;
  opacity: 0.5;
  transition: 0.3s;
}
.page-submenu ul li a:hover {
  opacity: 1;
}
.page-submenu ul li.active a {
  opacity: 1;
  font-size: 1.1em;
}
@media only screen and (max-width: 768px) {
  .page-submenu {
    height: 50px;
    display: block;
    overflow: hidden;
    position: relative;
    margin-top: 60px;
  }
  .page-submenu:after {
    position: absolute;
    right: 0;
    top: 0;
    height: 50px;
    width: 30px;
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    content: '';
  }
  .page-submenu .container {
    overflow: auto;
    position: relative;
  }
  .page-submenu ul {
    white-space: nowrap;
    position: relative;
  }
  .page-submenu ul li a {
    padding: 14px 10px;
    font-size: 0.9em;
    font-weight: 500;
  }
  .page-submenu ul li.active a {
    font-size: 0.9em;
  }
}
@media only screen and (max-width: 600px) {
  .page-submenu {
    margin-top: 60px;
  }
  .page-submenu ul {
    -ms-flex-pack: start;
        justify-content: flex-start;
  }
}
#time-line-points {
  width: 100%;
}
#time-line-points .point-box {
  width: 100%;
  position: relative;
  min-height: 200px;
}
@media only screen and (max-width: 992px) {
  #time-line-points .point-box {
    min-height: 250px;
    text-align: center;
  }
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box {
    min-height: inherit;
  }
}
#time-line-points .point-box .point-icon {
  position: relative;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  background: #008ccf;
  -ms-flex-pack: center;
      justify-content: center;
}
#time-line-points .point-box .point-icon img {
  width: 60px;
}
#time-line-points .point-box .point-icon:after {
  position: absolute;
  left: 50%;
  bottom: -120px;
  height: 120px;
  width: 1px;
  background: #80838c;
  content: '';
}
@media only screen and (max-width: 992px) {
  #time-line-points .point-box .point-icon:after {
    bottom: -200px;
    height: 200px;
  }
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-icon:after {
    top: -97px;
    height: 70px;
    background: #9b9ea7;
  }
}
#time-line-points .point-box .point-desc {
  position: absolute;
  width: 43%;
  top: 34px;
}
@media only screen and (max-width: 992px) {
  #time-line-points .point-box .point-desc {
    width: 39%;
  }
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-desc {
    position: relative;
    width: 100%;
    text-align: center;
    top: 0;
    margin-top: 14px;
  }
}
#time-line-points .point-box .point-desc h2 {
  font-size: 1.5em;
  font-weight: 700;
  color: #008ccf;
  margin-bottom: 12px;
  font-family: 'Futura';
}
#time-line-points .point-box .point-desc p {
  max-width: 450px;
  color: #7d818b;
  font-size: 1em;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-desc p {
    margin: 0 auto 120px auto;
    max-width: inherit;
    color: #283044;
    padding: 0 20px;
    font-size: 1.1em;
  }
}
#time-line-points .point-box .point-desc:after {
  position: absolute;
  height: 1px;
  width: 20px;
  background: #80838c;
  content: '';
  top: 15px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-desc:after {
    display: none;
  }
}
#time-line-points .point-box .point-desc.on-left {
  left: 0;
  text-align: right;
  padding-right: 10px;
}
#time-line-points .point-box .point-desc.on-left p {
  float: right;
}
#time-line-points .point-box .point-desc.on-left:after {
  right: -30px;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-desc.on-left {
    text-align: center;
    padding: 0;
  }
}
#time-line-points .point-box .point-desc.on-right {
  right: 0;
  text-align: left;
  padding-left: 10px;
}
#time-line-points .point-box .point-desc.on-right:after {
  left: -30px;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box .point-desc.on-right {
    text-align: center;
    padding: 0;
  }
}
#time-line-points .point-box:last-child .point-icon:after {
  display: none;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box:last-child .point-icon:after {
    display: block;
  }
}
#time-line-points .point-box:last-child .point-desc p {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  #time-line-points .point-box:first-child .point-icon:after {
    display: none;
  }
}
#content .container,
header .container,
footer .container {
  max-width: 1200px;
  padding: 0;
}
#content {
  background: #f2f2f2;
  z-index: 2;
  position: relative;
}
#content h1,
#content .h1 {
  font-size: 2.6em;
  color: #283044;
  text-transform: uppercase;
  font-family: 'Futura';
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  #content h1,
  #content .h1 {
    font-size: 2.2em;
    padding: 0 10px;
  }
}
@media only screen and (max-width: 480px) {
  #content h1,
  #content .h1 {
    font-size: 1.75em;
  }
}
@media (max-width: 1240px) {
  #content .container {
    padding: 0 15px;
  }
}
#content .relative {
  position: relative;
}
#content .white-bg {
  background: #fff;
}
#content .black-bg {
  background: #000;
  color: #fff;
}
#content .title-head {
  margin-bottom: 60px;
}
#content .title-head p {
  font-size: 1.2em;
  font-weight: 500;
  color: #283044;
  margin-top: 50px;
}
#content .title-head.margined {
  margin-bottom: 120px;
}
@media only screen and (max-width: 1200px) {
  #content .title-head.margined {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 768px) {
  #content .title-head.margined {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 768px) {
  #content .title-head {
    margin-bottom: 30px;
  }
}
#content section {
  position: relative;
  padding: 80px 0;
}
@media only screen and (max-width: 1200px) {
  #content section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  #content section {
    padding: 30px 0;
  }
}
#content section:first-child {
  padding-top: 80px;
}
@media only screen and (max-width: 768px) {
  #content section:first-child {
    padding-top: 40px;
  }
}
#content section.smaller-padding {
  padding: 40px 0;
}
#content section#who-we-looking-for .title-head {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #content section#who-we-looking-for .title-head {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer {
    overflow: hidden;
  }
}
#content section#tender-process .title-head p {
  font-family: 'Proxima-Bold';
  font-size: 1.1em;
}
@media only screen and (max-width: 768px) {
  #content section#tender-process .title-head p {
    font-size: 1.3em;
  }
}
#content section#our-life-gallery .look-forward-to {
  margin-bottom: 50px;
}
#content section#our-life-gallery .look-forward-to .video-wrap iframe {
  width: 100%;
  height: auto;
  min-height: 270px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
#content section#our-life-gallery .look-forward-to a {
  max-width: 100%;
  display: block;
}
#content section#our-life-gallery .look-forward-to a > img {
  margin-top: -25px;
  margin-left: -25px;
}
@media (max-width: 1320px) {
  #content section#our-life-gallery .look-forward-to a > img {
    max-width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .look-forward-to a > img {
    margin-right: -15px;
    margin-left: -15px;
    max-width: calc(100% + 30px);
  }
}
#content section#our-life-gallery .look-forward-to .lft-list .lft-item {
  font-size: 1.1em;
  padding-left: 25px;
  position: relative;
  margin-bottom: 25px;
}
#content section#our-life-gallery .look-forward-to .lft-list .lft-item:before {
  width: 14px;
  height: 14px;
  border-radius: 8px;
  background: #008ccf;
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
}
#content section#our-life-gallery .look-forward-to .lft-list .lft-item strong {
  color: #008ccf;
  font-family: 'Futura';
  font-weight: 700;
}
#content section#job-detail p {
  color: #283044;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 1.1em;
  font-family: 'Proxima';
}
#content section#job-detail strong {
  font-family: 'Proxima-Bold';
}
#content section#job-detail .title-head p {
  font-weight: 600;
  font-size: 1.35em;
}
#content section#job-detail.occupied .job-desc {
  height: 180px;
  overflow: hidden;
  position: relative;
}
#content section#job-detail.occupied .job-desc:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f2f2f2 100%);
  content: '';
}
#content section#job-detail.occupied .occupied-info {
  padding-bottom: 150px;
  padding-top: 80px;
}
#content section#job-detail.occupied .occupied-info p {
  font-size: 1.4em;
  font-weight: 700;
  width: auto;
  display: inline-block;
  margin-bottom: 0;
  font-family: 'Proxima-Bold';
}
#content section#job-detail.occupied .occupied-info img {
  transform: rotate(-133deg);
  margin: 0 15px;
}
#content section#job-detail.occupied .occupied-info .button {
  padding: 9px 20px 11px 20px;
  width: 180px;
}
@media only screen and (max-width: 1200px) {
  #content section#job-detail.occupied .occupied-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 90px;
  }
  #content section#job-detail.occupied .occupied-info p {
    width: calc(80% - 250px);
  }
}
@media only screen and (max-width: 768px) {
  #content section#job-detail.occupied .occupied-info {
    -ms-flex-direction: column;
        flex-direction: column;
    padding-bottom: 30px;
    padding-top: 20px;
  }
  #content section#job-detail.occupied .occupied-info img {
    transform: rotate(-62deg);
    margin: 15px;
  }
  #content section#job-detail.occupied .occupied-info p {
    width: 100%;
  }
  #content section#job-detail.occupied .occupied-info .button {
    width: 250px;
  }
}
#content section#job-detail .open-form .arrow {
  transform: rotate(0);
  transform-origin: center;
  transition: 0.3s;
}
#content section#job-detail .open-form.active {
  background: #283044;
}
#content section#job-detail .open-form.active .arrow {
  transform: rotate(180deg);
}
#content section#job-detail .title-head {
  margin-bottom: 30px;
}
#content section#job-detail .container ul {
  width: 100%;
  padding-left: 0;
  margin: 0;
}
#content section#job-detail .container ul li {
  padding-left: 35px;
  position: relative;
  list-style: none;
  font-weight: 500;
}
#content section#job-detail .container ul li:before {
  left: 1px;
  top: 11px;
  content: '';
  background: #000;
  width: 4px;
  height: 4px;
  border-radius: 10px;
  position: absolute;
}
#content section#job-detail .title-head p {
  text-transform: uppercase;
}
#content section .slider-back-text {
  font-size: 80px;
  font-weight: 800;
  color: #e9eaec;
  position: absolute;
  letter-spacing: 3px;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -8px;
  z-index: 0;
  width: 100%;
  text-align: center;
  font-family: 'Futura';
}
#content section .slider-back-text.margined {
  margin-top: -65px;
}
@media only screen and (max-width: 992px) {
  #content section .slider-back-text.margined {
    margin-top: -55px;
  }
}
@media only screen and (max-width: 768px) {
  #content section .slider-back-text.margined {
    margin-top: -35px !important;
  }
}
@media only screen and (max-width: 480px) {
  #content section .slider-back-text.margined {
    margin-top: -20px;
  }
}
@media only screen and (max-width: 1200px) {
  #content section .slider-back-text {
    font-size: 70px;
  }
}
@media only screen and (max-width: 992px) {
  #content section .slider-back-text {
    font-size: 60px;
  }
}
@media only screen and (max-width: 768px) {
  #content section .slider-back-text {
    font-size: 50px;
    letter-spacing: 1px;
  }
}
@media only screen and (max-width: 600px) {
  #content section .slider-back-text {
    font-size: 40px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #content section .slider-back-text {
    font-size: 30px;
    max-width: 200px;
    text-align: center;
    line-height: 1.3em;
    margin-top: 10px;
  }
}
#content section .slider-back-text.big-font {
  font-size: 54px;
  line-height: 1.4em;
  margin-top: -120px;
  color: #283044;
}
#content section .slider-back-text.big-font strong {
  display: block;
  font-size: 90px;
}
@media only screen and (max-width: 768px) {
  #content section .slider-back-text.big-font {
    font-size: 35px;
  }
  #content section .slider-back-text.big-font strong {
    font-size: 50px;
  }
}
@media only screen and (max-width: 600px) {
  #content section .slider-back-text.big-font {
    font-size: 25px;
    max-width: inherit;
  }
  #content section .slider-back-text.big-font strong {
    font-size: 40px;
  }
}
#content section #maybe-you {
  overflow: hidden;
  padding-top: 115px;
}
#content section #maybe-you img {
  max-width: 90%;
}
@media only screen and (max-width: 768px) {
  #content section #maybe-you .slider-back-text.margined {
    margin-top: -80px !important;
  }
}
@media only screen and (max-width: 600px) {
  #content section #maybe-you .slider-back-text.margined {
    margin-top: -56px !important;
  }
}
#content section#further {
  padding-top: 10px;
  overflow: hidden;
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  #content section#further {
    padding-top: 50px;
  }
}
#content section#further .container {
  max-width: 1200px;
}
#content section#further .stories-slider {
  height: auto;
  max-height: inherit !important;
}
@media only screen and (max-width: 480px) {
  #content section#further .stories-slider {
    padding-top: 70px;
  }
}
#content section#further .stories-slider .story-box {
  width: 100%;
  max-width: 600px;
  -ms-flex-align: start;
      align-items: flex-start;
  float: none;
  height: auto;
  margin: 0 auto 30px auto;
}
@media only screen and (max-width: 992px) {
  #content section#further .stories-slider .story-box {
    width: 100%;
    margin: 0 auto;
    float: none;
  }
}
#content section#further .stories-slider .story-box .desc-part {
  width: calc(100% - 250px);
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  #content section#further .stories-slider .story-box .desc-part {
    padding-left: 15px;
    width: calc(100% - 115px);
  }
}
#content section#further .stories-slider .story-box .photo-part {
  width: 220px;
  height: 350px;
  float: left;
  filter: none;
}
@media only screen and (max-width: 768px) {
  #content section#further .stories-slider .story-box .photo-part {
    width: 97px;
    height: 127px;
  }
}
#content section#further .stories-slider .story-box .photo-part img {
  opacity: 1;
}
#content section#further .stories-slider .story-box .photo-part:after {
  display: none;
}
#content section#further .stories-slider .story-box .name h2 {
  margin-top: 10px;
}
@media only screen and (max-width: 992px) {
  #content section#further .stories-slider .story-box .name {
    width: 100%;
    visibility: visible;
    padding-left: 0;
    margin-top: 0;
  }
  #content section#further .stories-slider .story-box .name h2 {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 768px) {
  #content section#further .stories-slider .story-box .name {
    max-width: inherit;
  }
  #content section#further .stories-slider .story-box .name h2 {
    margin-top: 0;
  }
}
@media only screen and (max-width: 768px) {
  #content section#further .stories-slider .story-box {
    max-width: inherit;
  }
}
#content section#our-stories {
  overflow: hidden;
  padding-bottom: 10px;
}
#content section.persons-section .container {
  max-width: 1900px;
  padding: 0;
}
#content section.persons-section .owl-carousel {
  position: relative;
}
#content section.persons-section .stories-slider {
  margin: 50px 0 80px 0;
  z-index: 1;
  position: relative;
  height: 630px;
  padding-top: 90px;
  max-height: 1135px;
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider {
    height: auto;
    max-height: 800px;
    margin: 35px 0 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  #content section.persons-section .stories-slider {
    max-height: 850px;
    padding-top: 50px;
    margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 480px) {
  #content section.persons-section .stories-slider {
    max-height: 1000px;
  }
}
@media only screen and (max-width: 350px) {
  #content section.persons-section .stories-slider {
    max-height: 1130px;
  }
}
#content section.persons-section .stories-slider .story-box {
  padding: 0 10px;
  margin: 0 auto;
  height: 530px;
  width: 225px;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider .story-box {
    opacity: 1;
    height: auto;
    display: block;
  }
}
#content section.persons-section .stories-slider .story-box .photo-part {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 215px;
  height: 270px;
  position: relative;
  overflow: hidden;
  border: none;
  filter: grayscale(100%);
  background: #283044;
}
#content section.persons-section .stories-slider .story-box .photo-part img {
  height: auto;
  width: auto;
  min-width: 101%;
  min-height: 100%;
  max-height: 110%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#content section.persons-section .stories-slider .story-box .photo-part:after {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: #283044;
  opacity: 0.5;
}
#content section.persons-section .stories-slider .story-box .desc-part {
  width: 0px;
  overflow: hidden;
  transition: 0.3s;
}
#content section.persons-section .stories-slider .story-box .desc-part p {
  font-weight: 300;
  width: 100%;
  color: #283044;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  #content section.persons-section .stories-slider .story-box .desc-part p {
    font-size: 14px;
  }
}
#content section.persons-section .stories-slider .story-box .name {
  width: 100%;
}
#content section.persons-section .stories-slider .story-box .name p {
  color: #008ccf;
  font-family: 'Proxima Nova Light';
  font-size: 18px;
  padding: 0;
  line-height: 1em;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  #content section.persons-section .stories-slider .story-box .name p {
    margin-bottom: 15px;
    font-size: 14px;
  }
}
#content section.persons-section .stories-slider .story-box .name h2 {
  margin-bottom: 6px;
  color: #283044;
  margin-top: 40px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Proxima Nova Bold";
  font-size: 30px;
}
@media (max-width: 1100px) {
  #content section.persons-section .stories-slider .story-box .name h2 {
    font-size: 22px;
  }
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider .story-box .name {
    float: left;
    width: calc(100% - 270px);
    font-size: 1.6em;
    padding-left: 30px;
    max-width: 330px;
    margin-top: 68px;
    visibility: hidden;
  }
}
@media (max-width: 500px) {
  #content section.persons-section .stories-slider .story-box .name {
    margin-top: 0;
    width: 100%;
    padding-left: 0;
  }
}
#content section.persons-section .stories-slider .owl-stage {
  left: -18.3%;
}
@media (max-width: 1800px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -20%;
  }
}
@media (max-width: 1700px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -21.4%;
  }
}
@media (max-width: 1600px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -22.6%;
  }
}
@media (max-width: 1500px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -24.3%;
  }
}
@media (max-width: 1400px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -26.2%;
  }
}
@media (max-width: 1300px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -28.3%;
  }
}
@media only screen and (max-width: 1200px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -30.7%;
  }
}
@media (max-width: 1100px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -33.7%;
  }
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -38%;
  }
}
@media (max-width: 800px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -35.4%;
  }
}
@media only screen and (max-width: 768px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -34.8%;
  }
}
@media (max-width: 700px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -32%;
  }
}
@media only screen and (max-width: 600px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -31%;
  }
}
@media (max-width: 500px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -27%;
  }
}
@media (max-width: 420px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -21.5%;
  }
}
@media only screen and (max-width: 350px) {
  #content section.persons-section .stories-slider .owl-stage {
    left: -14%;
  }
}
#content section.persons-section .stories-slider .owl-stage .center {
  width: 920px !important;
}
#content section.persons-section .stories-slider .owl-stage .center .story-box {
  opacity: 1;
  width: 900px;
  -ms-flex-align: start;
      align-items: flex-start;
  padding: 0 20px;
}
#content section.persons-section .stories-slider .owl-stage .center .story-box .desc-part {
  width: calc(100% - 420px);
  margin-left: 60px;
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider .owl-stage .center .story-box .desc-part {
    width: 100%;
    margin-left: 0;
    padding-top: 25px;
    visibility: visible;
  }
}
#content section.persons-section .stories-slider .owl-stage .center .story-box .photo-part {
  width: 360px;
  height: 530px;
  filter: none;
}
#content section.persons-section .stories-slider .owl-stage .center .story-box .photo-part img {
  opacity: 1;
}
#content section.persons-section .stories-slider .owl-stage .center .story-box .photo-part:after {
  display: none;
}
#content section.persons-section .stories-slider .owl-stage .center .name {
  visibility: visible;
}
@media only screen and (max-width: 992px) {
  #content section.persons-section .stories-slider .owl-stage .center {
    width: 100vw !important;
  }
  #content section.persons-section .stories-slider .owl-stage .center .story-box {
    width: 100%;
  }
}
#content section.persons-section .stories-slider .owl-dots {
  display: none;
}
#content section.persons-section .stories-slider .owl-nav {
  /*@media @tablet-port {
                        display: none;
                    }*/
}
#content section.persons-section .stories-slider .owl-nav .owl-next {
  position: absolute;
  right: 6vw;
  top: -20px;
}
#content section.persons-section .stories-slider .owl-nav .owl-prev {
  position: absolute;
  left: 6vw;
  top: -20px;
}
#content section.persons-section .stories-slider .owl-nav button {
  transform: scale(1);
  transform-origin: center;
  transition: 0.3s;
}
#content section.persons-section .stories-slider .owl-nav button:hover {
  background: transparent;
  transform: scale(1.1);
}
#content section.persons-section .stories-slider .owl-nav button:focus {
  outline: none;
}
#content section.persons-section.non-slidering .container {
  max-width: 1020px;
}
#content section.persons-section.non-slidering .story-box {
  opacity: 1;
}
#content section#what-we-offer {
  background: #fff;
}
#content section#what-we-offer span.blue {
  color: #008ccf;
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer .title-head p {
    margin-top: 20px;
  }
}
#content section#what-we-offer p {
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}
#content section#what-we-offer .grey-bg {
  background: #f5f5f5;
  padding: 65px 0 15px 0;
}
#content section#what-we-offer .grey-bg h2.h1 {
  max-width: 1100px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
}
#content section#what-we-offer .benefits-list {
  max-width: 900px;
  margin: 0 auto;
}
#content section#what-we-offer .benefits-list .benefit-item {
  margin-bottom: 55px;
}
#content section#what-we-offer .benefits-list .benefit-item .benefit-icon img {
  min-width: 120px;
  min-height: 120px;
}
#content section#what-we-offer .benefits-list .benefit-item p {
  font-family: 'Futura';
  font-weight: 800;
  font-size: 1.3em;
  margin: 0 auto;
  max-width: 200px;
  line-height: 1.3em;
  color: #283044;
  margin-top: 20px;
}
#content section#what-we-offer .offer-list {
  text-align: center;
  margin-top: -15px;
  padding-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer .offer-list .mt-sm-4 {
    margin-top: 50px;
  }
}
#content section#what-we-offer .offer-list img {
  max-width: 100%;
}
#content section#what-we-offer .offer-list h3 {
  text-transform: uppercase;
  font-family: 'Futura';
  font-weight: 800;
  font-size: 1.7em;
  margin-top: 0;
}
#content section#what-we-offer .offer-list .steps-list .step-item {
  font-family: 'Futura';
  font-weight: 800;
  font-size: 1.6em;
}
#content section#what-we-offer .offer-list .steps-list .step-item:after {
  position: relative;
  display: block;
  text-align: center;
  width: 50px;
  height: 50px;
  content: '';
  background: url(/images/icons/arrow-d.svg);
  background-position: center;
  background-size: 50px;
  margin: 3px auto;
}
#content section#what-we-offer .offer-list .steps-list .step-item:last-child:after {
  display: none;
}
#content section#what-we-offer .offer-list .offer-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer .offer-list .offer-item {
    max-width: 370px;
    margin: 0 auto 40px auto;
  }
}
#content section#what-we-offer .offer-list .offer-item.smaller img {
  height: 170px;
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer .offer-list .offer-item.smaller .offer-number {
    left: 105px !important;
    top: -50px;
  }
}
#content section#what-we-offer .offer-list .offer-item img {
  height: 265px;
  margin: 0 auto;
}
#content section#what-we-offer .offer-list .offer-item img.flipped {
  transform: scaleX(-1);
  filter: FlipH;
  -ms-filter: "FlipH";
}
#content section#what-we-offer .offer-list .offer-item h3 {
  font-size: 1.25em;
  color: #2c3d50;
  max-width: 240px;
  margin-top: 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  min-height: 42px;
  font-family: 'PT Sans', sans-serif;
}
#content section#what-we-offer .offer-list .offer-item .offer-number {
  color: #e0e1e3;
  position: absolute;
  font-size: 120px;
  font-weight: 800;
  z-index: -1;
  top: 49px;
  font-family: 'Futura', "Montserrat", sans-serif;
}
#content section#what-we-offer .offer-list .offer-item .offer-number.pos-1 {
  left: 60px;
  top: 55px;
}
@media only screen and (max-width: 992px) {
  #content section#what-we-offer .offer-list .offer-item .offer-number.pos-1 {
    left: 52px;
    top: 59px;
  }
}
@media only screen and (max-width: 768px) {
  #content section#what-we-offer .offer-list .offer-item .offer-number.pos-1 {
    left: 52px;
    top: 59px;
  }
}
#content section#what-we-offer .offer-list .offer-item .offer-number.pos-2 {
  left: 116px;
  top: 45px;
}
@media only screen and (max-width: 992px) {
  #content section#what-we-offer .offer-list .offer-item .offer-number.pos-2 {
    left: 95px;
    top: 45px;
  }
}
#content section#what-we-offer .offer-list .offer-item .offer-number.pos-3 {
  left: 28px;
}
@media only screen and (max-width: 992px) {
  #content section#what-we-offer .offer-list .offer-item .offer-number.pos-3 {
    left: 15px;
  }
}
@media only screen and (max-width: 480px) {
  #content section#what-we-offer .offer-list .offer-item .offer-number {
    margin-left: -20px;
  }
}
#content .job-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  width: 100%;
  margin-top: 50px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  #content .job-nav {
    margin-top: 10px;
  }
}
#content .job-nav .button {
  width: auto;
  padding: 9px 15px 11px 15px;
}
#content .job-nav .button img {
  width: 12px;
}
#content .job-nav .button.social {
  padding: 3px 13px 4px 13px;
  position: relative;
  top: -1px;
}
#content .job-nav .button.social img {
  height: 41px;
  width: auto;
}
@media only screen and (max-width: 992px) {
  #content .job-nav {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  #content .job-nav > div .button {
    width: 250px;
    display: block;
    margin: 0 auto 20px auto;
  }
  #content .job-nav > div .button.social {
    width: 80px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(calc(-100% - 20px));
    margin: 0 10px;
  }
}
#content p.title-subtext {
  font-size: 1.2em;
  font-weight: 500;
  max-width: 830px;
  margin: 0 auto;
  line-height: 1.9em;
  color: #283044;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  #content p.title-subtext {
    line-height: 1.7em;
  }
}
@media only screen and (max-width: 768px) {
  #content .tablet-text-center {
    text-align: center !important;
  }
}
#content .inpage-claim {
  background: url('/images/backgrounds/inpage-claim.jpg');
  background-position: center;
  text-align: center;
  height: 215px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  line-height: 1.5em;
}
@media only screen and (max-width: 768px) {
  #content .inpage-claim {
    height: 320px;
    background-size: cover;
  }
}
#content .inpage-claim h2 {
  color: #008ccf;
  font-size: 2.2em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5em;
  letter-spacing: 2px;
}
@media only screen and (max-width: 768px) {
  #content .inpage-claim h2 {
    margin-bottom: 30px;
  }
}
#content .inpage-claim p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1em;
}
@media only screen and (max-width: 768px) {
  #content .inpage-claim p {
    font-size: 1.1em;
  }
}
#content .hope-boxes {
  text-align: center;
  margin: 20px 0 30px 0;
}
@media only screen and (max-width: 768px) {
  #content .hope-boxes {
    margin: 0;
  }
}
#content .hope-boxes img {
  width: auto;
  max-width: 140px;
  height: 100px;
  margin-bottom: 20px;
}
#content .hope-boxes p {
  position: relative;
  font-size: 1.05em;
  padding: 0 10px 30px 10px;
  color: #283044;
  max-width: 320px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  #content .hope-boxes p {
    margin-bottom: 50px;
  }
}
#content .hope-boxes p:after {
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  width: 45px;
  height: 2px;
  content: '';
  background: #008ccf;
  bottom: -5px;
}
#content .job-tablet-contact {
  width: 100%;
  max-width: 400px;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin: 30px auto 0 auto;
  display: none;
}
@media only screen and (max-width: 768px) {
  #content .job-tablet-contact {
    display: -ms-flexbox;
    display: flex;
  }
}
#content .job-tablet-contact h3 {
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 0;
  line-height: 1.4em;
}
#content .job-tablet-contact img {
  width: 150px;
  height: 190px;
  max-width: 260px;
}
@media only screen and (max-width: 480px) {
  #content .job-tablet-contact img {
    width: 120px;
    height: 145px;
  }
}
#content .job-tablet-contact .info {
  padding-left: 18px;
  width: calc(100% - 170px);
}
#content .job-tablet-contact .info p {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  #content .job-tablet-contact .info {
    margin-bottom: 85px;
  }
}
@media only screen and (max-width: 480px) {
  #content .job-tablet-contact .info {
    width: calc(100% - 130px);
  }
}
#content #positions-list {
  background: #fff;
  margin-bottom: 30px;
  margin-top: -50px;
  border-top: 50px solid #f2f2f2;
}
#content #positions-list h2 {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 35px;
  color: #283044;
  font-family: 'Proxima-Bold';
  font-weight: 800;
}
#content #positions-list ul {
  padding: 0;
}
#content #positions-list ul li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  margin-bottom: 25px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  #content #positions-list ul li {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    padding-bottom: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e5e5e5;
  }
}
#content #positions-list ul li .position-title {
  font-size: 1.45em;
  font-weight: 500;
  color: #283044;
  transition: 0.3s;
  font-family: 'Proxima-Bold';
}
#content #positions-list ul li .position-title:hover {
  color: #008ccf;
  text-decoration: none;
}
#content #positions-list ul li .position-title img {
  height: 35px;
  margin: 0 5px;
}
@media only screen and (max-width: 1200px) {
  #content #positions-list ul li .position-title img {
    width: 30px;
  }
}
@media only screen and (max-width: 480px) {
  #content #positions-list ul li .position-title img {
    width: 25px;
    margin: 0 2px;
  }
}
@media only screen and (max-width: 992px) {
  #content #positions-list ul li .position-title {
    font-size: 1.1em;
  }
  #content #positions-list ul li .position-title .job-icons {
    position: absolute;
    right: 0;
    bottom: 15px;
  }
}
#content #positions-list ul li .region {
  font-style: italic;
  font-weight: 500;
  min-width: 140px;
  text-align: right;
}
@media only screen and (max-width: 992px) {
  #content #positions-list ul li .region {
    text-align: left;
    margin-top: 18px;
    margin-bottom: 7px;
  }
}
#content #positions-list ul li .region:hover {
  text-decoration: none;
  color: #000;
}
#content .warning-message {
  background: #d01c21;
  text-align: center;
  padding: 13px 0;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
  font-size: 1.1em;
}
#content.subpage .container {
  padding-top: 140px;
}
@media only screen and (max-width: 1200px) {
  #content.subpage .container {
    padding-top: 90px;
  }
}
@media only screen and (max-width: 992px) {
  #content.subpage .container {
    padding-top: 50px;
  }
}
#content h1.with-shadow {
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.25em;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
  max-width: 480px;
}
#content h2 {
  font-size: 3em;
  margin-bottom: 0;
  color: #000;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  #content h2 {
    font-size: 2.3em;
  }
}
@media only screen and (max-width: 480px) {
  #content h2 {
    font-size: 1.8em;
  }
}
#content h3 {
  font-size: 1.5em;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 768px) {
  #content h3 {
    font-size: 1.3em;
  }
}
@media only screen and (max-width: 480px) {
  #content h3 {
    font-size: 1.2em;
  }
}
#content h4 {
  font-size: 1.1em;
  line-height: 1.5em;
  margin-top: 25px;
}
#content p {
  line-height: 1.7em;
  font-size: 0.9em;
}
#content .table-responsive {
  width: 100%;
  margin: 60px 0;
  overflow: auto;
  border: none;
}
#content .table-responsive table {
  width: 100%;
  font-size: 0.95em;
  background: #fff;
  min-width: 400px;
}
#content .table-responsive table tr th {
  background: #e6e6e6;
  font-weight: 700;
  color: #000;
}
#content .table-responsive table tr th,
#content .table-responsive table tr td {
  padding: 18px 25px;
}
@media only screen and (max-width: 768px) {
  #content .table-responsive {
    margin: 30px 0;
  }
  #content .table-responsive table tr th,
  #content .table-responsive table tr td {
    padding: 15px 20px;
    font-size: 0.9em;
  }
}
#content .photo-wrap {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
#content .photo-wrap img {
  position: absolute;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  max-height: 110%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  #content .photo-wrap {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  #content .photo-wrap {
    height: 300px;
  }
}
#content #error-404 {
  text-align: center;
  background: #fff;
  padding-top: 200px;
}
#content #error-404 img {
  max-width: 100%;
}
#content #error-404 h1 {
  font-size: 1.05em;
  color: #2c3d50;
  margin-top: -34px;
  text-transform: none;
  font-weight: 400;
  font-family: Proxima, sans-serif;
}
#content #error-404 h2 {
  font-size: 1.3em;
  color: #2c3d50;
  margin-top: 100px;
}
#content #error-404 h2 a {
  color: #008ccf;
}
@media only screen and (max-width: 768px) {
  #content #error-404 {
    padding-top: 150px;
  }
  #content #error-404 h1 {
    color: #979e8f;
    font-size: 1.3em;
    margin-top: 20px;
  }
}
.button {
  text-decoration: none;
  background: #000;
  color: #fff;
  padding: 9px 20px 11px 20px;
  width: 210px;
  font-size: 1.2em;
  text-align: center;
  display: inline-block;
  transition: 0.3s;
  border: none;
}
.button.with-icon {
  padding: 15px 35px 15px 50px;
}
.button img {
  margin-left: 10px;
  transition: 0.3s;
  position: relative;
  left: 0;
}
.button:hover {
  background: #283044;
  text-decoration: none;
  color: #fff;
}
.button.blue {
  background: #283044;
}
.button.blue:hover {
  background: #000;
}
@media only screen and (max-width: 480px) {
  .button {
    width: 270px;
    padding: 11px 20px;
  }
}
.fancybox-navigation .fancybox-button {
  top: 50% !important;
}
.fancybox-button--zoom {
  display: none !important;
}
#content section#our-life-gallery {
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery {
    padding-bottom: 80px;
  }
}
#content section#our-life-gallery h1 {
  color: #fff;
}
#content section#our-life-gallery .side-breadcrumb {
  z-index: 2;
}
#content section#our-life-gallery .side-breadcrumb ul li {
  color: #fff;
}
#content section#our-life-gallery .side-breadcrumb ul li:after {
  border-color: #fff;
}
#content section#our-life-gallery .side-breadcrumb ul li.active {
  color: #fff;
}
#content section#our-life-gallery .side-breadcrumb ul li.active:after {
  background: #fff;
  border-color: #fff;
}
#content section#our-life-gallery .slick-center .item {
  opacity: 1;
}
#content section#our-life-gallery .item {
  opacity: 0.5;
  transition: 0.3s;
}
#content section#our-life-gallery .item.slick-center {
  opacity: 1;
}
#content section#our-life-gallery .slick-nav .slick-next {
  position: absolute;
  right: 0;
  padding-right: 80px;
  top: 0;
  text-align: right;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.80155812) 100%);
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-nav .slick-next {
    padding-right: 0px;
    background: transparent;
    top: initial;
    bottom: -50px !important;
    right: 5px;
  }
}
#content section#our-life-gallery .slick-nav .slick-next:before {
  display: none;
}
#content section#our-life-gallery .slick-nav .slick-prev {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 80px;
  text-align: left;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.80155812) 100%);
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-nav .slick-prev {
    padding-left: 0px;
    background: transparent;
    top: initial;
    bottom: -50px !important;
    left: 5px;
  }
}
#content section#our-life-gallery .slick-nav .slick-prev:before {
  display: none;
}
@media only screen and (max-width: 1200px) {
  #content section#our-life-gallery .slick-nav .slick-next,
  #content section#our-life-gallery .slick-nav .slick-prev {
    top: 67px;
  }
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-nav .slick-next,
  #content section#our-life-gallery .slick-nav .slick-prev {
    bottom: 40px;
    top: inherit;
    height: auto;
  }
}
#content section#our-life-gallery .slick-nav button {
  transform: scale(1);
  transform-origin: center;
  width: 300px;
  transition: 0.3s;
  z-index: 99;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-nav button {
    width: 40px !important;
  }
}
#content section#our-life-gallery .slick-nav button:hover img {
  transform: scale(1.1);
}
#content section#our-life-gallery .slick-nav button:focus {
  outline: none;
}
#content section#our-life-gallery .slick-nav button.slick-disabled {
  opacity: 0.3;
  cursor: default;
}
#content section#our-life-gallery .slick-nav button img {
  width: 70px;
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-nav button img {
    width: 30px;
  }
}
#content section#our-life-gallery .slick-dots {
  bottom: -41px;
}
#content section#our-life-gallery .slick-dots li {
  margin: 0 1px;
}
#content section#our-life-gallery .slick-dots li button {
  height: 17px;
  width: 17px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background: transparent;
}
#content section#our-life-gallery .slick-dots li button:before {
  color: transparent;
}
#content section#our-life-gallery .slick-dots li.slick-active button {
  border-color: #2c3d50;
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .slick-dots {
    max-width: 63%;
    transform: translate(-50%, 0%);
    left: 50%;
    bottom: inherit;
    top: 419px;
  }
}
#content section#our-life-gallery .photo-box {
  overflow: hidden;
  position: relative;
  height: 445px;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  #content section#our-life-gallery .photo-box {
    height: 400px;
    max-width: 90vw;
    padding: 0;
    margin: 0 5px;
  }
  #content section#our-life-gallery .photo-box img {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}
#content section#our-life-gallery .photo-box img {
  /* width: auto;
                    min-width: auto;*/
  min-height: 100%;
  /*max-height: 120%;
                    position: absolute;
                    left: 50%;
                    top: 50%;
                    transform: translate(-50%, -50%);*/
}
#content section#our-life-gallery .photo-box a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#content section#our-life-gallery .photo-box .photo-desc {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  opacity: 0;
  -ms-flex-direction: column;
      flex-direction: column;
  transition: 0.3s;
  padding: 30px 50px;
  text-align: left;
}
#content section#our-life-gallery .photo-box .photo-desc:after {
  width: 50px;
  height: 50px;
  background-image: url('/images/icons/loupe-white.svg');
  background-size: 45px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  content: '';
  transform: translate(-50%, -50%);
}
#content section#our-life-gallery .photo-box .photo-desc h3 {
  color: #fff;
  width: 100%;
  font-size: 1.6em;
}
#content section#our-life-gallery .photo-box .photo-desc p {
  color: #fff;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 0;
}
#content section#our-life-gallery .photo-box:hover .photo-desc {
  opacity: 1;
}
#content #job-form {
  padding-bottom: 30px;
  margin-top: -50px;
  border-top: 50px solid transparent;
}
#content #job-form h2 {
  font-size: 1.8em;
  text-transform: uppercase;
  margin-bottom: 50px;
  margin-top: 40px;
  color: #283044;
  font-family: 'Proxima-Bold';
  font-weight: 800;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  #content #job-form h2 {
    margin-bottom: 35px;
    margin-top: 25px;
    font-size: 1.5em;
  }
}
#content #job-form .container {
  margin-top: 0 !important;
}
#content #job-form.hide {
  display: none;
}
#content #job-form input,
#content #job-form textarea,
#content #job-form .hidden-file-input-text,
#content #job-form select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
  padding: 6px 8px;
  font-size: 1.1em;
}
#content #job-form input:-ms-input-placeholder,
#content #job-form textarea:-ms-input-placeholder {
  color: #aaaaaa;
  font-size: 1.1em;
  font-style: italic;
}
#content #job-form input::placeholder,
#content #job-form textarea::placeholder {
  color: #aaaaaa;
  font-size: 1.1em;
  font-style: italic;
}
#content #job-form .select-line label {
  margin-top: 10px;
  color: #aaaab1;
  font-size: 1.2em;
  padding-left: 8px;
  font-style: italic;
}
#content #job-form .select-line select {
  padding-left: 8px;
}
#content #job-form textarea {
  margin-bottom: 15px;
  height: 45px;
}
@media only screen and (max-width: 768px) {
  #content #job-form .text-right {
    text-align: center !important;
  }
}
#content #job-form .agree-part {
  margin-top: 10px;
}
#content #job-form .agree-part p {
  font-size: 0.9em;
  font-weight: 300;
  color: #283044;
}
#content #job-form input[type="file"] {
  width: 0;
  height: 0;
  padding: 0;
  margin-bottom: 0;
  visibility: hidden;
}
#content #job-form input[type="file"]:after {
  position: absolute;
  left: 0;
  cursor: pointer;
  top: 0;
  width: 100%;
  margin-bottom: 30px;
  padding: 6px 8px;
  content: '';
  height: 37px;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  #content #job-form input[type="file"] {
    margin-bottom: 68px;
  }
}
#content #job-form .hidden-file-input-text {
  border-bottom: 1px solid #000;
  color: #aaaaaa;
  font-size: 1.2em;
  font-style: italic;
  position: absolute;
  top: -2px;
  width: calc(100% - 30px);
  left: 15px;
}
#content #job-form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0 9px 0 0;
  top: 5px;
  position: relative;
}
#content #job-form input[type="checkbox"]:after {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  position: absolute;
  left: 0;
  content: '';
  top: 0;
}
#content #job-form input[type="checkbox"]:checked:before {
  width: 5px;
  height: 12px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(45deg);
  content: '';
  left: 8px;
  position: absolute;
  z-index: 1;
  top: 2px;
}
#content .map-box {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
}
#content .map-box embed {
  width: 600px;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  #content .map-box embed {
    width: 450px;
    padding-left: 10px;
    height: 250px;
  }
}
@media only screen and (max-width: 768px) {
  #content .map-box embed {
    width: 286px;
    height: 175px;
  }
}
#content .map-box .top-map {
  position: absolute;
  top: 0;
  left: 0;
}
#content .map-info {
  position: absolute;
  right: 80px;
  font-style: italic;
  font-weight: 500;
}
#content .map-info:after {
  width: 30px;
  position: absolute;
  height: 30px;
  content: '';
  bottom: -33px;
  left: 35%;
  transform: translateX(-50%);
  background: url('/images/icons/map-arrow.png');
  background-repeat: no-repeat;
}
@media only screen and (max-width: 768px) {
  #content .map-info {
    right: 10px;
    top: -47px;
    width: 140px;
    text-align: center;
    line-height: 1.2em;
  }
}
@media only screen and (max-width: 992px) {
  #content .map-form {
    max-width: 350px;
    margin: 20px auto;
  }
  #content .map-form .text-right {
    text-align: center !important;
  }
}
#content .map-form .hovering-icons {
  margin-bottom: 20px;
}
#content .map-form .hovering-icons .hover-icon {
  margin: 0 auto;
  cursor: pointer;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  #content .map-form .hovering-icons .hover-icon {
    padding: 0 5px;
  }
}
#content .map-form .hovering-icons .hover-icon h4 {
  margin-top: 3px;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.2em;
  transition: 0.3s;
}
@media only screen and (max-width: 480px) {
  #content .map-form .hovering-icons .hover-icon h4 {
    font-size: 0.9em;
    font-weight: 600;
  }
}
#content .map-form .hovering-icons .hover-icon img {
  width: 36px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#content .map-form .hovering-icons .hover-icon img.non-hovered {
  display: block;
}
#content .map-form .hovering-icons .hover-icon img.hovered {
  display: none;
}
#content .map-form .hovering-icons .hover-icon.active img.non-hovered {
  display: none;
}
#content .map-form .hovering-icons .hover-icon.active img.hovered {
  display: block;
}
#content .map-form .hovering-icons .hover-icon.active h4 {
  color: #008ccf;
}
#content .map-form .file-input {
  width: 1px;
  height: 1px;
  position: relative;
}
#content .map-form .file-input:before {
  position: absolute;
  content: 'Přiložte Vaše CV';
  font-style: italic;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 15px;
}
#content .map-form select {
  width: 100%;
  padding: 7px 12px;
  border: 1px solid #000;
  border-radius: 5px;
  outline: none;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 1.1em;
  color: #9b9b9b;
  position: relative;
  background-color: #fff;
  background-image: url(/images/icons/select-arrows.png);
  background-repeat: no-repeat;
  background-position: right 9px top 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
}
@media only screen and (max-width: 768px) {
  #content .map-form .button {
    width: 270px;
  }
}
#content .map-form label {
  font-weight: 500;
}
footer {
  background: #000;
  color: #FFF;
  float: left;
  width: 100%;
  position: relative;
  font-size: 16px;
  padding: 45px 10px 15px 10px;
}
footer .container {
  padding: 0;
}
footer .footer-logo {
  float: left;
  display: inline-block;
  width: 160px;
  margin: 5px 40px 20px 0;
  max-width: 30%;
}
footer .footer-logo img {
  width: 100%;
  height: auto;
  margin: 0 -4%;
}
footer .footer-text {
  float: left;
  width: 100%;
  font-family: "Proxima Nova Regular";
  padding-top: 10px;
  color: #999999;
  text-align: left;
}
footer .footer-menu {
  float: left;
  display: inline-block;
  max-width: 63%;
  width: 100%;
  font-family: "Proxima Nova Medium";
}
footer .footer-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  line-height: 1.6;
  float: left;
  clear: both;
}
footer .footer-menu ul li {
  float: left;
  padding: 0 0 8px 0;
  margin-right: 35px;
}
footer .footer-menu ul li a {
  color: #FFF;
  display: inline-block;
  text-decoration: none;
}
footer .footer-menu ul li a:hover {
  color: #008ccf;
}
footer .footer-social {
  float: right;
}
footer .footer-social a {
  padding: 5px;
  display: inline-block;
  float: left;
  margin-right: 15px;
  transform: scale(1);
  transform-origin: center;
  transition: 0.3s;
  line-height: 1;
}
footer .footer-social a:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
footer .footer-social a:last-child {
  margin-right: 0;
}
footer .footer-social img {
  width: 30px;
  height: 30px;
}
@media (max-width: 992px) {
  footer {
    padding: 20px 10px 15px 10px;
  }
  footer .footer-menu {
    width: 100%;
    max-width: 100%;
  }
  footer .footer-menu li {
    width: 100%;
    margin: 0;
  }
  footer .footer-text {
    text-align: center;
  }
}
