/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }


/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url('vhs-assets-css-13f095267b30896f667d50025c6df1b3.png') 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url('vhs-assets-css-9b1695b706c7293439496bbf67fa2c90.svg'); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 60px;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url('vhs-assets-css-c86910ae32608125544b4bc88083cc34.gif') 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
.intext li,
.section_text ol li,
.section_text ul li {
  margin-bottom: 10px;
}

@-webkit-keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-progress{to{background-position:25px 0}}.plyr{position:relative;max-width:100%;min-width:200px;font-family:Avenir,'Avenir Next','Helvetica Neue','Segoe UI',Helvetica,Arial,sans-serif;direction:ltr}.plyr,.plyr *,.plyr ::after,.plyr ::before{-webkit-box-sizing:border-box;box-sizing:border-box}.plyr a,.plyr button,.plyr input,.plyr label{-ms-touch-action:manipulation;touch-action:manipulation}.plyr:focus{outline:0}.plyr audio,.plyr video{width:100%;height:auto;vertical-align:middle;border-radius:inherit}.plyr input[type=range]{display:block;height:20px;width:100%;margin:0;padding:0;-webkit-appearance:none;-moz-appearance:none;cursor:pointer;border:none;background:0 0}.plyr input[type=range]::-webkit-slider-runnable-track{height:8px;background:0 0;border:0;border-radius:4px;-webkit-user-select:none;user-select:none}.plyr input[type=range]::-webkit-slider-thumb{-webkit-appearance:none;margin-top:-4px;position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);-webkit-box-sizing:border-box;box-sizing:border-box}.plyr input[type=range]::-moz-range-track{height:8px;background:0 0;border:0;border-radius:4px;-moz-user-select:none;user-select:none}.plyr input[type=range]::-moz-range-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box}.plyr input[type=range]::-ms-track{height:8px;background:0 0;border:0;color:transparent}.plyr input[type=range]::-ms-fill-upper{height:8px;background:0 0;border:0;border-radius:4px;-ms-user-select:none;user-select:none}.plyr input[type=range]::-ms-fill-lower{height:8px;background:0 0;border:0;border-radius:4px;-ms-user-select:none;user-select:none;background:#3498db}.plyr input[type=range]::-ms-thumb{position:relative;height:16px;width:16px;background:#fff;border:2px solid transparent;border-radius:100%;-webkit-transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,-webkit-transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease;transition:background .2s ease,border .2s ease,transform .2s ease,-webkit-transform .2s ease;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.15);box-sizing:border-box;margin-top:0}.plyr input[type=range]::-ms-tooltip{display:none}.plyr input[type=range]:focus{outline:0}.plyr input[type=range]::-moz-focus-outer{border:0}.plyr input[type=range].tab-focus:focus{outline-offset:3px}.plyr input[type=range]:active::-webkit-slider-thumb{background:#3498db;border-color:#fff;-webkit-transform:scale(1.25);transform:scale(1.25)}.plyr input[type=range]:active::-moz-range-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr input[type=range]:active::-ms-thumb{background:#3498db;border-color:#fff;transform:scale(1.25)}.plyr--video input[type=range].tab-focus:focus{outline:1px dotted rgba(255,255,255,.5)}.plyr--audio input[type=range].tab-focus:focus{outline:1px dotted rgba(86,93,100,.5)}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;position:absolute!important;padding:0!important;border:0!important;height:1px!important;width:1px!important}.plyr__video-wrapper{position:relative;background:#000;border-radius:inherit}.plyr__video-embed{padding-bottom:56.25%;height:0;border-radius:inherit;overflow:hidden;z-index:0}.plyr__video-embed iframe{position:absolute;top:0;left:0;width:100%;height:100%;border:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.plyr__video-embed>div{position:relative;padding-bottom:200%;-webkit-transform:translateY(-35.95%);transform:translateY(-35.95%)}.plyr .plyr__video-embed iframe{pointer-events:none}.plyr video::-webkit-media-text-track-container{display:none}.plyr__captions{display:none;position:absolute;bottom:0;left:0;width:100%;padding:20px;-webkit-transform:translateY(-40px);transform:translateY(-40px);-webkit-transition:-webkit-transform .3s ease;transition:-webkit-transform .3s ease;transition:transform .3s ease;transition:transform .3s ease,-webkit-transform .3s ease;color:#fff;font-size:16px;text-align:center;font-weight:400}.plyr__captions span{border-radius:2px;padding:3px 10px;background:rgba(0,0,0,.7);-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:150%}.plyr__captions span:empty{display:none}@media (min-width:768px){.plyr__captions{font-size:24px}}.plyr--captions-active .plyr__captions{display:block}.plyr--hide-controls .plyr__captions{-webkit-transform:translateY(-15px);transform:translateY(-15px)}@media (min-width:1024px){.plyr--fullscreen-active .plyr__captions{font-size:32px}}.plyr ::-webkit-media-controls{display:none}.plyr__controls{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;line-height:1;text-align:center;pointer-events:none}.plyr__controls>*{pointer-events:all}.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:5px}.plyr__controls .plyr__progress:first-child,.plyr__controls .plyr__time:first-child,.plyr__controls>button:first-child{margin-left:0}.plyr__controls .plyr__volume{margin-left:5px}.plyr__controls [data-plyr=pause]{margin-left:0}.plyr__controls button{position:relative;display:inline-block;-ms-flex-negative:0;flex-shrink:0;overflow:visible;vertical-align:middle;padding:7px;border:0;background:0 0;border-radius:3px;cursor:pointer;-webkit-transition:background .3s ease,color .3s ease,opacity .3s ease;transition:background .3s ease,color .3s ease,opacity .3s ease;color:inherit}.plyr__controls button svg{width:18px;height:18px;display:block;fill:currentColor}.plyr__controls button:focus{outline:0}.plyr__controls .icon--captions-on,.plyr__controls .icon--exit-fullscreen,.plyr__controls .icon--muted{display:none}@media (min-width:480px){.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls>button{margin-left:10px}}.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none}.plyr--video .plyr__controls{position:absolute;left:0;right:0;bottom:0;z-index:2;padding:50px 10px 10px;background:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.5)));background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.5));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;color:#fff;-webkit-transition:opacity .3s ease;transition:opacity .3s ease}.plyr--video .plyr__controls button.tab-focus:focus,.plyr--video .plyr__controls button:hover{background:#3498db;color:#fff}.plyr--audio .plyr__controls{padding:10px;border-radius:inherit;background:#fff;border:1px solid #dbe3e8;color:#565d64}.plyr--audio .plyr__controls button.tab-focus:focus,.plyr--audio .plyr__controls button:hover{background:#3498db;color:#fff}.plyr__play-large{display:none;position:absolute;z-index:1;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);padding:10px;background:#3498db;border:4px solid currentColor;border-radius:100%;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.15);box-shadow:0 1px 1px rgba(0,0,0,.15);color:#fff;-webkit-transition:all .3s ease;transition:all .3s ease}.plyr__play-large svg{position:relative;left:2px;width:20px;height:20px;display:block;fill:currentColor}.plyr__play-large:focus{outline:1px dotted rgba(255,255,255,.5)}.plyr .plyr__play-large{display:inline-block}.plyr--audio .plyr__play-large{display:none}.plyr--playing .plyr__play-large{opacity:0;visibility:hidden}.plyr--playing .plyr__controls [data-plyr=play],.plyr__controls [data-plyr=pause]{display:none}.plyr--playing .plyr__controls [data-plyr=pause]{display:inline-block}.plyr--captions-active .plyr__controls .icon--captions-on,.plyr--fullscreen-active .icon--exit-fullscreen,.plyr--muted .plyr__controls .icon--muted{display:block}.plyr--captions-active .plyr__controls .icon--captions-on+svg,.plyr--fullscreen-active .icon--exit-fullscreen+svg,.plyr--muted .plyr__controls .icon--muted+svg{display:none}.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen]{display:none}.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen]{display:inline-block}.plyr__tooltip{position:absolute;z-index:2;bottom:100%;margin-bottom:10px;padding:5px 7.5px;pointer-events:none;opacity:0;background:rgba(0,0,0,.7);border-radius:3px;color:#fff;font-size:14px;line-height:1.3;-webkit-transform:translate(-50%,10px) scale(.8);transform:translate(-50%,10px) scale(.8);-webkit-transform-origin:50% 100%;transform-origin:50% 100%;-webkit-transition:opacity .2s .1s ease,-webkit-transform .2s .1s ease;transition:opacity .2s .1s ease,-webkit-transform .2s .1s ease;transition:transform .2s .1s ease,opacity .2s .1s ease;transition:transform .2s .1s ease,opacity .2s .1s ease,-webkit-transform .2s .1s ease}.plyr__tooltip::before{content:'';position:absolute;width:0;height:0;left:50%;-webkit-transform:translateX(-50%);transform:translateX(-50%);bottom:-4px;border-right:4px solid transparent;border-top:4px solid rgba(0,0,0,.7);border-left:4px solid transparent;z-index:2}.plyr button.tab-focus:focus .plyr__tooltip,.plyr button:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;-webkit-transform:translate(-50%,0) scale(1);transform:translate(-50%,0) scale(1)}.plyr button:hover .plyr__tooltip{z-index:3}.plyr__controls button:first-child .plyr__tooltip{left:0;-webkit-transform:translate(0,10px) scale(.8);transform:translate(0,10px) scale(.8);-webkit-transform-origin:0 100%;transform-origin:0 100%}.plyr__controls button:first-child .plyr__tooltip::before{left:16px}.plyr__controls button:last-child .plyr__tooltip{right:0;-webkit-transform:translate(0,10px) scale(.8);transform:translate(0,10px) scale(.8);-webkit-transform-origin:100% 100%;transform-origin:100% 100%}.plyr__controls button:last-child .plyr__tooltip::before{left:auto;right:16px;-webkit-transform:translateX(50%);transform:translateX(50%)}.plyr__controls button:first-child .plyr__tooltip--visible,.plyr__controls button:first-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:first-child:hover .plyr__tooltip,.plyr__controls button:last-child .plyr__tooltip--visible,.plyr__controls button:last-child.tab-focus:focus .plyr__tooltip,.plyr__controls button:last-child:hover .plyr__tooltip{-webkit-transform:translate(0,0) scale(1);transform:translate(0,0) scale(1)}.plyr__progress{position:relative;display:none;-webkit-box-flex:1;-ms-flex:1;flex:1}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress input[type=range]::-webkit-slider-runnable-track{background:0 0}.plyr__progress input[type=range]::-moz-range-track{background:0 0}.plyr__progress input[type=range]::-ms-fill-upper{background:0 0}.plyr__progress .plyr__tooltip{left:0}.plyr .plyr__progress{display:inline-block}.plyr__progress--buffer,.plyr__progress--played,.plyr__volume--display{position:absolute;left:0;top:50%;width:100%;height:8px;margin:-4px 0 0;padding:0;vertical-align:top;-webkit-appearance:none;-moz-appearance:none;border:none;border-radius:100px}.plyr__progress--buffer::-webkit-progress-bar,.plyr__progress--played::-webkit-progress-bar,.plyr__volume--display::-webkit-progress-bar{background:0 0}.plyr__progress--buffer::-webkit-progress-value,.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-moz-progress-bar,.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:8px}.plyr__progress--buffer::-ms-fill,.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{border-radius:100px}.plyr__progress--played,.plyr__volume--display{z-index:1;color:#3498db;background:0 0;-webkit-transition:none;transition:none}.plyr__progress--played::-webkit-progress-value,.plyr__volume--display::-webkit-progress-value{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-transition:none;transition:none}.plyr__progress--played::-moz-progress-bar,.plyr__volume--display::-moz-progress-bar{min-width:8px;max-width:99%;border-top-right-radius:0;border-bottom-right-radius:0;-webkit-transition:none;transition:none}.plyr__progress--played::-ms-fill,.plyr__volume--display::-ms-fill{display:none}.plyr__progress--buffer::-webkit-progress-value{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress--buffer::-moz-progress-bar{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr__progress--buffer::-ms-fill{-webkit-transition:width .2s ease;transition:width .2s ease}.plyr--video .plyr__progress--buffer,.plyr--video .plyr__volume--display{background:rgba(255,255,255,.25)}.plyr--video .plyr__progress--buffer{color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress--buffer,.plyr--audio .plyr__volume--display{background:rgba(198,214,219,.66)}.plyr--audio .plyr__progress--buffer{color:rgba(198,214,219,.66)}.plyr--loading .plyr__progress--buffer{-webkit-animation:plyr-progress 1s linear infinite;animation:plyr-progress 1s linear infinite;background-size:25px 25px;background-repeat:repeat-x;background-image:linear-gradient(-45deg,rgba(0,0,0,.15) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.15) 50%,rgba(0,0,0,.15) 75%,transparent 75%,transparent);color:transparent}.plyr--video.plyr--loading .plyr__progress--buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress--buffer{background-color:rgba(198,214,219,.66)}.plyr__time{display:inline-block;vertical-align:middle;font-size:14px}.plyr__time+.plyr__time{display:none}@media (min-width:768px){.plyr__time+.plyr__time{display:inline-block}}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}.plyr__volume{display:none}.plyr .plyr__volume{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative}.plyr .plyr__volume input[type=range]{position:relative;z-index:2}@media (min-width:480px){.plyr .plyr__volume{display:block;max-width:60px}}@media (min-width:768px){.plyr .plyr__volume{max-width:100px}}.plyr--is-ios .plyr__volume,.plyr--is-ios [data-plyr=mute]{display:none!important}.plyr--fullscreen-active{height:100%;width:100%;background:#000;border-radius:0!important}.plyr--fullscreen-active video{height:100%}.plyr--fullscreen-active .plyr__video-wrapper{height:100%;width:100%}.plyr--fullscreen-active .plyr__video-embed{overflow:visible}.plyr--fullscreen-active.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}.plyr--fullscreen-fallback.plyr--fullscreen-active{position:fixed;top:0;left:0;right:0;bottom:0;z-index:10000000}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[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;
}


/*
 * See: https://fonts.google.com/license/googlerestricted
 */
@font-face {
  font-family: 'Google Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Google Sans Regular'), local('GoogleSans-Regular'), url(https://fonts.gstatic.com/s/googlesans/v16/4UaGrENHsxJlGDuGo1OIlL3Owps.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format('truetype');
}


/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}
/**
 * Remove default margin.
 */
body {
  margin: 0;
}
/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}
/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}
/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}
/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}
/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}
/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}
/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}
/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}
/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}
/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}
/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}
/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}
/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}
/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}
/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box;
}
/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}
/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}
/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}


@font-face {
  font-family: 'Linearicons';
  src:  url('vhs-assets-css-ba30323e63d4aef4208aeaf3c8dbdfdd.eot?nsjcdv');
  src:  url('vhs-assets-css-d1354d84eaba240e48a830508bd43186.eot?nsjcdv#iefix') format('embedded-opentype'),
    url('vhs-assets-css-c6c7947cf24d3beae274a2046ab288d1.ttf?nsjcdv') format('truetype'),
    url('vhs-assets-css-35e7673fab3485b00cd1ed038a39d050.woff?nsjcdv') format('woff'),
    url('vhs-assets-css-96e2396275c540a5831cd4a8d2cd80db.svg?nsjcdv#Linearicons') format('svg');
  font-weight: normal;
  font-style: normal;
}

