@charset "UTF-8";
/*@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i&display=swap');*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.8;
}
.hamburger.is-active:hover {
  opacity: 0.8;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #FFFFFF;
}

.hamburger-box {
  width: 26px;
  height: 16px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::after {
  width: 20.8px;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

.is-active .hamburger-inner:after {
  width: 26px;
}

.white .hamburger-inner, .white .hamburger-inner::before, .white .hamburger-inner::after,
.white .is-active .hamburger-inner,
.white .is-active .hamburger-inner::before,
.white .is-active .hamburger-inner::after {
  background-color: #2B2C2C;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*@import 'fontawesome/fontawesome'; 
@import 'fontawesome/solid';
@import 'fontawesome/regular';
@import 'fontawesome/brands'; */
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}
.plyr video,
.plyr audio {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  box-sizing: inherit;
}

.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: #fff;
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: #fff;
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__captions .plyr__caption div {
  display: inline;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
  }
}

.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: transparent;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(255, 77, 85, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #ff4d55;
  color: #fff;
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #ff4d55;
  color: #fff;
}

.plyr__control--overlaid {
  background: rgba(255, 77, 85, 0.8);
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  background: #ff4d55;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}
.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}
.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: #fff;
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}

.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}

.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: 7px;
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}
.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}
.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 #fff;
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #ff4d55;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 26px;
  color: #ff4d55;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  transition: box-shadow 0.3s ease;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  /* stylelint-disable-line */
  margin-top: -4px;
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  transition: all 0.2s ease;
  width: 13px;
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  transition: box-shadow 0.3s ease;
  user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  transition: box-shadow 0.3s ease;
  user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(255, 77, 85, 0.5);
  outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(255, 77, 85, 0.5);
  outline: 0;
}
.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(255, 77, 85, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb, .plyr--full-ui.plyr--video input[type=range].nice-select.open::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb, .plyr--full-ui.plyr--audio input[type=range].nice-select.open::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}

.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}
@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 768px) {
  .plyr__volume {
    max-width: 110px;
  }
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-moz-full-screen video {
  height: 100%;
}
.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}

/* stylelint-disable-next-line */
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}

.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}
.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}

.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}
.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: #fff;
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 10px;
  border: solid 1px #ffffff;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  font-family: inherit;
  font-size: 16px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  transition: all 0.2s ease-in-out;
  user-select: none;
  white-space: nowrap;
  width: auto;
  min-width: 250px;
}
.nice-select:hover {
  border-color: #f2f2f2;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #858585;
}
.nice-select:after {
  border-bottom: 2px solid #858585;
  border-right: 2px solid #858585;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: white;
  color: #858585;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #b8b8b8;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  transform-origin: 50% 0;
  transform: scale(0.75) translateY(-21px);
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
  width: 100%;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #858585;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, audio, canvas, command, datalist, details, embed, figcaption, figure, footer, header, hgroup, keygen, meter, nav, output, progress, section, source, video, main {
  display: block;
}

mark, rp, rt, ruby, summary, time {
  display: inline;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav, object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, tdvideo, tt, u, ul, var {
  background: transparent;
  border: 0 none;
  font-weight: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: top;
}

a {
  text-decoration: none;
  outline: none !important;
  vertical-align: baseline;
}

b, strong {
  font-weight: bold;
}

ul, ol {
  list-style: none;
}

q {
  quotes: none;
}

table, table td {
  padding: 0;
  border: none;
  border-collapse: collapse;
}

img {
  vertical-align: top;
  max-width: 100%;
}

embed {
  vertical-align: top;
}

input, textarea {
  font-family: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

input, button {
  outline: none;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
}

th {
  text-align: left;
}

textarea {
  outline: none !important;
}

button {
  cursor: pointer;
  color: inherit;
}

html, body {
  min-height: 100%;
}

fieldset, legend, label, select, textarea, form, button, optgroup {
  -webkit-appearance: none !important;
}

.clearfix:after, .u-grid:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.clearfix, .u-grid {
  display: inline-block;
}

* html .clearfix, * html .u-grid {
  height: 1%;
}

.clearfix, .u-grid {
  display: block;
}

div.clear {
  clear: both;
}

body {
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: initial !important;
}
body.animate-in {
  -webkit-animation: fadeIn 0.5s ease-in;
  animation: fadeIn 0.5s ease-in;
}
body.animate-out {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  opacity: 0;
}

html {
  overflow-y: initial !important;
  background-color: white;
  /*    background: url("/app/resources/i/page-loader.gif");
      background-attachment: fixed;
      background-position: center 45%;
      background-repeat: no-repeat;
      background-size: 150px;*/
}

.cover, [data-bg-image-src] {
  background-color: transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contain {
  background-color: transparent;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-selection {
  color: #fff;
  background-color: #FF757C;
}

::-moz-selection {
  color: #fff;
  background-color: #FF757C;
}

::selection {
  color: #fff;
  background-color: #FF757C;
}

.wr-page-wrapper {
  overflow-x: hidden;
}

.animated {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.w-100 {
  width: 100%;
}

.nicescroll-rails {
  visibility: hidden;
}

:root {
  font-size: 16px;
}

body {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.625rem;
  font-weight: 400;
  color: #858585;
}

address:not(:last-child) {
  margin-bottom: 1.625rem;
}

q {
  font-style: italic;
}

small {
  font-size: 0.875rem;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

q,
kbd,
strong,
em,
tt,
var,
span,
del,
big,
small {
  vertical-align: baseline;
}

pre {
  overflow: auto;
}

pre:not(:last-child) {
  margin-bottom: 1.625rem;
}

code {
  overflow: auto;
  display: inline-block;
  vertical-align: middle;
}

pre,
code,
kbd,
tt,
var {
  font-size: 1rem;
  line-height: 1.625;
  padding: 5px 10px;
  color: #858585;
  background-color: #f2f2f2;
  border: 1px solid #d9d9d9;
}

mark {
  color: #fff;
  background-color: #464646;
}

img {
  opacity: 1;
  transition: opacity 0.3s;
}

img[data-src] {
  opacity: 0;
}

/* ----------------------------------------
    Headings
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #464646;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.2;
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child) {
  margin-bottom: 1.2rem;
}

h1 {
  font-size: 3.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2.15rem;
  }
}

h3 {
  font-size: 2.6rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.8rem;
  }
}

h4 {
  font-size: 1.875rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.6rem;
  }
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.125rem;
}

h6:not(:last-child) {
  margin-bottom: 1.1rem;
}

/* ----------------------------------------
    Paragraphs
---------------------------------------- */
p {
  font-weight: 300;
}

p:not(:last-child) {
  margin-bottom: 1.625rem;
}

/* ----------------------------------------
    Links
---------------------------------------- */
a {
  color: #FF757C;
  transition-property: all;
  transition-delay: 0ms;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
a:hover {
  color: #ff424c;
}

/* ----------------------------------------
    Layout
---------------------------------------- */
#wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  min-width: 284px;
  position: relative;
  height: 100%;
  padding: 0;
  margin: 0 auto;
}

.container {
  width: 88%;
  max-width: 1360px;
  min-height: 1px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
}
@media (max-width: 1090px) {
  .container {
    width: 87.0588235294%;
  }
}
@media (max-width: 576px) {
  .container {
    width: 95%;
  }
}
.container--full {
  width: 100%;
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
.container--small {
  max-width: 800px;
}
.container--medium {
  max-width: 1024px;
}
.container--relative {
  position: relative;
}

/* ----------------------------------------
    Grid
---------------------------------------- */
.u-grid .u-col, .u-grid .u-col-1-2, .u-grid .u-col-1-3, .u-grid .u-col-2-3, .u-grid .u-col-1-4 {
  width: 100%;
  float: left;
}
@media (max-width: 1090px) {
  .u-grid .u-col-1-2 {
    width: 50%;
  }
  .u-grid .u-col-1-3 {
    width: 33.3333333333%;
  }
  .u-grid .u-col-2-3 {
    width: 66.6666666667%;
  }
  .u-grid .u-col-1-4 {
    width: 25%;
  }
}

/* ----------------------------------------
    Preloader
---------------------------------------- */
.wr-preloader-circle, .wr-preloader {
  position: fixed;
  width: 260vw;
  height: 260vw;
  margin-left: -130vw;
  margin-top: -130vw;
  background-color: #fff;
  z-index: 50;
  border-radius: 50%;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-delay: 0ms;
  transition-delay: 0ms;
  -webkit-transition-duration: 700ms;
  transition-duration: 700ms;
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.wr-preloader-circle {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.wr-preloader {
  left: 50%;
  top: 50%;
}

.wr-preloader-circle, .wr-preloader.wr-preloader--disappearing {
  -webkit-transform: scale3d(0, 0, 0);
  transform: scale3d(0, 0, 0);
}

.wr-preloader-circle--appearing {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

.col {
  float: left;
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  top: 0;
  left: 0;
  transition-property: background-color;
  transition-delay: 0ms;
  transition-duration: 500ms;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1090px) {
  header .container {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}
header .pre-header {
  padding-top: 25px;
  padding-bottom: 5px;
  text-align: right;
}
header .pre-header .voice {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  margin: 0 1%;
}
header .pre-header .voice--zucchetti img {
  width: 128px;
}
@media (max-width: 1090px) {
  header .pre-header {
    display: none !important;
  }
}
header .menu-header {
  padding-top: 35px;
  padding-bottom: 25px;
  overflow: unset;
}
header .menu-header .hamburger-menu {
  display: none;
}
@media (max-width: 1090px) {
  header .menu-header .hamburger-menu {
    display: block;
    width: 20%;
    padding-left: 25px;
  }
}
@media screen and (max-width: 420px) {
  header .menu-header .hamburger-menu {
    width: 30%;
  }
}
header .menu-header .logo {
  width: 22%;
}
header .menu-header .logo a {
  display: block;
  width: 130px;
  height: 30px;
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/tcpos-logo-header.png);
  background-size: 130px;
  background-repeat: no-repeat;
  background-position-y: -32px;
}
header .menu-header .logo a:hover {
  opacity: 0.8;
}
@media (max-width: 1090px) {
  header .menu-header .logo a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 350px) {
  header .menu-header .logo a {
    width: 110px;
    background-size: 110px;
    background-position-y: -23px;
  }
}
@media (max-width: 1090px) {
  header .menu-header .logo {
    width: 60%;
  }
}
@media screen and (max-width: 420px) {
  header .menu-header .logo {
    width: 40%;
  }
}
header .menu-header .menu {
  width: 56%;
}
header .menu-header .menu ul li > a {
  color: #ffffff;
}
@media (min-width: 1089.8px) {
  header .menu-header .menu ul.level-1 {
    width: 100%;
    position: relative;
    text-align: center;
  }
  header .menu-header .menu ul.level-1 li {
    display: inline-block;
    margin: 0 5%;
  }
  header .menu-header .menu ul.level-1 li a {
    font-weight: 500;
  }
  header .menu-header .menu ul.level-1 li a:after {
    content: "";
    display: block;
    width: 1%;
    height: 2px;
    background-color: transparent;
    margin: 10px auto 0 auto;
    transition-property: all;
    transition-delay: 0ms;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  header .menu-header .menu ul.level-1 li a.active, header .menu-header .menu ul.level-1 li a:hover {
    position: relative;
  }
  header .menu-header .menu ul.level-1 li a.active:after, header .menu-header .menu ul.level-1 li a:hover:after {
    background-color: #ffffff;
    width: 70%;
  }
  header .menu-header .menu ul.level-1 li:hover > .level-2 {
    opacity: 1;
    display: block;
  }
  header .menu-header .menu ul.level-2 {
    transition-property: opacity;
    transition-delay: 0ms;
    transition-duration: 500ms;
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    display: none;
    opacity: 0;
    position: absolute;
    background: #ffffff;
    left: 0;
    top: 86%;
    width: 100%;
    padding: 15px 5px 15px 15px;
    text-align: left;
  }
  header .menu-header .menu ul.level-2 li {
    display: inline-block;
    width: 28.5%;
    vertical-align: top;
    text-align: left;
    margin: 1% 2%;
    line-height: 14px;
    position: relative;
  }
  header .menu-header .menu ul.level-2 li:before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10%;
    display: block;
    height: 80%;
    width: 3px;
    background-color: #FF4B55;
    border-radius: 15px;
  }
  header .menu-header .menu ul.level-2 li:hover, header .menu-header .menu ul.level-2 li.active {
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.06);
  }
  header .menu-header .menu ul.level-2 li a {
    display: block;
    color: #464646;
    font-size: 14px;
    padding: 18px 0 18px 25px;
  }
  header .menu-header .menu ul.level-2 li a:after {
    display: none;
  }
  header .menu-header .menu ul.level-2 li a.active {
    color: #FF4B55;
  }
}
header .menu-header .menu .menu-responsive {
  display: none;
}
@media (max-width: 1090px) {
  header .menu-header .menu {
    display: none;
    width: 100%;
    height: 100vh;
    padding-top: 25px;
    position: relative;
    z-index: 9;
  }
  header .menu-header .menu ul li {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
  }
  header .menu-header .menu ul li a {
    font-size: 21px;
    font-weight: 500;
  }
  header .menu-header .menu ul.level-1 {
    overflow: auto;
  }
  header .menu-header .menu ul.level-1 > li a {
    padding: 20px 15px;
    display: block;
    border-top: 1px solid #ccc;
  }
  header .menu-header .menu ul.level-1 > li a:hover {
    color: #FF4B55;
  }
  header .menu-header .menu ul.level-1 > li a.active-voice {
    color: #FF4B55;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    z-index: 9999;
    padding: 35px 25px 25px 25px;
  }
  header .menu-header .menu ul.level-1 > li a.active-voice:before {
    content: "";
    display: block;
    width: 12px;
    height: 30px;
    position: absolute;
    top: 30px;
    left: 36px;
    background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/icon-back.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .menu-header .menu ul.level-1 ul.level-2 {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    top: 90px;
    left: 0;
    z-index: 5;
    overflow: auto;
    padding-bottom: 40%;
  }
  header .menu-header .menu .menu-responsive {
    display: block;
    background-color: #EFF3F7;
    width: 100%;
    height: 60%;
    padding: 25px;
    position: relative;
  }
  header .menu-header .menu .menu-responsive ul li p {
    color: #464646;
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin: 0;
    padding: 3% 0 0 0;
  }
  header .menu-header .menu .menu-responsive ul li p.active-voice {
    color: #FF4B55;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #EFF3F7;
    z-index: 5;
    font-size: 21px;
    padding: 35px 25px 25px 25px;
  }
  header .menu-header .menu .menu-responsive ul li p.active-voice:before {
    content: "";
    display: block;
    width: 12px;
    height: 30px;
    position: absolute;
    top: 30px;
    left: 36px;
    background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/icon-back.png);
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
  }
  header .menu-header .menu .menu-responsive ul.level-1 ul.level-2 {
    background-color: #EFF3F7;
  }
  header .menu-header .menu .menu-responsive .social-links {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    background-color: #EFF3F7;
  }
  header .menu-header .menu .menu-responsive .social-links__link {
    margin: 7px;
  }
}
header .menu-header .languages {
  min-height: 2px;
  width: 7%;
  text-align: right;
}
@media (max-width: 1090px) {
  header .menu-header .languages {
    width: 20%;
    padding-right: 25px;
  }
}
@media screen and (max-width: 420px) {
  header .menu-header .languages {
    width: 30%;
  }
}
header .menu-header .languages #lang {
  position: relative;
}
header .menu-header .languages #lang a {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: #ffffff;
  padding-right: 15px;
  position: relative;
  line-height: 1em;
}
header .menu-header .languages #lang .active {
  position: relative;
  z-index: 10;
}
header .menu-header .languages #lang .active a {
  cursor: pointer;
}
header .menu-header .languages #lang .active a:after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-select-lang.png);
  background-repeat: no-repeat;
  background-position-y: 0;
  background-size: 9px;
  width: 9px;
  height: 5px;
  top: 5px;
}
header .menu-header .languages #lang .more-langs {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  padding: 0 0 10px 10px;
}
header .menu-header .languages #lang .more-langs li {
  line-height: 1.4em;
}
header .menu-header .action {
  width: 15%;
  text-align: right;
}
header .menu-header .action a.btn {
  padding: 10px 3%;
  border: 2px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
}
header .menu-header .action a.btn:hover {
  color: #464646;
  background-color: #ffffff;
}
@media (max-width: 1090px) {
  header .menu-header .action {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    float: none;
    -webkit-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.06);
  }
  header .menu-header .action a.btn {
    display: block;
    width: 100%;
    border-radius: 0;
    padding: 15px 25px;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 400;
    border: 2px solid #FF4B55;
    background-color: #FF4B55;
  }
  header .menu-header .action a.btn:hover {
    border: 2px solid #FF4B55;
    background-color: #FF4B55;
    color: #ffffff;
  }
}
header.white {
  background-color: #ffffff;
}
header.white .menu-header .logo a {
  background-position-y: 0px;
}
@media screen and (max-width: 350px) {
  header.white .menu-header .logo a {
    background-position-y: 5px;
  }
}
header.white .menu-header .menu a {
  color: #464646;
}
header.white .menu-header .menu a.active {
  color: #FF4B55;
}
header.white .menu-header .menu ul.level-1 > li > a.active:after, header.white .menu-header .menu ul.level-1 > li > a:hover:after {
  background-color: #464646;
}
header.white .menu-header .languages #lang a {
  color: #464646;
}
header.white .menu-header .languages #lang .active a:after {
  background-position-y: -5px;
}
header.white .menu-header .languages #lang .more-langs {
  background-color: #ffffff;
}
header.white .menu-header .action a.btn {
  border: 2px solid #FF4B55;
  background-color: #FF4B55;
}
header.white .menu-header .action a.btn:hover {
  color: #FF4B55;
  background-color: transparent;
}
@media (max-width: 1090px) {
  header.white .menu-header .action a.btn:hover {
    border: 2px solid #FF4B55;
    background-color: #FF4B55;
    color: #ffffff;
  }
}

#header-image {
  background-color: #464646;
  height: 90vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
#header-image .container {
  z-index: 10;
}
#header-image .container .title-box {
  top: 25%;
  max-width: 570px;
  position: relative;
}
#header-image .container .title-box .breadcrumbs {
  margin-bottom: 25px;
}
#header-image .container .title-box .breadcrumbs a {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
  line-height: 14px;
}
#header-image .container .title-box .breadcrumbs a:hover {
  opacity: 0.8;
}
#header-image .container .title-box .breadcrumbs a.parent-title:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 150px;
  height: 2px;
  background-color: #ffffff;
  margin: 0 25px;
  line-height: 14px;
}
@media (max-width: 768px) {
  #header-image .container .title-box .breadcrumbs a.parent-title:after {
    width: auto;
    margin: 0 10px;
    height: auto;
    content: "/";
    background: none;
  }
}
@media (max-width: 1090px) {
  #header-image .container .title-box .breadcrumbs {
    text-align: center;
  }
}
#header-image .container .title-box h1 {
  color: #ffffff;
}
@media (max-width: 1090px) {
  #header-image .container .title-box h1 {
    text-align: center;
  }
}
#header-image .container .title-box .intro-txt {
  max-width: 430px;
}
#header-image .container .title-box .intro-txt * {
  color: #ffffff;
}
@media (max-width: 1090px) {
  #header-image .container .title-box .intro-txt {
    text-align: center;
    margin: 0 auto;
  }
}
#header-image .container .title-box .contact-area {
  border: 1px solid #ffffff;
  text-align: left;
  width: auto;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 40px;
  -webkit-transition: all 3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header-image .container .title-box .contact-area:hover {
  background-color: #ffffff;
  -webkit-transition: all 3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#header-image .container .title-box .contact-area:hover * {
  color: #464646;
}
@media (max-width: 1090px) {
  #header-image .container .title-box .contact-area {
    text-align: center;
  }
}
#header-image .container .title-box .contact-area label, #header-image .container .title-box .contact-area a {
  display: inline-block;
  vertical-align: middle;
  padding: 15px 25px;
  color: #ffffff;
}
#header-image .container .title-box .contact-area label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
#header-image .container .title-box .contact-area a {
  letter-spacing: 1px;
}
#header-image .container .title-box .contact-btn {
  border: 1px solid #ffffff;
  text-align: left;
  width: auto;
  display: inline-block;
  padding: 20px 13%;
  margin-top: 40px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}
#header-image .container .title-box .contact-btn:hover {
  background: #ffffff;
  color: #464646;
}
@media (max-width: 1090px) {
  #header-image .container .title-box {
    padding-top: 160px;
    margin: 0 auto;
    text-align: center;
  }
}
@media (max-width: 1090px) {
  #header-image .container {
    padding: 0;
  }
}
#header-image .opacity {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.27);
}
#header-image.event-head {
  background-color: #0788AF;
}
#header-image.event-head .title-box {
  float: left;
  width: 60%;
  max-width: 60%;
}
#header-image.event-head .title-box h1 {
  font-size: 62px;
  max-width: 570px;
}
#header-image.event-head .title-box .date-event {
  margin-bottom: 15px;
  max-width: 570px;
}
#header-image.event-head .title-box .date-event p {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
}
#header-image.event-head .title-box .intro-txt.intro-txt__location {
  margin-top: 13%;
  max-width: 570px;
}
#header-image.event-head .title-box .intro-txt.intro-txt__location p {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
@media (max-width: 1090px) {
  #header-image.event-head .title-box {
    float: none;
    width: 100%;
    top: 0;
  }
}
#header-image.event-head .logo-box {
  width: 40%;
  float: left;
  height: 250px;
  top: 25%;
  padding: 6%;
  display: block;
  background-color: #F7F7F7;
  position: relative;
}
#header-image.event-head .logo-box__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media (max-width: 1090px) {
  #header-image.event-head .logo-box {
    float: none;
    width: 100%;
    top: 0;
    max-width: 520px;
    margin: 80px auto 0 auto;
    height: 250px !important;
  }
}
@media (max-width: 1090px) {
  #header-image.event-head {
    min-height: 90vh;
    height: auto;
    padding-bottom: 50px;
  }
}
#header-image.roadmap-header {
  background-color: #0788AF;
  padding: 250px 0 100px 0;
  height: auto;
}
@media (max-width: 1090px) {
  #header-image.roadmap-header {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  #header-image.roadmap-header .container .title-box {
    padding-top: 0px;
  }
}
#header-image.header-small {
  background-color: #0788AF;
  padding: 250px 0 100px 0;
  height: auto;
  text-align: center;
}
#header-image.header-small .container .title-box {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 1090px) {
  #header-image.header-small {
    padding-top: 130px;
    padding-bottom: 50px;
  }
  #header-image.header-small .container .title-box {
    padding-top: 0px;
  }
}

footer {
  background-color: #24262B;
  padding-top: 50px;
}
footer .container {
  padding-top: 35px;
  padding-bottom: 45px;
}
@media (max-width: 1090px) {
  footer .container {
    padding-top: 25px;
  }
}
footer .credits {
  padding-bottom: 30px;
  text-align: center;
}
@media (max-width: 1090px) {
  footer .credits {
    padding-bottom: 80px;
  }
}
footer .credits a {
  font-size: 12px;
  color: #757579;
  font-weight: 500;
  letter-spacing: 1px;
}
footer .credits a:hover {
  color: #FF4B55;
}

.intro-block {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .intro-block {
    padding: 60px 0 40px 0;
  }
}
.intro-block .container {
  position: relative;
  z-index: 2;
}
.intro-block img {
  display: block;
  max-width: 600px;
  margin: 0 auto 50px auto;
}
.intro-block img.solution-detail-icon {
  max-width: 245px;
}
@media (max-width: 600px) {
  .intro-block img {
    max-width: 100%;
  }
}
.intro-block h2 {
  text-align: center;
}
.intro-block article {
  text-align: center;
  display: block;
  max-width: 645px;
  margin: 0 auto;
}