i[class|=icon], .icomoon-liga {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Linearicons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  
  /* Enable Ligatures ================ */
  letter-spacing: 0;
  -webkit-font-feature-settings: "liga";
  -moz-font-feature-settings: "liga=1";
  -moz-font-feature-settings: "liga";
  -ms-font-feature-settings: "liga" 1;
  font-feature-settings: "liga";
  -webkit-font-variant-ligatures: discretionary-ligatures;
  font-variant-ligatures: discretionary-ligatures;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-envelope:before {
  content: "\e696";
}
.icon-folder:before {
  content: "\e6ba";
}
.icon-user:before {
  content: "\e71e";
}
.icon-calendar-full:before {
  content: "\e789";
}
.icon-download2:before {
  content: "\e8f5";
}
.icon-upload2:before {
  content: "\e8f6";
}
.icon-menu:before {
  content: "\e92b";
}
.icon-chevron-up:before {
  content: "\e939";
}
.icon-chevron-down:before {
  content: "\e93a";
}
.icon-chevron-left:before {
  content: "\e93b";
}
.icon-chevron-right:before {
  content: "\e93c";
}
.icon-chevron-up-circle:before {
  content: "\e962";
}
.icon-chevron-down-circle:before {
  content: "\e963";
}
.icon-chevron-left-circle:before {
  content: "\e964";
}
.icon-chevron-right-circle:before {
  content: "\e965";
}
.icon-menu2:before {
  content: "\e9bd";
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-twitter:before {
  content: "\ea96";
}
.icon-vimeo:before {
  content: "\eaa0";
}
.icon-linkedin2:before {
  content: "\eaca";
}


@font-face {
  font-family: 'webflow-icons';
  src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg6SAy0AAAC8AAAAYGNtYXAaVcxaAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5ZgscV1gAAAFwAAABhGhlYWQCkFKvAAAC9AAAADZoaGVhB0MDyQAAAywAAAAkaG10eBIAA10AAANQAAAAIGxvY2EBMADyAAADcAAAABJtYXhwAAwATQAAA4QAAAAgbmFtZWTuiIAAAAOkAAABe3Bvc3QAAwAAAAAFIAAAACAAAwQAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmAwPA/8D/wAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIOYD//3//wAAAAAAIOYA//3//wAB/+MaBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQEgAAADIAOAAAUAAAkBBwkBFwMg/kBAAYD+gEABwAHAQP6A/oBAAAEA4AAAAuADgAAFAAATARcJAQfgAcBA/oABgEABwAHAQP6A/oBAAAADAMAA4ANAAsAAGAAxAEoAAAEhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIxUhIg4CHQEUHgIzITI+Aj0BNC4CIwMg/cAHCwkFBQkLBwJABwsJBQUJCwf9wAcLCQUFCQsHAkAHCwkFBQkLB/3ABwsJBQUJCwcCQAcLCQUFCQsHAsAFCQsHIAcLCQUFCQsHIAcLCQXABQkLByAHCwkFBQkLByAHCwkFwAUJCwcgBwsJBQUJCwcgBwsJBQAAAAABAJ0AtAOBApUABQAACQIHCQEDJP7r/upcAXEBcgKU/usBFFv+egGGAAAAAAEAAAABAADSLAJOXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAAAAACgAUAB4AMgBGAKwAwgAAAAEAAAAIAEsAAwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAaAAAAAQAAAAAAAgAOAHEAAQAAAAAAAwAaADAAAQAAAAAABAAaAH8AAQAAAAAABQAWABoAAQAAAAAABgANAEoAAQAAAAAACgA0AJkAAwABBAkAAQAaAAAAAwABBAkAAgAOAHEAAwABBAkAAwAaADAAAwABBAkABAAaAH8AAwABBAkABQAWABoAAwABBAkABgAaAFcAAwABBAkACgA0AJkAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBWAGUAcgBzAGkAbwBuACAAMQAuADAAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4Ac3dlYmZsb3ctaWNvbnMAdwBlAGIAZgBsAG8AdwAtAGkAYwBvAG4AcwBSAGUAZwB1AGwAYQByAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVcAAoAAAAABRQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAZMAAAGTuzUomU9TLzIAAAKIAAAAYAAAAGAOkgMtY21hcAAAAugAAABMAAAATBpVzFpnYXNwAAADNAAAAAgAAAAIAAAAEGhlYWQAAAM8AAAANgAAADYCkFKvaGhlYQAAA3QAAAAkAAAAJAdDA8lobXR4AAADmAAAACAAAAAgEgADXW1heHAAAAO4AAAABgAAAAYACFAAbmFtZQAAA8AAAAF7AAABe2TuiIBwb3N0AAAFPAAAACAAAAAgAAMAAAEABAQAAQEBDndlYmZsb3ctaWNvbnMAAQIAAQA6+BwC+BsD+BgEHgoACXf/i4seCgAJd/+LiwwHi0v6lPpUBR0AAACaDx0AAACfER0AAAAJHQAAAYoSAAkBAQ4bHR8iJywxNndlYmZsb3ctaWNvbnN3ZWJmbG93LWljb25zdTB1MXUyMHVFNjAwdUU2MDF1RTYwMnVFNjAzAAACAYkABgAIAQEEBwoNJDvH4P6UDv6UDv6UDvyUDvm0+FQV/FT4VEtL+BT8FPwU/BTLSwUO93T4VBX4VPhUy0v8FPwU+BT8FEtLBQ75tPlUFfzUiwV5i319i3kIi2sFi3mZfZ2LCPjUiwWdi5mZi50Ii6sFi519mXmLCIv7VBX81IsFeYt9fYt5CItrBYt5mX2diwj41IsFnYuZmYudCIurBYudfZl5iwiL+1QV/NSLBXmLfX2LeQiLawWLeZl9nYsI+NSLBZ2LmZmLnQiLqwWLnX2ZeYsIDvm4+SkV+6n7qvuq96ovLvgG/Bj4BvgYBQ76lBT6lBWLDAoAAAMEAAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA5gMDwP/A/8ADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDmA//9//8AAAAAACDmAP/9//8AAf/jGgQAAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAC1pQTjXw889QALBAAAAAAAz/iHGQAAAADP+IcZAAAAAAOBA4AAAAAIAAIAAAAAAAAAAQAAA8D/wAAABAAAAAAAA4EAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAACAAAABAABIAQAAOAEAADABAAAnQAAUAAACAAAAAAADgCuAAEAAAAAAAEAGgAAAAEAAAAAAAIADgBxAAEAAAAAAAMAGgAwAAEAAAAAAAQAGgB/AAEAAAAAAAUAFgAaAAEAAAAAAAYADQBKAAEAAAAAAAoANACZAAMAAQQJAAEAGgAAAAMAAQQJAAIADgBxAAMAAQQJAAMAGgAwAAMAAQQJAAQAGgB/AAMAAQQJAAUAFgAaAAMAAQQJAAYAGgBXAAMAAQQJAAoANACZAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAVgBlAHIAcwBpAG8AbgAgADEALgAwAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHN3ZWJmbG93LWljb25zAHcAZQBiAGYAbABvAHcALQBpAGMAbwBuAHMAUgBlAGcAdQBsAGEAcgB3AGUAYgBmAGwAbwB3AC0AaQBjAG8AbgBzAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==) format('woff');
  font-weight: normal;
  font-style: normal;
}
[class^="w-icon-"],
[class*=" w-icon-"] {
  font-family: 'webflow-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.w-icon-slider-right:before {
  content: "\e600";
}
.w-icon-slider-left:before {
  content: "\e601";
}
.w-icon-nav-menu:before {
  content: "\e602";
}
.w-icon-arrow-down:before,
.w-icon-dropdown-toggle:before {
  content: "\e603";
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  margin: 0;
  min-height: 100%;
  background-color: #fff;
  color: #333;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
html.w-mod-touch * {
  background-attachment: scroll !important;
}
a:focus {
  outline: 0;
}
.w-block {
  display: block;
}
.w-inline-block {
  max-width: 100%;
  display: inline-block;
}
.w-clearfix:before,
.w-clearfix:after {
  content: " ";
  display: table;
}
.w-clearfix:after {
  clear: both;
}
.w-hidden {
  display: none;
}
html[data-w-dynpage] [data-w-cloak] {
  color: transparent !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}
p {
  margin: 0;
}
blockquote {
  margin: 0;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 0;
}
.w-list-unstyled {
  padding-left: 0;
  list-style: none;
}
.w-embed:before,
.w-embed:after {
  content: " ";
  display: table;
}
.w-embed:after {
  clear: both;
}
.w-video {
  width: 100%;
  position: relative;
  padding: 0;
}
.w-video iframe,
.w-video object,
.w-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button;
}
.w-form {
  margin: 0 0 15px;
}
.w-form-done {
  display: none;
  padding: 10px;
  background-color: #dddddd;
}
.w-form-fail {
  display: none;
  margin-top: 10px;
  padding: 10px;
  background-color: #ffdede;
}
label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.w-input,
.w-select {
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.w-input:-moz-placeholder,
.w-select:-moz-placeholder {
  color: #999999;
}
.w-input::-moz-placeholder,
.w-select::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.w-input:-ms-input-placeholder,
.w-select:-ms-input-placeholder {
  color: #999999;
}
.w-input::-webkit-input-placeholder,
.w-select::-webkit-input-placeholder {
  color: #999999;
}
.w-input:focus,
.w-select:focus {
  border-color: rgba(82, 168, 236, 0.8);
  outline: 0;
}
.w-input[disabled],
.w-select[disabled],
.w-input[readonly],
.w-select[readonly],
fieldset[disabled] .w-input,
fieldset[disabled] .w-select {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.w-input,
textarea.w-select {
  height: auto;
}
.w-select[multiple] {
  height: auto;
}
.w-button {
  display: inline-block;
  padding: 12px;
  background-color: #151515;
  color: white;
  border: 0;
  line-height: inherit;
}
.w-form-label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0px;
}
.w-checkbox,
.w-radio {
  display: block;
  margin-bottom: 5px;
  padding-left: 20px;
}
.w-checkbox:before,
.w-radio:before,
.w-checkbox:after,
.w-radio:after {
  content: " ";
  display: table;
}
.w-checkbox:after,
.w-radio:after {
  clear: both;
}
.w-checkbox-input,
.w-radio-input {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
  float: left;
  margin-left: -20px;
}
.w-radio-input {
  margin-top: 3px;
}
.w-container {
  width: 100%;
}
.w-container:before,
.w-container:after {
  content: " ";
  display: table;
}
.w-container:after {
  clear: both;
}
.w-container .w-row {
  margin-left: -10px;
  margin-right: -10px;
}
.w-row:before,
.w-row:after {
  content: " ";
  display: table;
}
.w-row:after {
  clear: both;
}
.w-row .w-row {
  margin-left: 0;
  margin-right: 0;
}
.w-col {
  position: relative;
  float: left;
  width: 100%;
  min-height: 1px;
}
.w-col .w-col {
  padding-left: 0;
  padding-right: 0;
}
.w-col-1 {
  width: 8.33333333%;
}
.w-col-2 {
  width: 16.66666667%;
}
.w-col-3 {
  width: 25%;
}
.w-col-4 {
  width: 33.33333333%;
}
.w-col-5 {
  width: 41.66666667%;
}
.w-col-6 {
  width: 50%;
}
.w-col-7 {
  width: 58.33333333%;
}
.w-col-8 {
  width: 66.66666667%;
}
.w-col-9 {
  width: 75%;
}
.w-col-10 {
  width: 83.33333333%;
}
.w-col-11 {
  width: 91.66666667%;
}
.w-col-12 {
  width: 100%;
}
.w-col-push-1 {
  left: 8.33333333%;
}
.w-col-push-2 {
  left: 16.66666667%;
}
.w-col-push-3 {
  left: 25%;
}
.w-col-push-4 {
  left: 33.33333333%;
}
.w-col-push-5 {
  left: 41.66666667%;
}
.w-col-push-6 {
  left: 50%;
}
.w-col-push-7 {
  left: 58.33333333%;
}
.w-col-push-8 {
  left: 66.66666667%;
}
.w-col-push-9 {
  left: 75%;
}
.w-col-push-10 {
  left: 83.33333333%;
}
.w-col-push-11 {
  left: 91.66666667%;
}
.w-col-pull-1 {
  right: 8.33333333%;
}
.w-col-pull-2 {
  right: 16.66666667%;
}
.w-col-pull-3 {
  right: 25%;
}
.w-col-pull-4 {
  right: 33.33333333%;
}
.w-col-pull-5 {
  right: 41.66666667%;
}
.w-col-pull-6 {
  right: 50%;
}
.w-col-pull-7 {
  right: 58.33333333%;
}
.w-col-pull-8 {
  right: 66.66666667%;
}
.w-col-pull-9 {
  right: 75%;
}
.w-col-pull-10 {
  right: 83.33333333%;
}
.w-col-pull-11 {
  right: 91.66666667%;
}
.w-col-offset-1 {
  margin-left: 8.33333333%;
}
.w-col-offset-2 {
  margin-left: 16.66666667%;
}
.w-col-offset-3 {
  margin-left: 25%;
}
.w-col-offset-4 {
  margin-left: 33.33333333%;
}
.w-col-offset-5 {
  margin-left: 41.66666667%;
}
.w-col-offset-6 {
  margin-left: 50%;
}
.w-col-offset-7 {
  margin-left: 58.33333333%;
}
.w-col-offset-8 {
  margin-left: 66.66666667%;
}
.w-col-offset-9 {
  margin-left: 75%;
}
.w-col-offset-10 {
  margin-left: 83.33333333%;
}
.w-col-offset-11 {
  margin-left: 91.66666667%;
}
.w-hidden-main {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: none !important;
  }
  .w-col-medium-1 {
    width: 8.33333333%;
  }
  .w-col-medium-2 {
    width: 16.66666667%;
  }
  .w-col-medium-3 {
    width: 25%;
  }
  .w-col-medium-4 {
    width: 33.33333333%;
  }
  .w-col-medium-5 {
    width: 41.66666667%;
  }
  .w-col-medium-6 {
    width: 50%;
  }
  .w-col-medium-7 {
    width: 58.33333333%;
  }
  .w-col-medium-8 {
    width: 66.66666667%;
  }
  .w-col-medium-9 {
    width: 75%;
  }
  .w-col-medium-10 {
    width: 83.33333333%;
  }
  .w-col-medium-11 {
    width: 91.66666667%;
  }
  .w-col-medium-12 {
    width: 100%;
  }
  .w-col-medium-push-1 {
    left: 8.33333333%;
  }
  .w-col-medium-push-2 {
    left: 16.66666667%;
  }
  .w-col-medium-push-3 {
    left: 25%;
  }
  .w-col-medium-push-4 {
    left: 33.33333333%;
  }
  .w-col-medium-push-5 {
    left: 41.66666667%;
  }
  .w-col-medium-push-6 {
    left: 50%;
  }
  .w-col-medium-push-7 {
    left: 58.33333333%;
  }
  .w-col-medium-push-8 {
    left: 66.66666667%;
  }
  .w-col-medium-push-9 {
    left: 75%;
  }
  .w-col-medium-push-10 {
    left: 83.33333333%;
  }
  .w-col-medium-push-11 {
    left: 91.66666667%;
  }
  .w-col-medium-pull-1 {
    right: 8.33333333%;
  }
  .w-col-medium-pull-2 {
    right: 16.66666667%;
  }
  .w-col-medium-pull-3 {
    right: 25%;
  }
  .w-col-medium-pull-4 {
    right: 33.33333333%;
  }
  .w-col-medium-pull-5 {
    right: 41.66666667%;
  }
  .w-col-medium-pull-6 {
    right: 50%;
  }
  .w-col-medium-pull-7 {
    right: 58.33333333%;
  }
  .w-col-medium-pull-8 {
    right: 66.66666667%;
  }
  .w-col-medium-pull-9 {
    right: 75%;
  }
  .w-col-medium-pull-10 {
    right: 83.33333333%;
  }
  .w-col-medium-pull-11 {
    right: 91.66666667%;
  }
  .w-col-medium-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-medium-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-medium-offset-3 {
    margin-left: 25%;
  }
  .w-col-medium-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-medium-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-medium-offset-6 {
    margin-left: 50%;
  }
  .w-col-medium-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-medium-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-medium-offset-9 {
    margin-left: 75%;
  }
  .w-col-medium-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-medium-offset-11 {
    margin-left: 91.66666667%;
  }
  .w-col-stack {
    width: 100%;
    left: auto;
    right: auto;
  }
}
@media screen and (max-width: 767px) {
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: none !important;
  }
  .w-row,
  .w-container .w-row {
    margin-left: 0;
    margin-right: 0;
  }
  .w-col {
    width: 100%;
    left: auto;
    right: auto;
  }
  .w-col-small-1 {
    width: 8.33333333%;
  }
  .w-col-small-2 {
    width: 16.66666667%;
  }
  .w-col-small-3 {
    width: 25%;
  }
  .w-col-small-4 {
    width: 33.33333333%;
  }
  .w-col-small-5 {
    width: 41.66666667%;
  }
  .w-col-small-6 {
    width: 50%;
  }
  .w-col-small-7 {
    width: 58.33333333%;
  }
  .w-col-small-8 {
    width: 66.66666667%;
  }
  .w-col-small-9 {
    width: 75%;
  }
  .w-col-small-10 {
    width: 83.33333333%;
  }
  .w-col-small-11 {
    width: 91.66666667%;
  }
  .w-col-small-12 {
    width: 100%;
  }
  .w-col-small-push-1 {
    left: 8.33333333%;
  }
  .w-col-small-push-2 {
    left: 16.66666667%;
  }
  .w-col-small-push-3 {
    left: 25%;
  }
  .w-col-small-push-4 {
    left: 33.33333333%;
  }
  .w-col-small-push-5 {
    left: 41.66666667%;
  }
  .w-col-small-push-6 {
    left: 50%;
  }
  .w-col-small-push-7 {
    left: 58.33333333%;
  }
  .w-col-small-push-8 {
    left: 66.66666667%;
  }
  .w-col-small-push-9 {
    left: 75%;
  }
  .w-col-small-push-10 {
    left: 83.33333333%;
  }
  .w-col-small-push-11 {
    left: 91.66666667%;
  }
  .w-col-small-pull-1 {
    right: 8.33333333%;
  }
  .w-col-small-pull-2 {
    right: 16.66666667%;
  }
  .w-col-small-pull-3 {
    right: 25%;
  }
  .w-col-small-pull-4 {
    right: 33.33333333%;
  }
  .w-col-small-pull-5 {
    right: 41.66666667%;
  }
  .w-col-small-pull-6 {
    right: 50%;
  }
  .w-col-small-pull-7 {
    right: 58.33333333%;
  }
  .w-col-small-pull-8 {
    right: 66.66666667%;
  }
  .w-col-small-pull-9 {
    right: 75%;
  }
  .w-col-small-pull-10 {
    right: 83.33333333%;
  }
  .w-col-small-pull-11 {
    right: 91.66666667%;
  }
  .w-col-small-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-small-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-small-offset-3 {
    margin-left: 25%;
  }
  .w-col-small-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-small-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-small-offset-6 {
    margin-left: 50%;
  }
  .w-col-small-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-small-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-small-offset-9 {
    margin-left: 75%;
  }
  .w-col-small-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-small-offset-11 {
    margin-left: 91.66666667%;
  }
}
@media screen and (max-width: 479px) {
  .w-container {
    max-width: none;
  }
  .w-hidden-main {
    display: inherit !important;
  }
  .w-hidden-medium {
    display: inherit !important;
  }
  .w-hidden-small {
    display: inherit !important;
  }
  .w-hidden-tiny {
    display: none !important;
  }
  .w-col {
    width: 100%;
  }
  .w-col-tiny-1 {
    width: 8.33333333%;
  }
  .w-col-tiny-2 {
    width: 16.66666667%;
  }
  .w-col-tiny-3 {
    width: 25%;
  }
  .w-col-tiny-4 {
    width: 33.33333333%;
  }
  .w-col-tiny-5 {
    width: 41.66666667%;
  }
  .w-col-tiny-6 {
    width: 50%;
  }
  .w-col-tiny-7 {
    width: 58.33333333%;
  }
  .w-col-tiny-8 {
    width: 66.66666667%;
  }
  .w-col-tiny-9 {
    width: 75%;
  }
  .w-col-tiny-10 {
    width: 83.33333333%;
  }
  .w-col-tiny-11 {
    width: 91.66666667%;
  }
  .w-col-tiny-12 {
    width: 100%;
  }
  .w-col-tiny-push-1 {
    left: 8.33333333%;
  }
  .w-col-tiny-push-2 {
    left: 16.66666667%;
  }
  .w-col-tiny-push-3 {
    left: 25%;
  }
  .w-col-tiny-push-4 {
    left: 33.33333333%;
  }
  .w-col-tiny-push-5 {
    left: 41.66666667%;
  }
  .w-col-tiny-push-6 {
    left: 50%;
  }
  .w-col-tiny-push-7 {
    left: 58.33333333%;
  }
  .w-col-tiny-push-8 {
    left: 66.66666667%;
  }
  .w-col-tiny-push-9 {
    left: 75%;
  }
  .w-col-tiny-push-10 {
    left: 83.33333333%;
  }
  .w-col-tiny-push-11 {
    left: 91.66666667%;
  }
  .w-col-tiny-pull-1 {
    right: 8.33333333%;
  }
  .w-col-tiny-pull-2 {
    right: 16.66666667%;
  }
  .w-col-tiny-pull-3 {
    right: 25%;
  }
  .w-col-tiny-pull-4 {
    right: 33.33333333%;
  }
  .w-col-tiny-pull-5 {
    right: 41.66666667%;
  }
  .w-col-tiny-pull-6 {
    right: 50%;
  }
  .w-col-tiny-pull-7 {
    right: 58.33333333%;
  }
  .w-col-tiny-pull-8 {
    right: 66.66666667%;
  }
  .w-col-tiny-pull-9 {
    right: 75%;
  }
  .w-col-tiny-pull-10 {
    right: 83.33333333%;
  }
  .w-col-tiny-pull-11 {
    right: 91.66666667%;
  }
  .w-col-tiny-offset-1 {
    margin-left: 8.33333333%;
  }
  .w-col-tiny-offset-2 {
    margin-left: 16.66666667%;
  }
  .w-col-tiny-offset-3 {
    margin-left: 25%;
  }
  .w-col-tiny-offset-4 {
    margin-left: 33.33333333%;
  }
  .w-col-tiny-offset-5 {
    margin-left: 41.66666667%;
  }
  .w-col-tiny-offset-6 {
    margin-left: 50%;
  }
  .w-col-tiny-offset-7 {
    margin-left: 58.33333333%;
  }
  .w-col-tiny-offset-8 {
    margin-left: 66.66666667%;
  }
  .w-col-tiny-offset-9 {
    margin-left: 75%;
  }
  .w-col-tiny-offset-10 {
    margin-left: 83.33333333%;
  }
  .w-col-tiny-offset-11 {
    margin-left: 91.66666667%;
  }
}
.w-widget {
  position: relative;
}
.w-widget-map {
  width: 100%;
  height: 400px;
}
.w-widget-map label {
  width: auto;
  display: inline;
}
.w-widget-map img {
  max-width: inherit;
}
.w-widget-map .gm-style-iw + div {
  display: none;
}
.w-widget-twitter {
  overflow: hidden;
}
.w-widget-gplus {
  overflow: hidden;
}
.w-slider {
  position: relative;
  height: 300px;
  text-align: center;
  clear: both;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-mask {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  left: 0;
  right: 0;
  height: 100%;
  white-space: nowrap;
}
.w-slide {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  height: 100%;
  white-space: normal;
  text-align: left;
}
.w-slider-nav {
  margin: auto;
  padding-top: 20px;
  height: 40px;
  text-align: center;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}
.w-slider-nav.w-round > div {
  -webkit-border-radius: 100%;
  -webkit-background-clip: padding-box;
  -moz-border-radius: 100%;
  -moz-background-clip: padding;
  border-radius: 100%;
  background-clip: padding-box;
}
.w-slider-nav.w-num > div {
  width: auto;
  height: auto;
  padding: 0.2em 0.5em;
  font-size: inherit;
  line-height: inherit;
}
.w-slider-nav.w-shadow > div {
  -webkit-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
  -moz-box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
  box-shadow: 0 0 3px rgba(51, 51, 51, 0.4);
}
.w-slider-nav-invert {
  color: #fff;
}
.w-slider-nav-invert > div {
  background-color: rgba(34, 34, 34, 0.4);
}
.w-slider-nav-invert > div.w-active {
  background-color: #222;
}
.w-slider-dot {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: #eee;
  cursor: pointer;
  margin: 0 3px 0.5em;
  -webkit-transition: background-color 100ms, color 100ms;
  -moz-transition: background-color 100ms, color 100ms;
  -o-transition: background-color 100ms, color 100ms;
  transition: background-color 100ms, color 100ms;
}
.w-slider-dot.w-active {
  background-color: #db002f;
}
.w-slider-arrow-left,
.w-slider-arrow-right {
  color: white;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w-slider-arrow-left [class^="w-icon-"],
.w-slider-arrow-right [class^="w-icon-"],
.w-slider-arrow-left [class*=" w-icon-"],
.w-slider-arrow-right [class*=" w-icon-"] {
  position: absolute;
}
.w-slider-arrow-left {
  z-index: 3;
  right: auto;
}
.w-slider-arrow-right {
  z-index: 4;
  left: auto;
}
.w-icon-slider-left,
.w-icon-slider-right {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 1em;
  height: 1em;
}
.w-dropdown {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  z-index: 900;
}
.w-dropdown-btn,
.w-dropdown-toggle,
.w-dropdown-link {
  position: relative;
  vertical-align: top;
  text-decoration: none;
  color: #222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
}
.w-dropdown-toggle {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  cursor: pointer;
  padding-right: 40px;
}
.w-dropdown-toggle:focus {
  outline: 0;
}
.w-icon-dropdown-toggle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  margin-right: 20px;
  width: 1em;
  height: 1em;
}
.w-dropdown-list {
  position: absolute;
  background: #f2f2f2;
  display: none;
  min-width: 100%;
}
.w-dropdown-list.w--open {
  display: block;
}
.w-dropdown-link {
  padding: 10px 20px;
  display: block;
}
.w-dropdown-link.w--current {
  color: #339ce1;
}
.w-nav[data-collapse="all"] .w-dropdown,
.w-nav[data-collapse="all"] .w-dropdown-toggle {
  display: block;
}
.w-nav[data-collapse="all"] .w-dropdown-list {
  position: static;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-dropdown,
  .w-nav[data-collapse="medium"] .w-dropdown-toggle {
    display: block;
  }
  .w-nav[data-collapse="medium"] .w-dropdown-list {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-dropdown,
  .w-nav[data-collapse="small"] .w-dropdown-toggle {
    display: block;
  }
  .w-nav[data-collapse="small"] .w-dropdown-list {
    position: static;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-dropdown,
  .w-nav[data-collapse="tiny"] .w-dropdown-toggle {
    display: block;
  }
  .w-nav[data-collapse="tiny"] .w-dropdown-list {
    position: static;
  }
}
/**
 * ## Note
 * Safari (on both iOS and OS X) does not handle viewport units (vh, vw) well.
 * For example percentage units do not work on descendants of elements that
 * have any dimensions expressed in viewport units. It also doesn’t handle them at
 * all in `calc()`.
 */
/**
 * Wrapper around all lightbox elements
 *
 * 1. Since the lightbox can receive focus, IE also gives it an outline.
 * 2. Fixes flickering on Chrome when a transition is in progress
 *    underneath the lightbox.
 */
.w-lightbox-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #fff;
  font-family: "Helvetica Neue", Helvetica, Ubuntu, "Segoe UI", Verdana, sans-serif;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  outline: 0;
  /* 1 */
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transform: translate(0, 0);
  /* 2 */
}
/**
 * Neat trick to bind the rubberband effect to our canvas instead of the whole
 * document on iOS. It also prevents a bug that causes the document underneath to scroll.
 */
.w-lightbox-backdrop,
.w-lightbox-container {
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.w-lightbox-content {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.w-lightbox-view {
  position: absolute;
  width: 100vw;
  height: 100vh;
  opacity: 0;
}
.w-lightbox-view:before {
  content: "";
  height: 100vh;
}
/* .w-lightbox-content */
.w-lightbox-group,
.w-lightbox-group .w-lightbox-view,
.w-lightbox-group .w-lightbox-view:before {
  height: 86vh;
}
.w-lightbox-frame,
.w-lightbox-view:before {
  display: inline-block;
  vertical-align: middle;
}
/*
 * 1. Remove default margin set by user-agent on the <figure> element.
 */
.w-lightbox-figure {
  position: relative;
  margin: 0;
  /* 1 */
}
.w-lightbox-group .w-lightbox-figure {
  cursor: pointer;
}
/**
 * IE adds image dimensions as width and height attributes on the IMG tag,
 * but we need both width and height to be set to auto to enable scaling.
 */
.w-lightbox-img {
  width: auto;
  height: auto;
  max-width: none;
}
.w-lightbox-image {
  display: block;
  max-width: 100vw;
  max-height: 100vh;
}
.w-lightbox-group .w-lightbox-image {
  max-height: 86vh;
}
.w-lightbox-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .5em 1em;
  background: rgba(0, 0, 0, 0.4);
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.w-lightbox-embed {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.w-lightbox-control {
  position: absolute;
  top: 0;
  width: 4em;
  background-size: 24px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.w-lightbox-left {
  display: none;
  bottom: 0;
  left: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-20 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0 0h5v23h23v5h-28z" opacity=".4"/><path d="m1 1h3v23h23v3h-26z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii0yMCAwIDI0IDQwIiB3aWR0aD0iMjQiIGhlaWdodD0iNDAiPjxnIHRyYW5zZm9ybT0icm90YXRlKDQ1KSI+PHBhdGggZD0ibTAgMGg1djIzaDIzdjVoLTI4eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDN2MjNoMjN2M2gtMjZ6IiBmaWxsPSIjZmZmIi8+PC9nPjwvc3ZnPg==");
}
.w-lightbox-right {
  display: none;
  right: 0;
  bottom: 0;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 24 40" width="24" height="40"><g transform="rotate(45)"><path d="m0-0h28v28h-5v-23h-23z" opacity=".4"/><path d="m1 1h26v26h-3v-23h-23z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMjQgNDAiIHdpZHRoPSIyNCIgaGVpZ2h0PSI0MCI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMC0waDI4djI4aC01di0yM2gtMjN6IiBvcGFjaXR5PSIuNCIvPjxwYXRoIGQ9Im0xIDFoMjZ2MjZoLTN2LTIzaC0yM3oiIGZpbGw9IiNmZmYiLz48L2c+PC9zdmc+");
}
/*
 * Without specifying the with and height inside the SVG, all versions of IE render the icon too small.
 * The bug does not seem to manifest itself if the elements are tall enough such as the above arrows.
 * (http://stackoverflow.com/questions/16092114/background-size-differs-in-internet-explorer)
 */
.w-lightbox-close {
  right: 0;
  height: 2.6em;
  /* <svg xmlns="http://www.w3.org/2000/svg" viewBox="-4 0 18 17" width="18" height="17"><g transform="rotate(45)"><path d="m0 0h7v-7h5v7h7v5h-7v7h-5v-7h-7z" opacity=".4"/><path d="m1 1h7v-7h3v7h7v3h-7v7h-3v-7h-7z" fill="#fff"/></g></svg> */
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9Ii00IDAgMTggMTciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxNyI+PGcgdHJhbnNmb3JtPSJyb3RhdGUoNDUpIj48cGF0aCBkPSJtMCAwaDd2LTdoNXY3aDd2NWgtN3Y3aC01di03aC03eiIgb3BhY2l0eT0iLjQiLz48cGF0aCBkPSJtMSAxaDd2LTdoM3Y3aDd2M2gtN3Y3aC0zdi03aC03eiIgZmlsbD0iI2ZmZiIvPjwvZz48L3N2Zz4=");
  background-size: 18px;
}
/**
 * 1. All IE versions add extra space at the bottom without this.
 */
.w-lightbox-strip {
  padding: 0 1vh;
  line-height: 0;
  /* 1 */
  white-space: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
/*
 * 1. We use content-box to avoid having to do `width: calc(10vh + 2vw)`
 *    which doesn’t work in Safari anyway.
 * 2. Chrome renders images pixelated when switching to GPU. Making sure
 *    the parent is also rendered on the GPU (by setting translate3d for
 *    example) fixes this behavior.
 */
.w-lightbox-item {
  display: inline-block;
  width: 10vh;
  padding: 2vh 1vh;
  box-sizing: content-box;
  /* 1 */
  cursor: pointer;
  -webkit-transform: translate3d(0, 0, 0);
  /* 2 */
}
.w-lightbox-active {
  opacity: .3;
}
.w-lightbox-thumbnail {
  position: relative;
  height: 10vh;
  background: #222;
  overflow: hidden;
}
.w-lightbox-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
}
.w-lightbox-thumbnail .w-lightbox-tall {
  top: 50%;
  width: 100%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.w-lightbox-thumbnail .w-lightbox-wide {
  left: 50%;
  height: 100%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
/*
 * Spinner
 *
 * Absolute pixel values are used to avoid rounding errors that would cause
 * the white spinning element to be misaligned with the track.
 */
.w-lightbox-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  border: 5px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  -webkit-animation: spin .8s infinite linear;
  animation: spin .8s infinite linear;
}
.w-lightbox-spinner:after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  border: 3px solid transparent;
  border-bottom-color: #fff;
  border-radius: 50%;
}
/*
 * Utility classes
 */
.w-lightbox-hide {
  display: none;
}
.w-lightbox-noscroll {
  overflow: hidden;
}
@media (min-width: 768px) {
  .w-lightbox-content {
    height: 96vh;
    margin-top: 2vh;
  }
  .w-lightbox-view,
  .w-lightbox-view:before {
    height: 96vh;
  }
  /* .w-lightbox-content */
  .w-lightbox-group,
  .w-lightbox-group .w-lightbox-view,
  .w-lightbox-group .w-lightbox-view:before {
    height: 84vh;
  }
  .w-lightbox-image {
    max-width: 96vw;
    max-height: 96vh;
  }
  .w-lightbox-group .w-lightbox-image {
    max-width: 82.3vw;
    max-height: 84vh;
  }
  .w-lightbox-left,
  .w-lightbox-right {
    display: block;
    opacity: .5;
  }
  .w-lightbox-close {
    opacity: .8;
  }
  .w-lightbox-control:hover {
    opacity: 1;
  }
}
.w-lightbox-inactive,
.w-lightbox-inactive:hover {
  opacity: 0;
}
.w-nav {
  position: relative;
  background: #BBB;
  z-index: 1000;
}
.w-nav:before,
.w-nav:after {
  content: " ";
  display: table;
}
.w-nav:after {
  clear: both;
}
.w-nav-brand {
  position: relative;
  float: left;
  text-decoration: none;
  color: #222222;
}
.w-nav-brand:hover {
  text-decoration: none;
  color: #222222;
}
.w-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: #222222;
  padding: 20px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.w-nav-link:hover {
  text-decoration: none;
  color: #222222;
}
.w-nav-link.w--current {
  color: #339ce1;
}
.w-nav-menu {
  position: relative;
  float: right;
}
.w--nav-menu-open {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #999;
  text-align: center;
  overflow: visible;
  min-width: 200px;
}
.w--nav-link-open {
  display: block;
  position: relative;
}
.w-nav-overlay {
  position: absolute;
  overflow: hidden;
  display: none;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
}
.w-nav-overlay .w--nav-menu-open {
  top: 0;
}
.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-left"] .w-nav-overlay,
.w-nav[data-animation="over-left"] .w--nav-menu-open {
  right: auto;
  z-index: 1;
  top: 0;
}
.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}
.w-nav[data-animation="over-right"] .w-nav-overlay,
.w-nav[data-animation="over-right"] .w--nav-menu-open {
  left: auto;
  z-index: 1;
  top: 0;
}
.w-nav-button {
  position: relative;
  float: right;
  padding: 18px;
  font-size: 24px;
  display: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.w-nav-button.w--open {
  background-color: #999;
  color: white;
}
.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}
.w-nav[data-collapse="all"] .w-nav-button {
  display: block;
}
@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }
  .w-nav-brand {
    padding-left: 10px;
  }
}
@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }
  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}
.w-tabs {
  position: relative;
}
.w-tabs:before,
.w-tabs:after {
  content: " ";
  display: table;
}
.w-tabs:after {
  clear: both;
}
.w-tab-menu {
  position: relative;
}
.w-tab-link {
  position: relative;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  padding: 8px 30px;
  text-align: left;
  cursor: pointer;
  background-color: #E8E8E8;
}
.w-tab-link.w--current {
  background-color: #BCD3F3;
}
.w-tab-content {
  position: relative;
  display: block;
  overflow: hidden;
}
.w-tab-pane {
  position: relative;
  display: none;
}
.w--tab-active {
  display: block;
}
@media screen and (max-width: 479px) {
  .w-tab-link {
    display: block;
  }
}
.w-ix-emptyfix:after {
  content: "";
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.w-dyn-items {
  display: none;
}
.w-dyn-items.visible {
  display: block;
}
.w-dyn-empty {
  display: none;
  padding: 10px;
  background-color: #dddddd;
}
.w-dyn-error {
  display: none;
  padding: 10px;
  background-color: #ffdede;
}


html body.nav-open {
	overflow: hidden;
}

body {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	color: #333;
	font-size: 14px;
	line-height: 20px;
}

h1 {
	display: block;
	font-family: Roboto, sans-serif;
	font-size: 60px;
	line-height: 59px;
	font-weight: 100;
	list-style-type: none;
}

h2 {
	font-family: Roboto, sans-serif;
	font-size: 45px;
	line-height: 58px;
	font-weight: 100;
	list-style-type: none;
}

h3, h3 > a {
	color: #db002f;
	display: inline-block;
	font-family: Roboto, sans-serif;
	font-size: 26px;
	line-height: 30px;
	font-weight: 100;
	text-align: left;
}

h3 > a:hover,
h3 > a:focus {
	color: #333;
}

h4 {
	font-family: Roboto, sans-serif;
	margin-bottom: 10px;
	font-size: 18px;
	line-height: 24px;
	font-weight: 100;
}

h5 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 16px;
	text-transform: uppercase;
	line-height: 20px;
	font-weight: 400;
}

h6 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 12px;
	line-height: 18px;
	font-weight: 700;
}

p {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
}

a {
	font-family: Roboto, sans-serif;
	color: #151515;
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.04em;
	text-decoration: none;
	list-style-type: none;
}

p a {
	color: #db002f;
}

/*
p a:hover {
	color: #151515;
}
 */

a:hover {
	color: #db002f;
	text-decoration:none !important;
}

i.fa {
	/*font-family: "Font Awesome 5 Free" !important;*/
}

i.fab {
	/*font-family: "Font Awesome 5 Brands" !important;*/
}

.xovis-center {
	display: flex;
	align-items: center;
	justify-content: center;
}

.xovis-center a {
	margin-top: 50px;
}

.loader {
	margin: 0 0 2em;
	height: 100px;
	width: 100%;
	text-align: center;
	padding: 1em;
	margin: 55px auto 1em;

}

.background_color_blue_light {
	background-color: #e6eef2;
}

/*
  Set the color of the icon
*//*
svg path,
svg rect{
  fill: #db002f;
}*/

/*.w-slide { background-position: 25% 50%; }*/
.w-slide {
	background-position: 0 0;
}

.link_explore {
	margin-top: 2px;
}

.textcolor_xovis_red_middle,
.textcolor_about,
.textcolor_xovis {
	color: #db002f;
}

.color_xovis_red_middle {
	background-color: #db002f;
}

.align_center {
	display: block;
	color: #333;
	text-align: center;
}

.textcolor_xovis_red_middle {
	color: #db002f;
}

.textcolor_xovis_black_middle {
	color: #666;
}

.textcolor_white {
	display: block;
	color: white;
}

.margin_bottom_20 {
	margin-bottom: 20px;
}

.section_footer {
	display: block;
	height: 75px;
}

.footer_button {
	width: 20%;
	height: 100%;
	float: left;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	background-color: white;
	line-height: 75px;
	text-decoration: none;
}

.footer_button:hover {
	color: #db002f;
}

.footer_button.phone_vertical {
	float: none;
}

.info_text_section {
	display: block;
}

.more_container {
	position: relative;
	display: block;
	height: 100%;
	text-align: center;
}

.download_button {
	display: block;
	width: 200px;
	height: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
	background-image: url('vhs-assets-css-eba0464eae64e2c1b73df7a2ec55670b.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color: #2980b9;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.download_button:hover {
	background-color: #2980b9;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
}

.margin_top_110 {
	margin-top: 110px;
	-webkit-transition: all 150ms ease;
	transition: all 150ms ease;
}

.margin_bottom_110 {
	display: block;
	margin-bottom: 110px;
}

.margin_top_150px {
	margin-top: 150px;
}

.section_story_slider {
	display: block;
}

.border_line_left {
	border-left: 1px solid white;
}

.border_line_top {
	border-top: 1px solid white;
}

.border_line_right {
	border-right: 1px solid white;
}

.section_products_more {
	display: block;
	height: 650px;
}

.airport_products_slide_01 {
	display: inline-block;
	color: transparent;
}

.product_slider {
	height: 100%;
	color: transparent;
}

.airport_story_slide_01 {
	display: inline-block;
}

.story_slider {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.customers_logo_box {
	width: 20%;
	height: 200px;
	float: left;
	background-color: transparent;
}

.hero_big {
	height: 400px;
}

.hero_big.xovis_red {
	display: block;
	background-color: #db002f;
}

.margin_bottom_90 {
	margin-bottom: 90px;
}

.margin_top_80 {
	margin-top: 80px;
	-webkit-transition: all 150ms ease;
	transition: all 150ms ease;
}

.butt_newsbox {
	width: 220px;
	height: 50px;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color: white;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.butt_newsbox:hover {
	background-color: #faf2f4;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.section_contact_press {
	height: 460px;
	border-top: 1px dotted #db002f;
}

.img_left_newsbox {
	border-radius: 50%;
}

.img_left_newsbox.no_round_border {
	border-radius: 0%;
}

.row_newsbox_overview {
	border-bottom: 1px solid #e5e5e5;
}

.row_newsbox_overview._01 {
	border-bottom-style: solid;
}

.row_newsbox_overview._03 {
	border-bottom-style: solid;
}

.row_newsbox_overview.no_border_bottom {
	border-bottom-style: none;
}

.container_subnav_clients {
	height: 100%;
}

.hero_slider {
	display: block;
	height: 650px;
}

.padding_left_30 {
	padding-left: 30px;
}

.padding_bottom_60 {
	display: block;
	padding-bottom: 60px;
}

.padding_top_150 {
	padding-top: 150px;
}

.padding_left_20 {
	padding-left: 20px;
}

.padding_right_20 {
	padding-right: 20px;
}

.padding_top_80 {
	padding-top: 80px;
}

.padding_bottom_30 {
	padding-bottom: 30px;
}

.padding_bottom_20 {
	padding-bottom: 20px;
}

.section_downloads {
	display: block;
	width: 100%;
}

.padding_left_60 {
	display: block;
	padding-left: 60px;
}

.padding_right_60 {
	padding-right: 60px;
}

.background_color_red {
	display: block;
	background-color: #db002f;
	-webkit-transition-delay: initial;
	transition-delay: initial;
}

.background_color_blue {
	background-color: #2980b9;
}

.background_color_dark_blue {
	background-color: #34495e;
}

.background_color_green {
	background-color: #16a085;
}

.info_text_section {
	display: block;
}

.col_01_info_text_version_2 {
	padding-right: 20px;
	padding-left: 10px;
}

.col_02_info_text_version_2 {
	padding-right: 10px;
	padding-left: 20px;
}

.col_03_info_text_version_2 {
	padding-right: 20px;
	padding-left: 10px;
}

.col_04_info_text_version_2 {
	padding-right: 10px;
	padding-left: 20px;
}

.padding_bottom_40 {
	padding-bottom: 40px;
}

.padding_top_60 {
	padding-top: 60px;
}

.headline_usp_02 {
	width: auto;
	height: auto;
}

.headline_usp_03 {
	width: auto;
	height: auto;
}

.headline_usp_04 {
	width: auto;
	height: auto;
}

.vertical_align_text {
	position: relative;
	left: 0px;
	top: 50%;
	margin-right: auto;
	margin-left: auto;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.vertical_align_text:hover {
	text-shadow: none;
}

.headline_usp_01 {
	margin-right: auto;
	margin-left: auto;
}

.usp_link_01 {
	width: 100%;
	height: 100%;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	background-color: #faf2f4;
	text-decoration: none;
}

.usp_link_02 {
	width: 100%;
	height: 100%;
	border-right: 2px none white;
	border-bottom: 2px solid white;
	background-color: #faf2f4;
	text-decoration: none;
}

.usp_link_03 {
	width: 100%;
	height: 100%;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	background-color: #faf2f4;
	text-decoration: none;
}

.usp_link_04 {
	width: 100%;
	height: 100%;
	border-bottom: 2px solid white;
	background-color: #faf2f4;
	text-decoration: none;
}

.textlayer_usp_01 {
	color: #db002f;
	line-height: 28px;
	text-decoration: none;
}

.layer_text_usp_01 {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	float: left;
	background-color: white;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.textlayer_usp_02 {
	position: relative;
	display: block;
	margin-right: auto;
	margin-left: auto;
	color: #db002f;
	line-height: 28px;
}

.layer_text_usp_02 {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.layer_text_usp_03 {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.textlayer_usp_03 {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	color: #db002f;
	line-height: 28px;
}

.layer_text_usp_04 {
	position: absolute;
	z-index: 100;
	width: 100%;
	height: 100%;
	background-color: white;
	opacity: 0;
	-webkit-transition: all 400ms ease;
	transition: all 400ms ease;
}

.textlayer_usp_04 {
	position: relative;
	margin-right: auto;
	margin-left: auto;
	color: #db002f;
	line-height: 28px;
}

.padding_left_90 {
	padding-left: 90px;
}

.padding_right_90 {
	padding-right: 90px;
}

.padding_left_100 {
	padding-left: 100px;
}

.padding_right_100 {
	padding-right: 100px;
}

.padding_top_30 {
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
}

.padding_top_40 {
	padding-top: 40px;
}

.padding_left_120 {
	padding-left: 120px;
}

.padding_right_120 {
	display: block;
	padding-right: 120px;
}

.subnav_about_complete {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 340px;
	margin-top: 111px;
	background-color: #faf2f4;
	box-shadow: #151515 0px 10px 50px -25px;
}

.container_subnav_about {
	display: block;
	height: 100%;
}

.container_subnav_products {
	height: 100%;
}

.image_xovis_office_01 {
	border-radius: 4px;
}

.text_photo_caption {
	font-family: Roboto, sans-serif;
	font-size: 14px;
	line-height: 22px;
	font-weight: 300;
	letter-spacing: 0.04em;
}

.padding_bottom_10 {
	padding-bottom: 10px;
}

.div_image_xovis_structure {
	padding: 80px;
	border-radius: 4px;
	background-color: whitesmoke;
}

.margin_bottom_180 {
	margin-bottom: 180px;
}

.margin_bottom_10 {
	display: block;
	margin-bottom: 10px;
}

.padding_bottom_120 {
	display: block;
	padding-bottom: 120px;
}

.team_xovis {
	display: none;
}

.team_xovis.version_01 {
	display: block;
}

.section_headline.leading_system {
	height: 280px;
}

.section_headline.customer_success_stories {
	height: 280px;
}

.section_headline.usps {
	height: 280px;
}

.section_headline.downloads {
	height: 280px;
}

.section_headline.retail_customers {
	height: 280px;
}

.section_headline.team_xovis_image {
	height: 160px;
}

.section_headline.events {
	height: 280px;
}

.section_headline.xovis_products_red {
	height: 280px;
	background-color: #db002f;
}

.section_headline.join_our_team {
	height: 280px;
}

.section_usps {
	width: 100%;
}

.col_downloads_33 {
	position: relative;
	width: 100%;
	height: 100%;
	border-bottom: 2px none white;
	background-color: #f2f7fa;
	text-align: center;
}

.col_downloads_33.download_01 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.col_downloads_33.download_02 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.col_downloads_33.download_03 {
	float: left;
	border-bottom: 2px solid white;
}

.section_events {
	height: 500px;
}

.div_events_33 {
	position: relative;
	width: 100%;
	height: 100%;
	border-bottom: 2px solid white;
	background-color: #faf2f4;
	text-align: center;
}

.div_events_33.event_01 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.div_events_33.event_02 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.div_events_33.event_03 {
	float: left;
	border-bottom: 2px solid white;
}

.event_button {
	display: block;
	width: 200px;
	height: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color: #db002f;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.event_button:hover {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%, 92% 50%;
	background-repeat: no-repeat, no-repeat;
	color: white;
}

.box_career_section {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: whitesmoke;
	background-image: url('vhs-assets-css-1167b96a98d0144bedc758db7365eadf.jpg');
	background-position: 50% 50%;
}

.box_career_section.career_01 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	background-repeat: no-repeat;
}

.box_career_section.career_02 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	background-image: url('vhs-assets-css-15b7ad8121f68ae9a30000a312ba8fb6.jpg');
	background-repeat: no-repeat;
}

.box_career_section.career_03 {
	float: left;
	border-bottom: 2px solid white;
	background-image: url('vhs-assets-css-dbe10a4d9166be202dfe560f227921c3.jpg');
	background-repeat: no-repeat;
}

.div_career_headline {
	position: relative;
	top: 100px;
	z-index: 800;
	height: 100px;
	background-color: rgba(21, 21, 21, 0.49);
	-webkit-transform: translate(0px, -100%);
	-ms-transform: translate(0px, -100%);
	transform: translate(0px, -100%);
}

.link_career_33 {
	position: relative;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 100px;
	text-decoration: none;
}

.link_career_33:hover {
	background-color: rgba(0, 0, 0, 0.49);
}

.text_career_33 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	color: white;
	font-size: 22px;
	line-height: 25px;
}

.background_color_dark_grey {
	display: block;
	background-color: #333;
}

.background_color_black_light {
	background-color: #e5e5e5;
}

.textcolor_dark_grey {
	color: #333;
}

.hero_slider_slide_01.xovis {
	background-image: url('vhs-assets-css-be8943adb0239218fa40644f43729aaf.jpg');
	background-position: 50% 37%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_01.customers_airports {
	background-image: url('vhs-assets-css-dcc7e1f154fc38093a723a05c27a1012.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_01.customers_retail {
	background-image: url('vhs-assets-css-9aa7fbb171f565110be289bfd7e8e47a.jpg');
	background-size: cover;
}

.hero_slider_slide_01.about_company {
	background-image: url('vhs-assets-css-c02b6c2d9f32d1a11572c99c748f0d69.jpg');
	background-size: cover;
}

.hero_slider_slide_01.about_team {
	background-image: url('vhs-assets-css-c02b6c2d9f32d1a11572c99c748f0d69.jpg');
	background-size: cover;
}

.hero_slider_slide_01.about_careers {
	background-image: url('vhs-assets-css-c02b6c2d9f32d1a11572c99c748f0d69.jpg');
	background-size: cover;
}

.hero_slider_slide_02 {
	height: 550px;
	background-image: url('vhs-assets-css-b054d6704554f50f481bcde81447549e.jpg');
	background-size: cover;
}

.hero_slider_slide_02.xovis {
	height: 550px;
	background-image: url('vhs-assets-css-63f8c04a698421305a1d143be6ea77cf.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_02.customers_airports {
	height: 550px;
	background-image: url('vhs-assets-css-594b7d09b010dbe2436e9d76790d2ae4.jpg');
	background-position: 100% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_02.customers_retail {
	height: 550px;
	background-image: url('vhs-assets-css-9aa7fbb171f565110be289bfd7e8e47a.jpg');
}

.hero_slider_slide_02.about_company {
	height: 550px;
	background-image: url('vhs-assets-css-b054d6704554f50f481bcde81447549e.jpg');
	background-size: cover;
}

.hero_slider_slide_02.about_team {
	height: 550px;
	background-image: url('vhs-assets-css-b054d6704554f50f481bcde81447549e.jpg');
	background-size: cover;
}

.hero_slider_slide_03 {
	height: 700px;
}

.hero_slider_slide_03.xovis {
	height: 550px;
	background-image: url('vhs-assets-css-f963cb0cbef2b315a0298159b072a414.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_03.customers_airports {
	height: 550px;
	background-image: url('vhs-assets-css-8ab6d4f0e19f0e17408e6c42c1073705.jpg');
	background-position: 50% 50%;
	background-size: cover;
}

.hero_slider_slide_04 {
	height: 700px;
}

.hero_slider_slide_04.xovis {
	height: 550px;
	background-image: url('vhs-assets-css-b40c865ed7b7649ce5a82e75bdfd59f3.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_04.customers_airports {
	height: 550px;
	background-image: url('vhs-assets-css-ee65e30d66862a35cfd68a78d6be3258.png');
	background-position: 78% 80%, 50% 50%;
	background-size: auto, cover;
	background-repeat: no-repeat, no-repeat;
}

.hero_slider_slide_05 {
	height: 700px;
}

.hero_slider_slide_05.xovis {
	height: 550px;
	background-image: url('vhs-assets-css-6bc8e647e0495d8ff3425f74b6f2326e.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero_slider_slide_05.customers_airports {
	height: 550px;
	background-image: url('vhs-assets-css-a16cd88f3c18ff60db551368c42a9533.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.section.worldmap {
	background-color: whitesmoke;
}

.padding_bottom_80 {
	padding-top: 0px;
	padding-bottom: 80px;
}

.fact_01_leading_system {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
}

.fact_01_leading_system._01 {
	padding-bottom: 0px;
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
}

.fact_02_leading_system {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
}

.fact_02_leading_system._02 {
	padding-bottom: 0px;
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
}

.fact_03_leading_system {
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
}

.fact_03_leading_system._03 {
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
}

.margin_bottom_30 {
	margin-bottom: 30px;
}

.margin_bottom_40 {
	margin-bottom: 40px;
}

.margin_bottom_50 {
	margin-bottom: 50px;
}

.margin_bottom_60 {
	margin-bottom: 60px;
}

.margin_bottom_80 {
	margin-bottom: 80px;
}

.margin_top_30 {
	margin-top: 30px;
}

.margin_top_40 {
	margin-top: 40px;
}

.margin_top_60 {
	margin-top: 60px;
}

.margin_top_90 {
	margin-top: 90px;
}

.container_section_headline {
	height: 100%;
}

.section_leading_system {
	margin-bottom: 110px;
}

.padding_left_40 {
	padding-left: 40px;
}

.padding_right_40 {
	padding-right: 40px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	text-decoration: none;
}


.list_element {
	font-family: Roboto, sans-serif;
	color: #151515;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;
}

.list_element.success_stories {
	color: #34495e;
}

.list_element.copenhagen_airports {
	color: #34495e;
	list-style-type: disc;
}

.list_element.statement_bullets {
	color: #34495e;
	font-size: 18px;
	line-height: 25px;
	font-weight: 400;
}

.list_element.vienna_airport {
	color: #34495e;
}

.padding_top_20 {
	padding-top: 20px;
}

.margin_top_10 {
	margin-top: 10px;
}

.statement_success_stories {
	font-size: 40px;
	line-height: 40px;
	font-weight: 100;
}

.caption_text {
	font-size: 14px;
	line-height: 20px;
	font-weight: 300;
	letter-spacing: 0.04em;
}

.row_customers_statement {
	height: 440px;
}

.padding_top_10 {
	padding-top: 10px;
}

.text_normal {
	font-weight: 400;
}

.button_download_video {
	height: 50px;
	border-radius: 4px;
	-webkit-transition: all 150ms ease;
	transition: all 150ms ease;
	line-height: 50px;
	text-decoration: none;
}

.button_download_video:hover {
	border: 1px solid #b2c4d4;
	background-color: white;
	color: #34495e;
}

.image_airport_sensor.pc3_sensor {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background-color: white;
}

.margin_bottom_5 {
	margin-bottom: 5px;
}

.section_read_more {
	display: block;
	width: 100%;
	height: 300px;
}

.overlay_software_customers_airports {
	position: relative;
	width: 100%;
	height: 160px;
	float: left;
	border-radius: 4px;
	text-decoration: none;
}

.layer-software_customers_airports_01 {
	position: absolute;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #e8d3d8;
	border-radius: 4px;
	background-color: white;
	opacity: 0;
}

.head_overlay_software_customers {
	width: 100%;
	background-image: url('vhs-assets-css-4b8ceccda1b3ec79f63f02920997d321.svg');
	background-position: 95% 50%;
	background-size: auto 50%;
	background-repeat: no-repeat;
}

.background_color_white {
	background-color: white;
	opacity: 1;
}

.layer_software_customers_airports_02 {
	position: absolute;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #e8d3d8;
	border-radius: 4px;
	background-color: white;
	opacity: 0;
}

.text_overlay {
	line-height: 25px;
}

.layer_software_customers_airports_03 {
	position: absolute;
	z-index: 100;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #e8d3d8;
	border-radius: 4px;
	background-color: white;
	opacity: 0;
}

.div_text_software_customers {
	width: 100%;
	height: 100%;
}

.pts_infographic {
	border: 1px solid #e5e5e5;
	border-radius: 4px;
	background-color: white;
}

.col_01_client_logos_airport {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	background-color: transparent;
}

.col_02_client_logos_airport {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	background-color: transparent;
}

.col_03_client_logos_airport {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	background-color: transparent;
}

.col_04_client_logos_airport {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #e5e5e5;
	border-right: 1px solid #e5e5e5;
	background-color: transparent;
}

.col_05_client_logos_airport {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
	border-top: 1px solid #e5e5e5;
	background-color: transparent;
}

.col_01_airport_logo_01 {
	position: relative;
	display: inline-block;
	padding-top: 10%;
	background-color: white;
	background-image: url('vhs-assets-css-e99480e766eaa51c53565dd80529d3eb.svg');
	background-position: 50% 50%;
	background-size: auto 55%;
	background-repeat: no-repeat;
	text-align: center;
}

.col_02_airport_logo_01 {
	background-color: white;
	background-image: url('vhs-assets-css-f1e67cd02a36212b8f644fc48b1ed198.svg');
	background-position: 50% 41%;
	background-size: auto 80%;
	background-repeat: no-repeat;
	text-align: center;
}

.col_03_airport_logo_01 {
	display: inline-block;
	padding-top: 16%;
	background-image: url('vhs-assets-css-bc355965800dce62544a5e46d8ecbb94.png');
	background-position: 50% 50%;
	background-size: auto 36%;
	background-repeat: no-repeat;
	text-align: center;
}

.col_04_airport_logo_01 {
	display: inline-block;
	padding-top: 14%;
	background-image: url('vhs-assets-css-535ff58ad0896fd1b15e6bfc3164bef8.png');
	background-position: 50% 50%;
	background-size: auto 45%;
	background-repeat: no-repeat;
	text-align: center;
}

.col_05_airport_logo_01 {
	display: inline-block;
	padding-top: 13%;
	background-image: url('vhs-assets-css-120a9f5bf2e16744f78029ca278faef6.svg');
	background-position: 50% 50%;
	background-size: auto 46%;
	background-repeat: no-repeat;
	text-align: center;
}

.col_01_airport_logo_02 {
	background-color: white;
	background-image: url('vhs-assets-css-af5a841c6d583490c06d87d80255f5e9.svg');
	background-position: 46% 54%;
	background-size: auto 27%;
	background-repeat: no-repeat;
}

.col_01_airport_logo_03 {
	display: inline-block;
	background-color: white;
	background-image: url('vhs-assets-css-4bf0089d95be44ed827d84daa4475f5f.svg');
	background-position: 50% 37%;
	background-size: auto 53%;
	background-repeat: no-repeat;
}

.col_02_airport_logo_02 {
	background-color: white;
	background-image: url('vhs-assets-css-143db622f642ab103f4b1cee0557d03b.svg');
	background-position: 50% 50%;
	background-size: auto 35%;
	background-repeat: no-repeat;
}

.col_03_airport_logo_03 {
	background-color: white;
	background-image: url('vhs-assets-css-9290554517b3c6cca7a651cda0f7c912.png');
	background-position: 50% 53%;
	background-size: auto 21%;
	background-repeat: no-repeat;
}

.col_03_airport_logo_02 {
	background-color: white;
	background-image: url('vhs-assets-css-3bbd7c6ea4984426cf55b6ef9fe071d5.svg');
	background-position: 50% 53%;
	background-size: auto 30%;
	background-repeat: no-repeat;
}

.col_04_airport_logo_02 {
	background-color: white;
	background-image: url('vhs-assets-css-5b1d0cacd10a2b057fb10bb93b873a92.svg');
	background-position: 50% 46%;
	background-size: auto 29%;
	background-repeat: no-repeat;
}

.col_04_airport_logo_03 {
	background-color: white;
	background-image: url('vhs-assets-css-f907fa4de4468d1bac751a228453a264.svg');
	background-position: 50% 44%;
	background-size: auto 35%;
	background-repeat: no-repeat;
}

.col_05_airport_logo_02 {
	background-color: white;
	background-image: url('vhs-assets-css-681449e3afa731b48c826a8df295e812.png');
	background-position: 46% 50%;
	background-size: auto 29%;
	background-repeat: no-repeat;
}

.col_05_airport_logo_03 {
	background-color: white;
	background-image: url('vhs-assets-css-d6c5f55481d813adef3e66fc769502fc.svg');
	background-position: 50% 50%;
	background-size: auto 14%;
	background-repeat: no-repeat;
}

.col_02_airport_logo_03 {
	background-color: white;
	background-image: url('vhs-assets-css-f3ed4f44fbca930126b0b88700846310.svg');
	background-position: 50% 40%;
	background-size: auto 43%;
	background-repeat: no-repeat;
}

.image_worldmap {
	padding-top: 80px;
	padding-right: 300px;
	padding-left: 300px;
}


.subnav_customers_complete {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 380px;
	margin-top: 111px;
	border-bottom: 1px none #999;
	background-color: white;
	background-image: -webkit-linear-gradient(#e6eef2, #edfaf7);
	background-image: linear-gradient(#e6eef2, #edfaf7);
	box-shadow: #151515 0px 10px 50px -25px;
}

.subnav_products_complete {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: none;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 380px;
	margin-top: 111px;
	background-color: white;
	background-image: -webkit-linear-gradient(#e6eef2, #edfaf7);
	background-image: linear-gradient(#e6eef2, #edfaf7);
	box-shadow: #151515 0px 10px 50px -25px;
}

.header {
	height: 128px;
	width: 100%;
	position: fixed;
	top: 0px;
	transition: top 0.3s ease-in-out;
	z-index: 1000;
}

.xovis_path {
	background-color: #db002f;
	z-index: 1000;
	display: block;
	height: 30px;
}

.navigation_path {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
	color: white;
}

.footer_path {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 15px;
}

.navigation_path a, .footer_path a, .footer_path span {
	font-size: 12px;
	color: white;
	display: inline;
}

.navigation_path a:hover, .footer_path a:hover {
	color: #151515;
}

.navigation_path i, .footer_path i {
	font-size: 14px;
}

.navigation_path_left {
	float: left;
}

.navigation_path_left i {
	font-size: 14px;
	margin-right: 5px;
}


.navigation_path_right {
	float: right;
}

/* Add a black background color to the top navigation */
.xovis_navigation {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	/*overflow: hidden;*/
	background-color: white;
	border-top: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	z-index: 2000;
}

.logo-xovis {
	width: 150px;
	height: auto;
}

.navigation_links, .navigation_logo {
	height: 50%;
	display: flex;
}

.navigation_logo {
	padding: 0 40px;
	align-items: center;
}

.navigation_links {
	align-items: flex-end;
	padding-bottom: 5px;
}

.xovis_nav_up {
	top: -140px;
}

/* Style the links inside the navigation bar */
.xovis_navigation a {
	margin-right: 15px;
	/*float: left;*/
	display: block;
	color: #151515;
	text-align: left;
	text-decoration: none;
	font-size: 17px;
	/*white-space: nowrap;*/
}

.xovis_navigation a:hover {
	color: #db002f;
}

.xovis_navigation a.active {
	color: #db002f;
}

.lead-wrapper {
	position: relative;
	overflow: hidden;
}

.leadtext-wrapper {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.lead-wrapper img {
	height: 340px;
	width: auto;
	max-width: none;
}

.lead_text {
	margin: 0 auto;
	text-align: center;
	max-width: 1140px;
	padding-right: 25px;
	padding-left: 25px;
}

.lead_text h1 {
	margin-bottom: 20px;
}

.lead_text p {
	font-family: Roboto, 'sans-serif';
	/*font-weight: 500;*/
}

.teaser_wrapper {
	width: 100%;
}

.teaser_row {
	display: flex;
	justify-content: center;
}

.teaser_item_wrapper {
	margin: 10px;
}

.item_small {
	width: calc(100% / 3 * 1);
}

.item_large {
	width: calc(100% / 3 * 2);
}

.teaser_grid_item {
	position: relative;
	overflow: hidden;
}

.item_small .teaser_grid_item {
	padding-top: 120%;
}

.item_large .teaser_grid_item {
	padding-top: 60%;
}

.teaser_grid_item > a {
	position: absolute;
	text-align: left;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.item_small .teaser_bubble {
	width: 125%;
	height: 100%;
	bottom: -54%;
	left: -25%;
}

.item_large .teaser_bubble {
	width: 100%;
	height: 0;
	padding-top: 100%;
	bottom: -120%;
	left: -20%;
}

.teaser_content img {
	width: 100%;
	height: 100%;
	z-index: 300;
	object-fit: cover;
}

.item_small .crop_left img {
	width: auto;
	height: 100%;
	max-width: none;
}

.item_small .crop_right {
	direction: rtl;
}

.item_small .crop_right img {
	width: auto;
	height: 100%;
	max-width: none;
}

.item_small .crop_center {
}

.item_small .crop_center img {
	width: auto;
	height: 100%;
	max-width: none;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.teaser_bubble {
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.8;
	position: absolute;
	z-index: 301;
}

.teaser_content:hover {
	cursor: pointer;
}

.teaser_content:hover .teaser_bubble {
	background-color: #DB0000;
}

.teaser_content:hover h4, .teaser_content:hover p {
	color: white;
}

.item_large .teaser_content_text {
	width: 45%;
}

.teaser_content_text {
	width: 80%;
	text-transform: uppercase;
	position: absolute;
	top: 70%;
	left: 40px;
	z-index: 302;
	direction: ltr;
}

.teaser_content_text * {
	font-family: Roboto, 'sans-serif';
	font-weight: 500;
}

.link_main_navigation.mail_icon {
	background-image: url('vhs-assets-css-33374394de2f6f25aae9f22c012df781.svg');
	background-position: 50% 50%;
	background-size: auto 25%;
	background-repeat: no-repeat;
}

.link_main_navigation.mail_icon:hover {
	background-image: url('vhs-assets-css-db0ca68edc40bf313649af568a5e1dd4.svg');
	background-position: 50% 50%;
	background-size: auto 25%;
	background-repeat: no-repeat;
	background-attachment: scroll;
}

.link_main_navigation.xovis_logo {
	height: 100%;
	background-image: url('vhs-assets-css-6ed3db0074464e9e329b1c2caa24d5e1.svg');
	background-position: 50% 50%;
	background-size: auto 35%;
	background-repeat: no-repeat;
}

.link_main_navigation.clicked {
	height: 100%;
	color: #db002f;
	line-height: 75px;
}

.link_main_navigation.clicked:hover {
	color: #151515;
}

.content {
	display: block;
	transition: 0.5s;
}

.cont_subnav_4_col {
	padding-right: 10px;
	padding-left: 10px;
}

.column_no_padding {
	padding-right: 0px;
	padding-left: 0px;
}

.button_subnav_4_col,
.button_subnav_3_col {
	height: 40px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
	font-size: 16px;
	line-height: 40px;
	font-weight: 300;
	text-align: left;
	text-decoration: none;
}

.button_subnav_4_col:hover,
.button_subnav_3_col:hover {
	border-style: none;
	border-color: transparent;
	background-color: #db002f;
	color: white;
}

.subnav_headlne {
	height: auto;
	font-family: Roboto, sans-serif;
	font-size: 18px;
	line-height: 22px;
	font-weight: 400;
	text-align: left;
}

.subnav_headlne.about.w--current {
	text-decoration: none;
}

.subnav_headlne.about.w--current:hover {
	color: #151515;
}

.subnav_headlne.products_airports.w--current {
	text-decoration: none;
}

.subnav_headlne.products_airports.w--current:hover {
	color: #151515;
}

.subnav_headlne.customer_airports.w--current {
	text-decoration: none;
}

.subnav_headlne.customer_airports.w--current:hover {
	color: #151515;
}

.subnav_headlne.customers_retail.w--current {
	text-decoration: none;
}

.subnav_headlne.customers_retail.w--current:hover {
	color: #151515;
}

.subnav_headlne.products_retail.w--current {
	text-decoration: none;
}

.subnav_headlne.products_retail.w--current:hover {
	color: #151515;
}

.subnav_headlne.xovis {
	height: auto;
	text-align: left;
	text-decoration: none;
}

.subnav_headlne.xovis:hover {
	color: #151515;
}

.subnav_headlne.press {
	height: auto;
	text-align: left;
	text-decoration: none;
}

.cont_subnav_2_col {
	padding-right: 60px;
	padding-left: 60px;
}

.button_subnav_2_col {
	height: 40px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
	font-size: 16px;
	line-height: 40px;
	text-align: left;
	text-decoration: none;
}

.button_subnav_2_col:hover {
	border-style: none;
	border-color: transparent;
	background-color: #db002f;
	color: white;
}

.button_subnav_2_col.w--current {
	border-style: none;
}

.button_subnav_2_col.products_airports {
	color: #34495e;
}

.button_subnav_2_col.products_airports:hover {
	background-color: #34495e;
	color: white;
}

.button_subnav_2_col.products_airports.col_01_01 {
	display: block;
}

.button_subnav_2_col.customers_airports {
	color: #34495e;
}

.button_subnav_2_col.customers_airports:hover {
	background-color: #34495e;
	color: white;
}

.button_subnav_2_col.customers_retail {
	color: #16a085;
}

.button_subnav_2_col.customers_retail:hover {
	background-color: #16a085;
	color: white;
}

.button_subnav_2_col.products_retail {
	color: #16a085;
}

.button_subnav_2_col.products_retail:hover {
	background-color: #16a085;
	color: white;
}

.navigation_path_black {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: block;
	height: 50px;
	background-color: rgba(21, 21, 21, 0.8);
}

.div_navigation_path {
	height: 100%;
}

.cont_navigation_path {
	height: 100%;
}

.navigation_path_indicator {
	width: 400px;
	float: left;
	font-family: Roboto, sans-serif;
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.div_explore_button {
	padding-right: 5px;
	padding-left: 5px;
}

.div_explore_button:hover {
	border-style: none;
}

.padding_right_10 {
	height: 420px;
	padding-right: 10px;
}

.link_explore {
	width: 84px;
	height: 24px;
	margin-top: 6px;
	float: right;
	text-decoration: none;
}

.link_explore:hover {
	border-radius: 4px;
	background-color: white;
}

.txt_explore {
	background-image: url('vhs-assets-css-cddfafda8673eb11a76cd2a336c19ab7.svg');
	background-position: 7% 50%;
	background-size: auto 50%;
	background-repeat: no-repeat;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-align: right;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.txt_explore:hover {
	background-image: url('vhs-assets-css-59f456be720d1ab6cd5125b1ce2451cd.svg');
	background-position: 7% 50%;
	background-size: auto 50%;
	background-repeat: no-repeat;
	color: #151515;
	text-decoration: none;
}

.padding_left_8 {
	padding-left: 8px;
}

.padding_right_8 {
	padding-right: 8px;
	border-radius: 4px;
}

.subnav_xovis_complete {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 3000;
	display: none;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 340px;
	margin-top: 111px;
	border-bottom: 5px none #db002f;
	background-color: #faf2f4;
	box-shadow: #151515 0px 10px 50px -23px;
}

.container_subnav_xovis {
	height: 100%;
}

.subnav_press_complete {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: none;
	height: 340px;
	margin-top: 111px;
	background-color: #faf2f4;
}

.right_area_slider {
	left: auto;
}

.left_area_slider {
	background-color: transparent;
}

.bullet_points_slider_nav {
	padding-top: 17px;
	background-color: transparent;
	font-size: 10px;
}

.arrow_image_slider {
	width: 40px;
	height: 40px;
	margin-top: 0px;
	margin-bottom: 0px;
	border-radius: 50%;
	background-color: #db002f;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.arrow_image_slider.xovis_red {
	border: 2px solid white;
	background-color: #db002f;
}

.arrow_image_slider.xovis_red.left_side {
	left: 20px;
	background-image: url('vhs-assets-css-be51d14245bce0ce8e399b1b4066b003.svg');
	background-position: 44% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.arrow_image_slider.xovis_red.right_side {
	left: 20px;
	background-image: url('vhs-assets-css-b5f42bc817947f8c0581800a57e1d204.svg');
	background-position: 57% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.arrow_image_slider.airports_blue {
	border: 2px solid white;
	background-color: #34495e;
}

.arrow_image_slider.airports_blue.left_side {
	left: 20px;
	background-image: url('vhs-assets-css-be51d14245bce0ce8e399b1b4066b003.svg');
	background-position: 44% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.arrow_image_slider.airports_blue.right_side {
	left: 20px;
	background-image: url('vhs-assets-css-b5f42bc817947f8c0581800a57e1d204.svg');
	background-position: 57% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.arrow_image_slider.retail_green {
	border: 2px solid white;
	background-color: #16a085;
}

.arrow_image_slider.retail_green.left_side {
	left: 20px;
	background-image: url('vhs-assets-css-be51d14245bce0ce8e399b1b4066b003.svg');
	background-position: 44% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.arrow_image_slider.retail_green.right_side {
	left: 20px;
	background-image: url('vhs-assets-css-b5f42bc817947f8c0581800a57e1d204.svg');
	background-position: 57% 50%;
	background-size: auto 60%;
	background-repeat: no-repeat;
}

.main_navigation_phone_vertical {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 2000;
	display: block;
	height: 75px;
}

.main_nav_div_phone {
	height: 100%;
}

.padding_left_50 {
	padding-left: 50px;
}

.padding_right_50 {
	padding-right: 50px;
}

.off {
	display: none;
}

.usps {
	height: 850px;
}

.col_usps {
	height: 500px;
	padding-right: 0px;
	padding-left: 0px;
}

.col_downloads {
	position: static;
	left: 0px;
	top: 0px;
	height: 500px;
	padding-right: 0px;
	padding-left: 0px;
}

.cont_headline_success_story {
	height: 170px;
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
}

.cont_subheadline_success_story {
	border-right: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}

.row_2_col_success_story {
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}

.row_2_col_success_story_statements {
	border-right: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	border-left: 1px solid #e5e5e5;
}

.col_01_success_story_statement {
	height: 100%;
}

.pts_infographic {
	border-style: solid;
}

.butt_read_more_center {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0%;
	width: 400px;
	height: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 50px;
	text-decoration: none;
}

.butt_read_more_center.xovis_red {
	background-color: #db002f;
	color: white;
	text-decoration: none;
}

.butt_read_more_center.xovis_red:hover {
	background-color: white;
	color: #db002f;
}

.butt_read_more_center.xovis_red.jump_to_products_01 {
	width: 250px;
	padding-right: 20px;
	padding-left: 20px;
}

.butt_read_more_center.xovis_red.jump_to_send_via_mail {
	width: 280px;
	padding-right: 20px;
	padding-left: 20px;
}

.butt_read_more_center.xovis_red.jump_to_events_01 {
	width: 180px;
	padding-right: 20px;
	padding-left: 20px;
}

.butt_read_more_center.xovis_red.jump_to_press_overview {
	width: 225px;
	padding-right: 20px;
	padding-left: 20px;
}

.butt_read_more_center.xovis_red.jump_back_to_news {
	width: 240px;
}

.butt_read_more_center.download_blue {
	background-color: #2980b9;
	color: white;
	text-decoration: none;
}

.butt_read_more_center.download_blue:hover {
	background-color: white;
	color: #2980b9;
}

.butt_read_more_center.download_blue.jump_to_products_01 {
	width: 240px;
	padding-right: 20px;
	padding-left: 20px;
}

.butt_read_more_center.xovis_black {
	background-color: #333;
	color: white;
	text-decoration: none;
}

.butt_read_more_center.xovis_black:hover {
	background-color: white;
	color: #151515;
}

.butt_read_more_center.xovis_black.jump_to_careers_01 {
	width: 255px;
	padding-right: 20px;
	padding-left: 20px;
}

.background_color_download_blue_light {
	background-color: #f2f7fa;
}

.col_career_section {
	height: 360px;
	padding-right: 0px;
	padding-left: 0px;
}

.col_events {
	position: static;
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
}

.row_events {
	height: 100%;
}

.text_bubble_small {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	font-size: 22px;
	line-height: 28px;
}

.text_bubble_big {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	font-size: 40px;
	line-height: 40px;
	letter-spacing: 0.02em;
}

.cont_hero {
	height: 100%;
}

.text_headline_hero_big_white {
	color: white;
	text-align: left;
}

.img_left_col_newsbox {
	padding-right: 40px;
	padding-left: 20px;
}

.text_right_col_newsbox {
	padding-right: 0px;
	padding-left: 0px;
}

.cont_text_right_newsbox {
	padding-right: 10px;
	padding-left: 10px;
}

.hero_small {
	height: 280px;
}

.hero_small.xovis_red {
	background-color: #db002f;
}

.butt_visit_website {
	width: 300px;
	height: 50px;
	padding-left: 20px;
	border-radius: 4px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 50px;
	text-align: left;
}

.butt_visit_website.xovis_light_red {
	background-color: #faf2f4;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
	text-decoration: none;
}

.butt_visit_website.xovis_light_red:hover {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
}

.butt_visit_website.xovis_light_red.jump_retail_next {
	width: 196px;
}

.margin_bottom_150 {
	margin-bottom: 150px;
}

.container_contact_press {
	height: 100%;
}

.row_contact_box {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_left_col_contact {
	padding-right: 10px;
	padding-left: 0px;
}

.cont_image_left_contactbox {
	padding-right: 60px;
	padding-left: 110px;
}

.img_left_contact {
	border-radius: 50%;
}

.text_right_col_contact {
	padding-right: 0px;
	padding-left: 0px;
}

.contact_xovis {
	color: #151515;
	background-color: #EAEAEA;
	height: 100%;
	display: flex;

	justify-content: space-around;
	align-items: center;
}

.contact_xovis_block p, .contact_xovis_block a {
	font-size: 16px;
	display: block;
	color: #151515;
}

@media (max-width: 830px) {
	.contact_xovis_block p, .contact_xovis_block a {
		font-size: 15px;
	}
}

.xovis-backTop-button {
	position: absolute;
	right: 40px;
	top: -20px;
	width: 40px;
	height: 40px;
	margin-top: 0px;
	margin-bottom: 0px;
	border-radius: 50%;
	z-index: 2000;
	background-color: #db002f;
	background-image: url('vhs-assets-css-411526a0b709e5c20f51398a19db4616.svg');
	background-position: 50% 50%;
	background-size: auto 40%;
	background-repeat: no-repeat;
	transform: rotate(180deg);
	cursor: pointer;
}

.xovis-backTop-button:hover {
	transform: scale(1.1) rotate(180deg);
	transition: transform .2s ease-in-out;
}

.cont_butt_right_contact_xovis {
	margin-top: 15px;
}

.cont_butt_right_contact_xovis a {
	font-size: 20px;
	display: inline;
	color: #db002f;
}

.cont_butt_right_contact_xovis span {
	margin-left: 10px;
}

.cont_butt_right_contact_xovis a:hover {
	color: #151515;
}

.cont_infotext {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.infotext-text {
	width: 100%;
	margin-bottom: 20px;
}

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

.xovis_load_button {
	width: 250px;
	height: 50px;
	border-radius: 4px;
	background-color: #fff;
	color: #DB002F;
	line-height: 50px;
	text-decoration: none;
	border: 1px solid #DB002F;
	border-radius: 5px;
	font-weight: bold;
	text-align: center;
	width: 150px;
}

.xovis_load_button:hover {
	background-color: #db002f;
	color: white;
}

.news-related-load-button {
	display: none;
	font-size: 18px;
	margin: 0 auto;
}

.butt_contactbox {
	height: 50px;
	padding-left: 20px;
	border-radius: 4px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 50px;
	text-align: left;
}

.butt_contactbox.w--current {
	width: 300px;
	height: 50px;
	padding-left: 20px;
	border-radius: 4px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.butt_contactbox.xovis_red {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 96% 50%;
	background-repeat: no-repeat;
	color: white;
	text-decoration: none;
}

.butt_contactbox.xovis_red:hover {
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.butt_contactbox.xovis_red.w--current {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
	text-decoration: none;
}

.butt_contactbox.xovis_red.w--current:hover {
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.butt_contactbox.xovis_red.jump_to_email {
	width: 250px;
	background-position: 92% 50%;
}

.butt_contactbox.xovis_red.jump_to_email.w--current {
	width: 250px;
}

.content_slider_01 {
	background-image: url('vhs-assets-css-68cbaea62e552fe534eff401988acbe9.jpg');
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}

.content_slider_100 {
	height: 500px;
}

.content_slider_02 {
	background-image: url('vhs-assets-css-f65fa3f3119f4ca54457c158d598a6bc.jpg');
	background-position: 50% 0px;
	background-size: cover;
	background-repeat: no-repeat;
}

.content_slider_03 {
	background-image: url('vhs-assets-css-69bc87bb49466cf8bc54266a8a452780.jpg');
	background-position: 50% 50%;
	background-size: cover;
}

.butt_read_more_left {
	height: 50px;
	padding-left: 20px;
	border-radius: 4px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.butt_read_more_left.white_red {
	background-color: white;
	color: #db002f;
	text-decoration: none;
}

.butt_read_more_left.white_red:hover {
	background-color: #151515;
	color: white;
}

.butt_read_more_left.white_red.jump_to_press_detail {
	width: 250px;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.white_red.jump_to_press_detail:hover {
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.white_red.jump_to_email {
	width: 170px;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.white_red.jump_to_email:hover {
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.xovis_red {
	background-color: #db002f;
	color: white;
}

.butt_read_more_left.xovis_red.jump_to_article {
	width: 220px;
	background-color: #faf2f4;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.butt_read_more_left.xovis_red.jump_to_article:hover {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
}

.butt_read_more_left.xovis_red.jump_to_job_opportunity {
	width: 159px;
	background-color: #faf2f4;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.butt_read_more_left.xovis_red.jump_to_job_opportunity:hover {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
}

.butt_read_more_left.xovis_red.jump_to_airport_products {
	width: 220px;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.xovis_red.jump_to_airport_products:hover {
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: #db002f;
}

.butt_read_more_left.retail_green {
	background-color: #16a085;
	color: white;
}

.butt_read_more_left.retail_green:hover {
	background-color: white;
	color: #16a085;
}

.butt_read_more_left.retail_green.jump_to_download_success_story {
	width: 220px;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.butt_read_more_left.retail_green.jump_to_download_success_story:hover {
	background-image: url('vhs-assets-css-dc6fbbd45b4637f6d3668ee8b252750c.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.cont_headline_and_button {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	margin-right: 60px;
	margin-left: 60px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.row_article_list {
	border-bottom: 1px solid #e5e5e5;
}

.row_article_list.no_border {
	border-bottom-style: none;
}

.row_article_list_50.no_border_bottom {
	border-bottom-style: none;
}

.col_left_article_list {
	height: 350px;
	padding-right: 10px;
	border-bottom: 1px solid #e5e5e5;
}

.col_left_article_list.image {
	height: 600px;
}

.col_left_article_list.no_border_bottom {
	border-bottom-style: none;
}

.col_left_article_list.news_archive_01 {
	height: 350px;
}

.col_left_article_list.news_archive_03 {
	height: 350px;
}

.col_left_article_list.news_archive_05 {
	height: 350px;
}

.col_left_article_list.news_archive_07 {
	height: 350px;
}

.col_right_article_list {
	padding-left: 10px;
	border-bottom: 1px solid #e5e5e5;
}

.col_right_article_list.image {
	height: 600px;
}

.col_right_article_list.no_border_bottom {
	border-bottom-style: none;
}

.col_right_article_list.news_archive_02 {
	height: 350px;
}

.col_right_article_list.news_archive_04 {
	height: 350px;
}

.col_right_article_list.news_archive_06 {
	height: 350px;
}

.col_right_article_list.news_archive_08 {
	height: 350px;
}

.cont_butt_article_list_50 {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 40px;
	margin-left: 10px;
}

.cont_article_list_50_left {
	height: 100%;
}

.section_latest_news {
	width: 100%;
}

.col_latest_news {
	position: static;
	height: 400px;
	padding-right: 0px;
	padding-left: 0px;
}

.div_latest_news_33 {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #faf2f4;
	text-align: center;
}

.div_latest_news_33.latest_news_01 {
	float: left;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.div_latest_news_33.latest_news_01.no_border {
	border-bottom-style: none;
}

.div_latest_news_33.latest_news_02 {
	border-right: 2px solid white;
	border-bottom: 2px solid white;
}

.div_latest_news_33.latest_news_02.no_border {
	float: left;
	border-bottom-style: none;
}

.div_latest_news_33.latest_news_03 {
	border-bottom: 2px solid white;
}

.div_latest_news_33.latest_news_03.no_border {
	float: left;
	border-bottom-style: none;
}

.butt_latest_news {
	width: 200px;
	height: 50px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	color: #db002f;
	line-height: 50px;
	text-align: left;
	text-decoration: none;
}

.butt_latest_news:hover {
	background-color: #db002f;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	color: white;
}

.section_contact_xovis {
	height: 300px;
}

.section_contact_xovis.footer_big {
	height: 400px;
}

.row_contact_xovis {
	position: relative;
	height: 100%;
}

.img_left_col_contact_xovis {
	height: 100%;
	padding-right: 0px;
	padding-left: 0px;
}

.cont_image_left_contact_xovis {
	height: 100%;
}

.cont_text_right_contact_xovis {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 50%;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.text_headline_right_contact_xovis {
	display: block;
}

.text_paragraph_right_contact_xovis {
	display: block;
}

.butt_contact_xovis {
	height: 50px;
	padding-left: 20px;
	border-radius: 4px;
	line-height: 50px;
	text-align: left;
}

.butt_contact_xovis.xovis_red {
	background-color: #faf2f4;
	color: #db002f;
	text-decoration: none;
}

.butt_contact_xovis.xovis_red:hover {
	background-color: #db002f;
	color: white;
}

.butt_contact_xovis.xovis_red.jump_to_email {
	width: 100px;
	background-color: white;
	background-image: url('vhs-assets-css-b022492e14f903fc5a896128de51aff6.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.butt_contact_xovis.xovis_red.jump_to_email:hover {
	background-color: #151515;
	background-image: url('vhs-assets-css-dcc531af5211310ea602429333f230ae.svg');
	background-position: 92% 50%;
	background-repeat: no-repeat;
}

.maps_google {
	height: 100%;
}

.subnav_about_complete_vertical {
	position: fixed;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1000;
	display: block;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 340px;
	margin-top: 111px;
	background-color: #faf2f4;
	box-shadow: #151515 0px 10px 50px -25px;
}

.link_email {
	display: inline;
	width: 150px;
	height: auto;
	line-height: 25px;
	text-align: left;
	text-decoration: none;
}

.link_email:hover {
	color: #fff;
}

.link_email.xovis_red {
	color: #db002f;
}

.link_email.xovis_red:hover {
	color: #151515;
}

.link_phone_number {
	display: inline;
	line-height: 25px;
	text-align: left;
	text-decoration: none;
}

.link_phone_number:hover {
	color: #db002f;
}

.link_phone_number.red {
	color: #db002f;
}

.link_phone_number.red:hover {
	color: #151515;
}

.padding_left_135 {
	padding-left: 135px;
}

.container_slider_clients_love {
	height: 100%;
}

.row_slider_clients_love {
	height: 100%;
}

.col_01_slider_clients_love {
	padding-right: 10px;
	padding-left: 0px;
}

.col_02_slider_clients_love {
	padding-right: 0px;
	padding-left: 0px;
}

.cont_slider_clients_love {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.cont_image_left_slider_clients_love {
	padding-right: 60px;
	padding-left: 90px;
}

.cont_text_right_slider_clients_love {
	padding-right: 90px;
	padding-left: 10px;
}

.background_colore_retail_green_light {
	background-color: #edfaf7;
}

.container_slider_products_xovis {
	height: 100%;
}

.cont_slider_products_xovis {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.col_01_slider_products_xovis {
	padding-right: 10px;
}

.col_02_slider_products_xovis {
	padding-right: 0px;
	padding-left: 0px;
}

.cont_image_left_slider_products_xovis {
	padding-top: 20px;
	padding-right: 60px;
	padding-left: 80px;
}

.cont_image_left_slider_02_products_xovis {
	padding-top: 60px;
	padding-right: 70px;
	padding-left: 80px;
}

.margin_left_60 {
	margin-left: 60px;
}

.margin_right_60 {
	margin-right: 60px;
}

.cont_headline_infotext_focus {
	margin-bottom: 20px;
}

.cont_butt_downloads_33 {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 90px;
}

.headline_col_key_facts {
	margin-bottom: 20px;
}

.text_col_key_facts {
	margin-bottom: 60px;
}

.col_02_row_01_success_story {
	padding-bottom: 0px;
}

.col_02_success_story_statement {
	height: 100%;
	padding-left: 20px;
}

.logo_copenhagen_airports.statement {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 40px;
}

.cont_butt_events_33 {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 90px;
}

.cont_butt_latest_news_33 {
	position: absolute;
	left: 0px;
	right: 0px;
	bottom: 60px;
}

.image_team_member_team_module {
	margin-bottom: 5px;
	padding: 5px;
	border: 1px solid #e5e5e5;
	border-radius: 4px;
}

.text_team_member_team_module {
	height: 100%;
	border-radius: 4px;
	background-color: whitesmoke;
}

.citation_team_member_02 {
	display: none;
	border-radius: 4px;
}

.citation_team_member_03 {
	display: none;
	border-radius: 4px;
}

.citation_team_member_04 {
	display: none;
	border-radius: 4px;
}

.text_subtitle_team_member {
	color: #151515;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	text-align: left;
	text-decoration: none;
}

.link_layer_team_member {
	border-radius: 4px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	text-decoration: none;
}

.text_name_team_member {
	color: #151515;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	text-align: left;
}

.layer_team_member_01 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_text_team_member {
	position: relative;
	top: 50%;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	color: white;
	line-height: 25px;
}

.layer_team_member_02 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_03 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_04 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_05 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_06 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_07 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_08 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_09 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_10 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_11 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.layer_team_member_12 {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	height: 100%;
	margin-right: 10px;
	margin-left: 10px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: #db002f;
	opacity: 0;
}

.client_logo_module {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: whitesmoke;
}

.client_logo_module.airport_blue {
	background-color: #e6eef2;
}

.client_logo_module.retail_green {
	background-color: #e6f2ef;
}

.client_logo_01 {
	display: block;
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_02 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_03 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 20px;
	padding-left: 20px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_04 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_05 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_06 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_07 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_08 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_09 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 25px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_10 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_11 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_12 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_13 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_14 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 15px;
	padding-left: 15px;
	border-radius: 4px;
	background-color: white;
}

.client_logo_15 {
	height: 120px;
	margin-bottom: 20px;
	padding-right: 10px;
	padding-left: 10px;
	border-radius: 4px;
	background-color: white;
}

.img_client_logo_01 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_02 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_03 {
	position: relative;
	top: 50%;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_04 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_05 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_06 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_07 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_08 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_09 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_10 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_11 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_12 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_13 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_14 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.img_client_logo_15 {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.row_01_client_logos {
	margin-bottom: 0px;
}

.row_02_client_logos {
	margin-bottom: 0px;
}

.loading_text_xovis {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
	font-family: Roboto, sans-serif;
	color: white;
	font-size: 80px;
	line-height: 80px;
	font-weight: 100;
	text-align: center;
}


.container_loading_xovis {
	position: relative;
	left: 0px;
	top: 50%;
	right: 0px;
	bottom: 0px;
	-webkit-transform: translate(0px, -50%);
	-ms-transform: translate(0px, -50%);
	transform: translate(0px, -50%);
}

.loading_text_swiss_cross {
	font-family: Roboto, sans-serif;
	color: white;
	font-size: 80px;
	line-height: 80px;
	font-weight: 100;
	text-align: center;
}

.img_swiss_cross {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

html.w-mod-js *[data-ix="open-hide-submenu"] {
	display: none;
	opacity: 0;
	height: 0px;
}

html.w-mod-js *[data-ix="open-hide-subnav-phone"] {
	display: none;
	opacity: 0;
	-webkit-transform: translate(10000px, 0px);
	-ms-transform: translate(10000px, 0px);
	transform: translate(10000px, 0px);
}

html.w-mod-js *[data-ix="open-hide-accordeon"] {
	display: block;
	opacity: 0;
	height: 0px;
}

html.w-mod-js *[data-ix="img-doing-01"] {
	opacity: 0;
	-webkit-transform: translate(-200px, 0px);
	-ms-transform: translate(-200px, 0px);
	transform: translate(-200px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-xovis"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-xovis"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-03-xovis"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(400px, 0px);
	-ms-transform: translate(400px, 0px);
	transform: translate(400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-04-xovis"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-05-xovis"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(400px, 0px);
	-ms-transform: translate(400px, 0px);
	transform: translate(400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-customers-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-customers-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-03-customers-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(400px, 0px);
	-ms-transform: translate(400px, 0px);
	transform: translate(400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-04-customers-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-05-customers-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(400px, 0px);
	-ms-transform: translate(400px, 0px);
	transform: translate(400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-customers-retail"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-customers-retail"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-products-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-products-airports"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-products-retail"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-products-retail"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-about-company"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-about-company"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-about-team"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-about-team"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-01-about-carrers"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="bubble-hero-02-about-carrers"] {
	display: block;
	opacity: 0;
	-webkit-transform: translate(-400px, 0px);
	-ms-transform: translate(-400px, 0px);
	transform: translate(-400px, 0px);
}

html.w-mod-js *[data-ix="animation-01"] {
	opacity: 0;
	-webkit-transform: scale(3.63);
	-ms-transform: scale(3.63);
	transform: scale(3.63);
}

.plyr__play-large {
	background: #db002f;
}

.plyr__progress--played, .plyr__volume--display {
	color: #db002f;
}

.plyr--video .plyr__controls button.tab-focus:focus, .plyr--video .plyr__controls button:hover {
	background: #db002f;
	color: #fff
}

.plyr input[type=range]::-ms-fill-lower {
	background: #db002f;
}

.plyr input[type=range]:active::-webkit-slider-thumb {
	background: #db002f;
	border-color: #fff;
}

.plyr input[type=range]:active::-moz-range-thumb {
	background: #db002f;
	border-color: #fff;
}

.plyr input[type=range]:active::-ms-thumb {
	background: #db002f;
	border-color: #fff;
}

.news-teaser p, .news-bodytext p, .news-contentelements p {
	margin-bottom: 1em;
}

.news-loader {
	background: white;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

/*
.news-loader .spinner {
	margin: 20px auto;
}
*/

.grid_scroll_pagination .news-pagination-link, .jobs-list .news-pagination-link{
	display: none;
}

.grid_scroll_pagination .news-loader {
	background-color: transparent;
	height: auto;
	bottom: -30px;
}

.grid_scroll_pagination .news-loader {
	position: static;
	transform: none;
}

.grid_scroll_pagination .news-loader .spinner {
	margin: 20px auto;
}

.grid_scroll_pagination .news-loader .spinner {
	margin: 0 auto;
}

.news-image img {
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.news-title {
	margin-bottom: 20px;
}

.news-info {
	margin-bottom: 20px;
}

.news-info > div:first-of-type {
	margin-bottom: 20px;
}

.news-meta {
	display: inline-block;
	margin-right: 20px;
}

.news-meta .date i {
	margin-right: 5px;
}

.news-meta .author a {
	font-size: 14px;
}

.news-info a, .news-info span, .news-info i {
	color: #db002f;
}

.news-meta div, .news-meta a, .news-meta i {
	display: inline-block;
}

.news-meta div.date {
	margin-right: 20px;
}

.news-meta span, .news-meta a, .news-category span {
	font-weight: bold;
}

.news-social a, .news-social span {
	display: inline-block;
}

.news-social i:hover {
	color: #000;
}

.related-files-list {
	list-style: none;
	padding: 0;
}

.related_articles {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.related_articles .grid-overview-tile {
	width: 100%;
}

.news-related-load-button {
	margin-bottom: 25px;
}

@font-face {
	font-family: 'Entypo';
	font-weight: 200;
	font-style: normal;
}

.grid_navigation_home {
	padding-top: 40px;
}

.back-link-wrapper {
	width: 100%;
}

.back-link-wrapper a * {
	display: inline-block;
	color: #db002f;
	font-weight: bold;
	padding-bottom: 30px;
	margin-right: 10px;
	text-transform: uppercase;
}

@media (max-width: 768px) {
	.section_xovis_sidebar {
		margin-top: 28px;
	}
}

.tx-powermail {
	margin-bottom: 30px;
}

.tx-powermail .row {
	margin-right: -15px;
	margin-left: -15px;
}

.tx-powermail .col {
	padding-right: 15px;
	padding-left: 15px;
	float: left;
	position: relative;
	min-height: 1px;
	margin-top: 5px;
}


.tx-powermail .col-md-12 {
	width: 100%;

}

.tx-powermail .col-md-6 {
	width: 50%;
}

.tx-powermail .col-md-3 {
	width: 25%;
	margin-bottom: 50px;
}

.tx-powermail .col-md-9 {
	width: 75%;
}

.tx-powermail input[type="text"] {
	width: 100%;
	background-color: #EFEEEC;
	border: none;
	padding: 10px 5px;
	border-radius: 5px;
}

.tx-powermail textarea {
	width: 100%;
	max-width: 100%;
	background-color: #EFEEEC;
	border: none;
	min-height: 200px;
	border-radius: 5px;
}

.tx-powermail .powermail_label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
	color: #333;
	font-size: 14px;
	line-height: 20px;
}

.tx-powermail .fileupload_label {
	width: 100%;
	background-color: #EFEEEC;
	border: none;
	padding: 10px 5px;
	border-radius: 5px;
	font-weight: normal;
	line-height: normal;
	cursor: pointer;
}

.tx-powermail .fileupload_label i {
	color: #db002f;
}

.tx-powermail .fileupload_label i.remove-file {
	color: black;
	float: right;
	line-height: normal;
	padding-right: 10px;
}

.tx-powermail .powermail_file {
	display: none;
}

.tx-powermail .powermail_submit {
	width: 120px;
}

.parsley-errors-list li {
	font-size: 12px;
	color: red;
}

/* contenttable */
.contenttable {
	margin: 14px 0 16px;
	font-family: Roboto, sans-serif;
	font-weight: 300;
	font-size: 16px;
	line-height: 22px;
}

.contenttable p,
.contenttable a,
.contenttable li {
	font-size: 16px;
	line-height: 22px;
}

.contenttable a {
	color: #db002f;
}

.contenttable a:hover,
.contenttable a:focus {
	color: #151515;
}

.contenttable th {
	background-color: #eaeaea;
}

.contenttable th p,
.contenttable th a {
	font-weight: bold;
}

.contenttable th,
.contenttable td {
	text-align: left;
	padding: 7px 8px 5px;
	vertical-align: top;
}

.contenttable tr {
	border-bottom: 1px solid #e5e5e5;
}

.contenttable caption {
	margin-bottom: 4px;
}

@media (max-width: 768px) {
	.contenttable {
		display: block;
		overflow-x: auto;
		width: 100%;
	}

	.contenttable th,
	.contenttable td {
		min-width: 180px;
	}
}

/* container elements */
.container-element {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.container-element .col-12 {
	position: relative;
	width: 100%;
	min-height: 1px;
	padding-right: 15px;
	padding-left: 15px;
	margin-bottom: 1em;
}

@media (max-width: 991px) {
	.container-element .col-12 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (min-width: 992px) {
	.container-element .col-lg-6 {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}

	.container-element .col-lg-4 {
		-ms-flex: 0 0 33.33333%;
		flex: 0 0 33.33333%;
		max-width: 33.33333%;
	}

	.container-element .col-lg-8 {
		-ms-flex: 0 0 66.66667%;
		flex: 0 0 66.66667%;
		max-width: 66.66667%;
	}
}

/* image */
.container-image {
	margin-bottom: 1em;
}

.container-image figcaption p {
	font-size: 15px;
	margin-top: 4px;
	line-height: 1.4;
}

/* news - jobs */
/* latest */

/* list */
.jobs-list .cont_grid-navigation {
	display: none;
}

.jobs-list {
	border-top: 1px solid #CCCCCC;
}

.job-row {
	display: flex;
	width: 100%;
}

.jobs-list .job-row a {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;

	position: relative;
	padding: 30px 0 28px;
	border-bottom: 1px solid #CCCCCC;
}

.jobs-list .job-row a:hover h3,
.jobs-list .job-row a:hover .detail_page_arrow i,
.jobs-list .job-row a:focus h3,
.jobs-list .job-row a:focus .detail_page_arrow i {
	color: #151515;
}

.job-element-left h4 {
	margin: 3px 0 0;
	font-weight: normal;
}

.job-element-right h3 {
	font-weight: 700;
}

.job-row .news-item {
	position: absolute;
	right: 0;
	top: 33px;
}

@media (min-width: 992px) {
	.job-row .width-25 {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}

	.job-row .width-75 {
		-ms-flex: 0 0 75%;
		flex: 0 0 75%;
		max-width: 75%;
	}
}

@media (max-width: 991px) {
	.job-row .width-25,
	.job-row .width-75 {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}

	.job-element-left h4 {
		margin: 3px 0;
	}
}

/* cta button */
.cta-button {
	position: absolute;
	left: calc(50% + 565px);
	top: 146px;
	z-index: 200;
}

@media (max-width: 1435px) {
	.cta-button {
		display: none;
	}
}

.cta-button-link {
	position: relative;
	transform: rotate(12deg);
	width: 150px;
	height: 150px;
	display: inline-block;
}

.cta-button-image {
	position: absolute;
	width: 100%;
	height: 100%;
}

.cta-button-image.default {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: transform .3s ease-out .2s;
}

.cta-button-link:hover .cta-button-image.default {
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: transform .3s ease-in;
}

.cta-button-image.hover {
	-webkit-transform: scale(0);
	transform: scale(0);
	transition: transform .3s ease-in;
}

.cta-button-link:hover .cta-button-image.hover {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: transform .3s ease-out .2s;
}

.groupwrap.is-invalid {
	border: none !important;
}

/* Xovis Flex cols */
.xovis-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.xovis-col {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .xovis-col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}


.textlayer_usp {
  position: relative;
  display: block;
  margin-right: auto;
  margin-left: auto;
  color: #db002f;
  line-height: 28px;
}
.layer_text_usp {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.usp_link {
  width: 100%;
  height: 100%;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  background-color: #faf2f4;
  text-decoration: none;
}
.hero_slider,
.hero_slider.hero_slider_customers_airports,
.hero_slider.hero_slider_about_company,
.hero_slider.hero_slider_about_events  {
  height: 550px;
}

.subnav_headlne.customers_airports.w--current {
  text-decoration: none;
}
.subnav_headlne.customers_airports.w--current:hover {
  color: #151515;
}

.client_logo_svg {
  display: block;
  height: 120px;
  margin-bottom: 20px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 4px;
  background-color: white;
}
.client_logo_png {
  height: 120px;
  margin-bottom: 20px;
  padding-right: 5px;
  padding-left: 5px;
  border-radius: 4px;
  background-color: white;
}
.img_client_logo_svg {
  position: relative;
  left: 0px;
  top: 50%;
  right: 0px;
  bottom: 0px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.img_client_logo_png {
  position: relative;
  left: 0px;
  top: 50%;
  right: 0px;
  bottom: 0px;
  -webkit-transform: translate(0px, -50%);
  -ms-transform: translate(0px, -50%);
  transform: translate(0px, -50%);
}
.image_big {
	height:auto;	
}

.content_accordeon_leading_system {
  overflow-x: hidden;
  overflow-y: hidden;
  height: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

 li {
	padding-right: 0px;
	padding-left: 0px;
	font-family: Roboto, sans-serif;
	color: #151515;
	font-size: 18px;
	line-height: 25px;
	font-weight: 300;  
 }
 
h1,
h2,
h3,
h4,
h5
 {
  color: #db002f;
}

h1 {
  margin-bottom: 25px;
}


h4 {
	margin-bottom: 2px;
}

h5 {
	margin-bottom: 2px;
}

.key_facts h3 {
	padding-bottom:30px;
}
.layer_software_customers_airports {
  position: absolute;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #e8d3d8;
  border-radius: 4px;
  background-color: white;
  opacity: 0;
}

.overlay_software_customers_airports:hover div.layer_software_customers_airports {
	display:block;
	opacity: 1;
}

.image_responsive {
	height:auto !important;
	width:100%;	
}

.layer_team_member {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  height: 100%;
  margin-right: 10px;
  margin-left: 10px;
  padding-right: 15px;
  padding-left: 15px;
  border-radius: 4px;
  background-color: #db002f;
  opacity: 0;
}

.link_layer_team_member:hover .layer_team_member {
	display:block;
	opacity: 1;
}

.bubble_link_hero_slide,
.hero_slider_xovis .bubble_link_hero_slide,
.hero_slider_all .bubble_link_hero_slide {
  z-index: 1000;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 22px;
  line-height: 28px;
  text-decoration: none;

}


.bubble_link_hero_slide:hover,
.hero_slider_xovis .bubble_link_hero_slide:hover,
.hero_slider_all .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #db002f;
  text-decoration: none;
}


.hero_slider_customers_airports .bubble_link_hero_slide {

}
.hero_slider_customers_airports .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #34495e;
}
.hero_slider_customers_retail .bubble_link_hero_slide {

}
.hero_slider_customers_retail .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #16a085;
}

.hero_slider_products_airports .bubble_link_hero_slide {
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero_slider_products_airports .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #34495e;
}
.hero_slider_products_retail .bubble_link_hero_slide {
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero_slider_products_retail .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #16a085;
}

.hero_slider_about_company .bubble_link_hero_slide {
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero_slider_about_company .bubble_link_hero_slide:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #db002f;
}

.hero_slider_about_team .bubble_link_hero_slide {
  display: inline-block;
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.hero_slider_about_team .bubble_link_hero_slide:hover {
  display: block;
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
  color: #db002f;
}
.hero_slider_about_careers .bubble_link_hero_slide {
  height: 100%;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  color: white;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.hero_slider_xovis .bubble_hero,
.hero_slider_all .bubble_hero {
  position: absolute;
  left: 55%;
  top: 15%;
  z-index: 1000;
  display: block;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #db002f;
  background-color: rgba(219,0,47, 0.8);
  -webkit-transition-delay: initial;
  transition-delay: initial;
}
.hero_slider_xovis .bubble_hero:hover,
.hero_slider_all .bubble_hero:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
}

.hero_slider_customers_retail .bubble_hero {
  position: absolute;
  left: 27%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #16a085;
  background-color: rgba(22,160,133, 0.8);
}
.hero_slider_customers_retail .bubble_hero:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
}
.hero_slider_customers_airports .bubble_hero,
.hero_slider_products_airports .bubble_hero {
  position: absolute;
  left: 50%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #34495e;
  background-color: rgba(52,73,94,0.8);
}
.hero_slider_customers_airports .bubble_hero:hover,
.hero_slider_products_airports .bubble_hero:hover {
  background-color: white;
  background-color: rgba(255,255,255,0.8);
}
.hero_slider_products_retail .bubble_hero {
  position: absolute;
  left: 52%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #16a085;
  background-color: rgba(22,160,133, 0.8);
}
.hero_slider_products_retail .bubble_hero:hover {
  background-color: white;
}
.hero_slider_about_company .bubble_hero {
  position: absolute;
  left: 24%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #db002f;
}
.hero_slider_about_company .bubble_hero:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
}

.hero_slider_about_team .bubble_hero {
  position: absolute;
  left: 25%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #db002f;
}
.hero_slider_about_team .bubble_hero:hover {
  background-color: white;
}
.hero_slider_about_careers .bubble_hero {
  position: absolute;
  left: 24%;
  top: 15%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #db002f;
  background-color: rgba(219,0,47, 0.8);
}
.hero_slider_about_careers .bubble_hero:hover {
  background-color: white;
  background-color: rgba(255,255,255, 0.8);
}


.hero_slider_slide {
    background-size: cover;
  }



  .bubble_01_hero_xovis {
    left: 44%;
    top: 8%;
    width: 300px;
    height: 300px;
  }
  .bubble_02_hero_xovis {
    left: 13%;
    top: 10%;
    width: 300px;
    height: 300px;
  }
  .bubble_03_hero_xovis {
    left: 16%;
    top: 10%;
    width: 300px;
    height: 300px;
  }
  .bubble_04_hero_xovis {
    left: 44%;
    top: 10%;
    width: 300px;
    height: 300px;
  }
  .bubble_05_hero_xovis {
    left: 32%;
    top: 10%;
    width: 300px;
    height: 300px;
  }
  .bubble_01_hero_customers_airports {
    left: 42%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_customers_airports {
    left: 13%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_03_hero_customers_airports {
    left: 47%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_04_hero_customers_airports {
    left: 29%;
    top: 12%;
    right: 0px;
    width: 280px;
    height: 280px;
  }
  .bubble_05_hero_customers_airports {
    left: 40%;
    top: 12%;
    width: 280px;
    height: 280px;
  }

  .bubble_01_hero_customers_retail {
    left: 39%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_customers_retail {
    left: 18%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_01_hero_products_airports {
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_01_hero_products_retail {
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_products_retail {
    width: 280px;
    height: 280px;
  }
  .bubble_01_hero_about_company {
    left: 46%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_about_company {
    left: 44%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_01_hero_about_team {
    left: 20%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_about_team {
    left: 41%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_01_hero_about_careers {
    left: 17%;
    top: 12%;
    width: 280px;
    height: 280px;
  }
  .bubble_02_hero_about_careers {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background-color: #db002f;
  }
  .bubble_02_hero_about_careers:hover {
    background-color: white;
  }  
  .bubble_01_hero_xovis {
    left: 28%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_xovis {
    left: 16%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_03_hero_xovis {
    left: 18%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_04_hero_xovis {
    left: 27%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_05_hero_xovis {
    left: 26%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
 .bubble_01_hero_customers_airports {
    left: 28%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_customers_airports {
    left: 19%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_03_hero_customers_airports {
    left: 29%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_04_hero_customers_airports {
    left: 17%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_05_hero_customers_airports {
    left: 26%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_customers_retail {
    left: 19%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_customers_retail {
    left: 28%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_products_airports {
    left: 27%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_products_retail {
    left: 25%;
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_products_retail {
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_about_company {
    left: 21%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_about_company {
    left: 27%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_about_team {
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_about_team {
    left: 17%;
    top: 15%;
    width: 180px;
    height: 180px;
  }
  .bubble_01_hero_about_careers {
    width: 180px;
    height: 180px;
  }
  .bubble_02_hero_about_careers {
    left: 26%;
    width: 180px;
    height: 180px;
  }

.hero_slider_about_careers .bubble_link_hero_slide:hover {
  background-color: white;
  color: #db002f;
}
.bubble_link_hero_slide_01_xovis {
  padding-top: 40px;
}
.bubble_link_hero_slide_01_about_company {
  font-size: 30px;
  line-height: 32px;
}
.bubble_link_hero_slide_02_about_company.w--current {
  padding-top: 90px;
  font-size: 30px;
  line-height: 32px;
}
  .bubble_link_hero_slide_01_about_team {
    font-size: 30px;
    line-height: 32px;
  }
  .bubble_link_hero_slide_02_about_careers {
    color: white;
  }
  .bubble_link_hero_slide_01_customers_airports.w--current {
    padding-right: 20px;
    padding-left: 20px;
  }
  .bubble_link_hero_slide_02_customers_airports {
    padding-right: 30px;
    padding-left: 30px;
  }
  .bubble_link_hero_slide_02_products_airports {
    padding-right: 30px;
    padding-left: 30px;
  }

.side_fader {
  position: fixed;
  z-index: 5000;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #db002f;
}

.footer_button {
  width: 20%;
  height: 100%;
  float: left;
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background-color: white;
  line-height: 75px;
  text-decoration: none;
}

.footer_button:hover {
  color: #db002f;
}
.footer_button.phone_vertical {
  float: none;
}


.format_news p {
	padding-bottom:20px;
	
}
.format_news h1,
.format_news h2,
.format_news h3,
.format_news h4,
.format_news h5 {
	padding-top: 40px;
	padding-bottom: 40px;
	color: #db002f;
	
}
.text_dateformat_news {
	padding-bottom:30px;
	
}
.text_dateformat_news>span>span {
	padding-left:2px;
	padding-right:2px;
}
.text_dateformat_news>span {
	border: 1px solid #f4d3da;
	padding: 7px;
	color:#db002f;
	width:auto;
	border-radius:4px;
}
.content_slider_news {
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
  
.hero_slider_xovis .bubble_hero, 
.hero_slider_all .bubble_hero {  }



	.container_success_stories ul { margin-top:20px; } 
	.container_success_stories ul li { padding-bottom:10px; color: #34495e; } 
	
	.content_accordeon_leading_system {}
	
	
/* logo fix */
	.img_client_logo_png { height: auto; }

/* usp box animation */




.usp_link_01 .layer_text_usp_01 {
	transition: all 0.4s ease 0s, opacity 250ms, transform 250ms;
	display: block;
	transform: scale(0.96);
	opacity: 0;
}

.usp_link_01:hover .layer_text_usp_01 {
	transition: all 0.4s ease 0s, opacity 250ms, transform 250ms;
	display: block;
	opacity: 1;
	transform: scale(1);
}


.link_accordeon {
  height: 50px;
  width: 100%;
  padding: 0px 10px 0px 10px;
  border-radius: 4px;
  background-color: #eee;
  background-repeat: no-repeat;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #151515;
}

.link_accordeon i {
  color: #db002f;
}
.link_accordeon:hover i, .link_accordeon.open i {
  color: white
}

.link_accordeon:hover {
  background-color: #db002f;
  color: white;
}

.link_accordeon.open {
  background-color: #db002f;
  color: white;
}

.txt_accordeon:hover {
  color: white;
}

.txt_accordeon {
  line-height: 25px;
  font-weight: 400;
  text-transform: uppercase;
}

.icon_accordeon {
  font-size: 22px;
}

.accordeon_standard_div {
    max-height: 500px;
    display: none;
}

.accordeon_standard_div ul {
  list-style: none;
}
.related-files-list li a {
  display: inline-block;
  color: #db002f;
  font-weight: 500;
}
.related-files-list li a:hover {
  color: black;
}

.cont_infotext_focus ul {
	padding-left:20px;
}

.textcolor_airport_blue_middle li { color:#34495e; }
.textcolor_xovis_red_middle li { color: #db002f; }
.textcolor_retail_green_middle li { color: #16a085; }

.image_airport_sensor.pc3_sensor > img {
	border-radius: 4px;
	height: auto;
}

img.bordered {
	border: 1px solid #e5e5e5;
    border-radius: 4px;
}


.butt_subnav_phone_all.butt_subnav_phone_vertical_jump { 
	height: auto; 
    padding-left: 10px;
    padding-right: 10px;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 10px;
}

.statement_success_stories { font-size: 36px; line-height: 36px; }


.text_col_key_facts { margin-bottom: 0px;}


.image_airport_sensor.no-border { border:none; }

.image-border {
  border: 1px solid #e5e5e5; 
  border-radius: 4px;
}


.background_color_green_light { background-color: #eaf4f5; }
.butt_read_more_center.xovis_green { 
	background-color: #16a085; 
    color: white;
    text-decoration: none;
}

.butt_read_more_center.xovis_green:hover {
    background-color: #fff;
    color: #16a085;
}

.text_col_key_facts table.contenttable {
	width:100%;
	table-layout:auto;
}
.text_col_key_facts table.contenttable tr td {
	padding:5px 0 5px 0;
}


/* new */

/* RTE LINK */
.cont_infotext a.internal-link,
.cont_infotext a.external-link {
    display: inline;
    line-height: inherit;
    color: #151515;
}


.butt_read_more_center.download_blue { background-color: #34495e; }
.butt_read_more_center.download_blue:hover { color: #34495e; }



.row_2_col_success_story_statements > .w-row {
	display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
   	height: 100%;
}
.row_2_col_success_story_statements > .w-row > .w-col {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: initial;
}


.overlay_software_customers_airports .layer_software_customers_airports { 
	transition: opacity 500ms; 
	display: block; 
}
.overlay_software_customers_airports:hover > .layer_software_customers_airports { opacity: 1; }


.col-full {
	padding-left: 0;
	padding-right: 0;
}


.row_2_col_success_story_text_images {
    clear: both;
    overflow: hidden;
    border-right: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
}

.row_2_col_success_story_text_images.last {
	border-bottom: 1px solid #e5e5e5;
}


.row_2_col_success_story_text_images img {
	width: 100%;
	height: auto;
}

.section_read_more { height: 240px; }

.butt_newsbox.left {
	background-position: 15px center;
	padding-left: 50px;
}

.body_xovis.xovis .link_explore { display: none; }


/* Button ELEMENT */
.button_flex {
	width: auto; 
	display: inline-block; 
	padding-left: 20px;
	padding-right: 20px;
	height: 50px;
	border-radius: 4px;
	-webkit-transition: all 150ms ease;
	transition: all 150ms ease;
	line-height: 50px;
	text-decoration: none;
 }
.btn-wrapper.btn-inner-align-left { text-align: left; }
.btn-wrapper.btn-inner-align-center { text-align: center; }
.btn-wrapper.btn-inner-align-right { text-align: right; }
.btn-wrapper.btn-inner-align-full-center > .button_flex { text-align: center; display: block; width: 100%; }

.button_flex.background_color_xovis_red_light { color: #db002f; }
.button_flex.background_color_xovis_red_light:hover { background-color: #db002f; color: white; }

.button_flex.background_color_download_blue_light { color: #34495e; }
.button_flex.background_color_download_blue_light:hover { background-color: #34495e; color: white; }

.button_flex.background_color_green_light { color: #16a085; }
.button_flex.background_color_green_light:hover { background-color: #16a085; color: white; }

.margin_top_20 { margin-top: 20px; }

.col_career_section { height: 300px; }


/* Custom col */
.w-col-20 { width: 20%; }
@media screen and (max-width: 479px) {
	.w-col-20 { width: 100%; }
}



/* Link Colors */
/* red */
	.textcolor_xovis_red_middle a { color: #db002f; border-color: #db002f; }
	.cont_accordeon.red .accordeon_standard_text p,
	.cont_accordeon.red .accordeon_standard_text a,
	.cont_infotext .textcolor_xovis_red_middle a.internal-link, 
	.cont_infotext .textcolor_xovis_red_middle a.external-link {
		color: #db002f; 
		border-color: #db002f;
	}

/* blue */
	
	.textcolor_airport_blue_middle a { color: #34495e; border-color: #34495e; }
	.cont_accordeon.blue .accordeon_standard_text p,
	.cont_accordeon.blue .accordeon_standard_text a,
	.cont_infotext .textcolor_airport_blue_middle a.internal-link, 
	.cont_infotext .textcolor_airport_blue_middle a.external-link {
		color: #34495e; 
		border-color: #34495e;
	}
	
/* green */
	
	.textcolor_retail_green_middle a { color: #16a085; border-color: #16a085; }
	.cont_accordeon.green .accordeon_standard_text p,
	.cont_accordeon.green .accordeon_standard_text a,
	.cont_infotext .textcolor_retail_green_middle a.internal-link, 
	.cont_infotext .textcolor_retail_green_middle a.external-link {
		color: #16a085; 
		border-color: #16a085;
	}
	
/* black */
	.textcolor_xovis_black_middle a { color: #666; }
	.cont_infotext .textcolor_xovis_black_middle a.internal-link, 
	.cont_infotext .textcolor_xovis_black_middle a.external-link {
		color: #666; 
		border-color: #666;
	}
	
	
/* News Detail override lists */
.format_news ul li { color: #666; }

.img_left_newsbox { border:1px solid #e5cfd4; }

/* Accordion */
.cont_accordeon.blue .accordeon_standard_text ul li { color: #34495e; }
.cont_accordeon.green .accordeon_standard_text ul li { color: #16a085; }
.cont_accordeon.red .accordeon_standard_text ul li { color: #db002f; }

.section_headline.usps { height: 240px; }
.section_headline_h1 { padding-right: 0; padding-left: 0; }

figure { margin: 0; }
.pswp { z-index: 120029 !important; }


ul.parsley-errors-list { list-style-type: none; }
ul.parsley-errors-list li { font-size:12px; }

div.hidden { opacity: 0; }
.f-open-form {
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;	
    opacity: 1;
    position: relative;
    z-index: 2;
}
.f-open-form.hide {
	opacity: 0;
	z-index: 0;
}


.subnav_headlne {
    height: 40px;
    padding-left: 20px;
    border-radius: 4px;
    background-color: white;
    font-size: 16px;
    line-height: 40px;
    text-align: left;
    text-decoration: none;
    margin-bottom: 10px;
}

.subnav_headlne.customers_airports:hover { background-color: #34495e; color: white !important; }
.subnav_headlne.customers_retail:hover { background-color: #16a085; color: white !important; }
.subnav_headlne.products_retail:hover { background-color: #16a085; color: white !important; }
.subnav_headlne.about:hover { background-color: #db002f; color: white !important; }

.news-backlink-wrap {
	margin-top: 40px;
}

.custom-red {
	display: inline-block;
	color: #db002f;
    width: auto;
    padding-right:20px;
	
}
.custom-red:hover {
	background-color: #db002f;
    color: white;
}

.butt_contact_xovis.xovis_red.jump_to_email { margin-top: 20px; }

/* Powermail Center fix for 6 col */
.w-col-6 .tx-powermail .btn-wrapper.btn-inner-align-center { text-align: left; }
.w-col-6 .tx-powermail .form { margin: 0; }


.section_read_more .tx-powermail .form {
	top: 100px;
}
.section_read_more .tx-powermail .btn-wrapper {
    padding-top: 100px;
}
.section_read_more .tx-powermail .btn-wrapper a {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.powermail_fieldwrap_type_submit .powermail_submit{
  float: right;
}
.powermail_field .parsley-errors-list{
  padding-left: 0;
}

/* red */
	.section_read_more .tx-powermail .btn-wrapper a.background_color_xovis_red_light  { background-color: #db002f; color: white;  }
	.section_read_more .tx-powermail .btn-wrapper a.background_color_xovis_red_light:hover { background-color: #fff; color: #db002f; }
	.section_read_more .tx-powermail form.background_color_xovis_red_light  .powermail_input { background-color: #db002f; color: #fff; }
	.section_read_more .tx-powermail form.background_color_xovis_red_light  .powermail_submit { background-color: #db002f; color: #fff; border-left: 1px solid #fff; padding: 0; }
	.section_read_more .tx-powermail .powermail_create .background_color_xovis_red_light  > p { background-color: #db002f; color: white;  }



.overlay_software_customers_airports {
	font-family: Roboto, sans-serif;
    color: #151515;
    font-size: 18px;
    line-height: 105px;
    font-weight: 300;
    text-align: center;
    letter-spacing: 0.04em;
    list-style-type: none;
    cursor: pointer;
}


#loader.show {
	opacity: 1;
	visibility: visible;
}
#loader {
	position: fixed;
	height: 100%;
	width: 100%;
	background: #fff;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

#loader > img {
    position: absolute;
    left: 50%;
    margin-left: -40px;
    top: 50%;
    margin-top: -40px;
}

/* Loader */
.spinner {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}

.spinner > div {
  background-color: #db002f;
  height: 100%;
  width: 6px;
  display: inline-block;

  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
  20% { -webkit-transform: scaleY(1.0) }
}

@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }  20% {
       transform: scaleY(1.0);
       -webkit-transform: scaleY(1.0);
     }
}

body.customers_airports .spinner > div { background-color: #34495e; }
body.customers_retail .spinner > div { background-color: #16a085; }
body.products_retail .spinner > div { background-color: #16a085; }

.text_bubble_big {
    font-size: 30px;
    line-height: 32px;
}


.pswp__img { height: auto !important; }  
.pswp__zoom-wrap {
    -webkit-transform-origin: left center !important;
    -ms-transform-origin: left center !important;
    transform-origin: left center !important;
}  



.nav-is-open {
	opacity: 1 !important;
	transform: translateX(0) translateY(0px) !important;
}


.container_slider_clients_love.testimonials {
	height: auto;
	margin-top: 90px;
	margin-bottom: 90px;
}
.container_slider_clients_love.testimonials .cont_slider_clients_love {
	position: static;
	/* position: relative; */
	/* left: 0px; */
	/* top: 50%; */
	/* right: 0px; */
	/* bottom: 0px; */
	/* -webkit-transform: translate(0px,-50%); */
	/*-ms-transform: translate(0px,-50%);*/
	/* transform: translate(0px,-50%); */
	
	
	-webkit-transform: inherit;
	-ms-transform: inherit;
	transform: inherit; 
}

.testimonials_slider.section_story_slider .w-container {
	max-width: 1006px;
	max-width: 985px;
}
.testimonials_slider.section_story_slider {
    height: 794px;
    height: auto;
}

.testimonials_slider .w-slide, 
.testimonials_slider p {
	text-align: center;
	text-align: left;
}  
.testimonials_slider .col_01_slider_clients_love {
    padding-right: 10px;
    padding-left: 10px;
}
.testimonials_slider .col_01_slider_clients_love.right-box {
	padding-left: 25px;
}
.testimonials_slider .cont_image_left_slider_clients_love {
    padding-right: 117px;
    padding-left: 117px;
	margin-bottom: 20px;
}
.testimonials_slider .testimonial-slide-item {
	padding: 40px 30px 0px 30px;
	background: #FFF;
	/*min-height: 613px;
	min-height: 320px;*/
	height: auto;
}

.testimonials_slider .cont_text_right_slider_clients_love {
    padding-right: 0px;
    padding-left: 0px;
}
.testimonial-slide-item .text_headline_right_newsbox {
	padding-top: 0;
}
.testimonial-slide-item .text_headline_right_newsbox h2 {
	font-size: 32px;
    line-height: normal;
    margin-bottom: 3px;
}
.testimonial-slide-item .text_link p a {
	line-height: normal;
	color: #0c0807;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: 400;
}
.testimonial-slide-item .text_headline_right_newsbox p { font-size: 25px; }
.testimonial-slide-item .text_headline_right_newsbox hr {
	width: 100%;
	border: 0;
	border-top: 1px solid #e8e8e8;
	margin-top: 19px;
	margin-bottom: 17px;
	display: block;
}

.testimonials_slider .text_paragraph_right_newsbox p {
	font-size: 22px;
	line-height: 29px;
	color: #666666;
	font-style: italic;
	margin-bottom: 17px;
}
.testimonials_slider .text_paragraph_right_newsbox p a {
	font-style: normal;
	font-size: 20px;
	line-height: 29px;	
}
.testimonials_slider .text_paragraph_right_newsbox p a:hover {
	color: #000;
}
.grid-section {
  margin-bottom: 50px;
}
.grid-navigation {
  padding: 0 0 0 5px;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
}
.grid-navigation li{
  margin-top: 10px;
  margin-right: 20px;
  font-size: 16px;
}

.grid-navigation label{
  text-transform: uppercase;
  font-weight: normal;
  display: inline;
}

.news-pagination {
  width: 100%;
}

.grid-navigation li:first-child label{
  margin-left: 0px;
}
.grid-navigation input[type="checkbox"]{
  display: none;
}
.grid-navigation input[type="checkbox"]:checked+label {
  color: #db002f;
}
.grid-navigation input[type="checkbox"]:checked+label .filter-circle-icon {
    box-shadow: 0 0 0 1px #db002f;
    background: #db002f;
}
.grid-navigation label:hover{
  cursor: pointer;
  color: #db002f;
}
.grid-navigation label:hover .filter-circle-icon {
    box-shadow: 0 0 0 1px #db002f;
}

.filter-circle-icon {
    display: inline-block;
    margin-right: 5px;
    width: 14px;
    height: 14px;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #151515;
}

.cont_grid-navigation {
  margin-top: 25px;
}

.cont_grid-tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cont_grid-tiles::after {
  content: "";
  width: 30%;
}

/* Quickview tile */
.grid-tile-quickview {
  width: 100%;
  display: none;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.26s ease;
  margin-top: 9px;
}

.quickview-inner {
  box-shadow: 0 0 1px rgba(0,0,0,0.2);
  border: 1px solid #CCC;
  padding: 10px;
}

.quickview-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
  padding-right: 10px;
}

.quickview-related-wrapper {
  max-width: 33.33333%;
}

.quickview-close {
  color: #db002f;
  cursor: pointer;
  font-size: 18px;
}
.quickview-close::before {
  vertical-align: middle;
}

.grid-tile-quickview.show {
  transform: scaleY(1);
}

.quickview-inner .quickview-more-link {
  margin-top: 20px;
  margin-bottom: 20px;
}
/* END Quickview */

.cont_grid-tiles .grid-overview-tile {
  margin-top: 25px;
  margin-right: 0;
  width: 30%;
}

.grid-overview-tile {
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 37px;
  border-bottom: 1px solid #CCCCCC;
}

.grid-overview-tile.quickview-open::before {
  content: '';
  display: block;
  position: absolute;
  bottom: -21px;
  left: 50%;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #db002f;
}



.grid-overview-tile h3 {
  margin-bottom: 10px;
}

.grid-overview-tile p {
  font-size: 16px;
  line-height: 22px;
}

.plf-linkimage-wrapper {
  overflow: hidden;
}
.plf-linkimage-wrapper img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  filter: none;
}

.plf-linkimage-wrapper img {
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
  transition: transform 0.3s;
}

.grid-overview-tile img{
 width: 100%;
 height: auto;
 margin-bottom: 10px;
 filter: grayscale(100%);
}

.grid-overview-tile .news-item{
  position: absolute;
  bottom: 5px;
  right: 10px;
}

.detail_page_arrow {
  width: 100%;
  height: 20px;
  margin-bottom: 5px;
  font-size: 20px;
  color: #DB002F;
}

.detail_page_arrow i{
  cursor: pointer;
  float: right;
  display: block;
  font-weight: bold;
  transition: transform .3s linear;
}

.detail_page_arrow i.open {
  transform: rotate(90deg);
}

.detail_page_arrow i:hover{
  color: #151515;
}

/* TAB */
.xovis_accordeon {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}

.xovis_accordeon input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.xovis_accordeon label {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
  background: #eee;
  border-radius: 4px;
  font-weight: 500;
  font-size: 18px;
  line-height: 3;
  cursor: pointer;
  text-transform: uppercase;
}
.xovis_accordeon label:hover {
  background: #db002f;
  color: white;
}

/* Icon */
.xovis_accordeon  label::after {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 3em;
  height: 3em;
  line-height: 3;
  text-align: center;
  -webkit-transition: all .35s;
  -o-transition: all .35s;
  transition: all .35s;
}
.xovis_accordeon  input[type=checkbox] + label::after {
  content: "\e93a";
  font-family: Linearicons;
}
.xovis_accordeon input[type=checkbox]:checked + label::after {
  transform: rotate(-180deg);
}

.xovis_accordeon input[type=checkbox]:checked + label {
  background: #db002f;
  color: white;
}


/* TAB-CONTENT */
.xovis_accordeon_content {
  border-radius: 4px;
  border-top: 0;
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
}

/* :checked */
.xovis_accordeon  input:checked ~ .xovis_accordeon_content {
  max-height: 600px;
  border: 1px solid #f5f5f5;
  padding: 10px;
}

.xovis_accordeon.xovis_accordeon_contentelement input:checked ~ .xovis_accordeon_content {
  max-height: inherit;
}

/* Slideshow container */
.xovis_slider_wrapper, .xovis_video_wrapper {
  width: 100%;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px;
}


/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  font-family: Linearicons;
  top: calc(50% - 15px);
  display: block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  background: none;
  z-index: 30000;
}

.slick-prev:focus,
.slick-next:focus {
  outline: 0;
}


.slick-prev
{
  left: 5px;
}

.slick-prev:before
{
  content: '\e93b';
  color: #db002f;
}

.slick-next
{
  right: 5px;
}

.slick-next:before
{
  color: #db002f;
  content: '\e93c';
}

.slick-dots
{
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
}

.slick-dots .slick-active button
{
  background: #db002f;
}


.slick-dots li button
{
  cursor: pointer;
  margin-right: 5px;
  width: 14px;
  height: 14px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  border: none;
  color: transparent;
  background: #E5E5E5;
}



/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .slider-prev, .slider-next {font-size: 11px}
}

.xovis_content_image_wrapper {
  text-align: center;
}

.xovis_content_image_wrapper .xovis_content_image {
  width: 32%;
}

.xovis_modal {
  display:none;
  z-index: 100000;
  width: 100%;
  height: 100%;
  position:fixed;
  top:0;
  left:0;
  background:rgba(0,0,0,0.75);
}
.xovis_modal .modal-dialog {
  height: 100%;
  width: 100%;
  position:absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}

.xovis_modal .modal-dialog .modal-content{
  max-width:700px;
  width:90%;
  padding:40px;
  box-shadow:0 2px 6px rgba(0,0,0,1);
  border-radius:3px;
  background:#fff;
}

.xovis_modal .modal-form {
  margin-top: 20px;
}

.xovis_modal .xovis-row {
  margin-right: -15px;
  margin-left: -15px;
}

.xovis_modal .modal-confirm-row {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.xovis_modal .modal-confirm-row label {
  padding-left: 10px;
}

.xovis_modal .modal-form-buttons {
  margin-top: 10px;
}

.xovis_modal .download-btn.xovis_load_button {
  background-color: #db002f;
  display: block;
  color: #ffffff;
}

.xovis_modal .download-btn.xovis_load_button:hover {
background-color: #ac002a;
}

.xovis_modal input[type="text"],  .xovis_modal input[type="email"]{
  width: 100%;
  background-color: #EFEEEC;
  border: none;
  padding: 10px 5px;
  border-radius: 5px;
}

.news-teaser p {
  font-size: 23px;
  color: #797979;
}

.social-btn {
  margin-left: 5px;
}

.xovis-back-button {
  cursor: pointer;
  font-size: 18px;
  margin-bottom: 9px;
}
.xovis-back-button i {
  font-weight: bold;
  color: #DB002F;
}
.xovis-back-button span {
  font-family: Roboto, sans-serif;
  line-height: 25px;
  font-weight: 300;
}

.quickview-related-wrapper a {
    text-align: center;
}

.related-product-title {
    margin-top: 5px;
}

.xovis_page_wrapper {
  position: relative;
}
canvas {
  position: absolute;
  transition: opacity 3000ms linear;
  z-index: -1;
  width: 100%;
}

.jubi-logo {
  position: absolute;
  top: 45px;
  right: 15%;
  width: 200px;
}

.xovis_modal .policy-link {
  font-size: 14px;
}

.xovis-jubi-disable {
  opacity: 0;
}
.news-list-category {
  font-weight: 400;
}

h1 {
  font-size: 45px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}
div.lead_textin,
span.lead_textin,
p.lead_textin,
.lead_text p {
  font-size: 23px;
  color: #151515;
}

body p {
  font-size: 18px;
  color: #151515;
}

a:hover {
  color: #db002f;
}


@media (max-width: 768px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 24px!important;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px!important;
  }

  div.lead_textin,
  span.lead_textin,
  p.lead_textin,
  .lead_text p {
    font-size: 19px;
    color: #151515;
  }

  body p {
    font-size: 16px;
    color: #151515;
  }
}


.navigation_path_left,
.navigation_path_left a {
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.navigation_path_left a.left-space {
  margin-left:10px;
}

.navigation_path_right,
.navigation_path_right a {
  font-family: Roboto, sans-serif;
  font-size: 16px;
}

.xovis_path.navigation_path {
  display: block;
}

.container1140 {
  width: 1140px;
  margin: 0 auto;
  padding: 5px 0 0;
}

@media (max-width: 1140px) {
  .container1140 {
    width: 100%;
  }

  .logo-xovis {
    padding-left: 15px;
  }
}

.xovis_navigation .container1140 {
  display: flex;
  position: relative;
}

.xovis_navigation .container1140 .navigation_logo {
  padding: 0;
  z-index: 200;
}

.navigation_links {
  margin-top: 3px;
  margin-left: 24px;
}

.nav.nav-justifiednew {
  display: flex;
}

.nav.nav-justifiednew,
.nav.nav-justifiednew ul {
  list-style: none;
}

.mega-dropdown-menu {
  display: none;
}

.menu-item .menu-level-1 {
  text-transform: uppercase;
}

.mega-dropdown.menu-item {

}

.menu-level-2 {
  position: relative;
  /*flex-grow: 1;
  flex-basis: 0;*/
  width: calc(25% - 25px);
  margin-top: 1.5rem;
}

.menu-level-2 .mega-dropdown-menu {
  padding-bottom: 0;
}

.menu-level-2 span.lnr {
  position: absolute;
  left: -25px;
  top: 23px;
  color: #DB002F;
  font-size: 13px;
}

.mega-dropdown.menu-item .mega-dropdown-menu {
  position: absolute;
  top:34px;
  left: 0;
  width: 100%;
}

.mega-dropdown.menu-item:hover .mega-dropdown-menu {
  display: flex;
  border-bottom: 1px solid #e5e5e5;
}

.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act {
  display: block;
  /*margin-top: 40px;*/
  padding-top: 15px;
  margin-right: 25px;
}

.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item a,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act a {
  font-size: 26px;
  line-height: 30px;
  font-weight: bold;
}

.mega-dropdown.menu-item .mega-dropdown-menu .mega-dropdown-menu {
  position: static;
  display: block;
  border-bottom: none;
  padding-left: 0;
  /*margin-top: 20px;*/
  padding-top: 0;
}
/*
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item .topmenu-item,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item .topmenu-item-act,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act .topmenu-item,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act .topmenu-item-act {
  margin-top: 30px;
}
*/
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item .topmenu-item a,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item .topmenu-item-act a,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act .topmenu-item a,
.mega-dropdown.menu-item .mega-dropdown-menu .topmenu-item-act .topmenu-item-act a {
  font-size: 22px;
  line-height: 25px;
  font-weight: 300;
}

.mega-dropdown-menu {
  padding-top: 34px;
  padding-bottom: 30px;
}

.innerarea {
  background-color: #FAFAFA;
  position: fixed;
  left: 0;
  right: 0;
  padding-bottom: 40px;
}


@media print {
  .xovis_nav_up {
    top:0 !important;
  }
  .xovis_path.navigation_path,
  .print-hide {
    display: none;
  }
  .contact_xovis_block {
    margin-left: 2rem;
  }
  .xovis_page_wrapper {
    padding-top: 90px !important;
  }
  h2{
    margin-bottom: 1rem;
  }
}

.mega-dropdown.menu-item:hover a,
.mega-dropdown.menu-item .topmenu-item:hover a,
.mega-dropdown.menu-item .topmenu-item-act:hover a,
.mega-dropdown.menu-item .topmenu-item .topmenu-item:hover a,
.mega-dropdown.menu-item .topmenu-item .topmenu-item-act:hover a,
.mega-dropdown.menu-item .topmenu-item-act .topmenu-item:hover a,
.mega-dropdown.menu-item .topmenu-item-act .topmenu-item-act:hover a {
  color: #db002f;
}

.mega-dropdown.menu-item .topmenu-item a,
.mega-dropdown.menu-item .topmenu-item-act a,
.mega-dropdown.menu-item .topmenu-item .topmenu-item a,
.mega-dropdown.menu-item .topmenu-item .topmenu-item-act a,
.mega-dropdown.menu-item .topmenu-item-act .topmenu-item a,
.mega-dropdown.menu-item .topmenu-item-act .topmenu-item-act a {
  color: #151515;
}


.ul-2-flex {
  display: flex;
  padding-left: 25px;
  flex-wrap: wrap;
}

.mega-dropdown-menu .mega-dropdown-menu ul {
  padding-left: 0;
}

.w-section .mobile-nav-container {
  background-color: #ffffff;
  width: 100%;
}

.w-section .mobile-nav-container .mobile-nav-link-element.mobile-nav-first {
  height: 64px;
  background-color: #FFFFFF;
}

.w-section .mobile-nav-container .mobile-nav-link-element.mobile-nav-first span.close-mobile-menu .lnr {
  color: #DB002F;
  font-size: 30px;
}

.w-section .mobile-nav-container .mobile-nav-link-element {
  height: auto;
  display: block;
  padding-left: 0;
  border-bottom: none;
}

.mobile-nav-link-element .block-box {
  display: block;
  width: 100%;

}

.mobile-nav-link-element .item-box {
  position: relative;
}

.mobile-nav-link-element .before-lock {
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid #E5E5E5;
  margin-right: 50px;
}

.mobile-nav-link {
  font-family: Roboto;
  font-style: normal;
  font-weight: 300;
  font-size: 17px;
  line-height: 36px;
}


.mobile-nav-link-element .block-box .lock {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50px;
  text-align: center;

  background-color: #E5E5E5;
  border-top: none;
  border-right: 1px solid #CCCCCC;
  border-bottom: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  box-sizing: border-box;
  color: #151515;

  font-family: Linearicons-Free;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 36px;

  padding-top: 4px;
}

.mobile-nav-link-element .block-box .lock.empty {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E5E5E5;
  border-left: none;
  border-right: none;
  border-top: none;
}


.mobile-nav-link-element .block-box.unlocked .lock{
  background-color: #DB002F;
  color: #FFFFFF;
}

.mobile-nav-link-element .block-box.unlocked .lock.empty {
  background-color: #FFFFFF;
}

.mobile-nav-link-element .unlocked .lnr:before,
.mobile-nav-link-element-2 .unlocked .lnr:before {
  content:"\e873";
}

span.icon {
  font-family: Linearicons-Free;
  font-style: normal;
  font-weight: normal;
  font-size: 17px;
  line-height: 36px;
}


.w-section .level-2,
.w-section .level-3 {
  display: none;
}

.w-section .level-2.opened,
.w-section .level-3.opened {
  display: block;
}

.mobile-nav-link-element .level-2 .before-lock {
  background-color: #FAFAFA;
  padding: 1px 0 1px 40px;
}

.mobile-nav-link-element .level-2 .lock {
  background-color: #FFFFFF;
  line-height: 29px;
}

.mobile-nav-link-element-3 {
  background-color: #F3F3F3;
  border-bottom: 1px solid #E5E5E5;
  padding: 1px 0 1px 60px;
}

.mobile-nav-container .mnv-text-wrapper {
  color: #FFFFFF;
  background-color: #DB002F;
}

.mobile-nav-container .mnv-text-wrapper a {
  color: #FFFFFF;
}

.mobile-nav-container .mnv-text-wrapper a:hover {
  color: #E5E5E5;
}

.mobile-nav-container .mnv-text-wrapper .to-right {
  float: right;
}

.mobile-nav-container .mnv-text-wrapper .navigation_box {
  display: flex;
}

.mobile-nav-container .mnv-text-wrapper .navigation_left {
  flex: 1 60px;
}



.tx_form .form-group {
    /*width : 540px;*/
   /* padding-bottom: 30px;*/
}

.tx_form .form-group .custom-control-input:checked ~ .custom-control-label::before {
  color:  #fff;
  border-color: #151515;
  background-color: #151515;
}

.tx_form  .col-form-label {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
    color: #151515;
    padding-bottom: 8px;
}

.tx_form  .custom-control-label {
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #151515;
    display: inline-block;
    padding-left: 6px;
}

.tx_form .w-input {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    border: 1px solid #E5E5E5;
    border-radius: 4px;
    margin-bottom: 0;
    color: #151515;
    box-shadow: none;
}

.tx_form .custom-checkbox .custom-control-input.is-valid ~ .custom-control-label span,
.tx_form .custom-radio .custom-control-input.is-valid ~ .custom-control-label span {
  color: #151515;
}

.tx_form .w-select {
    background:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23DB002F' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right .75rem center/8px 10px;
}

.tx_form .w-input::placeholder {
    color: #CCCCCC;
}

.tx_form .w-input:focus {
    background-color: #FAFAFA;
    border: 1px solid #151515;
}

.tx_form .w-radio:focus,
.tx_form .w-checkbox:focus,
.tx_form .w-input:focus,
.tx_form .w-select:focus,
.tx_form .custom-select:focus,
.tx_form .custom-control-input:focus ~ .custom-control-label::before,
.tx_form .custom-file-input:focus ~ .custom-file-label {
  background-color: #FAFAFA;
  border: 1px solid #151515;
/*  box-shadow: 0 0 0 .2rem rgba(0,0,0,.25);*/
  box-shadow: 0 0 0 .1px rgba(21,21,21,.25);
}

.tx_form .btn-primary:focus {
  background-color: #DB002F;;
  border: 1px solid #DB002F;;
  box-shadow: none;
}


  /*.tx_form .custom-radio {
      position: relative;
  }

  .tx_form  .custom-radio .custom-control-label {
      position: relative;
      padding-left: 20px;
  }

  .tx_form .w-radio {
      position: absolute;
      top: 6px;
  }

  .tx_form .w-checkbox {
      display: inline-block;
  }*/

.tx_form .help-block {
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 19px;
    color: #666666;
}

.tx_form .help-block.isGrouped {
  margin-left: 15px;
}

.tx_form .required,
.tx_form .custom-checkbox .custom-control-input.is-valid ~ .custom-control-label span span.required {
     color:#DB002F;
     padding-left: 5px;
 }

.tx_form .required-left .required,
.tx_form .custom-checkbox .custom-control-input.is-valid ~ .custom-control-label span.required-left span.required {
  padding-left: 0;
  padding-right: 5px;
}

.tx_form [required="required"].custom-control-input.is-valid ~ .custom-control-label::before,
.tx_form .was-validated [required="required"].custom-control-input:valid ~ .custom-control-label::before {
  border-color: #28a745;
}

.tx_form .custom-control-input.is-valid ~ .add-on.custom-control-label::before,
.tx_form .was-validated .custom-control-input:valid ~ .add-on.custom-control-label::before {
  color: #151515;
  border-color: #151515;
}

.tx_form [required="required"].custom-control-input.is-valid ~ .custom-control-label,
.tx_form .was-validated [required="required"].custom-control-input:valid ~ .custom-control-label {
  color: #28a745;
}


.tx_form .custom-control-input.is-valid ~ .add-on.custom-control-label,
.tx_form .was-validated .custom-control-input:valid ~ .add-on.custom-control-label {
  color: #151515;
  border-color: #151515;
}


.tx_form .custom-file-input.is-valid ~ .custom-file-label,
.tx_form .was-validated .custom-file-input:valid ~ .custom-file-label {
  border-color: #151515;
}

.tx_form .custom-select.is-valid,
.tx_form .was-validated .custom-select:valid {
  border-color: #151515;
}

.tx_form .btn-primary:not(:disabled):not(.disabled).active,
.tx_form .btn-primary:not(:disabled):not(.disabled):active,
.tx_form .show>.btn-primary.dropdown-toggle {
  background-color: #DB002F;
  border-color: #DB002F;
}

.tx_form .form-control.is-valid {
  background-image: none;
}



.tx_form .btn-primary {
    font-family: Roboto;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    color: #FFFFFF;
    background-color: #DB002F;
    border: 1px solid #DB002F;
    box-sizing: border-box;
    border-radius: 5px;
    padding: 0 20px;
}

.tx_form .form-group .is-invalid {
  border: 1px solid  #DB002F;
}

.tx_form .form-group .invalid-feedback {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
  color: #DB002F;
}

.tx_form .form-group .invalid-feedback-label {
  color: #DB002F;
}


.tx_form .form-group .tac-link {
  color: #E3385D;
  font-size: inherit;
}

@media (max-width: 768px) {

    .tx_form .form-group {
        width : auto;
        padding: 0 5px 30px;
    }

    .tx_form  .col-form-label {
        font-size: 16px;
    }

    .tx_form .btn-primary {
        width: 100%;
    }
}

.footer .navigation_path_right,
.footer .navigation_path_right a {
  font-size: 12px;
}


.cr_form {

}

.cr_form .cr_body {
  padding: 0;
}

.cr_form .editable_content {
  width: 540px;
  margin-bottom: 1rem;
}

.cr_form .editable_content .cr_ipe_item {
  margin: 1px 0;
  padding: 1px 0;
}

.cr_form .editable_content label {
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  color: #151515;
  padding-bottom: 8px;
  margin-bottom: 0;
}

.cr_form .editable_content input{
  font-family: Roboto;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 24px;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  margin-bottom: 0;
  color: #151515;
  box-shadow: none;
  display: block;
  width: 100%;
  height: 38px;
  padding: 8px 12px;
  background-color: #ffffff;
}

.cr_form .editable_content input::placeholder {
  color: #CCCCCC;
}

.cr_form .editable_content input:focus {
  background-color: #FAFAFA;
  border: 1px solid #151515;
}


.tx_form .form-control.is-valid:not([required]) {
  border-color: #E5E5E5;
}

.tx_form .form-control.is-valid:not([required]):focus {
  background-color: #FAFAFA;
  border: 1px solid #151515;
}

.cr_form .required {
  color:#DB002F;
  padding-left: 5px;
}


.cr_form .cr_button {
  font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 50px;
  text-align: center;
  color: #FFFFFF;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 0 20px;
  display: inline-block;
  height: auto;
}

.cr_form .cr_button:hover{
  opacity: 1;
}

.cr_form  .cr_button:focus {
  background-color: #DB002F;;
  border: 1px solid #DB002F;;
  box-shadow: none;
}

.xovis_container.full .fullwidth_image_section {
  margin: 0 -15px;
}

@media (max-width: 768px) {

  .cr_form .editable_content {
    width : auto;
    padding: 0 5px 30px;
  }

  .cr_form .editable_content label {
    font-size: 16px;
  }

  .cr_form  .cr_button {
    width: 100%;
  }
}

.xovis_container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}
.xovis_container.full {
    max-width: none;
}

.article {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}
.section_xovis_detail {
    width: 70%;
}

.section_xovis_sidebar {
    width: 30%;
    padding-left: 20px;
}
@media (max-width: 768px) {
    .section_xovis_sidebar {
        padding-left: 0px;
    }

}

.related_articles {
    padding: 0;
}

@media (max-width: 768px) {
    .article {
        flex-direction: column;
    }
    .section_xovis_detail, .section_xovis_sidebar {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .xovis_page_wrapper {
        padding-top: 128px;
    }
    .xovis_container {
        margin-top: 50px;
        margin-bottom: 50px;
    }
}


.navigation_path_right span.langmenu {
    margin-left: 15px;
}

.navigation_path_right span.langmenu .menu-separator {
    padding-left: 5px;
}

.navigation_path .navigation_path_right .menu-separator {
    padding-left: 7px;
}

.navigation_path_right span.langmenu .langmenu-item-act a {
    color: #151515;
}

.navigation_box .navigation_right .langmenu .langmenu-item-act a {
    color: #151515;
}

.navigation_box .navigation_right .langmenu .menu-separator {
    font-size: 16px;
}

.xovis_page_content p {
    margin-bottom: 1em;
}

.tx-jobs-xovis {
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
    padding-left: 15px;
    padding-right: 15px;
}

.jobs-list-container h1{
    text-align: center;
    margin-bottom: 50px;
}

.jobs-list-container .jobs-image{
    text-align: center;
}

.jobs-list-container .jobs-lead-text {
    margin: 50px 0;
}

.jobs-items {
    border-top: 1px solid #CCCCCC;
    margin-bottom: 25px;
}

.jobs-items a:hover {
    background-color: #FAF2F4;
    text-decoration: none;
}

.jobs-items a .jobs-item {
    padding: 30px 10px;
    border-bottom: 1px solid #CCCCCC;
}

.jobs-items a .jobs-item .jobs-item-box {

}

.jobs-item h3 {

}

.jobs-item .right-part {
    float:right;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 24px;
}


.jobs-item .first-line {
    color: #db002f;
    margin-bottom: 15px;
}

.jobs-item .second-line {
    color: #333333;
    font-family: Roboto;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 25px;
 }

.jobs-item .second-line:hover {
    color: #333333;
}

.jobs-item:hover {
    background-color: #FAF2F4;
}

.jobs-detail-container h1,
.jobs-detail-container h2 {
    text-align: center;
}


.jobs-detail-container .mail-to .button-wrapper {
    text-align: center;
    margin: 20px 0;
}

.jobs-detail-container .mail-to .email {
    background-color: #db002f;
    display: inline-block;
    color: #ffffff;
    padding: 15px 80px;
    border-radius: 5px;
    font-weight: 400;
    text-decoration: none;
}


.jobs-detail-container .job-image {
    text-align: center;
}


.jobs-detail-container .job-description {
    margin-top: 30px;
}

.jobs-detail-container .job-text-box {
/*    margin-left: 15px;
    margin-right: 15px;*/
}

.jobs-detail-container .text-center {
    text-align: center;
}


.jobs-detail-container .job-text {
    margin-top: 35px;
}

.jobs-detail-container .job-text h3 {
    margin-bottom: 20px;
}

.jobs-detail-container .contact-box {
    margin-top: 35px;
    display: flex;
}


.jobs-detail-container .contact-box .contact-image {
    margin-right: 20px;
}

.jobs-detail-container .contact-box .contact-image img {
    max-width: 355px;
}


.jobs-detail-container .contact-box h3 {
    margin-bottom: 25px;
}

.jobs-detail-container .contact-box .contact-panel {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    line-height: 30px;
    font-weight: 300;
}

.jobs-detail-container .contact-box .contact-panel .contact-phone a {
    color: #db002f;
}

.jobs-detail-container .contact-box .contact-panel .contact-email {
    margin-bottom: 15px;
}

.jobs-detail-container .contact-box .contact-panel .contact-email a {
    color: #db002f;
}

.jobs-detail-container .social-block {
    /*text-align: center;*/
    position: relative;
    margin-bottom: 60px;
    margin-top: 50px;
}

.jobs-detail-container .social-block .button-wrapper,
.jobs-detail-container .social-block .socialbutons {
    display: inline-block;
}

.jobs-detail-container .socialbutons {
    position: absolute;
/*    left: 65%;*/
    top:15px;
    /*bottom: 17px;*/
}


.jobs-detail-container .socialbutons .socialicon-box {
    margin-left: 117px;
    height: 50px;
    width: 200px;
}


.jobs-detail-container .socialbutons,
.jobs-detail-container .socialbutons a {
    color: #db002f;
}

.jobs-detail-container .socialbutons a:hover {
    color: #FFF;
    text-decoration: none;
}

.jobs-detail-container .share_button {
    border-radius: 50%;
    border: 1px solid #db002f;
    display: inline-block;
    padding: 7px 10px 6px 7px;
    margin: 5px 22px 0 0;
    position: relative;
    box-shadow: inset 0 0 1px 1px rgba(219, 0, 47, 0.2),0 0 1px 1px rgba(219, 0, 47, 0.2);
}

.jobs-detail-container .share_button.opened,
.jobs-detail-container .share_button .opened,
.jobs-detail-container .share_button:hover {
    background-color: #151515;
    color: #FFF;
    border-color: #151515;
}

.jobs-detail-container .share_button.for-print {
    padding: 7px 9px 6px 10px;
    margin: 5px 0;
    top: 2px;
}

.jobs-detail-container .share_button.for-print:hover,
.jobs-detail-container .share_button.for-print:hover a {
    color: #FFF;
}

.jobs-detail-container .share_button i {
    font-size: 24px;
    padding: 8px;
}

.jobs-detail-container .share_button span {
    font-size: 24px;
    padding: 5px 5px 0;
    line-height: 41px;
}

.jobs-detail-container .socialbutons .share_button a:hover,
.jobs-detail-container .share_button span:hover {
    color: #FFF;
}


.jobs-detail-container .socialbutons .shared_popup {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: absolute;
    width: 264px;
    height: 54px;
    left: 50px;
    top: 65px;
    display: none;
    margin-top: 12px;
}

.jobs-detail-container .socialbutons .shared_popup.opened {
    display: block;
}

.jobs-detail-container .socialbutons .shared_popup a:hover {
    text-decoration: navajowhite;
}

.jobs-detail-container .socialbutons .shared_popup a i:hover {
    background-color: #db002f;
    color:#FFF;
}

.jobs-detail-container .socialbutons .shared_popup a,
.jobs-detail-container .socialbutons .shared_popup a i {
    font-size: 28px;
}

.jobs-detail-container .socialbutons .shared_popup a i.fa-envelope {
    font-size: 24px;
}

.jobs-detail-container .socialbutons .shared_popup a i {
    padding: 15px 27px 12px;
}

.jobs-detail-container .socialbutons .shared_popup a i.fa-envelope {
    padding: 18px 30px 12px;
}

.jobs_email_button, .jobs_email_button2 {
    width:362px;
}

.jobs-detail-container {}
.jobs-detail-container {}
.jobs-detail-container {}

@media (max-width: 1040px) {
    .jobs_email_button {
        width: 100%;
    }
    .jobs-detail-container .socialbutons {
        /*display: block;*/
        position: static;
        margin-bottom: 20px;
    }

    .jobs-detail-container .social-block {
        /*position: static;*/
        text-align: center;
    }
    .jobs-detail-container .socialbutons .socialicon-box {
        margin-left: 0px;
        height: 50px;
        width: 200px;
    }


    element {

    }
    .jobs-detail-container .socialbutons .shared_popup {

     /*   position: static;*/
        margin-top: 15px;
        position: absolute;
        width: 264px;
        height: 54px;
        left: 95px;
        top: auto;

    }

}

@media (max-width: 767px) {

    .jobs-detail-container {
        margin: 0 15px;
    }

    .tx-jobs-xovis {
        margin-left: -15px;
        margin-right: -15px;
        margin-top: 30px;
        padding-left: 0;
        padding-right: 0;
    }

    .jobs-list-container {
        padding: 0 10px;
    }

    .jobs-item h3 {
        font-family: Roboto;
        font-style: normal;
        font-weight: 300;
        font-size: 26px;
        line-height: 30px;
    }

    .jobs-item .right-part {
        float:none;
        display: block;
        font-family: Roboto;
        font-style: normal;
        font-weight: normal;
        font-size: 16px;
        line-height: 24px;
    }

    .jobs-item h3 {
        font-family: Roboto;
        font-style: normal;
        font-weight: 300;
        font-size: 18px;
        line-height: 25px;
    }

    .jobs-detail-container .contact-box {
        display: block;
    }

    .jobs-detail-container .contact-box .contact-panel {
        /*margin-left: 15px;
        margin-right: 15px;*/
        overflow: hidden;
    }

    .jobs-detail-container .contact-box .contact-panel h3{
        margin-top: 25px;
    }


    .jobs-detail-container .contact-box .contact-image {
        /*margin-left: 15px;
        margin-right: 15px;*/
    }

    .jobs-detail-container .social-block {
        /* position: static;*/
        text-align: center;
    }

    .jobs-detail-container .socialbutons {
        display: block;
        position: static;
        margin-bottom: 20px;
    }

    .jobs-detail-container .socialbutons.opened {
        margin-bottom: 0;
    }

    .jobs-detail-container .socialbutons .shared_popup {
        /*position: static;*/
        margin-top: 15px;
        position: absolute;
        width: 264px;
        height: 54px;
        left: 95px;
        top:auto;
    }

    .job-text-box {
        /*margin-left: 15px;
        margin-right: 15px;*/
    }
    .jobs-detail-container .socialbutons .socialicon-box {
        margin-left: 0;
    }

    .jobs_email_button,.jobs_email_button2 {
        width:100%
    }

    .tx-jobs-xovis .back-link-wrapper {
        padding-left: 15px;
        padding-right: 15px;
    }

    .jobs-detail-container .contact-box .contact-image {
        margin:0 !important;
        text-align: center;
    }

    .jobs-detail-container .contact-box .contact-image img {
        max-width: 100%;
    }

}

@media (min-width: 768px) {

}

@media (max-width: 440px) {
    .jobs-detail-container .mail-to social-block {
        margin-bottom: 50px;
    }
}

/* Viewport Tablet Portrait ( max-width: 991 ) */

@media (min-width: 480px) and (max-width: 991px) {

  .spinner {
	position: absolute;
    top: 50%;
    margin-top: -23px !important;
    left: 0;
    right: 0;
  }

  .xovis_navigation a {
    font-size: 14px;
    margin-right: 15px;
  }

  .navigation_logo {
    padding: 0px 10px 0px 20px;
  }

  .navigation_logo img {
    width: 120px;
  }

  .button_flex {
	line-height: inherit;
	height: auto;
	padding-top: 10px;
	padding-bottom: 10px;
  }
	
  h1 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 300;
  }
  h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 300;
  }
  h3 {
    font-size: 28px;
    line-height: 30px;
    font-weight: 300;
  }
  .textcolor_download_blue_middle {
    padding-top: 0px;
  }
  .info_text_section.infotext_section_xovis {
    padding-right: 40px;
    padding-left: 40px;
  }

  .margin_bottom_110 {
    margin-bottom: 80px;
  }
  .margin_top_150px {
    margin-top: 80px;
  }
  .section_story_slider {
  }
  .section_products_more {
    height: 740px;
  }
  .customers_logo_box {
    width: 50%;
    border-left-style: none;
  }
  .hero_big {
    height: 250px;
  }
  .margin_bottom_90 {
    margin-bottom: 60px;
  }
  .margin_top_80 {
    margin-top: 60px;
  }
  .section_contact_press {
    height: 400px;
  }
  .img_left_newsbox {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .padding_bottom_60 {
    padding-bottom: 40px;
  }
  .padding_top_150 {
    padding-top: 80px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .padding_left_60 {
    padding-left: 40px;
  }
  .padding_right_60 {
    padding-right: 40px;
  }

  .padding_left_90 {
    padding-left: 40px;
  }
  .padding_right_90 {
    padding-right: 40px;
  }
  .padding_top_30 {
    padding-top: 0px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .padding_top_90 {
    padding-top: 0px;
  }
  .subnav_about_complete {
    display: block;
    height: 340px;
    margin-top: 106px;
  }
  .container_subnav_about {
    padding-right: 160px;
    padding-left: 160px;
  }
  .margin_bottom_180 {
    margin-bottom: 120px;
  }
  .padding_bottom_120 {
    padding-bottom: 80px;
  }
  .section_headline.leading_system {
    height: 180px;
  }
  .section_headline.customer_success_stories {
    height: 180px;
  }
  .section_headline.usps {
    height: 180px;
  }
  .section_headline.downloads {
    display: block;
    height: 180px;
  }
  .section_headline.retail_customers {
    height: 180px;
  }
  .section_headline.team_xovis_image {
    height: 120px;
  }
  .section_headline.events {
    height: 180px;
  }
  .section_headline.xovis_products_red {
    height: 180px;
  }
  .section_headline.join_our_team {
    height: 180px;
  }
  .section_usps {
    display: block;
  }
  .section_events {
    height: auto;
  }
  .div_events_33.event_03 {
    float: left;
  }
  .box_career_section.career_01 {
    background-position: 50% -38px;
  }
  .box_career_section.career_02 {
    background-position: 50% -80px;
  }
  .box_career_section.career_03 {
    background-position: 67% 11%;
  }
  .div_career_headline {
    top: 80px;
    height: 80px;
  }
  .text_career_33 {
    font-size: 18px;
    line-height: 22px;
  }
  .padding_bottom_80 {
    padding-bottom: 50px;
  }
  .margin_top_90 {
    margin-top: 60px;
  }
  .video_element.customers_airports {
    padding-right: 30px;
    padding-left: 30px;
  }
  .section_leading_system {
    margin-bottom: 80px;
  }
  .padding_right_40 {
    padding-top: 0px;
    font-size: 18px;
    line-height: 25px;
  }
  .padding_right_40.w--current {
    padding-top: 75px;
    font-size: 18px;
    line-height: 25px;
  }

  .list_element.success_stories {
    padding-right: 0px;
    padding-left: 0px;
  }
  .list_element.copenhagen_airports {
    padding-right: 0px;
    padding-left: 0px;
  }
  .list_element.vienna_airport {
    padding-right: 0px;
    padding-left: 0px;
  }
  .box_success_story.copenhagen_airports {
    margin-right: 30px;
    margin-left: 30px;
  }
  .statement_success_stories {
    font-size: 30px;
    line-height: 32px;
  }
  .caption_text {
    padding-right: 0px;
    padding-left: 0px;
  }
  .text_normal {
    padding-right: 0px;
  }
  .image_airport_sensor.pc3_sensor {
    margin-bottom: 60px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .section_read_more {
    display: block;
    height: 200px;
  }
  .overlay_software_customers_airports {
    height: 140px;
  }
  .head_overlay_software_customers {
    background-size: auto 60%;
  }
  .background_color_white {
    opacity: 1;
  }
  .text_overlay.software_customers_02 {
    padding-right: 60px;
    padding-left: 60px;
  }
  .col_02_client_logos_airport {
    border-right-style: none;
  }
  .image_worldmap {
    padding-top: 50px;
    padding-right: 60px;
    padding-left: 60px;
  }

  .subnav_customers_complete {
    display: none;
    margin-top: 106px;
  }
  .subnav_products_complete {
    margin-top: 106px;
  }
  .main_navigation {
    height: 70px;
  }
  .header {
    height: 100px;
  }
  .link_explore {
    text-decoration: none;
  }

  .subnav_xovis_complete {
    display: none;
    margin-top: 106px;
  }

  .key_facts_text_introduction {
    padding-right: 0px;
    padding-left: 0px;
  }
  .col_usps {
    height: 350px;
  }
  .col_downloads {
    height: 380px;
  }
  .row_key_facts {
    padding-right: 0px;
    padding-left: 0px;
  }

  .cont_accordeon {
    padding-right: 30px;
    padding-left: 30px;
  }
  .cont_headline_success_story {
    height: 120px;
    margin-right: 0px;
    margin-left: 0px;
  }
  .cont_subheadline_success_story {
    padding-top: 40px;
  }
  .row_2_col_success_story {
    display: block;
    border-bottom: 1px solid #e5e5e5;
  }
  .col_01_success_story_statement {
    padding-right: 20px;
    padding-left: 50px;
  }
  .key_facts {
    padding-right: 30px;
    padding-left: 30px;
  }
  .info_box_airport_products {
    padding-right: 40px;
    padding-left: 40px;
  }
  .pts_infographic {
    border: 1px solid #e5e5e5;
  }
  .headline_pts_infographic {
    margin-bottom: 40px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .box_pts_infographic {
    margin-top: 80px;
    margin-right: 40px;
    margin-left: 40px;
  }
  .cont_infotext_section {
    padding-right: 40px;
    padding-left: 40px;
  }
  .col_career_section {
    height: 280px;
  }
  .col_events {
    height: 380px;
  }
  .row_events {
    height: auto;
  }
  .airport_product_overview {
    padding-right: 40px;
    padding-left: 40px;
  }
  .text_bubble_small {
    font-size: 18px;
    line-height: 25px;
  }
  .text_bubble_big {
    font-size: 24px;
    line-height: 26px;
  }
  .img_left_col_newsbox {
    padding-right: 20px;
    padding-left: 0px;
  }
  .text_headline_right_newsbox {
    display: block;
  }
  .cont_only_text {
    padding-right: 40px;
    padding-left: 40px;
  }
  .margin_bottom_150 {
    margin-bottom: 80px;
  }
  .cont_image_left_contactbox {
    padding-left: 60px;
  }
  .cont_text_right_contactbox {
    padding-right: 120px;
  }
  .cont_text_and_image_01 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .butt_read_more_left.xovis_red.jump_to_airport_products:hover {
    background-color: #faf2f4;
  }
  .container_newsbox_overview {
    padding-right: 50px;
    padding-left: 50px;
  }
  .container_article_list_100 {
    margin-bottom: 80px;
    padding-right: 40px;
    padding-left: 40px;
  }
  .container_article_list_50 {
    padding-right: 40px;
    padding-left: 40px;
  }
  .col_left_article_list.no_border_bottom {
    border-bottom-style: none;
  }
  .col_right_article_list.no_border_bottom {
    border-bottom-style: none;
  }
  .col_latest_news {
    height: 270px;
  }
  .container_infotext_xovis {
    padding-right: 30px;
    padding-left: 30px;
  }
  .text_intro_success_stories {
    padding-right: 40px;
    padding-left: 40px;
  }
  .cont_text_right_contact_xovis {
    padding-left: 70px;
  }
  .subnav_about_complete_vertical {
    position: fixed;
    z-index: 1000;
    display: none;
    height: 820px;
    margin-top: 106px;
  }
  .row_slider_clients_love {
    display: block;
  }
  .col_01_slider_clients_love {
    display: block;
    padding-right: 100px;
    padding-left: 100px;
  }
  .col_02_slider_clients_love {
    padding-right: 100px;
    padding-left: 100px;
  }
  .cont_image_left_slider_clients_love {
    padding-right: 160px;
    padding-left: 160px;
  }
  .cont_text_right_slider_clients_love {
    padding-right: 0px;
    padding-left: 0px;
  }

  .cont_slider_products_xovis {
    padding-right: 100px;
    padding-left: 100px;
  }
  .cont_image_left_slider_products_xovis {
    display: block;
    padding-top: 0px;
    padding-right: 140px;
    padding-left: 110px;
  }
  .cont_image_left_slider_02_products_xovis {
    padding-right: 40px;
    padding-left: 40px;
  }
  .cont_headline_downloads_33 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cont_text_downloads_33 {
    padding-right: 10px;
    padding-left: 10px;
  }
  .cont_butt_downloads_33 {
    bottom: 40px;
  }
  .col_02_success_story_statement {
    padding-top: 40px;
    padding-right: 50px;
    padding-left: 20px;
  }
  .cont_headline_events_33 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
  }
  .cont_text_events_33 {
    padding-right: 20px;
    padding-left: 20px;
  }
  .cont_butt_events_33 {
    bottom: 40px;
  }
  .cont_headline_latest_news_33 {
    margin-top: 40px;
  }
  .cont_butt_latest_news_33 {
    bottom: 40px;
  }
  .team_module {
    display: block;
  }

  .layer_team_member_01 {
    padding-left: 10px;
  }
  .row_01_team_module.tablet_vertical {
    padding-right: 40px;
    padding-left: 40px;
  }
  .row_02_team_module.tablet_vertical {
    padding-right: 40px;
    padding-left: 40px;
  }
  .row_03_team_module.tablet_vertical {
    padding-right: 40px;
    padding-left: 40px;
  }

  .loading_text_xovis {
    font-size: 64px;
    line-height: 64px;
  }

  .loading_text_swiss_cross {
    font-size: 64px;
    line-height: 64px;
  }

  
	/* Custom MNM */
	.link_explore { margin-top: 6px; }
	/*.w-slide { background-position: 50% 50%; }*/
	.w-slide { background-position: 0 0; }

	.navigation_path_indicator {
    	line-height: 36px;
	}
	
	.container_subnav_about .w-col.w-col-3 {
	    width: 100%;
	    left: auto;
	    right: auto;		
	}
	
	.hero_slider_xovis .bubble_hero, 
	.hero_slider_all .bubble_hero {
	    left: 44%;
	    top: 10%;
	    width: 300px;
	    height: 300px;
	}
	
	.hero_slider, 
	.hero_slider.hero_slider_customers_airports, 
	.hero_slider.hero_slider_about_company, 
	.hero_slider.hero_slider_about_events { height: 400px; }
	
	
	.container_infotext_xovis .margin_top_150,
	.container_infotext_customers_airports .margin_top_150,
	.container_infotext_customers_retail .margin_top_150,
	.container_infotext_products_retail .margin_top_150,
	.container_infotext_about .margin_top_150 { margin-top: 90px; }

	.container_leading_system .headline_infotext.margin_top_150 { margin-top: 90px; }
	
	.box_success_story.margin_top_150 { margin-top: 90px; }
	
	
	.w-row.images { padding-left:30px; padding-right: 30px; }

	
	.element-focus .w-container { padding-right: 11px; padding-left: 11px; } 
	
  .headline_infotext > h1, 
  .headline_infotext > h2 {
    margin-bottom: 20px;
  }
	
	/* Client Logos */
	.client_logo_png a, 
	.client_logo_svg a {
		height: auto;
		line-height: normal;
		padding-top: 55px;
	}
	.client_logo_png, 
	.client_logo_svg {
    	padding-right: 40px;
	    padding-left: 40px;	
	}
	
	.img_client_logo_svg { height:90px; }
	.img_client_logo_png { top:30%; } 

	.w-container .w-col.w-col-6 .key_facts { padding-right: 11px; padding-left: 11px; }
	.w-container .w-col.w-col-6 .w-section .w-container .key_facts { padding-right: 0; padding-left: 0; }
	
	.w-container .w-col.w-col-6 .w-section .w-container.container_leading_system.margin_bottom_40 { margin-bottom: 0; }
	 
	.image_airport_sensor.pc3_sensor {
		margin-bottom: 40px;
		padding-right: 10px;
		padding-left: 0;
		margin-right: 0;
		margin-left: 30px;
	}
  	.w-col-6 .tx-powermail .btn-wrapper.btn-inner-align-center { padding-left: 30px }
  	.w-col-6 .tx-powermail .form { padding-left: 30px; }
  	
  	.element-overlay { padding-left: 30px; padding-right: 30px; }

  	.subnav_about_complete { height: 820px !important; }
  	
  	.w-col-20 { width: 33.33333333333%; }
  	.team_module {
  		padding-left: 46px;
  		padding-right: 46px;
  	}
  	
	  .text_team_member_team_module {
	    padding: 15px;
	    padding-bottom: 0;
	  }	
	  .text_team_member_team_module .text_subtitle_team_member { padding-bottom: 15px; }
}



.view_not_supported.w-hidden-medium {	display: none !important;}@media (min-width: 480px) and (max-width: 767px) {	.w-hidden-small { display: inherit !important; }	/* Main Navigation */	.div_main_nav_phone_vertical_menu { width: auto !important; }		/* Subnavigation */	.sub_nav_phone_vertical {		height: 100vh;		overflow: scroll;	}	.sub_nav_phone_vertical a.butt_subnav_phone_all  {	    width: 30%;	    float: left;	    margin-right: 14px;	    line-height: inherit;	    height: auto;	    padding-top: 20px;	    padding-bottom: 20px;	}	.sub_nav_phone_vertical a.butt_subnav_phone_all.home.col_03 { margin-right: 0; }		/* Subnavigation 2nd */	.sub_nav_phone_vertical a.butt_subnav_phone_all.butt_subnav_phone_vertical_2_col { width: 48%; }	.sub_nav_phone_vertical a.butt_subnav_phone_all.butt_subnav_phone_vertical_2_col:last-child { margin-right: 0; }		/* Subnavigation 3rd */	.sub_nav_phone_vertical a.butt_subnav_phone_all.butt_subnav_phone_vertical_jump {    	width: auto;    	font-size: 16px;	}		/* Logo */	.main_nav_div_phone._00 { background-position: 30px 50% !important; }		/* cols & rows */	.w-row.images {		padding-left: 0;		padding-right: 0;	}	.w-col {	}	.w-col.w-col-12 {		padding-left: 0 !important;		padding-right: 0 !important;	}	.w-col-6 { width: 50%; }	.w-container .w-col.w-col-6:first-child .w-section { padding-left: 0; }	.w-container .w-col.w-col-6:last-child .w-section { padding-right: 0; }	.col_01_slider_clients_love {  }		.section_contact_xovis .w-col.w-col-6 {		padding-left: 0 !important;		padding-right: 0 !important;	}	.section_contact_xovis { height: auto !important; }			.cont_image_left_slider_clients_love {		padding-right: 20px !important;		padding-left: 20px !important;	}		/* Client Logos */	.client_logo_png a, 	.client_logo_svg a {		height: auto;		line-height: normal;		padding-top: 55px;	}	.client_logo_png, 	.client_logo_svg {    	padding-right: 40px;	    padding-left: 40px;		}	.img_client_logo_png {	    top: 30%;	    height: auto;	    width: 50%;		}		.img_client_logo_svg { height:90px; }	.img_client_logo_png { top:30%; } 					.w-container .w-col.w-col-4.col_key_facts {		padding-left: 0 !important;		padding-right: 0 !important;		width: 33.3333%;	}		.w-container .key_facts.key_facts-cols-3 {		margin-left: -30px;		margin-right: 0;	} 	.w-container .key_facts.key_facts-cols-3 .headline_infotext { margin-left: 30px; }	.w-container .key_facts.key_facts-cols-3 .w-col.w-col-4.col_key_facts {		padding-left: 30px !important;		padding-right: 30px !important;	}		.key_facts h3 {		width: 100%;	}		/* Accordion */	.txt_accordeon {		padding-left: 55px !important;	}		.section_story_slider { height: auto !important; }	.section_story_slider .story_slider { padding-bottom: 50px !important; } 		.butt_read_more_left.retail_green.jump_to_download_success_story {		margin-left: 0 !important;	}		.headline_infotext > h1, 	.headline_infotext > h2 {        margin-bottom: 30px !important;   }      .picture.gallery .w-col.w-col-4 {		width: 33.3333%;   }   .picture.gallery .w-col.w-col-3 {		width: 50%;   }   .picture.gallery figure { margin-bottom: 40px !important; }      .overlay_software_customers_airports { height: 150px !important; }      .w-row.margin_bottom_60.images .w-col-4 > img { margin-bottom: 0 !important; }   .w-row.images.margin_bottom_60 { margin-bottom: 0; }   .w-row.images .w-col.w-col-4 { width: 33.3333%; }     .overlay_software_customers_airports {    background-size: auto 10% !important;  }     .cont_subheadline_success_story { padding: 25px !important; }  	.w-container .key_facts.key_facts-cols-2 {		margin-left: -30px;		margin-right: 0;		margin-top: 0;	} 	.w-container .key_facts.key_facts-cols-2 .headline_infotext,	.w-container .key_facts.key_facts-cols-2 .cont_key_facts_subtitle { margin-left: 30px; }	.w-container .key_facts.key_facts-cols-2 .w-col.w-col-6.col_key_facts {		padding-left: 30px !important;		padding-right: 30px !important;	}		.w-section.info_text_section.margin_bottom_40 { margin-bottom: 40px !important; }  	  	.key_facts { margin-top: 0 !important; }    	.w-col-20 { width: 50%; }  	  	/* News */  	.row_newsbox_overview .w-col.w-col-4 { width: 40%; }   	.row_newsbox_overview .w-col.w-col-8 { width: 60%; }   	  	  	.link_nav_path_phone_vertical {   		padding-left: 50px !important; 	    background-position: 4% 50% !important;        	        	}  	.div_nav_path_phone_vertical.welcome .link_nav_path_phone_vertical { padding-left: 30px !important; }  	  	}

/* Viewport Phone Landscape ( max-width: 767px) */
@media (max-width: 767px) {
    .loading_text_xovis.phone_landscape {
        font-size: 40px;
        line-height: 40px;
    }

    .view_not_supported {
        position: fixed;
        z-index: 6000;
        width: 100%;
        height: 100%;
        background-color: #151515;
    }

    .testimonials_slider.section_story_slider {
        height: 1400px;
    }
}

/* Viewport Phone ( max-width: 479px ) */

@media (max-width: 767px) {
    .w-hidden-small {
        display: inherit !important;
    }

    .footer .section_footer.w-hidden-small {
        display: none !important;
    }

    .spinner {
        position: absolute;
        top: 50%;
        margin-top: -23px !important;
        left: 0;
        right: 0;
    }

    .w-slide {
        background-position: 0 0;
    }

    body {
        padding-top: 0px;
    }

    h1 {
        font-size: 30px;
        line-height: 36px;
    }

    h2 {
        font-size: 34px;
        line-height: 36px;
    }

    h4 {
        font-size: 16px;
    }

    .xovis_page_wrapper {
        padding-top: 70px;
    }

    .lead_text {
        width: 100%;
    }

    .textcolor_xovis_red_middle {
        font-weight: 300;
    }

    .footer_button_02.phone_vertical {
        width: 100%;
        border-right-style: none;
        line-height: 60px;
    }

    .footer_button_03.phone_vertical {
        width: 100%;
        border-top-style: none;
        border-right-style: none;
        line-height: 60px;
    }

    .footer_button_04.phone_vertical {
        width: 100%;
        border-top-style: none;
        border-right-style: none;
        line-height: 60px;
    }

    .footer_button_05.phone_vertical {
        width: 100%;
        border-top-style: none;
        border-right-style: none;
        line-height: 60px;
    }

    .footer_button_06.phone_vertical {
        width: 100%;
        border-top-style: none;
        border-right-style: none;
        line-height: 60px;
    }

    .info_text_section.infotext_section_xovis {
        padding-right: 0px;
        padding-left: 0px;
    }

    .container_infotext_customers_airports {
        padding-right: 30px;
        padding-left: 30px;
    }

    .margin_bottom_110 {
        margin-bottom: 50px;
    }

    .margin_top_150px {
        margin-top: 60px;
    }

    .section_products_more {
        height: 760px;
    }

    .customers_logo_box {
        width: 100%;
    }

    .hero_big {
        height: 340px;
    }

    .hero_big.xovis_red {
        height: 220px;
    }

    .section_contact_press {
        height: 560px;
    }

    .row_newsbox_overview {
        margin-bottom: 40px;
    }

    .row_newsbox_overview._01 {
        border-bottom-style: solid;
    }

    .row_newsbox_overview._03 {
        border-bottom-style: solid;
    }

    .row_newsbox_overview.no_border_bottom {
        border-bottom-style: none;
    }

    .hero_slider.hero_slider_xovis {
        height: 250px;
    }

    .hero_slider.hero_slider_about.team {
        height: 250px;
    }

    .hero_slider.hero_slider_about.company {
        height: 250px;
    }

    .hero_slider.hero_slider_about.career {
        height: 250px;
    }

    .hero_slider.hero_slider_customers_retail {
        height: 250px;
    }

    .hero_slider.hero_slider_customer_airports {
        height: 250px;
    }

    .padding_bottom_60 {
        padding-bottom: 40px;
    }

    .padding_bottom_30 {
        padding-bottom: 20px;
    }

    .padding_bottom_20 {
        margin-bottom: 20px;
        padding-bottom: 0px;
    }

    .col_01_info_text_version_2 {
        margin-bottom: 40px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_02_info_text_version_2 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_03_info_text_version_2 {
        margin-bottom: 40px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col_04_info_text_version_2 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .padding_bottom_40 {
        padding-bottom: 20px;
    }

    .textlayer_usp_01 {
        line-height: 22px;
    }

    .textlayer_usp_02 {
        line-height: 22px;
    }

    .textlayer_usp_03 {
        line-height: 22px;
    }

    .textlayer_usp_04 {
        line-height: 22px;
    }

    .padding_right_90 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .padding_top_30 {
        padding-top: 0px;
    }

    .padding_top_90 {
        padding-top: 0px;
    }

    .margin_bottom_180 {
        margin-bottom: 60px;
        /*padding: 0px 30px;*/
    }

    .section_headline.leading_system {
        height: 140px;
    }

    .section_headline.customer_success_stories {
        height: 160px;
    }

    .section_headline.downloads {
        height: 80px;
    }

    .section_headline.retail_customers {
        height: 140px;
    }

    .section_headline.team_xovis_image {
        height: 80px;
    }

    .section_headline.xovis_products_red {
        height: 140px;
    }

    .section_headline.join_our_team {
        height: 80px;
        margin-top: 60px;
    }

    .section_headline_h1 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .box_career_section.career_01 {
        border-right-style: none;
    }

    .box_career_section.career_02 {
        border-right-style: none;
    }

    .div_career_headline {
        top: 60px;
        height: 60px;
    }

    .padding_bottom_80 {
        padding-bottom: 40px;
    }

    .margin_bottom_50 {
        margin-bottom: 40px;
        padding-left: 0px;
    }

    .section_leading_system {
        margin-bottom: 60px;
    }

    .padding_right_40 {
        padding-right: 25px;
        padding-left: 25px;
    }

    .accordeon_standard_text {
        padding: 0;
    }

    .list {
        padding-left: 0px;
    }

    .box_success_story.copenhagen_airports {
        display: block;
        margin-right: 30px;
        margin-left: 30px;
    }

    .video_airport_copenhagen {
        margin-bottom: 30px;
    }

    .statement_success_stories {
        padding-bottom: 0px;
        font-size: 22px;
        line-height: 26px;
    }

    .caption_text {
        position: relative;
        left: 0px;
        top: 0px;
        right: 0px;
    }

    .padding_top_10 {
        padding-bottom: 40px;
    }

    .text_normal {
        display: block;
        padding-bottom: 0px;
    }

    .button_download_video {
        width: 170px;
        margin-right: auto;
        margin-bottom: 30px;
        margin-left: auto;
    }

    .video_airport_vienna {
        margin-bottom: 30px;
    }

    .image_airport_sensor.pc3_sensor {
        margin-bottom: 40px;
        padding-right: 10px;
        padding-left: 10px;
        margin-right: 30px;
        margin-left: 30px;
    }

    .section_read_more {
        height: 160px;
    }

    .overlay_software_customers_airports {
        height: 220px;
        background-image: url('vhs-assets-css-4b8ceccda1b3ec79f63f02920997d321.svg');
        background-position: 95% 50%;
        background-size: auto 8%;
        background-repeat: no-repeat;
    }

    .layer-software_customers_airports_01 {
        display: block;
        opacity: 0;
    }

    .head_overlay_software_customers {
        padding-right: 70px;
        padding-left: 30px;
        background-image: none;
        background-position: 0% 0%;
        background-size: auto;
        background-repeat: repeat;
        background-attachment: scroll;
        font-size: 18px;
        line-height: 22px;
        font-weight: 400;
    }

    .layer_software_customers_airports_02 {
        opacity: 0;
    }

    .text_overlay.software_customers_02 {
        padding-right: 10px;
        padding-left: 10px;
        line-height: 20px;
        font-weight: 400;
    }

    .text_overlay.software_customers_01 {
        padding-right: 15px;
        padding-left: 10px;
        opacity: 1;
        line-height: 22px;
        font-weight: 400;
    }

    .layer_software_customers_airports_03 {
        opacity: 0;
    }

    .col_01_airport_logo_01 {
        padding-top: 10%;
    }

    .image_worldmap {
        padding: 30px 15px;
    }

    .main_navigation {
        display: none;
    }

    .header {
        display: none;
    }

    .padding_right_10 {
        height: auto;
        padding-right: 0px;
    }

    .navigation_path {
        display: none;
    }

    .grid-navigation li {
        font-size: 16px;
    }

    .grid-overview-tile {
        border-bottom: none;
    }

    .header_logo {
        float: left;
    }

    .mobile-nav-header {
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
        border-bottom: 1px solid #eee;
    }

    .mobile-nav-header a {
        height: auto;
    }

    .nav-toggle-button {
        float: right;
        height: auto;
        font-size: 28px;
        color: #151515;
    }

    .mobile-nav-container {
        width: 300px;
        height: 100%;
        z-index: 1;
        background-color: #E5E5E5;
        position: fixed;
        top: 0;
        right: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        transition: transform 300ms linear;
        will-change: transform;
    }

    .mobile-nav-container a {
        font-size: 16px;
    }

    .mobile-nav-container a:hover {
        color: #db002f;
    }

    .mnv-text-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 20px;
    }

    .mnv-newsletter i {
        margin-right: 10px;
    }

    .mobile-nav-contact div {
        margin-bottom: 10px;
    }

    .mobile-nav-contact span, .mobile-nav-contact a {
        display: inline;
    }

    .mobile-nav-info {
        display: block;
        padding-top: 50px;
    }

    .mobile-nav-info p {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .mobile-nav-info a, .mobile-nav-info span {
        display: inline;
        font-size: 16px;
    }

    .mnv-social a:first-of-type {
        margin-right: 5px;
    }

    .mnv-social a, .mnv-social i {
        color: #db002f;
        font-size: 22px;
    }

    .mnv-social a:hover, .mnv-social i:hover {
        color: #151515;
    }

    .mobile-nav-container.nav-open {
        -webkit-transform: none;
        transform: none;
        transition: transform 300ms linear;
        overflow: scroll;
    }

    .is-mobile {
        display: none;
    }

    .content.nav-open {
        transform: translateX(-300px);
    }

    .mobile-nav-link-element {
        padding-left: 20px;
        display: flex;
        align-items: center;
        height: 50px;
        width: 100%;
        border-bottom: 2px solid white;
    }

    .mobile-nav-first {
        background-color: #DB002F;
        height: 64px;
    }

    .mobile-nav-first span {
        color: white;
        font-weight: bold;
        font-size: 18px;
    }

    .mobile-nav-link {
        height: auto;
    }

    .mobile-nav-link:hover {
        font-weight: bold;
        color: #DB002F;
    }

    .header_phone_vertical {
        z-index: 1000;
        background-color: white;
        position: fixed;
        top: 0;
        display: block;
        width: 100%;
        height: 64px;
        transition: top 0.3s ease-in-out;
    }

    .header_phone_up {
        top: -70px;
    }

    .padding_left_50 {
        background-position: 8% 50%;
    }

    .off {
        display: none;
    }

    .col_usps {
        height: 250px;
    }

    .col_downloads {
        height: 340px;
    }

    .cont_accordeon {
        padding-right: 30px;
        padding-left: 30px;
    }

    .cont_headline_success_story {
        height: 140px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .cont_subheadline_success_story {
        padding: 15px;
    }

    .col_01_success_story_statement {
        display: block;
        padding: 30px;
    }

    .txt_subhead_success_stories_airports {
        font-weight: 300;
    }

    .info_box_airport_products {
        padding-right: 30px;
        padding-left: 30px;
    }

    .pts_infographic {
        padding: 15px;
    }

    .headline_pts_infographic {
        margin-bottom: 30px;
    }

    .box_pts_infographic {
        margin-top: 60px;
        margin-right: 30px;
        margin-left: 30px;
    }

    .cont_infotext_section {
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_career_section {
        height: 220px;
    }

    .col_events {
        height: 340px;
    }

    .airport_product_overview {
        padding-right: 30px;
        padding-left: 30px;
    }

    .text_bubble_small {
        font-size: 11px;
        line-height: 14px;
        font-weight: 400;
        letter-spacing: 0.06em;
    }

    .text_bubble_big {
        font-size: 16px;
        line-height: 17px;
    }

    .img_left_col_newsbox {
        margin-bottom: 30px;
        padding-right: 50px;
        padding-left: 50px;
    }

    .text_right_col_newsbox {
        border-bottom: 1px none #e5e5e5;
    }

    .cont_text_right_newsbox {
        padding-right: 0px;
        padding-left: 0px;
    }

    .cont_butt_right_newsbox {
        display: block;
        margin-bottom: 40px;
    }

    .hero_small.xovis_red {
        height: 220px;
    }

    .cont_only_text {
        padding-right: 30px;
        padding-left: 30px;
    }

    .headline {
        margin-bottom: 20px;
    }

    .text_content {
        margin-bottom: 40px;
    }

    .butt_visit_website.xovis_light_red.jump_retail_next {
        margin-right: auto;
        margin-left: auto;
    }

    .margin_bottom_150 {
        display: block;
        margin-bottom: 60px;
    }

    .container_contact_press {
        padding-right: 30px;
        padding-left: 30px;
    }

    .img_left_col_contact {
        margin-bottom: 40px;
        padding-right: 0px;
    }

    .cont_image_left_contactbox {
        padding-right: 60px;
        padding-left: 60px;
    }

    .text_right_col_contact {
        padding-left: 20px;
    }

    .cont_text_right_contactbox {
        display: block;
        padding-right: 0px;
        padding-left: 0px;
    }

    .text_headline_right_contactbox {
        margin-bottom: 10px;
    }

    .cont_text_and_image_01 {
        padding-right: 30px;
        padding-left: 30px;
    }

    .image_content_100 {
        margin-bottom: 20px;
    }

    .image_content_50 {
        margin-bottom: 40px;
    }

    .image_content_slider_100 {
        margin-bottom: 40px;
    }

    .content_slider_100 {
        height: 200px;
    }

    .butt_read_more_left.xovis_red.jump_to_airport_products {
        margin-right: auto;
        margin-left: auto;
    }

    .butt_read_more_left.retail_green.jump_to_download_success_story {
        margin-right: auto;
        margin-left: auto;
    }

    .cont_headline_and_button {
        margin-right: 30px;
        margin-left: 30px;
    }

    .container_newsbox_overview {
        padding-right: 30px;
        padding-left: 30px;
    }

    .container_article_list_100 {
        margin-top: 60px;
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .row_article_list._02_press_article {
        margin-top: 40px;
    }

    .row_article_list._03_press_article {
        margin-top: 40px;
    }

    .row_article_list._04_press_article {
        margin-top: 40px;
    }

    .row_article_list._05_press_article {
        margin-top: 40px;
    }

    .cont_butt_article_list {
        margin-bottom: 40px;
    }

    .container_article_list_50 {
        margin-top: 20px;
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .row_article_list_50 {
        margin-top: 40px;
        margin-bottom: 0px;
    }

    .col_left_article_list {
        height: 390px;
        margin-bottom: 40px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col_left_article_list.image {
        height: 590px;
    }

    .col_left_article_list.no_border_bottom {
        border-bottom-style: solid;
    }

    .col_left_article_list.news_archive_01 {
        height: 390px;
    }

    .col_left_article_list.news_archive_03 {
        height: 390px;
    }

    .col_left_article_list.news_archive_05 {
        height: 390px;
    }

    .col_left_article_list.news_archive_07 {
        height: 390px;
    }

    .col_right_article_list {
        height: 380px;
    }

    .col_right_article_list.image {
        height: 500px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col_right_article_list.no_border_bottom {
        height: 500px;
    }

    .col_right_article_list.news_archive_02 {
        height: 390px;
    }

    .col_right_article_list.news_archive_04 {
        height: 390px;
    }

    .col_right_article_list.news_archive_06 {
        height: 390px;
    }

    .col_right_article_list.news_archive_08 {
        height: 390px;
    }

    .cont_butt_article_list_50 {
        bottom: 40px;
        margin-left: 0px;
        padding-left: 0px;
    }

    .div_latest_news_33.latest_news_01.no_border {
        border-right-style: none;
        border-bottom-style: solid;
    }

    .div_latest_news_33.latest_news_02.no_border {
        border-right-style: none;
        border-bottom-style: solid;
    }

    .container_infotext_products_airport,
    .container_infotext_products_retail,
    .container_infotext_customers_retail,
    .container_infotext_customers_airports,
    .container_infotext_xovis,
    .container_infotext_about {
        margin-top: 60px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .padding_left_135 {
        padding-left: 50px;
    }

    .col_01_slider_clients_love {
        margin-bottom: 30px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .cont_image_left_slider_clients_love {
        padding-right: 60px;
        padding-left: 60px;
    }

    .cont_text_right_slider_clients_love {
        padding-right: 0px;
        padding-left: 0px;
    }

    .headline_infotext > h1,
    .headline_infotext > h2 {
        margin-bottom: 40px;
    }

    .cont_slider_products_xovis {
        padding-right: 50px;
        padding-left: 50px;
    }

    .col_01_slider_products_xovis {
        padding-right: 0px;
        padding-left: 0px;
    }

    .cont_image_left_slider_products_xovis {
        padding-right: 20px;
        padding-left: 20px;
    }

    .cont_infotext {
        padding: 0px;
    }

    .cont_image_left_slider_02_products_xovis {
        padding-right: 0px;
        padding-left: 0px;
    }

    .cont_headline_hero {
        margin-bottom: 20px;
    }

    .cont_headline_infotext_focus {
        margin-bottom: 20px;
    }

    .section_footer_phone_vertical {
        width: 100%;
    }

    .col_key_facts {
        padding-right: 0px;
        padding-left: 0px;
    }

    .headline_col_key_facts {
        margin-bottom: 10px;
    }

    .text_col_key_facts {
        margin-bottom: 30px;
    }

    .cont_list_accordeon_01 {
        padding-right: 10px;
        padding-left: 30px;
    }

    .col_02_row_01_success_story {
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }

    .col_02_success_story_statement {
        padding: 30px;
    }

    .logo_copenhagen_airports.statement {
        position: relative;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: auto;
        padding-right: 0px;
        padding-left: 0px;
    }

    .container_airport_product_overview {
        margin-top: 60px;
    }

    .col_01_image_content_50 {
        margin-bottom: 20px;
        padding-right: 0px;
        padding-left: 0px;
    }

    .col_02_image_content_50 {
        padding-right: 0px;
        padding-left: 0px;
    }

    .col_01_team_module {
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_02_team_module {
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_03_team_module {
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .col_04_team_module {
        margin-bottom: 20px;
        padding-right: 30px;
        padding-left: 30px;
    }

    .text_team_member_team_module {
        height: 100%;
    }

    .layer_team_member_01 {
        margin-right: 30px;
        margin-left: 30px;
        padding-left: 15px;
        opacity: 0;
    }

    .layer_team_member_02 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_03 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_04 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_05 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_06 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_07 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_08 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_09 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_10 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_11 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .layer_team_member_12 {
        margin-right: 30px;
        margin-left: 30px;
    }

    .client_logo_module.airport_blue {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .client_logo_01 {
        padding-right: 80px;
        padding-left: 80px;
    }

    .client_logo_02 {
        padding-right: 80px;
        padding-left: 80px;
    }

    .client_logo_03 {
        padding-right: 80px;
        padding-left: 80px;
    }

    .client_logo_04 {
        padding-right: 50px;
        padding-left: 50px;
    }

    .client_logo_05 {
        padding-right: 60px;
        padding-left: 60px;
    }

    .client_logo_06 {
        padding-right: 75px;
        padding-left: 75px;
    }

    .client_logo_07 {
        padding-right: 60px;
        padding-left: 60px;
    }

    .client_logo_08 {
        padding-right: 60px;
        padding-left: 60px;
    }

    .client_logo_09 {
        padding-right: 70px;
        padding-left: 90px;
    }

    .client_logo_10 {
        padding-right: 70px;
        padding-left: 70px;
    }

    .client_logo_11 {
        padding-right: 80px;
        padding-left: 80px;
    }

    .client_logo_12 {
        padding-right: 40px;
        padding-left: 40px;
    }

    .client_logo_13 {
        padding-right: 65px;
        padding-left: 65px;
    }

    .client_logo_14 {
        padding-right: 75px;
        padding-left: 75px;
    }

    .client_logo_15 {
        padding-right: 45px;
        padding-left: 45px;
    }

    .img_client_logo_10 {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .img_client_logo_13 {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .img_client_logo_14 {
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

    .row_01_client_logos {
        margin-bottom: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .row_02_client_logos {
        margin-bottom: 0px;
        padding-right: 20px;
        padding-left: 20px;
    }

    .row_03_client_logos {
        padding-right: 20px;
        padding-left: 20px;
    }

    .loading_text_xovis {
        font-size: 50px;
        line-height: 50px;
    }

    .swiss_cross {
        padding-right: 140px;
        padding-left: 140px;
    }

    .loading_text_swiss_cross {
        font-size: 50px;
        line-height: 50px;
    }

    /* Custom MNM */
    .button_flex {
        line-height: inherit;
        height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .hero_slider_slide_02,
    .hero_slider,
    .hero_slider.hero_slider_customers_airports,
    .hero_slider.hero_slider_about_company,
    .hero_slider.hero_slider_about_events {
        height: 250px;
    }

    .hero_slider_xovis .bubble_hero,
    .hero_slider_all .bubble_hero {
        left: 28% !important;
        top: 10%;
        width: 180px;
        height: 180px;

    }

    .container_infotext_products_airport .headline_infotext,
    .container_infotext_products_retail .headline_infotext,
    .container_infotext_customers_retail .headline_infotext,
    .container_infotext_customers_airports .headline_infotext,
    .container_infotext_xovis .headline_infotext,
    .container_infotext_about .headline_infotext {
        margin-top: 0;
    }

    .tx-powermail .btn-wrapper.btn-inner-align-center {
        padding-left: 30px;
        padding-right: 30px;
    }

    .section_contact_xovis .w-col {
        padding-left: 0;
        padding-right: 0;
    }

    .w-row.images .w-col-6 {
        margin-bottom: 30px;
    }

    .w-row.images .w-col-6:last-child {
        margin-bottom: 0;
    }

    /* Slider Home */
    .section_story_slider .cont_slider_clients_love {
        top: 40px;
        transform: none;
        -webkit-transform: none;
    }

    /* Footer */
    .footer_button {
        border-top: 0;
    }

    .footer_button.phone_vertical {
        width: 100%;
        line-height: 60px;
        text-transform: uppercase;
    }

    /*
    .client_logo_png, .client_logo_svg {
        padding-right: 70px;
        padding-left: 90px;
    }
    .img_client_logo_svg { height:90px; }
    .img_client_logo_png { top:30%; }

    */
    /* Client Logos */
    .client_logo_png a,
    .client_logo_svg a {
        height: auto;
        line-height: normal;
        padding-top: 55px;
    }

    .client_logo_png,
    .client_logo_svg {
        padding-right: 40px;
        padding-left: 40px;
    }

    .img_client_logo_svg {
        height: 90px;
    }

    .img_client_logo_png {
        top: 30%;
    }

    .container_leading_system .cont_accordeon:last-child {
        margin-bottom: 40px;
    }

    .container_leading_system .key_facts .margin_top_150 {
        margin-top: 70px;
    }

    .link_accordeon {
        background-position: 4% 50%, 92% 50%;

    }

    .link_accordeon:hover {
        background-position: 92% 50%, 4% 50%;

    }

    .accordeon_standard_text {
        padding: 0;
    }

    .accordeon_standard_text p {
        padding: 20px;
    }

    .txt_accordeon {
        padding-right: 45px;
        padding-left: 36px;
        line-height: 22px;
    }

    .section_headline.usps {
        height: auto;
        margin-bottom: 0;
    }

    .section_headline.usps .vertical_align_text {
        -webkit-transform: inherit;
        -ms-transform: inherit;
        transform: inherit;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .box_success_story.margin_top_150 {
        margin-top: 40px;
    }

    .row_2_col_success_story_text_images .col_01_row_01_success_story {
        padding-left: 0;
        padding-right: 0;
    }

    .row_2_col_success_story_text_images .col_01_row_01_success_story img {
        padding-left: 20px;
    }

    .row_2_col_success_story_statements > .w-row {
        display: block;
    }

    .row_2_col_success_story_text_images .col_01_row_01_success_story {
        padding: 0;
    }

    .row_2_col_success_story_text_images.last {
        padding-bottom: 25px;
    }

    .row_2_col_success_story_text_images.last > div {
        float: none;
        width: 100%;
    }

    .row_2_col_success_story_text_images.last > div > img {
        padding-left: 25px;
    }

    .key_facts {
        padding-right: 30px;
        padding-left: 30px;
        margin-top: 40px;
    }

    .w-col-6 .key_facts {
        padding-right: 0;
        padding-left: 0;
        margin-top: 0px;
    }

    .butt_read_more_center {
        width: 80%;
    }

    .col_02_slider_clients_love {
        padding-right: 50px;
        padding-left: 50px;
    }

    .w-container .w-col.w-col-4.col_key_facts {
        padding-right: 0;
        padding-left: 0;
    }

    .w-container .w-col.w-col-4 .w-section .w-container .key_facts {
        padding-right: 0;
        padding-left: 0;
    }

    .col_01_row_01_success_story {
        position: static;
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }

    .col_01_row_01_success_story > span {
        margin-bottom: 0;
    }

    .col_02_row_01_success_story {
        padding-right: 15px;
        padding-bottom: 15px;
        padding-left: 15px;
    }

    .col_01_success_story_statement,
    .col_02_success_story_statement {
        padding-right: 15px;
        padding-left: 15px;
    }

    .w-container.container_leading_system.margin_bottom_110.margin_top_40 {
        margin-top: 0;
        margin-bottom: 40px;
    }

    .w-container.container_leading_system .key_facts .w-col-12.col_key_facts {
        padding-left: 0;
        padding-right: 0;
    }

    .w-container.container_leading_system .key_facts.margin_bottom_60 {
        margin-bottom: 10px;
    }

    .w-container.container_leading_system.margin_bottom_80 {
        margin-bottom: 0;
    }

    .text_col_key_facts {
        margin-bottom: 30px;
    }

    .video_element.customers_airports {
        padding-right: 30px;
        padding-left: 30px;
    }

    .video_element.customers_airports.margin_bottom_40.margin_top_40 {
        margin-bottom: 0;
    }

    .container_leading_system .cont_accordeon:last-child {
        margin-bottom: 0;
    }

    .w-container.container_leading_system.margin_bottom_40 {
        margin-bottom: 0;
    }

    .w-col-6 .tx-powermail .btn-wrapper.btn-inner-align-center {
        padding-left: 0;
    }

    .image_airport_sensor.pc3_sensor {
        margin-bottom: 40px;
        padding-right: 0;
        padding-left: 0;
        margin-right: 30px;
        margin-left: 30px;
        margin-top: -40px;

    }

    .row_key_facts .col_key_facts {
        padding-left: 0;
        padding-right: 0;
    }

    .element-overlay {
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 0;
    }

    .picture.gallery figure {
        margin-bottom: 20px;
    }

    .w-row.margin_bottom_80.images {
        margin-bottom: 0;
    }

    .container_leading_system .key_facts .headline_infotext.margin_bottom_40.margin_top_60 > h2 {
        margin-bottom: 0;
        margin-top: 0;
    }

    .w-row.margin_bottom_60.images .w-col-4 > img {
        margin-bottom: 20px;
    }

    .w-section.info_text_section.margin_bottom_40 {
        margin-bottom: 0;
    }

    .section_read_more .tx-powermail .btn-wrapper {
        padding-top: 60px;
    }

    .section_read_more .tx-powermail .form {
        top: 60px;
    }

    .row_info_text_version_2 {
        margin-bottom: 0;
    }

    .img_left_col_contact_xovis, .text_right_col_contact_xovis {
        width: 100%;

    }

    .img_left_col_contact_xovis {
        height: 300px;
    }

    .jubi-logo {
        right: 16% !important;
        top: 7px !important;
        width: 80px !important;
        z-index: 5000;
    }

}

/* TABLET */@media ( max-width: 991px ) {	.lead_text {		width: 80%;		padding-left: 10px;		padding-right: 10px;	}	.logo-xovis {		width: 120px;	}	.cont_grid-tiles .grid-overview-tile {		width: 45%;		margin-right: 0;	}	.teaser_row {		justify-content: center;	}	.item_small, .item_large {		width: 40%;	}	.item_large {		width: 40%;	}	.item_large .teaser_grid_item {		padding-top: 120%;	}	.item_small .teaser_bubble {		bottom: -40%;	}	.teaser_content_text {		top: 60%;		left: 20px;	}	.item_large .teaser_content_text {		width: 80%;	}	.item_large .teaser_bubble {		width: 125%;		height: 100%;		bottom: -40%;		left: -25%;	}	.item_small .crop_left img {		width: auto;		height: 100%;		max-width: none;	}	.item_small .crop_right img {		width: auto;		height: 100%;		max-width: none;	}	.item_small .crop_center img {		width: auto;		height: 100%;		max-width: none;	}	.item_large .crop_left img {		width: auto;		height: 100%;		max-width: none;	}	.item_large .crop_right img {		width: auto;		height: 100%;		max-width: none;	}	.item_large .crop_center img {		width: auto;		height: 100%;		max-width: none;		position: absolute;		left: 50%;		transform: translateX(-50%);	}}/* PHONE */@media (max-width: 760px) {	.grid_navigation_home .cont_grid-tiles {		padding-left: 10px;		padding-right: 10px;	}	.cont_grid-tiles .grid-overview-tile {		width: 100%;	}	.item_small {		width: 100%;	}	.teaser_row {		flex-wrap: wrap;	}	.item_small .teaser_grid_item {		padding-top: 60%;	}	.item_large .teaser_grid_item {		padding-top: 60%;	}	.item_large {		width: 100%;	}	.item_small .teaser_bubble{		width: 100%;		height: 0;		padding-top: 100%;		bottom: -120%;		left: -20%;	}	.teaser_content_text {		top: 20%;		left: 10px;	}	.teaser_bubble {		opacity: 0.8;	}	.item_small .teaser_bubble, .item_large .teaser_bubble {		width: 120%;		bottom: auto;		top: -30%;	}	.teaser_item_wrapper:nth-child(odd) .teaser_bubble {		left: -30%;	}	.teaser_item_wrapper:nth-child(even) p, .teaser_item_wrapper:nth-child(even) h4{		width: 100%;		text-align: right;	}	.teaser_item_wrapper:nth-child(odd) .teaser_content_text {		left: 20px;	}	.teaser_item_wrapper:nth-child(even) .teaser_content_text {		left: auto;		right: 20px;	}	.teaser_item_wrapper:nth-child(even) .teaser_bubble {		left: auto;		right: -30%;	}	.item_large .teaser_content img, .item_small .teaser_content img {		width: 100%;		height: auto;		max-width: 100%;	}}@media (max-width: 760px) {	.related_articles .grid-overview-tile {		width: 45%;	}	.grid-overview-tile:nth-last-child(2) {		border-bottom: none;	}}@media (max-width: 450px) {	.section_contact_xovis, .section_contact_xovis.footer_big {		height: auto;	}	.contact_xovis {		flex-wrap: wrap;		padding-top: 20px;	}	.contact_xovis_block {		width: 100%;		margin-bottom: 20px;		text-align: center;	}	.related_articles .grid-overview-tile {		width: 100%;	}	.grid-overview-tile:nth-last-child(2) {		border-bottom: 1px solid #CCCCCC;	}	.grid-overview-tile:last-child {		border-bottom: none;	}}@media (max-width: 450px) {	.lead-wrapper .leadtext-wrapper {		position: static;		padding: 30px 0;		transform: none;	}	.lead-wrapper .responsive_image_wrapper img {		display: none;	}}@media (min-width: 769px) {	.xovis_slider_wrapper.singleView .slick-dots{		display: none;	}	.xovis_slider_wrapper.singleView {		padding-bottom: 0px;		padding-left: 0px;		padding-right: 0px;	}}@media (max-width: 1400px) {	.jubi-logo {		right: 3%;		top: 70px;		width: 120px;	}}@media (max-width: 1050px) {	.jubi-logo {		right: 1%;		top: 95px;		width: 80px;	}}