.spinner {
  margin: -20px 0 0 -20px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
}
.spinner .cube1, .spinner .cube2 {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
  animation: sk-cubemove 1.8s infinite ease-in-out;
}
.spinner .cube1 {
  background-color: #0788AF;
}
.spinner .cube2 {
  background-color: #FF4B55;
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-cubemove {
  25% {
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes sk-cubemove {
  25% {
    transform: translateX(42px) rotate(-90deg) scale(0.5);
    -webkit-transform: translateX(42px) rotate(-90deg) scale(0.5);
  }
  50% {
    transform: translateX(42px) translateY(42px) rotate(-179deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
  }
  50.1% {
    transform: translateX(42px) translateY(42px) rotate(-180deg);
    -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
  }
  75% {
    transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
    -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(0.5);
  }
  100% {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
  }
}
#default-content {
  margin-top: 80px;
  margin-bottom: 120px;
}
#default-content .content article {
  max-width: 850px;
  margin: 0 auto;
}
#default-content .content article.align-center {
  text-align: center;
}
#default-content .content article h3 {
  font-size: 2.1rem;
}
#default-content .content article ul {
  list-style: disc;
  margin-left: 18px;
  margin-bottom: 1.625rem;
}
#default-content .content article ul li {
  color: inherit;
  font-weight: 300;
}
#default-content .content article table {
  font-weight: 300;
}
#default-content .content article table tr td {
  padding: 10px;
  border: 1px solid #cccccc;
}

.fab, .fas {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55%;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.fab.fa-facebook-f, .fas.fa-facebook-f {
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-facebook.svg);
}
.fab.fa-youtube, .fas.fa-youtube {
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-youtube.svg);
}
.fab.fa-twitter, .fas.fa-twitter {
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-twitter.svg);
}
.fab.fa-linkedin, .fas.fa-linkedin {
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-linkedin.svg);
}
.fab.fa-envelope, .fas.fa-envelope {
  background-image: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-email.svg);
}

.content-block__container__row--colors .col,
.content-block__container__row--colors .box {
  height: 350px;
  width: 100%;
}
.content-block__container__row--colors .col--blue,
.content-block__container__row--colors .box--blue {
  background-color: #0788AF;
  position: relative;
}
.content-block__container__row--colors .col--red,
.content-block__container__row--colors .box--red {
  background-color: #FF4B55;
}
@media (max-width: 960px) {
  .content-block__container__row--colors .col,
.content-block__container__row--colors .box {
    height: 280px;
  }
}

.content-block {
  position: relative;
}
.content-block__container {
  max-width: 1360px;
  width: 100%;
  margin: 0px auto;
  padding: 0 25px;
}
.content-block__container__row {
  margin-bottom: 3%;
}
.content-block__container__row .col {
  float: left;
  width: 50%;
}
.content-block__container__row .col--w33 {
  width: 33.3333%;
}
.content-block__container__row .col--w40 {
  width: 40%;
}
.content-block__container__row .col--w60 {
  width: 60%;
}
.content-block__container__row .col--text {
  padding-left: 10%;
  width: 100%;
  max-width: 515px;
}
@media (max-width: 960px) {
  .content-block__container__row .col--text {
    padding: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto 50px auto;
    float: none;
  }
}
.content-block__container__row .col--image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
@media (max-width: 960px) {
  .content-block__container__row .col--image {
    display: none;
  }
}
.content-block__container__row--colors .col {
  margin-right: 3%;
}
.content-block__container__row--colors .col--left {
  width: 30%;
}
.content-block__container__row--colors .col--right {
  width: 20%;
}
.content-block__container__row--colors .col--highlight {
  min-width: 320px !important;
}
.content-block__container .svg-wrapper {
  position: relative;
  z-index: 5;
}
.content-block__container .svg-wrapper svg {
  position: absolute;
  left: -25%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 500px;
}
@media (max-width: 960px) {
  .content-block__container .svg-wrapper svg {
    max-width: 400%;
  }
}
.content-block__container .svg-wrapper img.row-image {
  position: absolute;
  left: -25%;
  top: 50%;
  transform: translateY(-50%);
  max-height: 500px;
}
@media (max-width: 1090px) {
  .content-block__container .svg-wrapper img.row-image {
    left: -10%;
  }
}
@media (max-width: 960px) {
  .content-block__container .svg-wrapper img.row-image {
    left: 80%;
  }
}
.content-block__container .svg-wrapper--leftbig svg {
  left: -40%;
}
.content-block__container .svg-wrapper--reverse svg {
  left: auto;
  right: -22%;
}
@media (max-width: 960px) {
  .content-block__container .svg-wrapper--reverse svg {
    right: -100%;
    max-width: 200%;
  }
}
.content-block--v1B .content-block__container__row--colors .col--left {
  background-color: transparent;
  width: 9%;
}
.content-block--v1B .content-block__container__row--colors .col--right {
  width: 37%;
}
.content-block--v2A .col--text, .content-block--v2B .col--text, .content-block--v2C .col--text {
  width: 66%;
  max-width: 100%;
  padding-left: 0;
}
.content-block--v2A .col--text article, .content-block--v2B .col--text article, .content-block--v2C .col--text article {
  max-width: 400px;
}
@media (max-width: 960px) {
  .content-block--v2A .col--text, .content-block--v2B .col--text, .content-block--v2C .col--text {
    width: 100%;
  }
}
.content-block--v2A .col--color, .content-block--v2B .col--color, .content-block--v2C .col--color {
  width: 34%;
  padding-left: 0;
}
@media (max-width: 960px) {
  .content-block--v2A .col--color, .content-block--v2B .col--color, .content-block--v2C .col--color {
    display: none;
  }
}
.content-block--v2A .col--text {
  text-align: right;
}
.content-block--v2A .col--text h3, .content-block--v2A .col--text article {
  text-align: right;
  padding-right: 32%;
}
@media (max-width: 960px) {
  .content-block--v2A .col--text h3, .content-block--v2A .col--text article {
    text-align: center;
    padding: 0;
  }
}
.content-block--v2A .col--text article {
  max-width: 600px;
  margin: 0 0 0 auto;
}
@media (max-width: 960px) {
  .content-block--v2A .col--text article {
    margin: 0 auto;
  }
}
.content-block--v2A .col--text .content-block__container__row--colors {
  margin-top: 12%;
  margin-bottom: 0;
}
.content-block--v2A .col--text .content-block__container__row--colors .col--right {
  float: right;
  width: 31.5%;
  margin: 0;
}
@media (max-width: 960px) {
  .content-block--v2A .col--text .content-block__container__row--colors .col--right {
    float: left;
    margin-top: 10px;
    margin-left: 25%;
  }
  .content-block--v2A .col--text .content-block__container__row--colors .col--right svg {
    max-width: 250%;
  }
}
.content-block--v2A .col--color {
  padding-left: 3%;
}
.content-block--v2A .col--color .content-block__container__row--colors .col--left {
  margin: 0;
  width: 100%;
  min-height: 520px;
}
@media (max-width: 960px) {
  .content-block--v2A .col--color {
    display: none;
  }
}
.content-block--v2B .col--text, .content-block--v2C .col--text {
  float: right;
}
@media (max-width: 960px) {
  .content-block--v2B .col--text, .content-block--v2C .col--text {
    float: none;
  }
}
.content-block--v2B .col--text h3, .content-block--v2B .col--text article, .content-block--v2C .col--text h3, .content-block--v2C .col--text article {
  padding-left: 25%;
}
@media (max-width: 960px) {
  .content-block--v2B .col--text h3, .content-block--v2B .col--text article, .content-block--v2C .col--text h3, .content-block--v2C .col--text article {
    padding-left: 0;
  }
}
.content-block--v2B .col--text article, .content-block--v2C .col--text article {
  max-width: 530px;
}
@media (max-width: 960px) {
  .content-block--v2B .col--text article, .content-block--v2C .col--text article {
    margin: 0 auto;
  }
}
.content-block--v2B .col--text .content-block__container__row--colors .col--right, .content-block--v2C .col--text .content-block__container__row--colors .col--right {
  width: 33%;
  margin: 10% 0 0 0;
}
.content-block--v2B .col--color .content-block__container__row--colors .col--left, .content-block--v2C .col--color .content-block__container__row--colors .col--left {
  width: 90%;
}
@media (max-width: 960px) {
  .content-block--v2B .svg-wrapper svg {
    left: 45%;
    max-width: 250%;
  }
}
.content-block--v2C .content-block__container__row--colors .col.col--blue {
  height: 600px;
}
@media (max-width: 960px) {
  .content-block--v2C .content-block__container .svg-wrapper svg {
    left: 60%;
    max-width: 180%;
  }
}
.content-block--v3 .content-block__container__row {
  margin-bottom: 5%;
}
.content-block--v3 .content-block__container__row .col--text {
  padding-left: 13%;
  padding-right: 5%;
  max-width: 100%;
  width: 50%;
}
.content-block--v3 .content-block__container__row .col--text h3, .content-block--v3 .content-block__container__row .col--text article {
  text-align: right;
}
@media (max-width: 960px) {
  .content-block--v3 .content-block__container__row .col--text h3, .content-block--v3 .content-block__container__row .col--text article {
    text-align: center;
  }
}
@media (max-width: 960px) {
  .content-block--v3 .content-block__container__row .col--text {
    width: 100%;
    padding: 0;
  }
  .content-block--v3 .content-block__container__row .col--text article {
    max-width: 530px;
    margin: 0 auto;
  }
}
.content-block--v3 .content-block__container__row .col--image {
  min-height: 295px;
}
.content-block--v3 .content-block__container__row--colors {
  width: 54%;
  margin: 0 0 0 auto;
}
.content-block--v3 .content-block__container__row--colors .col--red {
  width: 38%;
  margin-right: 6%;
}
.content-block--v3 .content-block__container__row--colors .col--blue {
  margin: 0;
  width: 56%;
}
@media (max-width: 960px) {
  .content-block--v3 .content-block__container__row .svg-wrapper--leftbig svg {
    left: -80%;
    max-width: 180%;
  }
}
@media (max-width: 960px) {
  .content-block--v3--A .content-block__container__row .col--text {
    margin: 0 auto;
    padding: 0;
    width: auto;
    text-align: center;
  }
  .content-block--v3--A .content-block__container__row .col--text h3, .content-block--v3--A .content-block__container__row .col--text article {
    text-align: center;
  }
  .content-block--v3--A .content-block__container__row .col--text article {
    max-width: 530px;
    margin: 0 auto;
  }
  .content-block--v3--A .svg-wrapper--leftbig svg {
    left: -140%;
    max-width: 220%;
  }
}
.content-block--v3--B .content-block__container__row--colors .col--red {
  margin: 0;
  width: 73%;
}
.content-block--v3--B .content-block__container__row--colors .col--blue {
  display: none;
}
.content-block--v4 .col--text {
  width: 50%;
  max-width: 100%;
  padding: 0;
}
@media (max-width: 960px) {
  .content-block--v4 .col--text {
    width: 100%;
  }
}
.content-block--v4 .col--text__container {
  max-width: 380px;
}
@media (max-width: 960px) {
  .content-block--v4 .col--text__container {
    max-width: 530px;
    margin: 0 auto;
  }
}
@media (max-width: 960px) {
  .content-block--v4 .col--design {
    float: right;
    width: 40%;
  }
}
.content-block--v4 .col--design .content-block__container__row--colors .col--red {
  width: 51%;
}
.content-block--v4 .col--design .content-block__container__row--colors .col--container {
  width: 46%;
  margin: 0;
  height: auto;
  padding-top: 20%;
}
.content-block--v4 .col--design .content-block__container__row--colors .col--container .box--image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 230px;
}
.content-block--v4 .col--design .content-block__container__row--colors .col--container .box--blue {
  margin-top: 4%;
  height: 230px;
}
.content-block--v4--A .col--red {
  display: none;
}
@media (max-width: 960px) {
  .content-block--v4--A .col--design {
    float: left;
    width: 45%;
  }
}
.content-block--v4--A .col--design .content-block__container__row--colors .col--container {
  width: 100%;
  margin: 0;
  padding: 0;
}
.content-block--v4--A .col--design .content-block__container__row--colors .col--container .box--image {
  display: none;
}
.content-block--v4--A .col--design .content-block__container__row--colors .col--container .box--blue {
  margin: 0;
  height: 650px;
}
@media (max-width: 960px) {
  .content-block--v4--A .col--design .content-block__container__row--colors .col--container .box--blue {
    height: 440px;
  }
  .content-block--v4--A .col--design .content-block__container__row--colors .col--container .box--blue svg {
    left: 44%;
    max-width: 115%;
  }
}
.content-block--v4--B .col--design .content-block__container__row--colors .col--red {
  width: 78%;
  margin: 0;
  height: 650px;
}
@media (max-width: 960px) {
  .content-block--v4--B .col--design .content-block__container__row--colors .col--red {
    width: 100%;
    height: 440px;
  }
  .content-block--v4--B .col--design .content-block__container__row--colors .col--red svg {
    left: -84%;
    max-width: 120%;
  }
}
.content-block--v4--B .col--container {
  display: none;
}
@media (max-width: 960px) {
  .content-block--v4--C .col--design {
    width: 50%;
  }
  .content-block--v4--C .col--design .content-block__container__row--colors .col--container .box--image {
    display: none;
  }
  .content-block--v4--C .col--design svg {
    left: -80%;
    max-width: 220%;
  }
}
.content-block--v4--D .box--blue {
  display: none;
}
@media (max-width: 960px) {
  .content-block--v4--D .col--design .content-block__container__row--colors .col--container {
    display: none;
  }
  .content-block--v4--D .col--design .content-block__container__row--colors .col--red {
    width: 100%;
  }
  .content-block--v4--D .col--design .content-block__container__row--colors .col--red svg {
    left: -70%;
    max-width: 140%;
  }
}
.content-block--v4--E .box--image {
  background: none !important;
}
@media (max-width: 960px) {
  .content-block--v4--E .col--design {
    width: 50%;
  }
  .content-block--v4--E .col--design .svg-wrapper svg {
    left: -70%;
    max-width: 180%;
  }
}
.content-block--v4--F .col--design .content-block__container__row--colors .col--container .box--image.box--image {
  height: 480px;
}
.content-block--v4--F .box--blue {
  margin: 0;
  display: none;
}
@media (max-width: 960px) {
  .content-block--v4--F .col--design {
    width: 40%;
  }
  .content-block--v4--F .col--design .svg-wrapper.col--red {
    width: 100%;
  }
  .content-block--v4--F .col--design .svg-wrapper.col--red svg {
    left: -70%;
    max-width: 180%;
  }
  .content-block--v4--F .col--design .col--container {
    display: none;
  }
}
.content-block--v5 .content-block__container__row {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .content-block--v5 .content-block__container__row {
    display: block;
  }
}
.content-block--v5 .col--text {
  padding: 0 30px 0 0;
  max-width: 33.3333%;
}
@media (max-width: 960px) {
  .content-block--v5 .col--text {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    padding: 0;
  }
}
.content-block--v5 .col--svg svg {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  margin: 0 auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 960px) {
  .content-block--v5 .col--svg svg {
    margin-top: 50px;
  }
}
@media (max-width: 960px) {
  .content-block--v5 .col--svg {
    float: none;
    width: 100%;
  }
}
.content-block--v5--B .col--text {
  width: 66.6666%;
  max-width: 66.6666%;
}
@media (max-width: 960px) {
  .content-block--v5--B .col--text {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    padding: 0;
  }
}
.content-block--v5--B .col--text h3, .content-block--v5--B .col--text article {
  max-width: 580px;
}
.content-block .highlight-box {
  padding: 80px 25px 25px 25px;
  background: url(/app/resources/i/ico-highlight.png) no-repeat top left;
  background-size: 65px;
  background-position: 25px 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 960px) {
  .content-block .highlight-box {
    background-size: 40px;
  }
}
.content-block .highlight-box__content {
  position: relative;
  text-align: left;
}
.content-block .highlight-box__content * {
  color: #ffffff;
}
.content-block .highlight-box__content h4 {
  font-size: 60px;
  margin-bottom: 0;
  line-height: normal;
}
@media (max-width: 960px) {
  .content-block .highlight-box__content h4 {
    font-size: 40px;
  }
}
.content-block .highlight-box__content h5 {
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 960px) {
  .content-block .highlight-box__content h5 {
    font-size: 23px;
  }
}
.content-block .highlight-box__content p {
  font-weight: 300;
  line-height: 1.5em;
}

#demo-content .content-block__container {
  margin: 250px auto;
}

.relevancetext-block {
  text-align: center;
  margin-bottom: 100px;
}
.relevancetext-block__background {
  text-align: center;
  display: block;
  max-width: 645px;
  margin: 0 auto;
  background-color: #0788AF;
  color: #ffffff;
  border-radius: 10px;
  padding: 25px 15px;
}
.relevancetext-block__background p a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}
.relevancetext-block__background p a:hover {
  opacity: 0.85;
}

.rotate-svg {
  transform-origin: center center;
  animation: rotate 1s linear;
}
.rotate-svg.custom-cashflow {
  transform-origin: 37% 37%;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
.form-container {
  margin-bottom: 80px;
}

.form {
  max-width: 100%;
}
.form textarea {
  resize: vertical;
}
.form__feedback {
  margin-bottom: 45px;
}
.form__feedback .message {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 2px solid;
  padding-bottom: 10px;
}
.form__feedback.error .message {
  color: #FF4B55;
}
.form__field {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  margin-bottom: 2.5%;
  display: inline-block;
  vertical-align: top;
}
.form__field--small {
  width: 33.3%;
  padding-right: 5%;
}
.form__field--small.last {
  padding-right: 0;
}
@media screen and (max-width: 990px) {
  .form__field--small {
    width: 100%;
    padding-right: 0%;
  }
}
.form__field--medium {
  width: 62%;
  margin-right: 4.5%;
}
@media (max-width: 768px) {
  .form__field--medium {
    width: 100%;
    margin: 0 0 25px 0;
  }
}
.form__field--half {
  width: 49%;
  margin-right: 2%;
}
.form__field--half.last {
  margin-right: 0;
}
@media (max-width: 768px) {
  .form__field--half {
    width: 100%;
    margin: 0 0 25px 0;
  }
}
.form__field--checkbox {
  margin: 0px !important;
}
@media (max-width: 768px) {
  .form__field--submit {
    text-align: center;
  }
}
.form__field .label {
  width: 100%;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: normal;
  line-height: 1.3em;
  padding-right: 0px;
  margin-bottom: 0;
}
.form__field .label span.mandatory_asterisk {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}
.form__field .label--error {
  color: #FF4B55;
}
.form__field .label.form__field--textarea {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 18px;
}
.form__field .label.form__field--textarea span.mandatory_asterisk {
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
}
.form__field .input {
  width: 100%;
  padding: 15px 0;
  color: #464646;
  border-bottom: 2px solid #E0E0E0;
  min-height: 30px;
  line-height: 1.3em;
  font-size: 20px;
  margin-bottom: 7px;
  font-weight: 500;
  padding-right: 0px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form__field .input--error {
  color: #FF4B55;
}
.form__field .input.filled, .form__field .input:focus {
  border-bottom: 2px solid #FF4B55;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form__field .select {
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/select.png) no-repeat right center;
  background-size: 13px;
  appearance: none;
  border-radius: 0;
}
.form__field .select:invalid {
  color: rgba(0, 0, 0, 0.3);
}
.form__field .select [disabled] {
  color: rgba(0, 0, 0, 0.3);
}
.form__field .select option {
  color: #464646;
}
.form__field .err {
  color: #FF4B55;
}
.form__field input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
  /* Firefox */
}
.form__field input:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(0, 0, 0, 0.3);
}
.form__field input::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(0, 0, 0, 0.3);
}
.form__field .textarea {
  width: 100%;
  min-height: 250px;
  color: #464646;
  background: rgba(239, 243, 247, 0.85);
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  line-height: 1.3em;
}
.form__field .submit {
  background: #FF4B55;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  padding: 20px 15px;
  border: 2px solid #FF4B55;
  cursor: pointer;
  transition: 0.3s all;
  text-align: center;
  width: 100%;
  max-width: 360px;
  border-radius: 10px;
}
.form__field .submit:hover {
  background: transparent;
  color: #FF4B55;
  transition: 0.3s all;
}
.form__field .radio-container {
  display: inline-block;
  vertical-align: top;
  width: 33%;
  padding: 0px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__field .radio-container label {
  width: 100%;
  display: block;
  padding: 5px 30px 15px 35px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}
.form__field .radio-container input[type=radio] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 0;
}
.form__field .radio-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #faf7f4;
  border-radius: 50%;
  z-index: 0;
  border: 1px solid #bfbebe;
}
.form__field .radio-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.form__field .radio-container:hover input ~ .checkmark {
  background-color: #faf7f4;
}
.form__field .radio-container input:checked ~ .checkmark {
  background-color: #faf7f4;
}
.form__field .radio-container input:checked ~ .checkmark:after {
  display: block;
}
.form__field .radio-container .checkmark:after {
  top: 7px;
  left: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FF4B55;
}
@media screen and (max-width: 1200px) {
  .form__field .radio-container {
    width: 100%;
  }
}
.form .hidden-fields {
  display: none;
}
.form .div_radio > label {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 5px;
}
.form .div_radio > label span.mandatory_asterisk {
  font-size: 20px;
}
.form .label-middle-fields p {
  text-align: center;
  font-size: 20px;
  padding: 30px 0 0 0;
}
.form .checkbox {
  display: block;
  margin: 45px 0;
  position: relative;
}
.form .checkbox input[type=radio],
.form .checkbox input[type=checkbox] {
  opacity: 0;
  width: 0;
  position: absolute;
}
.form .checkbox .err {
  margin-left: 60px;
}
.form .checkbox .mock {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  height: 30px;
  width: 30px;
  position: relative;
  background-color: rgba(250, 247, 244, 0.85);
  border: 2px solid #464646;
  margin: 0;
}
.form .checkbox input[type=radio]:checked + .mock:after,
.form .checkbox input[type=checkbox]:checked + .mock:after {
  content: "";
  background-color: #464646;
  margin: 5px;
  height: 16px;
  position: relative;
  display: block;
}
.form .checkbox input[type=radio]:disabled + .mock:after,
.form .checkbox input[type=checkbox]:disabled + .mock:after {
  opacity: 0.6;
}
.form .checkbox label.checkbox {
  font-size: 13px;
  line-height: 15px;
  display: block;
  cursor: pointer;
  font-weight: normal;
  margin: 0;
  vertical-align: bottom;
}
.form .checkbox .mock + span {
  padding-left: 15px;
  display: inline-block;
  width: calc(100% - 36px);
  vertical-align: middle;
}
.form p.privacy-disclaimer {
  font-size: 13px;
  line-height: 15px;
  display: block;
  font-weight: normal;
  margin: 0;
  margin-bottom: 15px;
}
.form .privacy {
  width: 100%;
  overflow: hidden;
}
.form .privacy > .checkbox {
  margin-top: 0;
  margin-bottom: 25px;
}
.form .mandatory-text {
  margin: 20px 0;
}
.form .files-uploader {
  margin-bottom: 50px;
}
.form .files-uploader__row {
  width: 100%;
  margin-bottom: 20px;
  display: none;
}
.form .files-uploader__row.visible {
  display: block;
}
.form .files-uploader__row:first-child {
  display: block;
}
.form .files-uploader__row .show-next {
  display: block;
  text-align: center;
  position: relative;
}
.form .files-uploader__row .show-next span.circle {
  display: inline-block;
  cursor: pointer;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-weight: 100;
  font-size: 26px;
  background-color: #ffffff;
  z-index: 5;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form .files-uploader__row .show-next span.circle:hover {
  border: 1px solid rgba(0, 0, 0, 0.6);
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form .files-uploader__row .show-next span.circle:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -5;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}
.form .g-recaptcha {
  margin-bottom: 45px;
}

.demo-feedback {
  padding-top: 80px;
}

#zucchetti-footer {
  /*background-color: #24262B;*/
}
#zucchetti-footer .container {
  width: 88%;
  max-width: 1360px;
  min-height: 1px;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  padding-left: 25px;
  padding-right: 25px;
  /*padding-top: 75px;*/
  padding-top: 10px;
  padding-bottom: 65px;
}
@media (max-width: 1090px) {
  #zucchetti-footer .container {
    width: 87.0588235294%;
    padding-bottom: 15px;
  }
}
#zucchetti-footer .container--nopadding {
  padding-top: 0;
}
@media (max-width: 1090px) {
  #zucchetti-footer .container--nopadding {
    padding-bottom: 100px;
  }
}
#zucchetti-footer .col {
  float: left;
}
#zucchetti-footer .col--logo {
  padding-right: 10%;
  width: 30%;
}
#zucchetti-footer .col--logo img {
  width: 100%;
  max-width: 194px;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--logo {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}
#zucchetti-footer .col--links {
  text-align: left;
  width: 50%;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--links {
    display: none;
  }
}
#zucchetti-footer .col--links ul.z-menu {
  display: block;
  width: 100%;
  text-align: left;
}
#zucchetti-footer .col--links ul.z-menu p {
  font-size: 14px;
  font-weight: bold;
  color: #CCCCCC;
  margin: 0;
  text-transform: uppercase;
}
#zucchetti-footer .col--links ul.z-menu.level-1 > li {
  display: inline-block;
  vertical-align: top;
  width: 30%;
  padding-right: 5%;
}
#zucchetti-footer .col--links ul.z-menu.level-1 > li a {
  color: #757579;
  font-size: 14px;
  font-weight: 300;
}
#zucchetti-footer .col--links ul.z-menu.level-1 > li a:hover {
  color: #FF4B55;
}
#zucchetti-footer .col--social {
  text-align: right;
  width: 20%;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--social {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}
#zucchetti-footer .col--social__link {
  margin: 4px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  width: 35px;
  height: 35px;
  line-height: 31px;
  background-color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #24262B;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--social__link {
    margin: 7px;
  }
}
#zucchetti-footer .col--social__link i {
  vertical-align: middle;
}
#zucchetti-footer .col--social__link:hover {
  opacity: 0.7;
}
#zucchetti-footer .col--company {
  width: 45%;
}
#zucchetti-footer .col--company p, #zucchetti-footer .col--company p > a {
  font-size: 13px;
  color: #757579;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--company {
    width: 100%;
  }
  #zucchetti-footer .col--company p {
    text-align: center;
  }
}
#zucchetti-footer .col--policy {
  width: 55%;
  text-align: right;
}
#zucchetti-footer .col--policy a {
  color: #757579;
  font-size: 13px;
  display: inline-block;
  vertical-align: top;
  margin-left: 5%;
}
#zucchetti-footer .col--policy a:hover {
  color: #FF4B55;
}
@media (max-width: 1090px) {
  #zucchetti-footer .col--policy {
    width: 100%;
    text-align: center;
    opacity: 0.8;
    padding-top: 40px;
  }
}

.article-popup {
  position: fixed;
  bottom: 10vh;
  right: -600px;
  width: 600px;
  transition: right 0.3s;
  z-index: 1000;
  border: 1px solid #0788AF;
}
@media screen and (max-width: 600px) {
  .article-popup {
    bottom: 0px;
    width: 100%;
  }
}
.article-popup--open {
  right: 0;
}
.article-popup__inner {
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
}
.article-popup__close {
  background-image: url(/app/resources/i/icon-close-popup.png);
  background-position: center;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  background-size: 20px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.article-popup__left {
  flex-basis: 60%;
  padding: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .article-popup__left {
    flex-basis: 100%;
  }
}
.article-popup__logo {
  height: 70px;
  max-width: 200px;
}
.article-popup__logo img {
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 600px) {
  .article-popup__logo {
    flex-basis: 100%;
  }
}
.article-popup__title {
  color: #464646;
  font-size: 20px;
  margin: 15px 0;
  max-width: 80%;
  font-weight: bold;
  flex-basis: 100%;
  padding-right: 25px;
}
.article-popup__text {
  color: #464646;
  font-size: 16px;
  margin-bottom: 25px;
  max-width: 400px;
  font-weight: bold;
  flex-basis: 100%;
  padding-right: 25px;
}
.article-popup__button {
  color: white;
  background-color: #0788AF;
  text-transform: uppercase;
  font-size: 11px;
  border-radius: 3px;
  padding: 10px 20px;
  transition: all 0.5s;
}
.article-popup__button:hover {
  color: white;
  background-color: #FF4B55;
  transition: all 0.5s;
}
@media screen and (max-width: 600px) {
  .article-popup__button {
    flex-basis: 100%;
  }
}
.article-popup__image {
  flex-basis: 40%;
}
.article-popup__image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 600px) {
  .article-popup__image {
    flex-basis: 100%;
    height: 200px;
  }
  .article-popup__image img {
    height: auto;
  }
}

#home-header {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #464646;
}
#home-header .home-title {
  position: absolute;
  width: 100%;
  left: 0;
  top: 40%;
  z-index: 30;
}
#home-header .home-title h1 {
  color: #ffffff;
  font-weight: 500;
  font-size: 82px;
}
@media (max-width: 1090px) {
  #home-header .home-title h1 {
    font-size: 70px;
  }
  #home-header .home-title h1 span {
    display: block;
  }
  #home-header .home-title h1 span:last-child {
    display: inline-block;
  }
}
@media (max-width: 768px) {
  #home-header .home-title h1 {
    font-size: 55px;
  }
}
@media (max-width: 576px) {
  #home-header .home-title h1 {
    font-size: 45px;
  }
}
@media (max-width: 480px) {
  #home-header .home-title h1 {
    font-size: 35px;
  }
}
#home-header .cover-video {
  height: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
#home-header .cover-video iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
#home-header .cover-video #myVideo {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
#home-header #header-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 10;
}
#home-header #header-slider.owl-carousel .owl-stage-outer {
  width: 100%;
  height: 100vh;
}
#home-header #header-slider .element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#home-header .layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  background-color: rgba(0, 0, 0, 0.25);
}

.title-blocl-cta {
  position: relative;
  margin-top: 20px;
  margin-bottom: 70px;
}
.title-blocl-cta h3, .title-blocl-cta h3:after, .title-blocl-cta a {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  line-height: 0;
}
@media (max-width: 768px) {
  .title-blocl-cta h3, .title-blocl-cta h3:after, .title-blocl-cta a {
    vertical-align: baseline;
  }
}
.title-blocl-cta h3 {
  font-size: 42px;
  font-weight: 400;
  line-height: 2rem;
}
.title-blocl-cta h3:after {
  content: "";
  height: 2px;
  width: 170px;
  background-color: #464646;
  margin: 0 18px;
}
@media (max-width: 768px) {
  .title-blocl-cta h3:after {
    display: none;
  }
}
@media (max-width: 768px) {
  .title-blocl-cta h3 {
    font-size: 35px;
    margin-right: 30px;
  }
}
.title-blocl-cta a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #464646;
}
.title-blocl-cta a:hover {
  color: #FF4B55;
}

.call-to-actions {
  padding-top: 80px;
  padding-bottom: 80px;
}
.call-to-actions.div-parallax .liv-1, .call-to-actions.div-parallax .liv-2 {
  width: 100%;
  left: 0 !important;
}
.call-to-actions__list {
  text-align: center;
  font-size: 0;
  position: relative;
  z-index: 5;
}
.call-to-actions__list .item {
  display: inline-block;
  vertical-align: top;
  width: 33.3333%;
  padding: 30px;
}
@media (max-width: 1090px) {
  .call-to-actions__list .item {
    width: 50%;
  }
}
@media (max-width: 600px) {
  .call-to-actions__list .item {
    width: 100%;
    padding: 30px 0;
  }
}
.call-to-actions__list .item img.icon {
  width: auto;
  max-width: 100%;
  max-height: 210px;
  margin-bottom: 15px;
}
.call-to-actions__list .item p {
  margin-bottom: 5px;
  color: #0788AF;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}
.call-to-actions__list .item h4 {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 25px;
}
@media (max-width: 1200px) {
  .call-to-actions__list .item h4 {
    font-size: 26px;
  }
}
@media (max-width: 1090px) {
  .call-to-actions__list .item h4 {
    font-size: 21px;
  }
}
.call-to-actions__list .item a.btn {
  background-color: #0788AF;
  color: #ffffff;
  font-size: 16px;
  padding: 12px 35px;
  border-radius: 10px;
}
.call-to-actions__list .item a.btn:hover {
  background-color: #FF4B55;
}

.relevant-block {
  background-position: -55% center !important;
  margin-top: 50px !important;
}
.relevant-block .about-section__image h3 {
  max-width: 520px;
}
.relevant-block .about-section__image h3 span {
  display: block;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 1px;
}
.relevant-block .about-section__text a.btn {
  background-color: #0788AF;
  color: #ffffff;
  padding: 10px 35px;
  border-radius: 10px;
  margin-top: 40px;
  display: inline-block;
}
.relevant-block .about-section__text a.btn:hover {
  background-color: #FF4B55;
}

.news-and-events-hp {
  margin-top: 110px;
}

.clients-list {
  background-color: #F0F0F0;
  padding-top: 80px;
  padding-bottom: 140px;
}
.clients-list__list {
  text-align: center;
  font-size: 0;
}
.clients-list__list__item {
  display: inline-block;
  vertical-align: middle;
  width: 25%;
}
@media (max-width: 768px) {
  .clients-list__list__item {
    width: 50%;
  }
}

.demo-boxes {
  background-color: #0788AF;
  padding-top: 80px;
  padding-bottom: 140px;
}
.demo-boxes__title h3, .demo-boxes__title a {
  color: #ffffff;
}
.demo-boxes__title h3:after {
  background-color: #ffffff;
}
.demo-boxes__list {
  margin-top: 30px;
  font-size: 0;
}
.demo-boxes__list .item-box {
  display: inline-block;
  vertical-align: top;
  width: 21%;
  margin: 2%;
  border-radius: 10px;
  overflow: hidden;
}
.demo-boxes__list .item-box__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fefefe;
  width: 100%;
  height: 170px;
}
.demo-boxes__list .item-box__text {
  background-color: #ffffff;
  padding: 35px 15%;
}
.demo-boxes__list .item-box__text p {
  font-size: 21px;
  font-weight: 400;
  color: #464646;
}
.demo-boxes__list .item-box:hover {
  transform: scale(1.1);
}
@media (max-width: 1200px) {
  .demo-boxes__list .item-box {
    width: 46%;
  }
}
@media (max-width: 600px) {
  .demo-boxes__list .item-box {
    width: 100%;
    margin: 0 0 50px 0;
  }
  .demo-boxes__list .item-box__text {
    padding: 25px 15px;
  }
  .demo-boxes__list .item-box__text p {
    text-align: center;
  }
}

/* -------------------------------- 

animated title

-------------------------------- */
.cd-title {
  text-align: left;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-style: italic;
  font-weight: 500;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xslide 

-------------------------------- */
.cd-headline.slide span {
  display: inline-block;
  padding: 0.2em 0;
}

.cd-headline.slide .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.slide b {
  opacity: 0;
  top: 0.2em;
}

.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}
@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/* -------------------------------- 

xtype 

-------------------------------- */
.cd-headline.type .cd-words-wrapper {
  vertical-align: top;
  overflow: hidden;
}

.cd-headline.type .cd-words-wrapper::after {
  /* vertical bar */
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.8);
}

.cd-headline.type .cd-words-wrapper.waiting::after {
  -webkit-animation: cd-pulse 1s infinite;
  -moz-animation: cd-pulse 1s infinite;
  animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
  background-color: rgba(255, 255, 255, 0.8);
}

.cd-headline.type .cd-words-wrapper.selected::after {
  visibility: hidden;
}

.cd-headline.type .cd-words-wrapper.selected b {
  color: #000000;
}

.cd-headline.type b {
  visibility: hidden;
}

.cd-headline.type b.is-visible {
  visibility: visible;
}

.cd-headline.type i {
  position: absolute;
  visibility: hidden;
}

.cd-headline.type i.in {
  position: relative;
  visibility: visible;
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -moz-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
.row-block-container .container {
  display: flex;
  align-items: center;
}
@media (max-width: 1090px) {
  .row-block-container .container {
    display: block;
  }
}
.row-block-container .row-block {
  padding: 170px 0;
}
@media (max-width: 1090px) {
  .row-block-container .row-block {
    padding: 70px 0;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .row-block-container .row-block {
    padding: 50px 0;
  }
}
.row-block-container .row-block__text {
  width: 40%;
}
.row-block-container .row-block__text h5 {
  text-transform: uppercase;
  color: #0788AF;
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 1090px) {
  .row-block-container .row-block__text h5 {
    text-align: center;
  }
}
.row-block-container .row-block__text h3 {
  margin-bottom: 45px;
}
@media (max-width: 1090px) {
  .row-block-container .row-block__text h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .row-block-container .row-block__text h3 {
    margin-bottom: 25px;
  }
}
.row-block-container .row-block__text a.btn {
  background-color: #0788AF;
  border: 2px solid #0788AF;
  color: #ffffff;
  padding: 8px 45px;
  margin-top: 35px;
  display: inline-block;
  border-radius: 5px;
}
.row-block-container .row-block__text a.btn:hover {
  background-color: transparent;
  color: #0788AF;
}
@media (max-width: 1090px) {
  .row-block-container .row-block__text a.btn {
    margin: 0 0 50px 0;
  }
}
@media (max-width: 768px) {
  .row-block-container .row-block__text a.btn {
    margin-bottom: 30px;
  }
}
@media (max-width: 1090px) {
  .row-block-container .row-block__text {
    width: 100%;
  }
  .row-block-container .row-block__text article {
    text-align: center;
    margin-bottom: 40px;
  }
}
.row-block-container .row-block__icon {
  width: 60%;
  padding-left: 10%;
  text-align: right;
}
.row-block-container .row-block__icon svg {
  max-width: 100%;
}
@media (max-width: 1090px) {
  .row-block-container .row-block__icon {
    width: 100%;
    max-width: 450px;
    padding: 0;
    text-align: center;
    margin: 0 auto;
  }
}
.row-block-container .row-block--regular {
  background-color: #FCFCFC;
}
.row-block-container .row-block--alternate .container {
  flex-direction: row-reverse;
}
.row-block-container .row-block--alternate .row-block__icon {
  padding-right: 10%;
  padding-left: 0;
  text-align: left;
}
@media (max-width: 1090px) {
  .row-block-container .row-block--alternate .row-block__icon {
    text-align: center;
    padding: 0;
  }
}
.row-block-container .linea {
  width: 100% !important;
  max-width: 600px !important;
  pointer-events: none;
}
@media (max-width: 1090px) {
  .row-block-container .linea {
    display: none !important;
  }
}

.div-parallax {
  position: relative;
}
.div-parallax .liv-1, .div-parallax .liv-2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  max-width: 100% !important;
}
.div-parallax .liv-1 {
  top: -20px !important;
  z-index: 1;
}
.div-parallax .liv-2 {
  top: 10px !important;
  z-index: 3;
}

#about-us {
  margin-top: 100px;
  margin-bottom: 80px;
}
#about-us .col-title, #about-us .col-image {
  width: 35%;
}
#about-us .col-title {
  padding-right: 10%;
}
@media (max-width: 1200px) {
  #about-us .col-title {
    width: 100%;
    padding: 0 0 80px 0;
  }
}
#about-us .col-text {
  width: 30%;
  padding: 0 2%;
}
@media (max-width: 1200px) {
  #about-us .col-text {
    width: 40%;
    padding: 0 30px 0 0;
  }
}
@media (max-width: 960px) {
  #about-us .col-text {
    width: 100%;
    padding: 0 0 80px 0;
  }
}
#about-us .col-image {
  padding-left: 10%;
}
#about-us .col-image img {
  width: 100%;
}
@media (max-width: 1200px) {
  #about-us .col-image {
    width: 60%;
  }
}
@media (max-width: 960px) {
  #about-us .col-image {
    width: 100%;
    padding: 0;
  }
}

.about-section {
  position: relative;
  margin-top: 180px;
  background-repeat: no-repeat;
  background-size: 75%;
  background-position: left center;
}
@media (max-width: 1200px) {
  .about-section {
    background-size: 82%;
  }
}
@media (max-width: 960px) {
  .about-section {
    background: none !important;
    margin-top: 0px;
  }
}
.about-section .container {
  position: relative;
  z-index: 5;
  padding: 0;
}
@media (max-width: 1200px) {
  .about-section .container {
    padding: 0 25px;
  }
}
.about-section__image {
  position: relative;
  width: 63%;
}
.about-section__image h3 {
  color: #ffffff;
  margin-top: 12%;
  padding: 0 25px;
}
@media (max-width: 1200px) {
  .about-section__image {
    width: 57%;
  }
}
@media (max-width: 960px) {
  .about-section__image {
    width: 100%;
  }
  .about-section__image h3 {
    color: initial;
    margin-top: 0;
    margin-bottom: 40px;
    padding: 0;
  }
}
.about-section__text {
  width: 37%;
  padding: 7% 25px 7% 11%;
  background-color: #ffffff;
}
@media (max-width: 1200px) {
  .about-section__text {
    width: 43%;
    padding: 15% 25px 15% 11%;
  }
}
@media (max-width: 960px) {
  .about-section__text {
    width: 100%;
    padding: 0 0 80px 0;
  }
}
.about-section .opacity {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.48);
  mix-blend-mode: multiply;
}
@media (max-width: 1200px) {
  .about-section .opacity {
    width: 82%;
  }
}
@media (max-width: 960px) {
  .about-section .opacity {
    display: none;
  }
}

.alternated-blocks {
  margin: 40px 0 0 0;
}
.alternated-blocks__block {
  padding: 80px 0;
}
.alternated-blocks__block .col--text {
  width: 45%;
  padding: 2% 0 25px 6%;
  float: right;
}
@media (max-width: 960px) {
  .alternated-blocks__block .col--text {
    width: 100%;
    float: left;
    padding: 25px 0;
  }
}
.alternated-blocks__block .col--text h3, .alternated-blocks__block .col--text article {
  max-width: 420px;
}
@media (max-width: 960px) {
  .alternated-blocks__block .col--text h3, .alternated-blocks__block .col--text article {
    margin: 0 auto;
    text-align: center;
  }
}
.alternated-blocks__block .col--text h3 {
  margin-bottom: 30px;
}
.alternated-blocks__block .col--icon {
  width: 55%;
  text-align: right;
}
@media (max-width: 960px) {
  .alternated-blocks__block .col--icon {
    width: 100%;
    text-align: center;
    margin-top: 30px;
  }
}
.alternated-blocks__block .col--icon svg {
  max-width: 100%;
}
.alternated-blocks__block--alternate .col--text {
  float: left;
  padding: 2% 6% 25px 0;
}
@media (max-width: 960px) {
  .alternated-blocks__block--alternate .col--text {
    padding: 25px 0;
  }
}
.alternated-blocks__block--alternate .col--text h3, .alternated-blocks__block--alternate .col--text article {
  text-align: right;
  margin: 0 0 0 auto;
}
@media (max-width: 960px) {
  .alternated-blocks__block--alternate .col--text h3, .alternated-blocks__block--alternate .col--text article {
    text-align: center;
    margin: 0 auto;
  }
}
.alternated-blocks__block--alternate .col--text h3 {
  margin-bottom: 30px;
}
.alternated-blocks__block--alternate .col--icon {
  text-align: left;
}
@media (max-width: 960px) {
  .alternated-blocks__block--alternate .col--icon {
    text-align: center;
  }
}
@media (max-width: 960px) {
  .alternated-blocks__block--alternate {
    background-color: #FCFCFC;
  }
}

.contacts-container {
  margin-top: 80px;
  margin-bottom: 80px;
}
.contacts-container h3 {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}
.contacts-container h3:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  width: 19%;
  margin-left: 20px;
  background-color: #464646;
}
.contacts-container__list {
  margin-top: 35px;
  width: 104%;
  margin-left: -2%;
}
@media (max-width: 768px) {
  .contacts-container__list {
    width: 100%;
    margin-left: 0;
  }
}
.contacts-container__list .contact-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  padding: 50px 35px 80px 35px;
  display: inline-block;
  width: 29%;
  margin: 3% 2%;
  position: relative;
}
@media (max-width: 1090px) {
  .contacts-container__list .contact-box {
    width: 45.5%;
  }
}
@media (max-width: 768px) {
  .contacts-container__list .contact-box {
    width: 100%;
    margin: 25px 0;
  }
}
.contacts-container__list .contact-box h5, .contacts-container__list .contact-box article * {
  font-size: 16px;
}
.contacts-container__list .contact-box h5 {
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.contacts-container__list .contact-box article {
  margin-bottom: 25px;
}
.contacts-container__list .contact-box a.btn {
  display: inline-block;
  background-color: #0788AF;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  padding: 10px 50px;
  border-radius: 10px;
  position: absolute;
  bottom: 30px;
  left: 35px;
}
.contacts-container__list .contact-box a.btn:hover {
  background-color: #FF4B55;
}

.helpdesk-container {
  margin-top: 80px;
  margin-bottom: 80px;
}
.helpdesk-container .helpdesk-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: inline-block;
  margin: 3% 2%;
  width: 45.5%;
}
@media (max-width: 960px) {
  .helpdesk-container .helpdesk-box {
    margin: 30px 0;
    width: 100%;
  }
}
.helpdesk-container .helpdesk-box__flag {
  width: 20%;
}
.helpdesk-container .helpdesk-box__flag img {
  width: 100%;
  max-width: 100px;
}
.helpdesk-container .helpdesk-box__info {
  width: 80%;
  padding-left: 35px;
}
@media (max-width: 480px) {
  .helpdesk-container .helpdesk-box__info {
    padding-left: 25px;
  }
}
.helpdesk-container .helpdesk-box__info h5 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 576px) {
  .helpdesk-container .helpdesk-box__info h5 {
    font-size: 14px;
  }
}
.helpdesk-container .helpdesk-box__info a.phone {
  color: #464646;
  letter-spacing: 2px;
  font-size: 36px;
  display: block;
  margin-top: 30px;
}
.helpdesk-container .helpdesk-box__info a.phone:hover {
  color: #0788AF;
}
@media (max-width: 1200px) {
  .helpdesk-container .helpdesk-box__info a.phone {
    font-size: 30px;
  }
}
@media (max-width: 1090px) {
  .helpdesk-container .helpdesk-box__info a.phone {
    font-size: 22px;
  }
}
@media (max-width: 960px) {
  .helpdesk-container .helpdesk-box__info a.phone {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .helpdesk-container .helpdesk-box__info a.phone {
    font-size: 18px;
    margin-top: 6%;
  }
}
.helpdesk-container .helpdesk-box__info a.download {
  color: #FF4B55;
  font-size: 14px;
  display: block;
  margin: 20px 0 -8px 0;
  padding-left: 35px;
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-download.png) no-repeat left top;
  background-size: 20px;
}
.helpdesk-container .helpdesk-box__info a.download:hover {
  color: #464646;
}

.download-row {
  text-align: center;
  background-color: #FCFCFC;
  padding: 80px 0 140px 0;
}
.download-row .container {
  max-width: 510px;
}
.download-row img.icon {
  max-width: 145px;
  margin-bottom: 20px;
}
.download-row a.dl-item {
  display: inline-block;
  background-color: #FF4B55;
  color: #ffffff;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 10px;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 18px;
  margin-top: 40px;
}
.download-row a.dl-item:hover {
  background-color: #0788AF;
}

.case-studies {
  padding: 80px 0;
}
.case-studies__item {
  width: 29.33333%;
  margin: 2%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}
.case-studies__item.grey {
  background-color: #F0F0F0;
}
.case-studies__item.grey .text {
  background-color: #ffffff;
}
.case-studies__item:hover {
  background-color: #e8eaec;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.case-studies__item a {
  display: block;
}
.case-studies__item .image-container {
  position: relative;
  overflow: hidden;
  line-height: 0;
}
.case-studies__item .image-container__background {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 5;
  top: 20%;
  left: 20%;
  height: 60%;
  width: 60%;
}
.case-studies__item img.logo {
  width: 100%;
}
.case-studies__item img.base {
  width: 100%;
  position: relative;
  z-index: 0;
}
.case-studies__item .text {
  padding: 50px 25px;
}
.case-studies__item .text h4 {
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1em;
  padding-right: 55px;
  position: relative;
}
.case-studies__item .text h4.link:after {
  content: "";
  display: block;
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/icon-plus.png) no-repeat right center;
  background-size: contain;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 0;
  top: 10px;
}
.case-studies__item .text article p {
  color: #858585;
}
.case-studies__item .text span.categories {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #FF4B55;
  letter-spacing: 1px;
  font-weight: 500;
  position: absolute;
  top: 25px;
  left: 25px;
}
@media (max-width: 1090px) {
  .case-studies__item {
    width: 46%;
  }
}
@media (max-width: 600px) {
  .case-studies__item {
    width: 100%;
    margin: 0 0 55px 0;
  }
}
.case-studies--jobs {
  padding-top: 40px;
}
.case-studies--jobs .case-studies__item .text {
  padding: 70px 25px 45px 25px;
}

.case-studies-filters {
  background-color: #EFF3F7;
  padding: 25px;
}
.case-studies-filters__content {
  text-align: right;
}
.case-studies-filters__content .label {
  display: inline-block;
  vertical-align: middle;
  padding-right: 15px;
}
.case-studies-filters__content .label p {
  margin: 0;
  font-weight: 500;
  font-size: 13px;
  color: #464646;
  letter-spacing: 1px;
}
.case-studies-filters__content select {
  display: inline-block;
  vertical-align: middle;
}

#people-culture {
  position: relative;
}
#people-culture .row {
  position: relative;
  padding: 7% 0;
  z-index: 0;
}
#people-culture .row .container {
  position: relative;
  z-index: 10;
}
#people-culture .row__title h3 {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#people-culture .row__title h4 {
  font-size: 3.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  #people-culture .row__title h4 {
    font-size: 2rem;
  }
}
#people-culture .row__blocks {
  margin-top: 50px;
  font-size: 0;
  text-align: center;
}
#people-culture .row__blocks .block {
  display: inline-block;
  width: 29%;
  margin: 2%;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  text-align: left;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
}
#people-culture .row__blocks .block__text {
  padding: 25px;
  font-size: initial;
}
@media (max-width: 1090px) {
  #people-culture .row__blocks .block {
    width: 46%;
  }
}
@media (max-width: 768px) {
  #people-culture .row__blocks .block {
    width: 100%;
    margin: 0 0 55px 0;
  }
}
#people-culture .row--video {
  padding: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
#people-culture .row--video .container {
  padding: 100px 25px 38% 25px;
}
#people-culture .row--video .row__title h3 {
  color: #ffffff;
  font-size: 3.25rem;
  letter-spacing: normal;
  text-transform: none;
}
@media (max-width: 768px) {
  #people-culture .row--video .row__title h3 {
    font-size: 2rem;
  }
}
#people-culture .row--video #js-player {
  position: absolute;
  background: #000;
  width: 100%;
  margin: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
#people-culture .row--video #js-player img {
  width: 100%;
}
#people-culture .row--video #js-player img,
#people-culture .row--video #js-player iframe {
  display: block;
}
#people-culture .row--video #play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url("https://tcpos-149ac.kxcdn.com/app/resources/i/play-button.png") no-repeat 50% 50%;
  background-size: 85px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.2) !important;
}
#people-culture .row--video #play:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
}
#people-culture .layer {
  position: absolute;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#people-culture .video {
  display: block;
  position: absolute;
  z-index: 15;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: auto;
  top: 0;
  left: 0;
  display: none;
}
#people-culture .video .plyr--video {
  height: 100%;
  width: 100%;
}
#people-culture .video__video {
  background-color: #000000;
}
#people-culture #video-play {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  bottom: 20%;
  left: 25px;
  padding: 15px 5px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  z-index: 7;
  font-size: 14px;
}
#people-culture #video-play:hover {
  opacity: 0.8;
}
#people-culture #video-play:after {
  content: "";
  display: inline-block;
  background-color: #ffffff;
  height: 2px;
  width: 110px;
  margin-left: 15px;
  vertical-align: middle;
}

.carousel-container {
  margin: 120px auto;
}
.carousel-container__title {
  margin-bottom: 55px;
}
.carousel-container__title h3 {
  color: #0788AF;
  font-size: 3.25rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .carousel-container__title h3 {
    font-size: 2rem;
  }
}
.carousel-container__carousel .block {
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  text-align: left;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  margin: 30px;
}
.carousel-container__carousel .block__text {
  padding: 25px;
  font-size: initial;
}
.carousel-container__carousel.owl-theme .owl-dots .owl-dot span {
  margin: 20px;
  background: rgba(0, 0, 0, 0.17);
}
@media (max-width: 768px) {
  .carousel-container__carousel.owl-theme .owl-dots .owl-dot span {
    margin: 20px 10px;
  }
}
.carousel-container__carousel.owl-theme .owl-dots .owl-dot.active span, .carousel-container__carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #0788AF;
}

.link-row {
  background-color: #FF4B55;
}
.link-row .container {
  padding: 7% 25px;
  text-align: center;
}
.link-row .container a.btn {
  color: #ffffff;
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 25px 80px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.link-row .container a.btn:hover {
  background-color: #ffffff;
  color: #FF4B55;
}

.jobs-title {
  text-align: center;
  margin-top: 50px;
}
.jobs-title h3 {
  margin: 0;
}

#header-image.event-head--job {
  height: auto;
  min-height: auto;
  padding: 210px 0 90px 0;
}
@media (max-width: 1090px) {
  #header-image.event-head--job {
    padding: 100px 0 90px 0;
  }
  #header-image.event-head--job .title-box {
    padding-top: 10px;
  }
}
#header-image.event-head--job .title-box .intro-txt.intro-txt__location {
  margin-top: 40px;
}

#job-application-form.form-container--in-column {
  margin-top: 50px;
  width: 100%;
  margin: 0;
  max-width: 100%;
  padding: 80px 0 0 0;
}
#job-application-form h3 {
  margin-bottom: 50px;
}
#job-application-form .feedback-ok {
  padding: 25px;
  background: #eff3f7;
  border-radius: 10px;
}
#job-application-form .feedback-ok h5 {
  color: #00af00;
  font-weight: 500;
}
#job-application-form.form-container--open h3 {
  text-align: center;
  margin-bottom: 15px;
}
#job-application-form.form-container--open h4 {
  text-align: center;
  margin-bottom: 25px;
  text-transform: uppercase;
  color: #858585;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 2px;
}
#job-application-form.form-container--open .intro {
  text-align: center;
  margin-bottom: 80px;
}
#job-application-form.form-container--open .feedback-ok {
  text-align: center;
}

.related-articles {
  position: relative;
}
.related-articles .block {
  width: 50%;
  float: left;
  position: relative;
}
@media (max-width: 1090px) {
  .related-articles .block {
    width: 100%;
  }
}
.related-articles .block__link {
  display: block;
  width: 100%;
  height: 100%;
}
.related-articles .block__background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.85;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.related-articles .block__background--col {
  min-height: 260px;
  position: relative;
  float: left;
  width: 50%;
  opacity: 1;
}
.related-articles .block__text {
  float: left;
  width: 50%;
  height: 100%;
  padding: 7% 11%;
}
@media (max-width: 576px) {
  .related-articles .block__text {
    padding: 7%;
  }
}
.related-articles .block__text .text-wrapper {
  max-width: 250px;
}
.related-articles .block__text h4 {
  color: #4A4A4A;
}
@media (max-width: 768px) {
  .related-articles .block__text h4 {
    font-size: 22px;
  }
}
.related-articles .block__text p {
  color: #646464;
}
@media (max-width: 768px) {
  .related-articles .block__text p {
    font-size: 14px;
  }
}
.related-articles .block--s1, .related-articles .block--s2, .related-articles .block--s3 {
  overflow: hidden;
}
.related-articles .block--s1 {
  min-height: 520px;
  background-color: #2B2B2B;
}
.related-articles .block--s1 h4 {
  color: #ffffff;
  text-align: center;
  width: 100%;
  padding: 25px;
  position: absolute;
  z-index: 5;
  font-size: 40px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .related-articles .block--s1 h4 {
    font-size: 30px;
  }
}
.related-articles .block--s1:hover .block__background {
  transform: scale(1.1);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  -ms-transition: all 1s ease;
  transition: all 1s ease;
}
.related-articles .block--s2, .related-articles .block--s3 {
  min-height: 260px;
  background-color: #f3f3f3;
  -webkit-transition: all 3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.related-articles .block--s2:hover, .related-articles .block--s3:hover {
  background-color: #FF4B55;
}
.related-articles .block--s2:hover *, .related-articles .block--s3:hover * {
  color: #ffffff;
}
.related-articles .block--s2 .block__text {
  float: right;
}
.related-articles .block--s3:hover {
  background-color: #0788AF;
}
.related-articles--items2 .block.block--s2 {
  height: 520px;
}
@media (max-width: 1090px) {
  .related-articles--items2 .block.block--s2 {
    height: 260px;
  }
}
.related-articles--items1 .block.block--s1 {
  width: 100%;
}

.contact-area-container {
  text-align: center;
  padding: 150px 25px;
  background-color: #FF4B55;
}
.contact-area-container h4 {
  color: #ffffff;
  font-size: 2.6rem;
  font-weight: 500;
}
.contact-area-container p {
  color: #ffffff;
}
.contact-area-container .contact-area-page {
  text-align: center;
  width: auto;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 40px;
}
.contact-area-container .contact-area-page a.btn {
  display: inline-block;
  vertical-align: middle;
  padding: 15px 25px;
  background-color: #ffffff;
  color: #FF4B55;
  border: 1px solid #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 10px;
}
.contact-area-container .contact-area-page a.btn:hover {
  color: #ffffff;
  background-color: #FF4B55;
}

.categories-list {
  margin-top: 50px;
  margin-bottom: 50px;
  position: relative;
}
.categories-list #all {
  position: absolute;
  top: -130px;
}
.categories-list .col {
  width: 50%;
}
.categories-list .col--categories {
  width: 66.6666%;
}
@media (max-width: 960px) {
  .categories-list .col--categories {
    width: 100%;
    margin: 0 0 55px 0;
    text-align: center;
  }
}
.categories-list .col--categories a.item {
  display: inline-block;
  margin-right: 38px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #464646;
  background-color: #ffffff;
  border-radius: 10px;
  min-width: 200px;
  padding: 18px 25px;
  text-align: center;
  font-weight: bold;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
}
.categories-list .col--categories a.item:last-child {
  margin-right: 0;
}
.categories-list .col--categories a.item:hover {
  opacity: 0.6;
}
.categories-list .col--categories a.item--active {
  color: #ffffff;
  background-color: #FF4B55;
}
.categories-list .col--search {
  width: 33.3333%;
}
@media (max-width: 960px) {
  .categories-list .col--search {
    width: 100%;
  }
}
.categories-list .col--search .search {
  position: relative;
}
.categories-list .col--search .search__terms {
  display: block;
  position: relative;
  z-index: 0;
  font-size: 16px;
  width: 100%;
  padding: 8px 30px 8px 5px;
  border-bottom: 1px solid #464646;
}
.categories-list .col--search .search__btn {
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-search.png) no-repeat center top;
  background-size: contain;
  position: absolute;
  z-index: 5;
  width: 16px;
  height: 20px;
  right: 0;
  top: 10px;
}

.news-list {
  padding: 0 0 80px 0;
}
.news-list h4.results-title {
  padding: 25px;
  font-size: 22px;
}
.news-list h4.results-title span {
  font-size: 16px;
}
.news-list article.no-results {
  padding: 50px 25px;
}
.news-list article.no-results p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}
.news-list__item {
  width: 29.33333%;
  margin: 2%;
  overflow: hidden;
  border-radius: 10px;
  background-color: #FFFFFF;
  position: relative;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-list__item:hover .actions .link.readmore {
  color: #FF4B55;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.news-list__item a {
  display: block;
}
.news-list__item img.logo {
  width: 100%;
}
.news-list__item .logo-event {
  display: block;
  background-color: #F7F7F7;
  position: relative;
  width: 100%;
  height: 250px;
  padding: 40px;
}
.news-list__item .logo-event__image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
}
.news-list__item .text {
  padding: 35px 40px 95px 40px;
}
.news-list__item .text span.date {
  display: block;
  color: #0788AF;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.news-list__item .text h4 {
  font-weight: 300;
  letter-spacing: 2px;
  line-height: 1.2em;
  padding-right: 55px;
  position: relative;
  font-size: 21px;
  font-weight: 400;
}
.news-list__item .text article {
  color: rgba(43, 44, 44, 0.6);
}
@media (max-width: 1200px) {
  .news-list__item {
    width: 46%;
  }
}
@media (max-width: 768px) {
  .news-list__item {
    width: 100%;
    margin: 0 0 55px 0;
  }
}

.actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px 30px 40px;
  z-index: 1;
}
.actions .link {
  float: left;
  width: 50%;
  cursor: pointer;
  color: #0788AF;
  font-weight: bold;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.actions .link:hover {
  color: #FF4B55;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.actions .link.share {
  text-align: left;
}
.actions .link.share:after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  vertical-align: middle;
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-share.svg) no-repeat center;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.actions .link.readmore {
  text-align: right;
}
.actions .link.readmore:after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  font-size: 20px;
  vertical-align: top;
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/ico-next.svg) no-repeat center;
  width: 20px;
  height: 20px;
  background-size: contain;
}
.actions .share-icons {
  text-align: center;
  position: absolute;
  background-color: #EFF3F7;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 25px;
  display: none;
}
.actions .share-icons__link {
  margin: 10px;
  display: inline-block;
  vertical-align: middle;
  font-size: 18px;
  width: 33px;
  height: 33px;
  line-height: 31px;
  background-color: #ffffff;
  border-radius: 50%;
  color: #464646;
}
@media (max-width: 1090px) {
  .actions .share-icons__link {
    margin: 7px;
  }
}
.actions .share-icons__link i {
  vertical-align: middle;
}
.actions .share-icons__link:hover {
  opacity: 0.7;
}

.article-detail {
  margin-top: 80px;
  margin-bottom: 100px;
}
.article-detail .col {
  position: relative;
}
.article-detail .col--subtitle {
  width: 35%;
  position: -webkit-sticky;
  /* Safari */
  position: sticky;
  top: 130px;
}
.article-detail .col--subtitle h2 {
  font-size: 40px;
  font-weight: 400;
  padding-right: 20%;
}
@media (max-width: 1200px) {
  .article-detail .col--subtitle h2 {
    font-size: 30px;
  }
}
@media (max-width: 960px) {
  .article-detail .col--subtitle {
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    top: 0px;
  }
  .article-detail .col--subtitle h2 {
    padding-right: 0;
    font-size: 26px;
  }
}
.article-detail .col--content {
  width: 65%;
}
.article-detail .col--content article ul {
  list-style: square;
  list-style-position: outside;
  margin-left: 20px;
  margin-bottom: 1.625rem;
}
.article-detail .col--content article ul li {
  font-weight: inherit;
  font-weight: 300;
  margin-bottom: 3px;
}
.article-detail .col--content a.btn {
  display: inline-block;
  margin-top: 80px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px 45px;
  border-radius: 10px;
  background-color: #0788AF;
}
.article-detail .col--content a.btn:hover {
  background-color: #FF4B55;
}
.article-detail .col--content .plyr--video {
  margin-top: 80px;
}
.article-detail .col--content .actions {
  position: relative;
  padding: 80px 0 0 0;
}
.article-detail .col--content .actions .link {
  float: none;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10%;
}
@media (max-width: 960px) {
  .article-detail .col--content {
    width: 100%;
  }
}
.article-detail #video {
  position: relative;
  background: #000;
  width: 100%;
  margin: 90px auto 0 auto;
}
.article-detail #video img {
  width: 100%;
}
.article-detail #video img,
.article-detail #video iframe {
  display: block;
}
.article-detail #play {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: url("https://tcpos-149ac.kxcdn.com/app/resources/i/play-button.png") no-repeat 50% 50%;
  background-size: 85px;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.2) !important;
}
.article-detail #play:hover {
  background-color: rgba(0, 0, 0, 0.4) !important;
}

#unified-commerce {
  background-color: #0788AF;
  padding-top: 40px;
  padding-bottom: 150px;
  position: relative;
}
#unified-commerce h3 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 400;
}
#unified-commerce .section--article {
  position: absolute;
  left: 0;
  width: 100%;
  top: 10%;
  z-index: 9;
}
#unified-commerce .section--numbers {
  text-align: center;
}
#unified-commerce .section--numbers .element {
  width: 24.7%;
  padding: 3%;
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
#unified-commerce .section--numbers .element h6 {
  color: #98D3D1;
  font-size: 21px;
  font-weight: bold;
}
#unified-commerce .section--numbers .element h4, #unified-commerce .section--numbers .element p {
  color: #ffffff;
}
#unified-commerce .section--numbers .element h4 {
  font-weight: 100;
  font-size: 70px;
}
#unified-commerce .section--numbers .element h4 span {
  font-size: 105px;
}
@media (max-width: 1400px) {
  #unified-commerce .section--numbers .element {
    padding: 2%;
  }
}
@media (max-width: 1280px) {
  #unified-commerce .section--numbers .element h4 {
    font-size: 50px;
  }
  #unified-commerce .section--numbers .element h4 span {
    font-size: 85px;
  }
}
@media (max-width: 1200px) {
  #unified-commerce .section--numbers .element {
    width: 49.5%;
    padding: 3%;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  #unified-commerce .section--numbers .element {
    width: 100%;
    padding: 0;
    margin-bottom: 70px;
    max-width: 300px;
    text-align: center;
  }
}
#unified-commerce .gallery {
  position: static;
  display: block;
  width: 100%;
  height: 220vh;
  margin-bottom: -7%;
}
#unified-commerce .gallery-scroll-track {
  position: static;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  overflow: hidden;
}
#unified-commerce .gallery-container {
  position: relative;
  top: 0px;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
#unified-commerce .gallery-track {
  position: relative;
  left: 100%;
  top: 0px;
  right: 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  height: 100%;
  padding-top: 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  animation: moveSlideshow 20s linear infinite;
}
#unified-commerce .gallery-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  min-height: 2px;
  margin: 0 25px;
  position: relative;
}
#unified-commerce .gallery-image__content {
  position: relative;
}
#unified-commerce .gallery-image__content--v1 {
  margin-top: -190%;
}
#unified-commerce .gallery-image__content--v2 {
  margin-top: 155%;
  z-index: 1000;
}
#unified-commerce .gallery-image__content--v3 {
  margin-top: -210%;
}
#unified-commerce .gallery-image__content--v4 {
  margin-top: -170%;
}
#unified-commerce .gallery-image__content--v5 {
  margin-top: 85%;
  z-index: 1000;
}
#unified-commerce .gallery-image__content .img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.16);
  margin-bottom: 18px;
}
#unified-commerce .gallery-image__content p {
  color: #ffffff;
  font-size: 21px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 0 10px;
}
#unified-commerce .animated-element {
  position: absolute;
  z-index: 10;
  top: 40%;
  left: -20%;
  width: 20%;
  max-width: 198px;
  -webkit-transition: all 3s ease;
  -moz-transition: all 3s ease;
  -o-transition: all 3s ease;
  -ms-transition: all 3s ease;
  transition: all 3s ease;
}
#unified-commerce .animated-element img {
  width: 100%;
}
#unified-commerce span.line {
  width: 100%;
  height: 2px;
  display: block;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  background-image: linear-gradient(to right, white 33%, rgba(255, 255, 255, 0) 0%);
  background-position: center;
  background-size: 5px 2px;
  background-repeat: repeat-x;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-230%);
  }
}
#timeline {
  position: relative;
  background-color: #0788AF;
  font-size: 0;
  padding: 150px 0 0 0;
  margin-bottom: 50px;
  overflow: auto;
}
#timeline .points-row {
  min-width: 960px;
}
#timeline .point {
  display: inline-block;
  width: 10%;
  height: 69px;
  padding: 0 10px;
  background: url(https://tcpos-149ac.kxcdn.com/app/resources/i/wave.png) no-repeat center;
  background-size: 101% 100%;
  text-align: center;
  font-weight: bold;
  color: cyan;
  font-size: 20px;
  position: relative;
}
#timeline .point:nth-child(even) {
  color: lime;
}
#timeline .point h5.year {
  position: absolute;
  left: 20%;
  top: -130px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
}
#timeline .point label {
  color: #ffffff;
  font-size: 16px;
  display: block;
  position: absolute;
  left: 0;
  top: -50px;
  width: 100%;
  text-align: center;
}
#timeline .point span.dot {
  display: block;
  width: 15px;
  height: 15px;
  background-color: #0788AF;
  margin: 10% auto 0 auto;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#timeline .point a {
  display: block;
  cursor: pointer;
  margin: 0 auto;
  max-width: 50px;
}
#timeline .point a:hover span.dot, #timeline .point a.active span.dot {
  background-color: #ffffff;
  width: 28px;
  height: 28px;
  margin: -5% auto 0 auto;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#timeline-results {
  background-color: #ffffff;
  padding: 100px 0 80px 0;
}
@media (max-width: 1090px) {
  #timeline-results {
    padding: 10px 0 80px 0;
  }
}
#timeline-results .section {
  position: relative;
  margin-bottom: 50px;
  display: none;
}
#timeline-results .section.active {
  display: block;
}
#timeline-results .section .col--title {
  width: 30%;
}
@media (max-width: 1090px) {
  #timeline-results .section .col--title {
    width: 100%;
    font-size: 0;
    margin-bottom: 25px;
  }
}
#timeline-results .section .col--title h3 {
  font-size: 46px;
  margin-bottom: 30px;
}
#timeline-results .section .col--title h3:after {
  content: "";
  width: 45%;
  height: 2px;
  margin-left: 10%;
  background-color: #464646;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 1090px) {
  #timeline-results .section .col--title h3:after {
    width: 65%;
  }
}
@media (max-width: 1090px) {
  #timeline-results .section .col--title h3 {
    display: inline-block;
    vertical-align: middle;
    width: 50%;
  }
}
@media (max-width: 768px) {
  #timeline-results .section .col--title h3 {
    width: 80%;
    margin-bottom: 0;
  }
}
#timeline-results .section .col--title h5 {
  font-size: 16px;
  margin-bottom: 0px;
}
@media (max-width: 1090px) {
  #timeline-results .section .col--title h5 {
    display: inline-block;
    vertical-align: middle;
    width: 30%;
    margin-top: -25px;
  }
}
@media (max-width: 768px) {
  #timeline-results .section .col--title h5 {
    margin-top: -75px;
    text-align: right;
    width: 100%;
  }
}
#timeline-results .section .col--projects {
  width: 70%;
  font-size: 0;
}
@media (max-width: 1090px) {
  #timeline-results .section .col--projects {
    width: 100%;
  }
}
#timeline-results .section .col--projects .project {
  margin-bottom: 50px;
  display: inline-block;
  width: 50%;
  padding-right: 40px;
}
@media (max-width: 768px) {
  #timeline-results .section .col--projects .project {
    width: 100%;
    padding-right: 0;
  }
}
#timeline-results .section .col--projects .project h4 {
  font-size: 32px;
  margin-bottom: 11px;
  max-width: 280px;
}
#timeline-results .section .col--projects .project p {
  font-size: 18px;
  margin-bottom: 8px;
}
#timeline-results .section .col--projects .project p:last-child {
  margin-bottom: 0;
}
#timeline-results .section .col--projects .project--fullstack {
  display: block;
  width: 116%;
  margin: 0;
  padding: 35px 8%;
  margin-left: -8%;
  border-radius: 30px;
  background-color: #0788AF;
}
#timeline-results .section .col--projects .project--fullstack * {
  color: #ffffff;
}

#demo-iframe {
  padding: 25px;
  margin-bottom: 90px;
}
#demo-iframe iframe {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 30px 3px rgba(0, 0, 0, 0.08);
}

.demo-instructions {
  position: relative;
  text-align: center;
}
.demo-instructions__btn {
  padding: 10px 6%;
  border-radius: 5px;
  color: #ffffff;
  font-weight: 500;
  border: 2px solid #FF4B55;
  background-color: #FF4B55;
  display: inline-block;
  margin-bottom: 50px;
}
.demo-instructions__btn:hover {
  background-color: #ffffff;
  color: #FF4B55;
}
.demo-instructions__content {
  display: none;
  padding: 30px;
  margin-bottom: 50px;
}
.demo-instructions__content article {
  text-align: left;
}
.demo-instructions__content article h2, .demo-instructions__content article h3 {
  font-size: 26px;
  text-align: center;
}
.demo-instructions__content article ul, .demo-instructions__content article li {
  font-weight: 300;
}
.demo-instructions__content article ul {
  margin-bottom: 1.625rem;
}
.demo-instructions__content article ul li {
  list-style: disc;
  list-style-position: outside;
  margin-left: 17px;
}
.demo-instructions__content article table {
  margin: 0 auto 1.625rem auto;
}
.demo-instructions__content article table tr {
  width: 100%;
}
.demo-instructions__content article table tr td {
  border-bottom: 1px solid #000000;
  padding: 6px 10px;
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
