@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: .6s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
@charset "UTF-8";
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

@keyframes slideDown {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }

@keyframes slideUp {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }

@media screen and (min-width: 992px) {
  .bg-grey, .bg-black, .bg-gradient-grey, .bg-gradient-blue, .bg-silvair-mint, .bg-silvair-mint-dark, .bg-silvair-mint-light, .bg-silvair-cool-gray-dark, .bg-silvair-warm-gray-dark, .bg-silvair-white, .bg-silvair-black, .bg-silvair-cool-gray, .bg-silvair-cool-gray-medium, .bg-silvair-purple-blue, .bg-silvair-purple-blue-dark, .bg-silvair-light-blue, .bg-silvair-gold, .bg-silvair-green-dark, .bg-silvair-very-light-pink-two {
    margin-right: -15px;
    margin-left: -15px; } }

.filter, .section-blog .tabs:before, .video-container .filter {
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%; }

.button-arrow:after, .tabs .blog-latest-entries .read-article:after, .cc-window.cc-floating .cc-btn:after,
.cc-window.cc-floating .cc-allow:after,
.cc-window.cc-floating .cc-deny:after,
.cc-window.cc-floating + .cc-btn:after,
.cc-window.cc-banner .cc-btn:after,
.cc-window.cc-banner .cc-allow:after,
.cc-window.cc-banner .cc-deny:after,
.cc-window.cc-banner + .cc-btn:after, .news-item .read-article:hover:after, .button-arrow-2:after, .button-arrow-down:after, .button-scroll-down:before, .button-facebook:after, .button-like:after, .button-linkedin:after, .button-share:after, .button-getdirection:after, .button-search:after, .button-twitter:after, .button-slider:after, .button-slider-linear:after, .indicator-arrow-green:before, .indicator-arrow-transparent:before, .careers .jobs .job:after, .section-products .products-list .product-tile .product-tile-hover-view p a:after {
  font-family: 'silvairIcons';
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.faqs .faq h3:hover, .faqs .category p:hover {
  color: #14d991;
  cursor: pointer; }

.left {
  float: left; }

.center {
  display: block;
  margin: auto; }

.right {
  float: right; }

.cms-toolbar-expanded, .cms-toolbar-expanded .navbar {
  top: 46px; }

.width-1280 {
  max-width: 1280px; }

@media screen and (min-width: 992px) {
  .mb-md-55 {
    margin-bottom: 55px; } }

@media screen and (min-width: 992px) {
  .mw-130 {
    max-width: 130% !important; } }

@media screen and (min-width: 992px) {
  .mw-120 {
    max-width: 120% !important; } }

.zoom-on-hover {
  transition: all 0.1s ease-in-out; }
  .zoom-on-hover:hover {
    -ms-transform: scale(1.1);
        transform: scale(1.1); }

.centered-flex-row > [class*='col-'] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center; }

.centered-flex-col {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column; }

[class*='bg-silvair'] .container-fluid {
  padding-left: 0;
  padding-right: 0; }

.hover-row {
  max-width: 100% !important; }
  .hover-row > [class*='col-'] {
    padding: 0 !important; }
    .hover-row > [class*='col-'] .text-container {
      position: absolute;
      width: 100%;
      height: 100%;
      transition: 0.2s opacity ease-in;
      padding: 0 10px;
      color: #fff;
      background: rgba(37, 37, 37, 0.45);
      z-index: 1; }
      @media screen and (min-width: 768px) {
        .hover-row > [class*='col-'] .text-container {
          margin: 0 15px;
          padding: 0 30px;
          opacity: 0; }
          .hover-row > [class*='col-'] .text-container .button-transparent, .hover-row > [class*='col-'] .text-container .cc-window.cc-floating .cc-btn, .cc-window.cc-floating .hover-row > [class*='col-'] .text-container .cc-btn,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-floating .cc-allow, .cc-window.cc-floating .hover-row > [class*='col-'] .text-container .cc-allow,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-floating .cc-deny, .cc-window.cc-floating .hover-row > [class*='col-'] .text-container .cc-deny,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-floating + .cc-btn,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-banner .cc-btn, .cc-window.cc-banner .hover-row > [class*='col-'] .text-container .cc-btn,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-banner .cc-allow, .cc-window.cc-banner .hover-row > [class*='col-'] .text-container .cc-allow,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-banner .cc-deny, .cc-window.cc-banner .hover-row > [class*='col-'] .text-container .cc-deny,
          .hover-row > [class*='col-'] .text-container .cc-window.cc-banner + .cc-btn, .hover-row > [class*='col-'] .text-container .navbar-nav > .nav-item button, .navbar-nav > .nav-item .hover-row > [class*='col-'] .text-container button {
            position: absolute;
            bottom: 3.5em; } }
    .hover-row > [class*='col-'] .image-container {
      transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
      z-index: 0; }
    .hover-row > [class*='col-']:hover .text-container {
      opacity: 1; }
    .hover-row > [class*='col-']:hover .image-container {
      -ms-transform: scale(1.2);
          transform: scale(1.2); }

.row-full-width {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: -15px !important;
  margin-right: -15px !important; }

.hover-column {
  overflow: hidden; }
  .hover-column > a {
    margin: 0 !important; }
  .hover-column .text-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 0 45px !important;
    transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    z-index: 1;
    color: #fff;
    background: rgba(37, 37, 37, 0.45); }
    .hover-column .text-container .button-transparent, .hover-column .text-container .cc-window.cc-floating .cc-btn, .cc-window.cc-floating .hover-column .text-container .cc-btn,
    .hover-column .text-container .cc-window.cc-floating .cc-allow, .cc-window.cc-floating .hover-column .text-container .cc-allow,
    .hover-column .text-container .cc-window.cc-floating .cc-deny, .cc-window.cc-floating .hover-column .text-container .cc-deny,
    .hover-column .text-container .cc-window.cc-floating + .cc-btn,
    .hover-column .text-container .cc-window.cc-banner .cc-btn, .cc-window.cc-banner .hover-column .text-container .cc-btn,
    .hover-column .text-container .cc-window.cc-banner .cc-allow, .cc-window.cc-banner .hover-column .text-container .cc-allow,
    .hover-column .text-container .cc-window.cc-banner .cc-deny, .cc-window.cc-banner .hover-column .text-container .cc-deny,
    .hover-column .text-container .cc-window.cc-banner + .cc-btn, .hover-column .text-container .navbar-nav > .nav-item button, .navbar-nav > .nav-item .hover-column .text-container button {
      position: absolute;
      bottom: 3em; }
    @media screen and (min-width: 768px) {
      .hover-column .text-container {
        opacity: 0; } }
  .hover-column .image-container {
    transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    width: 100%;
    margin: 0 !important; }
  .hover-column:hover .text-container {
    opacity: 1; }
  .hover-column:hover .image-container {
    -ms-transform: scale(1.2);
        transform: scale(1.2); }
  @media screen and (max-width: 992px) {
    .hover-column {
      padding: 0;
      margin: 0; } }
  @media screen and (max-width: 420px) {
    .hover-column p {
      font-size: 0.9rem !important; } }

@media screen and (max-width: 420px) {
  .button-scroll-down:before {
    font-size: 35px;
    line-height: 35px; } }

.overflow-hidden {
  overflow: hidden; }

.glow {
  background-image: radial-gradient(circle, #fff, transparent 350px);
  background-repeat: no-repeat;
  position: absolute;
  width: 150%;
  height: 900px;
  margin-left: -25% !important; }

.glowed {
  position: relative;
  height: 350px; }
  @media screen and (max-width: 768px) {
    .glowed {
      height: 250px; } }

.partners-logos > [class*='col-'] {
  margin-bottom: 100px; }

.partners-logos img {
  filter: grayscale(100%) brightness(0%) contrast(1000%);
  opacity: 0.3; }
  .partners-logos img:hover {
    filter: none;
    opacity: 1; }

.image-gradient img {
  background: radial-gradient(circle at 50%, #fff 50%, transparent 80%); }

.partner-title {
  min-height: 250px; }

.bars span:first-of-type {
  position: relative; }
  .bars span:first-of-type:before, .bars span:first-of-type:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 8px;
    border-bottom: 4px solid currentColor;
    border-top: 4px solid currentColor; }
  .bars span:first-of-type:before {
    right: 100%;
    margin-right: 50px; }
  .bars span:first-of-type:after {
    left: 100%;
    margin-left: 50px; }

.benefit {
  position: relative; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .benefit .text-container {
      display: none; } }
  @media screen and (min-width: 768px) {
    .benefit .text-container {
      background: #fff;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      opacity: 0;
      transition: opacity 0.3s; }
    .benefit:hover .text-container {
      opacity: 1; } }

.faqs .faq h3 {
  display: inline-block; }

.faqs .faq p {
  display: none; }

.faqs .category h2 {
  margin-top: 20px; }

.faqs .category p {
  display: inline-block;
  font-size: 1rem;
  text-transform: uppercase; }

.faqs .section-faq-category:last-of-type {
  padding-bottom: 20px !important; }

svg {
  max-width: 100%; }

.link-column {
  padding: 26px 35px; }
  .link-column h3,
  .link-column p {
    color: #212529; }
  .link-column:hover h3,
  .link-column:hover p {
    color: #13cc88; }

.link-green, .submenu-top li a {
  color: #000;
  transition: 0.3s; }
  .link-green:hover, .submenu-top li a:hover {
    color: #14d991; }
    .link-green:hover .icon-svg *, .submenu-top li a:hover .icon-svg * {
      stroke: #14d991; }

.tb-bordered-row {
  margin-bottom: 50px; }
  .tb-bordered-row > .row {
    padding-bottom: 0 !important;
    border-top: 1px solid #000; }
    .tb-bordered-row > .row p {
      margin-left: 35px;
      margin-right: 35px; }
      @media screen and (max-width: 576px) {
        .tb-bordered-row > .row p {
          margin-left: 10px;
          margin-right: 10px;
          font-size: 1rem; } }
    .tb-bordered-row > .row:last-of-type {
      border-bottom: 1px solid #000; }
  .tb-bordered-row.border-off > .row {
    border: 0; }

.file-list-item {
  max-width: 100%;
  margin: 20px 35px; }
  @media screen and (max-width: 576px) {
    .file-list-item {
      margin-left: 0px;
      margin-right: 0px; } }
  .file-list-item .icon {
    margin-right: 25px; }
    .file-list-item .icon .icon-svg * {
      transition: 0.3s; }
  .file-list-item p {
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 10px; }
  .file-list-item.no-border p {
    border: 0;
    padding: 0; }
  .file-list-item .cta-file-text {
    text-transform: uppercase;
    margin-left: 30px;
    -ms-flex: 1 0 auto;
        flex: 1 0 auto;
    text-align: right; }

.collapsing-list .file-list-item p {
  display: block; }

.collapsing-item {
  border-bottom: 1px solid #000; }
  .collapsing-item .collapsing-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
        align-items: flex-start;
    cursor: pointer; }
    .collapsing-item .collapsing-header:hover {
      color: #14d991;
      font-weight: 700; }
      .collapsing-item .collapsing-header:hover span {
        font-weight: 300; }
  .collapsing-item .collapsing-icon {
    margin: 15px 35px 10px 0 !important; }
  .collapsing-item p {
    margin: 15px 0 10px !important; }
  .collapsing-item.collapsed .collapsing-icon {
    transition: 0.3s;
    -ms-transform: rotatex(180deg);
        transform: rotatex(180deg); }
  .collapsing-item.collapsed > .container {
    display: none; }

.submenu-top {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 0.5s;
  background-color: #fff;
  color: #6c6c69;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1); }
  .submenu-top ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    list-style: none;
    margin: 86px auto 0;
    padding: 10px;
    max-width: 1300px; }
    @media screen and (min-width: 1580px) {
      .submenu-top ul {
        max-width: 1600px; } }
    @media screen and (max-width: 576px) {
      .submenu-top ul {
        font-size: 0.8rem; } }
  .submenu-top li {
    text-align: center;
    padding: 10px; }
    @media screen and (max-width: 576px) {
      .submenu-top li {
        padding: 5px; } }
    .submenu-top li a {
      color: inherit; }
  .submenu-top > :not(ul) {
    display: none; }
  @media screen and (max-width: 768px) {
    .submenu-top {
      display: none; }
      .submenu-top.show-sm {
        display: block; }
        .submenu-top.show-sm li {
          font-size: 0.8rem; } }
  @media screen and (max-width: 576px) {
    .submenu-top.show-sm li {
      -ms-flex: 1 0 50%;
          flex: 1 0 50%; } }

.active, .collapsing-item:not(.collapsed) > p:first-child {
  font-weight: 500; }

.popup-stock-info .modal {
  background: rgba(108, 108, 105, 0.97); }
  @media screen and (min-width: 992px) {
    .popup-stock-info .modal .modal-dialog {
      max-width: 900px;
      width: auto; } }
  .popup-stock-info .modal .modal-header {
    -ms-flex-pack: center;
        justify-content: center; }

.tab-panel:not(:first-of-type) {
  display: none; }

.tabs-navigation {
  display: -ms-flexbox;
  display: flex; }

.section-default .harmonogram .row:last-of-type {
  padding-bottom: 15px; }

.section-default .tabs-navigation p {
  margin-right: 35px; }

.cc-window.cc-floating {
  max-width: 100%; }
  .cc-window.cc-floating .cc-compliance > .cc-btn {
    -ms-flex: 0 1 auto;
        flex: 0 1 auto; }

.cc-window.cc-floating,
.cc-window.cc-banner {
  -ms-flex-direction: column;
      flex-direction: column;
  font-family: inherit;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em 0.9em;
  width: 100%; }
  .cc-window.cc-floating.cc-bottom,
  .cc-window.cc-banner.cc-bottom {
    bottom: 0; }
  .cc-window.cc-floating .cc-compliance,
  .cc-window.cc-banner .cc-compliance {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin-top: 10px; }
    @media screen and (min-width: 768px) {
      .cc-window.cc-floating .cc-compliance,
      .cc-window.cc-banner .cc-compliance {
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
        -ms-flex-pack: center;
            justify-content: center;
        margin-top: 0; } }
  @media screen and (min-width: 992px) {
    .cc-window.cc-floating,
    .cc-window.cc-banner {
      -ms-flex-direction: row;
          flex-direction: row;
      padding: 1em 1.8em; } }
  .cc-window.cc-floating .cc-btn,
  .cc-window.cc-floating .cc-allow,
  .cc-window.cc-floating .cc-deny,
  .cc-window.cc-floating + .cc-btn,
  .cc-window.cc-banner .cc-btn,
  .cc-window.cc-banner .cc-allow,
  .cc-window.cc-banner .cc-deny,
  .cc-window.cc-banner + .cc-btn {
    font-family: BrandonText;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    padding: 6px 20px;
    cursor: pointer;
    transition: 0.1s all;
    text-decoration: none;
    color: #fff;
    border: 2px solid #536dff;
    border-radius: 30px;
    text-transform: uppercase;
    position: relative;
    text-align: left;
    margin: 10px 0 0; }
    @media screen and (min-width: 420px) {
      .cc-window.cc-floating .cc-btn,
      .cc-window.cc-floating .cc-allow,
      .cc-window.cc-floating .cc-deny,
      .cc-window.cc-floating + .cc-btn,
      .cc-window.cc-banner .cc-btn,
      .cc-window.cc-banner .cc-allow,
      .cc-window.cc-banner .cc-deny,
      .cc-window.cc-banner + .cc-btn {
        margin: 10px 20px 0; } }
  .cc-window.cc-floating a.cc-btn,
  .cc-window.cc-floating + a.cc-btn,
  .cc-window.cc-banner a.cc-btn,
  .cc-window.cc-banner + a.cc-btn {
    font-size: 0.8rem; }
    @media screen and (min-width: 992px) {
      .cc-window.cc-floating a.cc-btn,
      .cc-window.cc-floating + a.cc-btn,
      .cc-window.cc-banner a.cc-btn,
      .cc-window.cc-banner + a.cc-btn {
        margin-top: 0; } }
  .cc-window.cc-floating .cc-highlight .cc-btn:first-child:hover,
  .cc-window.cc-banner .cc-highlight .cc-btn:first-child:hover {
    text-decoration: none; }
  .cc-window.cc-floating .cc-message,
  .cc-window.cc-banner .cc-message {
    display: -ms-flexbox;
    display: flex;
    margin: 0; }
    .cc-window.cc-floating .cc-message .cc-message-text,
    .cc-window.cc-banner .cc-message .cc-message-text {
      -ms-flex: 0 1 450px;
          flex: 0 1 450px;
      -ms-flex-item-align: center;
          -ms-grid-row-align: center;
          align-self: center;
      font-size: 0.8rem;
      line-height: 1rem; }
      @media screen and (min-width: 992px) {
        .cc-window.cc-floating .cc-message .cc-message-text,
        .cc-window.cc-banner .cc-message .cc-message-text {
          margin-left: 30px; } }
    .cc-window.cc-floating .cc-message .cc-message-img,
    .cc-window.cc-banner .cc-message .cc-message-img {
      display: none; }
      @media screen and (min-width: 576px) {
        .cc-window.cc-floating .cc-message .cc-message-img,
        .cc-window.cc-banner .cc-message .cc-message-img {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-align: center;
              align-items: center; } }
      .cc-window.cc-floating .cc-message .cc-message-img img,
      .cc-window.cc-banner .cc-message .cc-message-img img {
        width: 45px; }

@media screen and (max-width: 576px) {
  .g-recaptcha {
    -ms-transform: scale(0.77);
        transform: scale(0.77);
    -webkit-transform: scale(0.77);
    -ms-transform-origin: 0 0;
        transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

.box-shadow-tile {
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.051) !important;
  transition: 0.3s; }
  .box-shadow-tile:hover {
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.051) !important; }

.full-width-margin, .homepage-hero-module .modal .modal-dialog, .cropped-background, .tabs-with-tiles, .section-products .product-filters, .interactive-section {
  margin-left: 1rem;
  margin-right: 1rem; }
  @media screen and (min-width: 576px) {
    .full-width-margin, .homepage-hero-module .modal .modal-dialog, .cropped-background, .tabs-with-tiles, .section-products .product-filters, .interactive-section {
      margin-left: 2.375rem;
      margin-right: 2.375rem; } }
  @media screen and (min-width: 1400px) {
    .full-width-margin, .homepage-hero-module .modal .modal-dialog, .cropped-background, .tabs-with-tiles, .section-products .product-filters, .interactive-section {
      margin-left: 3.25rem;
      margin-right: 3.25rem; } }
  .full-width-margin .container-fluid, .homepage-hero-module .modal .modal-dialog .container-fluid, .cropped-background .container-fluid, .tabs-with-tiles .container-fluid, .section-products .product-filters .container-fluid, .interactive-section .container-fluid {
    padding: 0; }

.max-width-margin, .section-contact, .section-contact-second, .section-products .products-bottom .section-partners, .section-contact-third, .section-scroll-interactive, .section-tables, .section-render {
  margin-left: 1rem;
  margin-right: 1rem; }
  @media screen and (min-width: 576px) {
    .max-width-margin, .section-contact, .section-contact-second, .section-products .products-bottom .section-partners, .section-contact-third, .section-scroll-interactive, .section-tables, .section-render {
      margin-left: 2.375rem;
      margin-right: 2.375rem; } }
  @media screen and (min-width: 1400px) {
    .max-width-margin, .section-contact, .section-contact-second, .section-products .products-bottom .section-partners, .section-contact-third, .section-scroll-interactive, .section-tables, .section-render {
      margin-left: 3.25rem;
      margin-right: 3.25rem; } }
  .max-width-margin .container-fluid, .section-contact .container-fluid, .section-contact-second .container-fluid, .section-products .products-bottom .section-partners .container-fluid, .section-contact-third .container-fluid, .section-scroll-interactive .container-fluid, .section-tables .container-fluid, .section-render .container-fluid {
    padding: 0; }

.auto-margins, body > .row-section {
  margin-left: 1rem;
  margin-right: 1rem; }
  @media screen and (min-width: 576px) {
    .auto-margins, body > .row-section {
      padding: 0;
      margin-left: 2.375rem;
      margin-right: 2.375rem; } }
  @media screen and (min-width: 1580px) {
    .auto-margins, body > .row-section {
      margin-left: auto;
      margin-right: auto; } }

.hide-linear-gradient {
  background: none !important; }

.slider-arrows .next-arrow, .section-carriers-slider .nav .next-arrow, .section-grid-slider .nav .next-arrow {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg);
  margin-left: 18px;
  cursor: pointer; }

.slider-arrows .prev-arrow, .section-carriers-slider .nav .prev-arrow, .section-grid-slider .nav .prev-arrow {
  margin-right: 18px;
  cursor: pointer; }

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

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .max-text-width-for-ie p {
    max-width: 20rem; } }

.bg-grey {
  background-color: #eeeff3; }

.bg-black {
  background-color: #000;
  color: #fff; }
  .bg-black h1 {
    color: #fff; }

.color-blue {
  color: #536dff; }

.color-white {
  color: white; }

.color-black {
  color: black; }

.color-green {
  color: #14d991; }

.color-gold, .careers .color-gold {
  color: #c1a992; }

.color-green-dark, .careers .color-green-dark {
  color: #133929; }

.color-very-light-pink-two {
  color: #f1f1f1; }

.color-brownish-grey {
  color: #707070; }

.bg-gradient-grey {
  background: linear-gradient(#ecebea, white, #ecebea); }

.bg-gradient-blue {
  background: linear-gradient(#536dff, white, #536dff); }

.bg-silvair-mint {
  background: #14d991 !important; }

.bg-silvair-mint-dark {
  background: #14d991 !important; }

.bg-silvair-mint-light {
  background: #aef2d8 !important; }

.bg-silvair-cool-gray-dark {
  background: #6c6c69 !important; }

.bg-silvair-warm-gray-dark {
  background: #d8d7d4 !important; }

.bg-silvair-white {
  background: #fbfbfb !important; }

.bg-silvair-black {
  background: #000 !important; }

.bg-silvair-cool-gray {
  background: #e8e8e8 !important; }

.bg-silvair-cool-gray-medium {
  background: #c8cacc !important; }

.bg-silvair-purple-blue {
  background: #546eff !important; }

.bg-silvair-purple-blue-dark {
  background: #445ecc !important; }

.bg-silvair-light-blue {
  background: #cbeffa !important; }

.bg-silvair-gold {
  background: #c1a992 !important;
  color: #fff; }

.bg-silvair-green-dark {
  background: #133929 !important;
  color: #fff; }

.bg-silvair-very-light-pink-two {
  background: #f1f1f1 !important; }

.bg-silvair-white-ice {
  background: #e6faf3 !important; }

@media screen and (min-width: 576px) {
  .right-cropped-bg-silvair-mint {
    background: linear-gradient(90deg, #14d991 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-gray {
    background: linear-gradient(90deg, #f1f1f1 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-mint-dark {
    background: linear-gradient(90deg, #13cc88 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-mint-light {
    background: linear-gradient(90deg, #aef2d8 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-cool-gray-dark {
    background: linear-gradient(90deg, #6c6c69 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-warm-gray-dark {
    background: linear-gradient(90deg, #d8d7d4 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-black {
    background: linear-gradient(90deg, #000 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-cool-gray {
    background: linear-gradient(90deg, #e8e8e8, transparent 20%) !important; }
  .right-cropped-bg-silvair-cool-gray-medium {
    background: linear-gradient(90deg, #c8cacc 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-purple-blue {
    background: linear-gradient(90deg, #546eff 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-purple-blue-dark {
    background: linear-gradient(90deg, #445ecc 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-light-blue {
    background: linear-gradient(90deg, #cbeffa 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-gold {
    background: linear-gradient(90deg, #c1a992 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-green-dark {
    background: linear-gradient(90deg, #133929 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-skin {
    background: linear-gradient(90deg, #f8cdaf 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-red {
    background: linear-gradient(90deg, #e3351b 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-body {
    background: linear-gradient(90deg, #707070 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-very-light-pink-two {
    background: linear-gradient(90deg, #f1f1f1 80%, transparent 20%) !important; }
  .right-cropped-bg-silvair-brownish-grey {
    background: linear-gradient(90deg, #707070 80%, transparent 20%) !important; } }

@media screen and (min-width: 576px) {
  .left-cropped-bg-silvair-mint {
    background: linear-gradient(270deg, #14d991 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-gray {
    background: linear-gradient(270deg, #f1f1f1 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-mint-dark {
    background: linear-gradient(270deg, #13cc88 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-mint-light {
    background: linear-gradient(270deg, #aef2d8 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-cool-gray-dark {
    background: linear-gradient(270deg, #6c6c69 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-warm-gray-dark {
    background: linear-gradient(270deg, #d8d7d4 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-black {
    background: linear-gradient(270deg, #000 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-cool-gray {
    background: linear-gradient(270deg, #e8e8e8, transparent 20%) !important; }
  .left-cropped-bg-silvair-cool-gray-medium {
    background: linear-gradient(270deg, #c8cacc 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-purple-blue {
    background: linear-gradient(270deg, #546eff 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-purple-blue-dark {
    background: linear-gradient(270deg, #445ecc 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-light-blue {
    background: linear-gradient(270deg, #cbeffa 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-gold {
    background: linear-gradient(270deg, #c1a992 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-green-dark {
    background: linear-gradient(270deg, #133929 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-skin {
    background: linear-gradient(270deg, #f8cdaf 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-red {
    background: linear-gradient(270deg, #e3351b 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-body {
    background: linear-gradient(270deg, #707070 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-very-light-pink-two {
    background: linear-gradient(270deg, #f1f1f1 80%, transparent 20%) !important; }
  .left-cropped-bg-silvair-brownish-grey {
    background: linear-gradient(270deg, #707070 80%, transparent 20%) !important; } }

.breadcrumb {
  margin: 0;
  padding: 4px 0;
  background-color: #14d991;
  border-radius: 0; }
  .breadcrumb ul {
    list-style: none;
    margin: 0; }
    .breadcrumb ul li {
      display: inline-block; }
      .breadcrumb ul li a, .breadcrumb ul li span {
        color: #fff; }
      .breadcrumb ul li span.active {
        font-weight: 500; }
      .breadcrumb ul li:not(:last-of-type):after {
        content: '>';
        color: #fff;
        margin: 0 16px; }

.button-blue {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  background-color: #546eff;
  line-height: inherit; }
  .button-blue:hover {
    color: #fff;
    background-color: #445ecc;
    border-color: #445ecc; }

.button-white {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  color: #536dff;
  background-color: #fff;
  padding: 6px 20px;
  margin-bottom: 20px; }
  @media screen and (min-width: 768px) {
    .button-white {
      margin: 50px 0 0; } }
  .button-white:after {
    border-left-color: #536dff; }
  .button-white:hover {
    color: #fff;
    background-color: #536dff; }
    .button-white:hover:after {
      border-left-color: #fff; }

.button-long {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  padding: 6px 4rem !important;
  font-size: 0.8rem !important; }

.button-green, .tabs .blog-latest-entries .read-article, .section-newsletter form button {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  background-color: #14d991;
  border-color: #14d991; }
  .button-green:hover, .tabs .blog-latest-entries .read-article:hover, .section-newsletter form button:hover {
    color: #fff;
    background-color: #13cc88;
    border-color: #13cc88; }

.button-transparent, .cc-window.cc-floating .cc-btn,
.cc-window.cc-floating .cc-allow,
.cc-window.cc-floating .cc-deny,
.cc-window.cc-floating + .cc-btn,
.cc-window.cc-banner .cc-btn,
.cc-window.cc-banner .cc-allow,
.cc-window.cc-banner .cc-deny,
.cc-window.cc-banner + .cc-btn, .navbar-nav > .nav-item button {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  background-color: transparent;
  border-color: #fff;
  color: #fff; }
  .button-transparent:hover, .cc-window.cc-floating .cc-btn:hover,
  .cc-window.cc-floating .cc-allow:hover,
  .cc-window.cc-floating .cc-deny:hover,
  .cc-window.cc-floating + .cc-btn:hover,
  .cc-window.cc-banner .cc-btn:hover,
  .cc-window.cc-banner .cc-allow:hover,
  .cc-window.cc-banner .cc-deny:hover,
  .cc-window.cc-banner + .cc-btn:hover, .navbar-nav > .nav-item button:hover {
    background-color: transparent;
    color: #13cc88;
    border-color: #13cc88; }

.button-transparent-green {
  font-family: BrandonText;
  font-size: 1rem;
  font-weight: 500;
  display: inline-block;
  padding: 6px 20px;
  cursor: pointer;
  transition: 0.1s all;
  text-decoration: none;
  color: #fff;
  border: 2px solid #536dff;
  border-radius: 30px;
  text-transform: uppercase;
  background-color: transparent;
  border-color: #13cc88;
  color: #13cc88; }
  .button-transparent-green:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff; }

.button-arrow:after, .tabs .blog-latest-entries .read-article:after, .cc-window.cc-floating .cc-btn:after,
.cc-window.cc-floating .cc-allow:after,
.cc-window.cc-floating .cc-deny:after,
.cc-window.cc-floating + .cc-btn:after,
.cc-window.cc-banner .cc-btn:after,
.cc-window.cc-banner .cc-allow:after,
.cc-window.cc-banner .cc-deny:after,
.cc-window.cc-banner + .cc-btn:after, .news-item .read-article:hover:after {
  font-size: 13px;
  content: 'J';
  margin-left: 42px;
  position: relative;
  right: 0;
  transition: right 0.3s; }

.button-arrow:hover:after, .tabs .blog-latest-entries .read-article:hover:after, .cc-window.cc-floating .cc-btn:hover:after,
.cc-window.cc-floating .cc-allow:hover:after,
.cc-window.cc-floating .cc-deny:hover:after,
.cc-window.cc-floating + .cc-btn:hover:after,
.cc-window.cc-banner .cc-btn:hover:after,
.cc-window.cc-banner .cc-allow:hover:after,
.cc-window.cc-banner .cc-deny:hover:after,
.cc-window.cc-banner + .cc-btn:hover:after, .news-item .read-article:hover:after {
  right: -7px; }

.button-arrow-2:after {
  font-size: 15px;
  content: 'I';
  margin-left: 16px; }

.button-arrow-down:after {
  display: inline-block;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg); }

.button-scroll-down {
  color: #fff;
  margin: 60px 0 0;
  transition: all .4s; }
  .button-scroll-down:before {
    font-size: 55px;
    content: 'A';
    color: #fff;
    background-color: transparent;
    line-height: 61px; }
  .button-scroll-down:hover {
    color: #13cc88; }
    .button-scroll-down:hover:before {
      color: #13cc88;
      font-size: 80px;
      content: 'B';
      line-height: 36px; }

.button-facebook:after {
  content: "E";
  margin-left: 16px; }

.button-like:after {
  content: "F";
  margin-left: 16px; }

.button-linkedin:after {
  content: "G";
  margin-left: 16px; }

.button-share:after {
  content: "H";
  margin-left: 16px; }

.button-getdirection:after {
  content: "K";
  margin-left: 16px; }

.button-search:after {
  content: "L";
  margin-left: 16px; }

.button-twitter:after {
  content: "M";
  margin-left: 16px; }

.button-slider:after {
  content: "C";
  margin-left: 16px; }

.button-slider-linear:after {
  content: "D";
  margin-left: 16px; }

.indicator-arrow-green {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 40px;
  padding: 0;
  border: 0;
  transition: 0.3s;
  color: #fff;
  margin-left: 0; }
  .indicator-arrow-green:before {
    content: 'I';
    padding-left: 3px;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40;
    border-radius: 20px;
    margin-right: 10px;
    transition: 0.3s; }
  .indicator-arrow-green:hover:before {
    margin-right: 20px; }
  .indicator-arrow-green:before {
    color: #fff;
    background-color: #14d991; }
  .indicator-arrow-green:hover {
    color: #fff; }

.indicator-arrow-transparent {
  font-size: 1.2rem;
  font-weight: 500;
  margin-left: 40px;
  padding: 0;
  border: 0;
  transition: 0.3s;
  color: #fff; }
  .indicator-arrow-transparent:before {
    content: 'I';
    padding-left: 3px;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 40;
    border-radius: 20px;
    margin-right: 10px;
    transition: 0.3s; }
  .indicator-arrow-transparent:hover:before {
    margin-right: 20px; }
  .indicator-arrow-transparent:before {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    line-height: 36px; }
  .indicator-arrow-transparent:hover {
    color: #fff; }

.faq-search {
  display: -ms-flexbox;
  display: flex;
  padding: 35px; }
  @media only screen and (max-width: 767px) {
    .faq-search {
      -ms-flex-direction: column;
          flex-direction: column; } }
  @media only screen and (max-width: 767px) {
    .faq-search {
      padding: 0; } }
  .faq-search .search-field {
    width: 100%;
    margin: 30px 0;
    padding: 0 0 1px 8px;
    border: none;
    border-bottom: 2px solid #6c6c69;
    font-family: BrandonText;
    font-weight: 300;
    font-size: 1.2rem;
    transition: 0.3s;
    color: #14d991;
    width: 33%;
    border-width: 1px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgd2lkdGg9IjE2IgogICBoZWlnaHQ9IjE2IgogICBmaWxsPSJjdXJyZW50Q29sb3IiCiAgIGNsYXNzPSJiaSBiaS1zZWFyY2giCiAgIHZpZXdCb3g9IjAgMCAxNiAxNiIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnNCIKICAgc29kaXBvZGk6ZG9jbmFtZT0ic2VhcmNoLnN2ZyIKICAgaW5rc2NhcGU6dmVyc2lvbj0iMC45Mi40ICg1ZGE2ODljMzEzLCAyMDE5LTAxLTE0KSI+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhMTAiPgogICAgPHJkZjpSREY+CiAgICAgIDxjYzpXb3JrCiAgICAgICAgIHJkZjphYm91dD0iIj4KICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4KICAgICAgICA8ZGM6dHlwZQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+CiAgICAgIDwvY2M6V29yaz4KICAgIDwvcmRmOlJERj4KICA8L21ldGFkYXRhPgogIDxkZWZzCiAgICAgaWQ9ImRlZnM4IiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBwYWdlY29sb3I9IiNmZmZmZmYiCiAgICAgYm9yZGVyY29sb3I9IiM2NjY2NjYiCiAgICAgYm9yZGVyb3BhY2l0eT0iMSIKICAgICBvYmplY3R0b2xlcmFuY2U9IjEwIgogICAgIGdyaWR0b2xlcmFuY2U9IjEwIgogICAgIGd1aWRldG9sZXJhbmNlPSIxMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMDE2IgogICAgIGlkPSJuYW1lZHZpZXc2IgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSIxNC43NSIKICAgICBpbmtzY2FwZTpjeD0iLTUuNDIzNzI4OCIKICAgICBpbmtzY2FwZTpjeT0iNy43Mjg4MTM2IgogICAgIGlua3NjYXBlOndpbmRvdy14PSIwIgogICAgIGlua3NjYXBlOndpbmRvdy15PSIyNyIKICAgICBpbmtzY2FwZTp3aW5kb3ctbWF4aW1pemVkPSIxIgogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9InN2ZzQiIC8+CiAgPHBhdGgKICAgICBkPSJNMTEuNzQyIDEwLjM0NGE2LjUgNi41IDAgMSAwLTEuMzk3IDEuMzk4aC0uMDAxYy4wMy4wNC4wNjIuMDc4LjA5OC4xMTVsMy44NSAzLjg1YTEgMSAwIDAgMCAxLjQxNS0xLjQxNGwtMy44NS0zLjg1YTEuMDA3IDEuMDA3IDAgMCAwLS4xMTUtLjF6TTEyIDYuNWE1LjUgNS41IDAgMSAxLTExIDAgNS41IDUuNSAwIDAgMSAxMSAweiIKICAgICBpZD0icGF0aDIiCiAgICAgc3R5bGU9ImZpbGw6I2M4Y2FjYztmaWxsLW9wYWNpdHk6MSIgLz4KPC9zdmc+Cg==) right 0.5rem center no-repeat;
    color: #000;
    padding-bottom: .5rem;
    padding-right: 30px; }
    .faq-search .search-field:-ms-input-placeholder {
      font-size: 1rem;
      color: #6c6c69; }
    .faq-search .search-field::placeholder {
      font-size: 1rem;
      color: #6c6c69; }
    .faq-search .search-field:focus {
      color: #000;
      border-color: #14d991; }
    .faq-search .search-field.filled {
      border-color: #14d991; }
    @media screen and (min-width: 768px) {
      .faq-search .search-field {
        margin: 0; } }
    .faq-search .search-field:-ms-input-placeholder {
      font-size: 1rem; }
    .faq-search .search-field::placeholder {
      font-size: 1rem; }
    @media only screen and (max-width: 991px) {
      .faq-search .search-field {
        width: 100%; } }
    @media only screen and (max-width: 767px) {
      .faq-search .search-field {
        margin-bottom: 20px; } }
  .faq-search .search-results {
    color: #6c6c69;
    padding-left: .5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.1s;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      .faq-search .search-results {
        padding-left: 0;
        text-align: center; } }
    .faq-search .search-results:not(.hidden) {
      opacity: 1;
      pointer-events: all; }
    .faq-search .search-results > span {
      padding-left: 1rem; }
      .faq-search .search-results > span.reset {
        text-decoration: underline;
        cursor: pointer; }

#faq-no-results {
  text-align: center;
  margin: 50px 0 100px 0;
  display: none; }
  #faq-no-results.active, .collapsing-item:not(.collapsed) > p#faq-no-results:first-child {
    display: block; }
  #faq-no-results a {
    color: #13cc88; }

.section-default.filtered,
.collapsing-item.filtered {
  display: none; }

.footer {
  text-align: center;
  padding: 0; }
  @media screen and (min-width: 768px) {
    .footer {
      text-align: left; } }
  .footer-top {
    padding: 40px 0 20px;
    background-color: #ecebea; }
    .footer-top h2 {
      margin: 60px 0 40px; }
      @media screen and (min-width: 992px) {
        .footer-top h2 {
          margin: 0 0 18px; } }
      @media screen and (max-width: 992px) {
        .footer-top h2 {
          text-align: center; } }
    .footer-top h4 {
      font-size: 1rem;
      color: #6c6c69;
      margin: 30px 0 16px;
      text-transform: uppercase; }
      @media screen and (min-width: 768px) {
        .footer-top h4 {
          margin: 0 0 26px; } }
    .footer-top p {
      margin: 0;
      max-width: 100%; }
    .footer-top a {
      display: inline-block;
      margin: 4px 0;
      color: #6c6c69; }
      .footer-top a:hover {
        text-decoration: none;
        color: #000; }
    .footer-top span {
      display: block;
      text-align: center;
      margin: 0;
      padding: 0 8px;
      border-radius: 5px;
      color: #fff;
      background-color: #14d991;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase; }
      @media screen and (min-width: 1236px) {
        .footer-top span {
          display: inline-block; } }
    .footer-top .menu [class*=col-] {
      max-width: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center; }
      @media screen and (min-width: 768px) {
        .footer-top .menu [class*=col-] {
          -ms-flex-align: start;
              align-items: flex-start;
          margin-bottom: 40px; } }
    @media screen and (max-width: 575px) {
      .footer-top .menu > .row {
        display: block; }
        .footer-top .menu > .row > .col-sm-6 {
          margin-bottom: 20px; } }
    @media screen and (max-width: 992px) {
      .footer-top .col-lg-3 > h2, .footer-top .col-lg-3 h4, .footer-top .col-lg-3 p {
        text-align: center !important; }
      .footer-top .col-lg-3 > h2 {
        margin: 30px 0; }
      .footer-top .col-lg-3 > h4 {
        margin-top: 0; }
      .footer-top .col-lg-3 > .social-buttons {
        max-width: 100%;
        -ms-flex-pack: center;
            justify-content: center; }
        .footer-top .col-lg-3 > .social-buttons > a {
          margin-left: 15px;
          margin-right: 15px; } }
    @media screen and (max-width: 767px) {
      .footer-top .col-lg-3 > h2 {
        margin-top: 60px; } }
  .footer-bottom {
    padding: 6px 0;
    background-color: #000;
    color: #fff; }
    @media screen and (max-width: 992px) {
      .footer-bottom {
        text-align: center; } }
    .footer-bottom img {
      margin: 10px 0; }
      @media screen and (min-width: 992px) {
        .footer-bottom img {
          margin: 0; } }
    .footer-bottom .copyright {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      margin: 10px 0;
      font-size: 0.8rem; }
      @media screen and (min-width: 992px) {
        .footer-bottom .copyright {
          -ms-flex-pack: end;
              justify-content: flex-end;
          margin: 0; } }
      .footer-bottom .copyright p {
        margin: 0; }

.social-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  max-width: 370px;
  width: 100%;
  margin: 0 auto;
  -ms-flex-pack: distribute;
      justify-content: space-around; }
  @media screen and (min-width: 420px) {
    .social-buttons {
      -ms-flex-pack: end;
          justify-content: flex-end; }
      .social-buttons a {
        margin: 0 0 26px 30px; } }
  .social-buttons a {
    display: block;
    margin-bottom: 30px;
    /*
            These styles will be simplified when we'll get svg icons
        */ }
    .social-buttons a svg path:first-of-type {
      fill: none;
      stroke: #6c6c69; }
    .social-buttons a svg path:last-of-type {
      fill: #6c6c69;
      stroke: #6c6c69; }
    .social-buttons a svg:hover path:first-of-type {
      stroke: #000; }
    .social-buttons a svg:hover path:last-of-type {
      fill: #000;
      stroke: #000; }
    .social-buttons a:last-of-type svg path:first-of-type {
      fill: #6c6c69;
      stroke: #6c6c69; }
    .social-buttons a:last-of-type svg path:last-of-type {
      fill: none;
      stroke: #6c6c69; }
    .social-buttons a:last-of-type svg:hover path:first-of-type {
      fill: #000;
      stroke: #000; }
    .social-buttons a:last-of-type svg:hover path:last-of-type {
      fill: none;
      stroke: #000; }

.navbar-container {
  padding-bottom: 86px;
  background-color: #fff; }

.navbar-holder {
  transition: 0.3s all; }
  .navbar-holder-overlay, .navbar-holder-expanded {
    background-color: rgba(0, 0, 0, 0.7); }

.navbar {
  background-color: transparent;
  padding-right: 0.5rem;
  padding-left: 0.5rem; }
  @media screen and (min-width: 768px) {
    .navbar {
      padding-right: 1rem;
      padding-left: 1rem; } }
  .navbar-white {
    background-color: #fff;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1); }
    .navbar-white .navbar-brand svg path {
      fill: #000; }
    .navbar-white .navbar-brand img {
      filter: brightness(0); }
    .navbar-white .navbar-nav .nav-item .nav-link,
    .navbar-white .navbar-nav .nav-item p,
    .navbar-white .navbar-nav .nav-item .dropdown-item {
      color: #6c6c69 !important; }
    .navbar-white .navbar-nav .nav-item button {
      color: #6c6c69;
      border-color: #6c6c69; }
      .navbar-white .navbar-nav .nav-item button:hover {
        color: #14d991;
        border-color: #14d991; }
    @media screen and (min-width: 992px) {
      .navbar-white .navbar-nav .nav-item .nav-link:hover {
        color: #000; } }
    .navbar-white .navbar-nav .nav-item.active.language .nav-link, .navbar-white .navbar-nav .collapsing-item:not(.collapsed) > p.nav-item.language:first-child .nav-link {
      color: #14d991; }
    @media screen and (min-width: 992px) {
      .navbar-white .navbar-nav .nav-item .dropdown-menu {
        background-color: #fff; }
        .navbar-white .navbar-nav .nav-item .dropdown-menu .dropdown-item {
          color: #6c6c69; }
          .navbar-white .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
            color: #000; } }
    .navbar-white .navbar-toggler-icon {
      background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMyIDMyOyIgdmVyc2lvbj0iMS4xIiB2aWV3Qm94PSIwIDAgMzIgMzIiIHdpZHRoPSIzMnB4IiB4bWw6c3BhY2U9InByZXNlcnZlIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj48cGF0aCBkPSJNNCwxMGgyNGMxLjEwNCwwLDItMC44OTYsMi0ycy0wLjg5Ni0yLTItMkg0QzIuODk2LDYsMiw2Ljg5NiwyLDhTMi44OTYsMTAsNCwxMHogTTI4LDE0SDRjLTEuMTA0LDAtMiwwLjg5Ni0yLDIgIHMwLjg5NiwyLDIsMmgyNGMxLjEwNCwwLDItMC44OTYsMi0yUzI5LjEwNCwxNCwyOCwxNHogTTI4LDIySDRjLTEuMTA0LDAtMiwwLjg5Ni0yLDJzMC44OTYsMiwyLDJoMjRjMS4xMDQsMCwyLTAuODk2LDItMiAgUzI5LjEwNCwyMiwyOCwyMnoiLz48L3N2Zz4=); }
  .navbar-toggler-icon {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvR3JhcGhpY3MvU1ZHLzEuMS9EVEQvc3ZnMTEuZHRkJz48c3ZnIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIGZpbGw9IndoaXRlIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCAzMiAzMjsiIHZlcnNpb249IjEuMSIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzJweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggZD0iTTQsMTBoMjRjMS4xMDQsMCwyLTAuODk2LDItMnMtMC44OTYtMi0yLTJINEMyLjg5Niw2LDIsNi44OTYsMiw4UzIuODk2LDEwLDQsMTB6IE0yOCwxNEg0Yy0xLjEwNCwwLTIsMC44OTYtMiwyICBzMC44OTYsMiwyLDJoMjRjMS4xMDQsMCwyLTAuODk2LDItMlMyOS4xMDQsMTQsMjgsMTR6IE0yOCwyMkg0Yy0xLjEwNCwwLTIsMC44OTYtMiwyczAuODk2LDIsMiwyaDI0YzEuMTA0LDAsMi0wLjg5NiwyLTIgIFMyOS4xMDQsMjIsMjgsMjJ6Ii8+PC9zdmc+);
    cursor: pointer; }
  .navbar .navbar-brand {
    margin: 0; }

.navbar-nav {
  text-align: center; }
  @media screen and (max-width: 768px) {
    .navbar-nav .navbar-brand {
      padding: 0; } }
  .navbar-nav > .nav-item {
    position: relative;
    margin: 4px 18px; }
    @media screen and (min-width: 1200px) {
      .navbar-nav > .nav-item {
        margin: 14px 26px 14px 20px; } }
    @media screen and (min-width: 992px) {
      .navbar-nav > .nav-item {
        margin: 4px 7px;
        text-align: center; }
        .navbar-nav > .nav-item:hover > .dropdown-menu {
          -ms-transform: scaleY(1);
              transform: scaleY(1); } }
    .navbar-nav > .nav-item .nav-link {
      color: #fff;
      transition: 0.1s all;
      padding-left: 0;
      padding-right: 0; }
      @media screen and (min-width: 1200px) {
        .navbar-nav > .nav-item .nav-link {
          padding-left: 0.5rem;
          padding-right: 0.5rem; } }
      .navbar-nav > .nav-item .nav-link:hover {
        text-shadow: 0 0 1px #fff; }
      .navbar-nav > .nav-item .nav-link.dropdown-toggle:after {
        transition: 0.3s all; }
        @media screen and (min-width: 992px) {
          .navbar-nav > .nav-item .nav-link.dropdown-toggle:after {
            margin: 0;
            border: none; } }
      .navbar-nav > .nav-item .nav-link.dropdown-toggle[aria-expanded='true']:after {
        -ms-transform: rotate(-180deg);
            transform: rotate(-180deg); }
    .navbar-nav > .nav-item button {
      margin-top: 4px;
      padding-left: 20px;
      padding-right: 20px;
      border-width: 1px;
      color: #14d991;
      border-color: #14d991; }
      @media screen and (min-width: 1200px) {
        .navbar-nav > .nav-item button {
          padding-left: 40px;
          padding-right: 40px; } }
    .navbar-nav > .nav-item p {
      color: #fff;
      padding: 0.5rem 0;
      margin: 0;
      cursor: default; }
    .navbar-nav > .nav-item .dropdown-menu {
      background-color: transparent;
      border: none;
      padding: 0;
      margin: 0;
      display: block;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      text-align: center; }
      .navbar-nav > .nav-item .dropdown-menu.show {
        transition: max-height 0.6s ease-in-out;
        max-height: 1000px;
        margin-bottom: 20px; }
      .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
        color: #fff;
        font-weight: 300;
        white-space: normal; }
        .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover {
          background-color: transparent; }
      @media screen and (min-width: 992px) {
        .navbar-nav > .nav-item .dropdown-menu {
          list-style: none;
          transition: 0.3s;
          border-bottom-left-radius: 4px;
          border-bottom-right-radius: 4px;
          display: block;
          text-align: center;
          padding: 10px 0 0;
          width: calc(100% + 120px);
          left: -60px;
          -ms-transform: scaleY(0);
              transform: scaleY(0);
          -ms-transform-origin: top;
              transform-origin: top;
          position: absolute;
          max-height: none;
          padding: 5px 10px 8px 10px;
          background-color: rgba(0, 0, 0, 0.7); }
          .navbar-nav > .nav-item .dropdown-menu .dropdown-item {
            padding: 8px 10px;
            color: #fff;
            line-height: 1.4; }
            .navbar-nav > .nav-item .dropdown-menu .dropdown-item:hover {
              color: #fff;
              text-shadow: 0 0 1px #fff;
              background-color: transparent; }
            .navbar-nav > .nav-item .dropdown-menu .dropdown-item:active, .navbar-nav > .nav-item .dropdown-menu .dropdown-item:visited, .navbar-nav > .nav-item .dropdown-menu .dropdown-item:focus {
              background-color: transparent; } }
  .navbar-nav .nav-item.active > a, .navbar-nav .collapsing-item:not(.collapsed) > p.nav-item:first-child > a,
  .navbar-nav .nav-item.ancestor > a,
  .navbar-nav .nav-item.ancestor > p {
    font-weight: 500; }
  @media screen and (max-width: 991px) {
    .navbar-nav {
      max-height: calc(100vh - (60px + 1.625em));
      overflow: auto; }
      .navbar-nav .login-button {
        margin-top: 20px; }
      .navbar-nav .language {
        margin-left: 0;
        margin-top: 20px; }
        .navbar-nav .language:last-child {
          margin-top: 0;
          margin-bottom: 20px; } }
  .navbar-nav .language {
    margin-right: 0; }
    .navbar-nav .language .nav-link {
      padding-left: 0;
      padding-right: 0; }
    .navbar-nav .language.active .nav-link, .navbar-nav .collapsing-item:not(.collapsed) > p.language:first-child .nav-link {
      color: #14d991; }

.headroom {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  will-change: transform, opacity; }

.eu-bar {
  height: 50px;
  z-index: 1031;
  position: relative;
  top: 0;
  margin: 0 auto;
  max-width: 1600px; }

.section-blog {
  margin-bottom: 40px;
  padding: 0; }
  .section-blog .blog-archive {
    list-style: none;
    padding: 0;
    margin: 40px 0 0; }
    .section-blog .blog-archive li {
      display: inline-block;
      margin-right: 40px; }
      .section-blog .blog-archive li a {
        color: #6c6c69; }
        .section-blog .blog-archive li a:hover {
          color: #000; }
        .section-blog .blog-archive li a.active {
          font-weight: 500; }
  .section-blog .post-search {
    height: 64px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
        align-items: flex-end; }
    .section-blog .post-search input {
      width: 100%;
      margin: 30px 0;
      padding: 0 0 1px 8px;
      border: none;
      border-bottom: 2px solid #6c6c69;
      font-family: BrandonText;
      font-weight: 300;
      font-size: 1.2rem;
      transition: 0.3s;
      color: #14d991;
      border-width: 1px;
      text-align: right; }
      .section-blog .post-search input:-ms-input-placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .section-blog .post-search input::placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .section-blog .post-search input:focus {
        color: #000;
        border-color: #14d991; }
      .section-blog .post-search input.filled {
        border-color: #14d991; }
      @media screen and (min-width: 768px) {
        .section-blog .post-search input {
          margin: 0; } }
      .section-blog .post-search input:-ms-input-placeholder {
        font-size: 1rem;
        text-align: right; }
      .section-blog .post-search input::placeholder {
        font-size: 1rem;
        text-align: right; }
  .section-blog .tab-content {
    height: 100%; }
  .section-blog .tabs {
    position: relative;
    min-height: initial;
    max-height: 40vh;
    height: 40vh;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto; }
    .section-blog .tabs:before {
      content: '';
      z-index: 1; }
    .section-blog .tabs .nav {
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      position: absolute;
      z-index: 3;
      right: 5vw;
      top: 0;
      bottom: 0;
      border-bottom: none; }
      .section-blog .tabs .nav a {
        display: block;
        width: 17px;
        height: 17px;
        margin: 14px;
        color: transparent;
        background-color: transparent;
        border-radius: 12px;
        border: 2px solid #14d991;
        transition: 0.3s; }
        .section-blog .tabs .nav a.active {
          border-color: #fff; }
        .section-blog .tabs .nav a:hover {
          border-color: #fff; }
    .section-blog .tabs.vertical {
      min-height: 400px; }
      .section-blog .tabs.vertical .nav {
        -ms-flex-align: end;
            align-items: flex-end; }
      .section-blog .tabs.vertical .tab-pane {
        min-height: 400px; }
    .section-blog .tabs .tab-pane {
      position: relative;
      overflow: hidden;
      min-height: initial;
      max-height: 40vh;
      height: 40vh; }
      .section-blog .tabs .tab-pane article {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        max-height: 40vh;
        height: 40vh; }
    .section-blog .tabs .tab-content {
      overflow: hidden;
      width: 100%; }
      .section-blog .tabs .tab-content header {
        position: absolute;
        z-index: 2;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        padding: 0 10vw 0 15vw;
        text-align: left;
        -ms-flex-pack: center;
            justify-content: center; }
        @media screen and (max-width: 576px) {
          .section-blog .tabs .tab-content header {
            padding: 0 15vw 0 5vw; } }
      .section-blog .tabs .tab-content img {
        min-height: 100%;
        min-width: 100%;
        left: 50%;
        top: 50%;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        position: absolute; }
      .section-blog .tabs .tab-content h3 {
        color: #fff;
        font-size: 1.8rem;
        text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
        line-height: 60px; }
        @media screen and (min-width: 768px) {
          .section-blog .tabs .tab-content h3 {
            font-size: 2.7rem; } }
        @media screen and (min-width: 992px) {
          .section-blog .tabs .tab-content h3 {
            font-size: 3.4rem; } }
      .section-blog .tabs .tab-content .read-article {
        display: block;
        position: absolute;
        padding: 2px 8px;
        bottom: 50px;
        font-size: 0.8rem; }
        @media screen and (min-width: 768px) {
          .section-blog .tabs .tab-content .read-article {
            padding: 8px 15px;
            font-size: 1rem; } }
  .section-blog section.tiles {
    margin: 0 0 50px;
    padding-top: 0; }
    .section-blog section.tiles .row {
      -ms-flex-pack: start;
          justify-content: flex-start; }
      .section-blog section.tiles .row > [class*='col-'] {
        display: -ms-flexbox;
        display: flex; }
    .section-blog section.tiles .tile {
      transition: 0.3s; }
      .section-blog section.tiles .tile:hover {
        box-shadow: 0 5px 45px 0 rgba(0, 0, 0, 0.25); }
    .section-blog section.tiles [class*='col-'] {
      padding: 10px; }
      .section-blog section.tiles [class*='col-'].post-hidden {
        display: none; }
    .section-blog section.tiles .load-more {
      display: block;
      margin: 50px auto 0; }
    .section-blog section.tiles .first-post .tile .img {
      max-height: 380px; }
    .section-blog section.tiles .tile {
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
      min-height: 100%;
      margin: 0;
      padding: 0; }
      .section-blog section.tiles .tile .img {
        max-height: 190px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center;
        overflow: hidden; }
      .section-blog section.tiles .tile p {
        margin: 0; }
      .section-blog section.tiles .tile .content {
        padding: 16px 28px 28px; }
        .section-blog section.tiles .tile .content h2 {
          font-size: 1.2rem; }
        .section-blog section.tiles .tile .content h3 > a {
          font-weight: 700;
          margin: 0 0 20px; }
          .section-blog section.tiles .tile .content h3 > a.title {
            display: inline-block;
            color: #000;
            font-size: 1.5rem; }
        .section-blog section.tiles .tile .content p {
          margin-bottom: 20px;
          color: #000;
          font-size: 1rem; }
          .section-blog section.tiles .tile .content p a {
            display: inline-block;
            font-size: 1rem;
            font-weight: 300;
            margin: 0; }
      .section-blog section.tiles .tile:hover .content .title {
        color: #14d991; }
        .section-blog section.tiles .tile:hover .content .title:hover {
          color: #13cc88; }
  .section-blog ul.posts-categories {
    list-style: none;
    font-weight: 700;
    margin-bottom: 6px;
    padding: 0; }
    .section-blog ul.posts-categories > li {
      display: inline-block;
      color: #14d991;
      margin-right: 10px; }
      .section-blog ul.posts-categories > li:not(:last-of-type):after {
        content: ',';
        display: inline-block; }
      .section-blog ul.posts-categories > li > a {
        display: inline-block;
        margin: 0;
        font-size: 1rem; }

.blog-post-info span {
  font-weight: 500; }
  .blog-post-info span.read-time {
    color: #6c6c69; }
    .blog-post-info span.read-time:before {
      content: '\2022';
      margin-left: 5px; }

.blog-advertisement-placeholder {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }

.section-blog-advertisement {
  display: none; }
  .section-blog-advertisement .blog-advertisement-hover-view {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    cursor: pointer; }
    @media screen and (max-width: 768px) {
      .section-blog-advertisement .blog-advertisement-hover-view {
        opacity: 1; } }
    .section-blog-advertisement .blog-advertisement-hover-view span {
      text-align: center;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      width: 156px;
      height: 156px;
      padding: 0 10px;
      border-radius: 78px;
      border: 2px solid #fff;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      z-index: 5;
      transition: 0.3s; }
      .section-blog-advertisement .blog-advertisement-hover-view span:hover {
        border: 2px solid #14d991;
        color: #14d991; }
  .section-blog-advertisement:hover .blog-advertisement-hover-view {
    opacity: 1; }

.section-post-detail a {
  color: #14d991; }

.section-post-detail .post-sidebar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center; }
  .section-post-detail .post-sidebar .fixed-section {
    margin: 0; }
    @media screen and (min-width: 768px) {
      .section-post-detail .post-sidebar .fixed-section {
        margin: 70px 0px; }
        .section-post-detail .post-sidebar .fixed-section.fixed {
          position: fixed;
          top: 200px; }
        .section-post-detail .post-sidebar .fixed-section.stick-bottom {
          position: absolute;
          bottom: -36px; } }
    .section-post-detail .post-sidebar .fixed-section h5 {
      font-size: 1rem;
      font-weight: 700; }
    .section-post-detail .post-sidebar .fixed-section .social-buttons {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      margin-top: 30px; }

.section-post-detail .post-header-image {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  overflow: hidden;
  position: relative;
  max-height: 40vh;
  height: 40vh; }
  .section-post-detail .post-header-image img {
    width: 100%; }

.section-post-detail .post-item {
  margin: 70px 0; }
  .section-post-detail .post-item h2 {
    font-size: 2.7rem;
    margin-top: 20px; }
  .section-post-detail .post-item h3 {
    font-size: 2.7rem;
    font-weight: 700;
    margin: 30px 0; }
  .section-post-detail .post-item .blog-post-info {
    margin: 24px 0 40px; }
  .section-post-detail .post-item .blog-content h2 {
    font-size: 1.2rem;
    margin: 40px 0 26px; }
  .section-post-detail .post-item .blog-content img {
    max-width: 100%;
    height: auto; }
  .section-post-detail .post-item .blog-content div {
    border: none !important;
    background: none !important;
    color: #14d991;
    margin: 20px 0 20px 20px;
    font-size: 1.2rem;
    font-weight: 700; }
  .section-post-detail .post-item .h-line {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #6c6c69; }

.col-md-11 h2 {
  font-size: 2.7rem;
  line-height: 3.4rem;
  margin: 100px 0 60px; }

.forms {
  box-shadow: 0 5px 45px 0 rgba(0, 0, 0, 0.25);
  background-color: #fff;
  padding: 30px;
  margin-bottom: 60px; }
  .forms .row {
    margin-right: -15px;
    margin-left: -15px; }
  .forms .field-wrapper {
    position: relative;
    margin: 16px 0; }
    .forms .field-wrapper .input-wrapper {
      border: 1px solid #6c6c69;
      border-radius: 30px;
      padding: 6px; }
      .forms .field-wrapper .input-wrapper input {
        border: none;
        padding-left: 8px; }
      .forms .field-wrapper .input-wrapper + .optional {
        -ms-transform: translateY(50%);
            transform: translateY(50%);
        right: 14px;
        line-height: 1.2rem; }
    .forms .field-wrapper input {
      width: 100%;
      margin: 30px 0;
      padding: 0 0 1px 8px;
      border: none;
      border-bottom: 2px solid #6c6c69;
      font-family: BrandonText;
      font-weight: 300;
      font-size: 1.2rem;
      transition: 0.3s;
      color: #14d991;
      position: relative;
      background-color: transparent;
      border-width: 1px;
      margin: 0; }
      .forms .field-wrapper input:-ms-input-placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .forms .field-wrapper input::placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .forms .field-wrapper input:focus {
        color: #000;
        border-color: #14d991; }
      .forms .field-wrapper input.filled {
        border-color: #14d991; }
      @media screen and (min-width: 768px) {
        .forms .field-wrapper input {
          margin: 0; } }
      .forms .field-wrapper input:focus + .optional {
        color: #fff; }
    .forms .field-wrapper select {
      width: 100%;
      border: 1px solid #6c6c69;
      border-radius: 30px;
      outline: 0;
      padding: 9px 14px;
      font-family: BrandonText;
      font-weight: 300;
      font-size: 1rem;
      color: #14d991;
      background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CgogPGc+CiAgPHRpdGxlPmJhY2tncm91bmQ8L3RpdGxlPgogIDxyZWN0IGZpbGw9Im5vbmUiIGlkPSJjYW52YXNfYmFja2dyb3VuZCIgaGVpZ2h0PSIxOCIgd2lkdGg9IjE4IiB5PSItMSIgeD0iLTEiLz4KIDwvZz4KIDxnPgogIDx0aXRsZT5MYXllciAxPC90aXRsZT4KICA8cGF0aCBzdHJva2U9Im51bGwiIGlkPSJzdmdfMSIgZmlsbD0iIzUxNTE1MSIgZD0ibTcuMDMxOTM1LDExLjgxNDA4OWwtNS4zODA2MzIsLTUuMzgwNjMyYy0wLjQ5MzQzNSwtMC40OTM0MzUgLTAuNDkzNDM1LC0xLjMwMDY3IDAsLTEuNzkzNTQ0bDAuNDQ5MDg4LC0wLjQ0OTY0OWMwLjQ5MjMxMiwtMC40OTI4NzQgMS4zMDAxMDksLTAuNDkyODc0IDEuNzkyOTgzLDBsNC4xMDYzNDYsNC4xMDYzNDZsNC4xMDY5MDcsLTQuMTA2MzQ2YzAuNDkyODc0LC0wLjQ5Mjg3NCAxLjMwMDY3LC0wLjQ5Mjg3NCAxLjc5Mjk4MywwbDAuNDQ5MDg4LDAuNDQ5NjQ5YzAuNDkzNDM1LDAuNDkyODc0IDAuNDkzNDM1LDEuMzAwMTA5IDAsMS43OTM1NDRsLTUuMzgxNzU1LDUuMzgwNjMyYy0wLjI2NDQsMC4yNjQ5NjIgLTAuNjE5NzQxLDAuMzgyODQ3IC0wLjk2NzIyMywwLjM2MzJjLTAuMzQ3NDgyLDAuMDE5NjQ4IC0wLjcwMjI2MSwtMC4wOTgyMzggLTAuOTY3Nzg0LC0wLjM2MzJ6Ii8+CiA8L2c+Cjwvc3ZnPgo=) right 14px center no-repeat;
      -webkit-appearance: none; }
      .forms .field-wrapper select:invalid {
        color: #6c6c69; }
      .forms .field-wrapper select option {
        font-weight: 300; }
        .forms .field-wrapper select option:disabled {
          display: none; }
        .forms .field-wrapper select option:not(:disabled) {
          color: #000; }
    .forms .field-wrapper.textarea {
      margin-top: 26px; }
    .forms .field-wrapper textarea {
      width: 100%;
      resize: none;
      border: 0;
      border-bottom: 2px solid transparent;
      outline: 0;
      padding: 6px;
      color: #6c6c69;
      background-color: rgba(0, 0, 0, 0.1);
      transition: 0.3s;
      border-radius: 8px; }
      .forms .field-wrapper textarea:focus {
        border-bottom-color: #14d991; }
    .forms .field-wrapper .help-text {
      font-size: 1rem;
      color: #6c6c69;
      margin: 0 0 3px 8px; }
    .forms .field-wrapper .optional {
      position: absolute;
      height: 20px;
      top: 0;
      right: 0;
      transition: 0.3s;
      font-size: 1rem;
      color: #6c6c69; }
    .forms .field-wrapper .errorlist {
      list-style: none; }
      .forms .field-wrapper .errorlist li {
        position: absolute;
        top: 40px;
        left: 8px;
        font-size: 0.8rem;
        color: #e3351b; }
    .forms .field-wrapper.checkboxinput {
      padding-bottom: 15px; }
      .forms .field-wrapper.checkboxinput input {
        border: 0; }
      .forms .field-wrapper.checkboxinput.error label > span {
        border: 1px solid #e3351b; }
  .forms .resource-link {
    margin: 0 auto; }
  .forms .form-button {
    width: 100%;
    font-size: 1.2rem; }

.section-default .forms .row {
  padding-bottom: 0; }

.section-default .forms .col-lg-6 {
  -ms-flex: 0 0 100%;
      flex: 0 0 100%;
  max-width: 100%; }

.section-default .forms .button-wrapper {
  padding-top: 20px; }

.section-contact-tiles img {
  max-width: 100%;
  height: auto; }

.section-contact-tiles h1 {
  font-size: 2.7rem;
  margin-bottom: 60px; }

.section-contact-tiles h2 {
  font-size: 2.7rem;
  line-height: 3.4rem;
  margin: 0; }

.section-contact-tiles .row:first-of-type [class*=col-] {
  margin-bottom: 60px; }
  @media screen and (min-width: 768px) {
    .section-contact-tiles .row:first-of-type [class*=col-] {
      padding-right: 3rem;
      padding-left: 3rem; } }

.section-contact-tiles .row:first-of-type h2 {
  font-size: 1.8rem;
  margin: 30px 0 12px; }

.section-contact-tiles .row:first-of-type p {
  margin-bottom: 60px;
  color: #000; }

.section-contact-tiles .row:first-of-type a {
  position: absolute;
  bottom: 0;
  color: #000;
  font-size: 1.2rem;
  font-weight: 700; }
  .section-contact-tiles .row:first-of-type a.btn {
    position: static; }
  .section-contact-tiles .row:first-of-type a:hover {
    color: #14d991; }

.section-contact-tiles .row:last-of-type [class*=col-] {
  margin-bottom: 60px; }

.section-contact-tiles .row:last-of-type .container {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  font-size: 1.2rem; }
  .section-contact-tiles .row:last-of-type .container p {
    color: #fff;
    margin: 0; }
    .section-contact-tiles .row:last-of-type .container p:first-of-type {
      margin-bottom: 24px; }
  .section-contact-tiles .row:last-of-type .container a {
    position: absolute;
    bottom: 0;
    font-size: 1rem; }

.section-contact-us {
  padding-bottom: 40px;
  text-align: center; }
  .section-contact-us h5 {
    font-size: 1.2rem;
    margin: 22px 0; }

.plain-background-first-variation {
  margin-top: 2rem;
  height: 39rem;
  position: absolute;
  right: 3.25rem;
  display: none;
  max-width: none;
  background: #f1f1f1;
  width: 75vw;
  margin-right: auto; }
  @media screen and (min-width: 992px) {
    .plain-background-first-variation {
      display: initial; } }
  @media screen and (min-width: 1200px) {
    .plain-background-first-variation {
      height: 45rem; } }

.plain-background-second-variation {
  margin-top: -3rem;
  height: 39rem;
  position: absolute;
  right: 3.25rem;
  display: none;
  max-width: none;
  background: #f1f1f1;
  width: 63vw;
  margin-right: auto; }
  @media screen and (min-width: 992px) {
    .plain-background-second-variation {
      display: initial; } }
  @media screen and (min-width: 1200px) {
    .plain-background-second-variation {
      height: 45rem; } }

.plain-background-third-variation {
  margin-top: 2rem;
  height: 39rem;
  position: absolute;
  left: 3.25rem;
  display: none;
  max-width: none;
  background: #f1f1f1;
  width: 75vw;
  margin-right: auto;
  padding: 0; }
  @media screen and (min-width: 992px) {
    .plain-background-third-variation {
      display: initial; } }
  @media screen and (min-width: 1200px) {
    .plain-background-third-variation {
      height: 45rem; } }

.plain-background-fourth-variation {
  margin-top: -3rem;
  height: 39rem;
  position: absolute;
  left: 3.25rem;
  max-width: none;
  display: none;
  background: #f1f1f1;
  margin-right: auto;
  width: 63vw;
  padding: 0; }
  @media screen and (min-width: 992px) {
    .plain-background-fourth-variation {
      display: initial; } }
  @media screen and (min-width: 1200px) {
    .plain-background-fourth-variation {
      height: 45rem; } }

.first-variation {
  padding: 0 !important;
  max-width: 1280px !important;
  position: relative;
  margin-top: 2rem;
  margin-bottom: 15rem;
  margin-right: -15px !important;
  margin-left: -15px !important; }
  @media screen and (min-width: 992px) {
    .first-variation {
      margin-right: 3rem !important;
      margin-left: 3rem !important; } }
  @media screen and (min-width: 1400px) {
    .first-variation {
      -ms-flex-direction: initial;
          flex-direction: initial;
      margin-right: auto !important;
      margin-left: auto !important; } }
  .first-variation .columns-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin: 0 -35px;
    background: #f1f1f1;
    padding-bottom: 0 !important; }
    @media screen and (min-width: 992px) {
      .first-variation .columns-wrapper {
        background: initial;
        margin: 0;
        -ms-flex-direction: initial;
            flex-direction: initial; } }
  .first-variation .text-wrapper {
    padding: 2rem 3rem !important;
    margin-right: 0 !important; }
    @media screen and (min-width: 576px) {
      .first-variation .text-wrapper {
        padding: 2rem 6rem !important; } }
    @media screen and (min-width: 992px) {
      .first-variation .text-wrapper {
        display: initial; } }
    .first-variation .text-wrapper :first-child {
      margin-top: 2rem !important; }
    .first-variation .text-wrapper h3 {
      color: #707070;
      margin: 0 !important; }
  .first-variation .plain-background {
    margin-top: 2rem;
    height: 43rem;
    position: absolute;
    right: 0;
    display: none;
    max-width: none;
    background: #f1f1f1;
    width: 100%;
    margin-right: auto; }
    @media screen and (min-width: 992px) {
      .first-variation .plain-background {
        display: initial; } }
    @media screen and (min-width: 1200px) {
      .first-variation .plain-background {
        height: 50rem; } }
  .first-variation figure {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: auto; }
    @media screen and (min-width: 576px) {
      .first-variation figure {
        padding-left: 4rem;
        padding-right: 4rem; } }
    @media screen and (min-width: 992px) {
      .first-variation figure {
        padding: initial;
        margin-left: 0;
        margin-right: 35px; } }
  .first-variation img {
    margin-top: 10rem;
    max-height: 30rem; }
    @media screen and (min-width: 992px) {
      .first-variation img {
        width: 720px;
        height: 480px;
        max-height: auto;
        display: initial; } }
  .first-variation p,
  .first-variation h2 {
    margin: 0.5rem 0 !important; }
  .first-variation h2 {
    margin-top: 0 !important; }
    @media screen and (min-width: 992px) {
      .first-variation h2 {
        margin-top: 4rem !important; } }
  .first-variation .link-wrapper {
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 1rem;
    padding-bottom: 2rem !important;
    position: absolute;
    max-width: calc(100vw - 24px);
    bottom: -12.5rem;
    animation-duration: 0.2s;
    opacity: 1 !important; }
    @media screen and (min-width: 576px) {
      .first-variation .link-wrapper {
        max-width: 30rem;
        bottom: -8.5rem; } }
    @media screen and (min-width: 992px) {
      .first-variation .link-wrapper {
        max-width: 34rem;
        left: 33%;
        right: initial;
        bottom: -4.5rem; } }
    @media screen and (min-width: 1200px) {
      .first-variation .link-wrapper {
        left: 43%; } }
    .first-variation .link-wrapper :first-child {
      margin-top: 2rem;
      text-align: center;
      display: inline-block;
      max-width: 16rem; }
    .first-variation .link-wrapper a {
      color: black;
      margin: 0 !important; }
    .first-variation .link-wrapper p {
      margin: 0; }
  .first-variation img {
    width: 100%;
    margin: 0; }
    @media screen and (min-width: 992px) {
      .first-variation img {
        margin-top: 10rem; } }

.second-variation {
  padding: 0 !important;
  max-width: 1280px !important;
  position: relative;
  background: linear-gradient(0deg, white 50%, #f1f1f1 50%);
  margin: 0 -35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 3rem;
  margin-bottom: 5rem;
  margin-right: -15px !important;
  margin-left: -15px !important; }
  @media screen and (min-width: 992px) {
    .second-variation {
      -ms-flex-direction: initial;
          flex-direction: initial;
      padding: 0 3rem !important;
      background: initial; } }
  @media screen and (min-width: 992px) {
    .second-variation {
      margin-right: 3rem !important;
      margin-left: 3rem !important; } }
  @media screen and (min-width: 1400px) {
    .second-variation {
      -ms-flex-direction: initial;
          flex-direction: initial;
      margin-right: auto !important;
      margin-left: auto !important; } }
  .second-variation .columns-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin: 0;
    margin-bottom: 10rem; }
    @media screen and (min-width: 992px) {
      .second-variation .columns-wrapper {
        background: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
        margin-bottom: 0;
        margin: 0 2rem; } }
  .second-variation .text-wrapper {
    padding: 1rem 1rem !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center; }
    @media screen and (min-width: 576px) {
      .second-variation .text-wrapper {
        -ms-flex-align: center;
            align-items: center;
        padding: 2rem 0 !important; } }
    @media screen and (min-width: 992px) {
      .second-variation .text-wrapper {
        display: initial; } }
    .second-variation .text-wrapper :first-child {
      margin-top: 2rem !important; }
    .second-variation .text-wrapper h3 {
      color: #707070;
      margin: 0 !important; }
  .second-variation .plain-background {
    margin-top: 2rem;
    height: 50rem;
    position: absolute;
    right: -19rem;
    display: none;
    background: #f1f1f1;
    height: 46rem !important;
    width: 80%; }
    @media screen and (min-width: 992px) {
      .second-variation .plain-background {
        display: initial; } }
  .second-variation img {
    width: auto !important;
    height: auto !important; }
    @media screen and (min-width: 992px) {
      .second-variation img {
        margin-top: 6rem !important;
        width: 500px !important;
        height: 750px !important;
        margin-top: 0 !important; } }
  .second-variation img {
    width: calc(100vw - 2rem) !important;
    margin: 0;
    display: initial !important;
    height: auto; }
    @media screen and (min-width: 576px) {
      .second-variation img {
        width: 500px !important;
        height: 750px !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-align: center !important;
            align-items: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; } }
  .second-variation p,
  .second-variation h2,
  .second-variation h3 {
    margin: 0.5rem 0 !important;
    width: initial; }
    @media screen and (min-width: 576px) {
      .second-variation p,
      .second-variation h2,
      .second-variation h3 {
        width: 500px; } }
    @media screen and (min-width: 992px) {
      .second-variation p,
      .second-variation h2,
      .second-variation h3 {
        width: auto; } }
  .second-variation h2 {
    margin-top: 0 !important; }
    @media screen and (min-width: 992px) {
      .second-variation h2 {
        margin-top: 4rem !important; } }
  .second-variation .link-wrapper {
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 2rem !important;
    position: absolute;
    padding: 0;
    bottom: 0.5rem;
    width: calc(100vw - 2rem);
    animation-duration: 0.2s;
    opacity: 1 !important; }
    @media screen and (min-width: 576px) {
      .second-variation .link-wrapper {
        padding: 2rem;
        width: 500px; } }
    @media screen and (min-width: 992px) {
      .second-variation .link-wrapper {
        left: 43%;
        right: initial;
        bottom: 9rem; } }
    .second-variation .link-wrapper :first-child {
      margin-top: 2rem;
      text-align: center;
      display: inline-block;
      width: 16rem; }
    .second-variation .link-wrapper a {
      color: black;
      margin: 0 !important; }
    .second-variation .link-wrapper p {
      margin: 0;
      text-align: center;
      width: auto; }

.third-variation {
  padding: 0 !important;
  max-width: 1280px !important;
  position: relative;
  margin-top: 14rem;
  margin-bottom: 17rem; }
  @media screen and (min-width: 992px) {
    .third-variation {
      -ms-flex-direction: initial;
          flex-direction: initial;
      padding: 0 3rem !important; } }
  .third-variation .columns-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin: 0 -35px;
    background: #f1f1f1; }
    @media screen and (min-width: 992px) {
      .third-variation .columns-wrapper {
        background: none;
        margin: 0;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; } }
  .third-variation .text-wrapper {
    padding: 2rem 2rem !important; }
    @media screen and (min-width: 576px) {
      .third-variation .text-wrapper {
        padding: 2rem 4.75rem !important; } }
    @media screen and (min-width: 992px) {
      .third-variation .text-wrapper {
        padding: 2rem 0 !important;
        display: initial; }
        .third-variation .text-wrapper * {
          max-width: 23.5rem; } }
    .third-variation .text-wrapper :first-child {
      margin-top: 2rem !important; }
    .third-variation .text-wrapper h3 {
      color: #707070;
      margin: 0 !important; }
  .third-variation .plain-background {
    margin-top: 2rem;
    height: 50rem;
    position: absolute;
    left: -19rem;
    display: none;
    background: #f1f1f1;
    max-width: none; }
    @media screen and (min-width: 992px) {
      .third-variation .plain-background {
        display: initial; } }
  .third-variation figure {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
    margin: auto; }
    @media screen and (min-width: 576px) {
      .third-variation figure {
        padding-left: 2.375rem;
        padding-right: 2.375rem; } }
    @media screen and (min-width: 992px) {
      .third-variation figure {
        padding: initial;
        margin-right: 0;
        margin-left: 35px; } }
  .third-variation img {
    margin-top: 10rem;
    max-height: 30rem; }
    @media screen and (min-width: 992px) {
      .third-variation img {
        width: 720px;
        height: 480px;
        max-height: auto;
        display: initial; } }
  .third-variation p,
  .third-variation h2 {
    margin: 0.5rem 0 !important; }
  .third-variation h2 {
    margin-top: 0 !important; }
    @media screen and (min-width: 992px) {
      .third-variation h2 {
        margin-top: 4rem !important; } }
  .third-variation .link-wrapper {
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding: 0 1rem;
    padding-bottom: 2rem !important;
    position: absolute;
    max-width: 30rem;
    bottom: -12.5rem;
    animation-duration: 0.2s;
    opacity: 1 !important; }
    @media screen and (min-width: 768px) {
      .third-variation .link-wrapper {
        bottom: -8.5rem; } }
    @media screen and (min-width: 992px) {
      .third-variation .link-wrapper {
        left: 6%;
        right: initial;
        max-width: 34rem;
        bottom: -4.5rem; } }
    .third-variation .link-wrapper :first-child {
      text-align: center;
      display: inline-block;
      max-width: 16rem;
      margin: 2rem 0; }
    .third-variation .link-wrapper a {
      color: black;
      margin: 0 !important; }
  .third-variation img {
    width: 100%;
    margin: 0; }
    @media screen and (min-width: 992px) {
      .third-variation img {
        margin-top: 10rem; } }

.fourth-variation {
  padding: 0 !important;
  max-width: 1280px !important;
  position: relative;
  background: linear-gradient(0deg, white 50%, #f1f1f1 50%);
  margin: 0 -35px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 12rem;
  margin-bottom: 5rem;
  margin-right: -15px !important;
  margin-left: -15px !important; }
  @media screen and (min-width: 992px) {
    .fourth-variation {
      -ms-flex-direction: initial;
          flex-direction: initial;
      padding: 0 3rem !important;
      background: initial; } }
  @media screen and (min-width: 992px) {
    .fourth-variation {
      margin-right: 3rem !important;
      margin-left: 3rem !important; } }
  @media screen and (min-width: 1400px) {
    .fourth-variation {
      margin-right: auto !important;
      margin-left: auto !important; } }
  .fourth-variation .columns-wrapper {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    margin: 0;
    margin-bottom: 10rem; }
    @media screen and (min-width: 992px) {
      .fourth-variation .columns-wrapper {
        background: initial;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
        margin-bottom: 0;
        margin: 0 2rem; } }
  .fourth-variation .text-wrapper {
    padding: 1rem 1rem !important;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center; }
    @media screen and (min-width: 992px) {
      .fourth-variation .text-wrapper {
        padding: 2rem 0 !important;
        display: initial; } }
    @media screen and (min-width: 576px) {
      .fourth-variation .text-wrapper {
        -ms-flex-align: center;
            align-items: center; } }
    .fourth-variation .text-wrapper h2 {
      margin-top: 2rem !important; }
    .fourth-variation .text-wrapper h3 {
      color: #707070;
      margin: 0 !important; }
  .fourth-variation .plain-background {
    margin-top: 2rem;
    height: 50rem;
    position: absolute;
    left: -19rem;
    display: none;
    background: #f1f1f1;
    height: 46rem !important;
    width: 80%; }
    @media screen and (min-width: 992px) {
      .fourth-variation .plain-background {
        display: initial; } }
  .fourth-variation img {
    width: auto !important;
    height: auto !important; }
    @media screen and (min-width: 992px) {
      .fourth-variation img {
        margin-top: 6rem !important;
        width: 500px !important;
        height: 750px !important;
        margin-top: 0 !important; } }
  .fourth-variation img {
    width: calc(100vw - 2rem) !important;
    margin: 0;
    display: initial !important;
    height: auto; }
    @media screen and (min-width: 576px) {
      .fourth-variation img {
        width: 500px !important;
        height: 750px !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-align: center !important;
            align-items: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important; } }
  .fourth-variation p,
  .fourth-variation h2,
  .fourth-variation h3 {
    margin: 0.5rem 0 !important;
    width: initial; }
    @media screen and (min-width: 576px) {
      .fourth-variation p,
      .fourth-variation h2,
      .fourth-variation h3 {
        width: 500px; } }
    @media screen and (min-width: 992px) {
      .fourth-variation p,
      .fourth-variation h2,
      .fourth-variation h3 {
        width: auto; } }
  .fourth-variation h2 {
    margin-top: 0 !important; }
    @media screen and (min-width: 992px) {
      .fourth-variation h2 {
        margin-top: 4rem !important; } }
  .fourth-variation .link-wrapper {
    left: 0;
    right: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    padding-bottom: 2rem !important;
    position: absolute;
    padding: 0;
    bottom: 0.5rem;
    width: calc(100vw - 2rem);
    animation-duration: 0.2s;
    opacity: 1 !important; }
    @media screen and (min-width: 576px) {
      .fourth-variation .link-wrapper {
        padding: 2rem;
        width: 500px; } }
    @media screen and (min-width: 992px) {
      .fourth-variation .link-wrapper {
        left: 10%;
        right: initial;
        bottom: 9rem; } }
    .fourth-variation .link-wrapper :first-child {
      margin-top: 2rem !important;
      text-align: center;
      display: inline-block;
      width: 16rem; }
    .fourth-variation .link-wrapper a {
      color: black;
      margin: 0 !important; }
    .fourth-variation .link-wrapper p {
      margin: 0;
      text-align: center;
      width: auto; }

@media screen and (min-width: 768px) {
  .container-fluid {
    padding-left: 0;
    padding-right: 0; } }

.section-default .row {
  padding-bottom: 20px; }
  .section-default .row:last-of-type {
    padding-bottom: 60px; }

.section-default img {
  max-width: 100%;
  height: auto; }

.section-default [class*='col-'] {
  padding-top: 20px; }
  @media screen and (min-width: 768px) {
    .section-default [class*='col-'] {
      padding: 0; }
      .section-default [class*='col-'] > *:not(img) {
        margin-left: 35px;
        margin-right: 35px; } }

.section-default .tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  height: auto;
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto; }
  .section-default .tabs.horizontal {
    border-bottom: none; }
    .section-default .tabs.horizontal .nav-tabs {
      -ms-flex-direction: row;
          flex-direction: row;
      left: 0;
      right: 0;
      bottom: 0;
      top: inherit; }
      .section-default .tabs.horizontal .nav-tabs li {
        width: auto; }
    .section-default .tabs.horizontal .tab-pane {
      max-height: 100%;
      height: auto; }
  .section-default .tabs .nav-tabs {
    border: none;
    list-style: none;
    padding: 0; }
    @media screen and (min-width: 1200px) {
      .section-default .tabs .nav-tabs {
        margin: 0; } }
    .section-default .tabs .nav-tabs li {
      display: block;
      width: 100%; }
      @media screen and (min-width: 1200px) {
        .section-default .tabs .nav-tabs li {
          display: inline-block;
          width: auto; } }
  .section-default .tabs .tab-content {
    overflow: hidden; }
  .section-default .tabs .nav {
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    position: absolute;
    z-index: 2;
    left: 5vw;
    top: 0;
    bottom: 0;
    border-bottom: none; }
    .section-default .tabs .nav a {
      display: block;
      width: 15px;
      height: 15px;
      margin: 13px 10px;
      color: transparent;
      background-color: transparent;
      border-radius: 11px;
      border: 2px solid #14d991;
      transition: 0.3s; }
      .section-default .tabs .nav a.active {
        background-color: #14d991; }
        .section-default .tabs .nav a.active:hover {
          cursor: default; }
      .section-default .tabs .nav a:hover {
        background-color: #14d991;
        border-color: #14d991; }
  .section-default .tabs .tab-pane {
    position: relative;
    overflow: hidden;
    min-height: initial;
    max-height: 50vh;
    height: 50vh; }
  .section-default .tabs .tab-content {
    overflow: hidden;
    width: 100%; }
  .section-default .tabs.color-blue .nav a {
    border: 2px solid #546eff; }
    .section-default .tabs.color-blue .nav a.active {
      background-color: #546eff; }
    .section-default .tabs.color-blue .nav a:hover {
      background-color: #546eff;
      border-color: #546eff; }

.section-default .img-covered-background {
  position: relative;
  overflow: hidden; }
  @media screen and (max-width: 992px) {
    .section-default .img-covered-background {
      margin-left: -15px;
      margin-right: -15px; } }
  .section-default .img-covered-background img {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    max-width: none; }
    @media screen and (min-width: 993px) {
      .section-default .img-covered-background img {
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        top: 50%; } }
    @media screen and (max-width: 992px) {
      .section-default .img-covered-background img {
        left: 50%;
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
        width: auto; } }
    .section-default .img-covered-background img.img-right {
      min-width: initial;
      right: 0; }

.section-newsletter {
  padding-bottom: 100px; }
  .section-newsletter a {
    color: #13cc88; }
  .section-newsletter .hbspt-form .form-columns-0 p {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px; }
  .section-newsletter form {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    padding: 30px 15px;
    margin: 40px 20px 0 20px;
    color: #6c6c69; }
    @media screen and (min-width: 768px) {
      .section-newsletter form {
        margin: 40px 0 0 0;
        padding: 45px 30px; } }
    .section-newsletter form .input {
      margin-bottom: 20px;
      padding: 3px 15px;
      border: 1px solid #6c6c69;
      border-radius: 30px; }
      @media screen and (min-width: 1580px) {
        .section-newsletter form .input {
          margin: 0; } }
    .section-newsletter form .input-surname {
      margin-top: 20px; }
    .section-newsletter form button.raised {
      margin-top: 20px; }
    .section-newsletter form input[type='email'],
    .section-newsletter form input[type='text'] {
      width: 100%;
      margin: 30px 0;
      padding: 0 0 1px 8px;
      border: none;
      border-bottom: 2px solid #6c6c69;
      font-family: BrandonText;
      font-weight: 300;
      font-size: 1.2rem;
      transition: 0.3s;
      color: #14d991;
      margin: 0;
      border-bottom: none;
      font-size: 1.5rem;
      color: #212529; }
      .section-newsletter form input[type='email']:-ms-input-placeholder,
      .section-newsletter form input[type='text']:-ms-input-placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .section-newsletter form input[type='email']::placeholder,
      .section-newsletter form input[type='text']::placeholder {
        font-size: 1rem;
        color: #6c6c69; }
      .section-newsletter form input[type='email']:focus,
      .section-newsletter form input[type='text']:focus {
        color: #000;
        border-color: #14d991; }
      .section-newsletter form input[type='email'].filled,
      .section-newsletter form input[type='text'].filled {
        border-color: #14d991; }
      @media screen and (min-width: 768px) {
        .section-newsletter form input[type='email'],
        .section-newsletter form input[type='text'] {
          margin: 0; } }
      .section-newsletter form input[type='email']:-ms-input-placeholder,
      .section-newsletter form input[type='text']:-ms-input-placeholder {
        position: relative;
        top: -2px; }
      .section-newsletter form input[type='email']::placeholder,
      .section-newsletter form input[type='text']::placeholder {
        position: relative;
        top: -2px; }
      @media screen and (max-width: 420px) {
        .section-newsletter form input[type='email'],
        .section-newsletter form input[type='text'] {
          font-size: 1.2rem; }
          .section-newsletter form input[type='email']:-ms-input-placeholder,
          .section-newsletter form input[type='text']:-ms-input-placeholder {
            font-size: 0.8rem; }
          .section-newsletter form input[type='email']::placeholder,
          .section-newsletter form input[type='text']::placeholder {
            font-size: 0.8rem; } }
      .section-newsletter form input[type='email'].mce_inline_error,
      .section-newsletter form input[type='text'].mce_inline_error {
        border-color: tomato; }
    .section-newsletter form button {
      width: 100%;
      margin: 1px; }
    .section-newsletter form .forms .field-wrapper.checkboxinput, .forms .section-newsletter form .field-wrapper.checkboxinput, .section-newsletter form .checkbox {
      padding-top: 30px; }
    .section-newsletter form .recaptcha {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-direction: column;
          flex-direction: column;
      margin-top: 20px; }
      .section-newsletter form .recaptcha.error > .g-recaptcha-error {
        display: block; }
      .section-newsletter form .recaptcha.error > .g-recaptcha iframe {
        border: 1px solid #d00;
        border-radius: 4px; }
      .section-newsletter form .recaptcha > .g-recaptcha-error {
        margin-bottom: 6px;
        color: #d00;
        display: none; }
      @media only screen and (max-width: 576px) {
        .section-newsletter form .recaptcha {
          margin-top: 15px; }
          .section-newsletter form .recaptcha .g-recaptcha {
            -ms-transform-origin: center;
                transform-origin: center;
            -webkit-transform-origin: center; } }

.newsletter-hover-section {
  text-align: center; }
  @media screen and (min-width: 992px) {
    .newsletter-hover-section img {
      max-height: 500px; } }
  .newsletter-hover-section .newsletter-hover-section-content {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: center;
        justify-content: center;
    transition: 0.5s opacity ease-in-out; }
    @media screen and (min-width: 768px) {
      .newsletter-hover-section .newsletter-hover-section-content {
        opacity: 0; } }
    .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle {
      border: 2px solid #14d991;
      width: 20vw;
      height: 20vw;
      max-width: 300px;
      max-height: 300px;
      padding: 0 10px;
      border-radius: 50%;
      margin: 0 auto;
      color: #14d991;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      transition: 0.3s; }
      .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle p {
        font-weight: 500;
        color: #14d991;
        transition: 0.3s; }
      .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle a {
        font-weight: 300 !important;
        color: #14d991 !important;
        transition: 0.3s; }
      .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle span {
        color: #14d991;
        transition: 0.3s; }
      @media screen and (max-width: 992px) {
        .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle {
          width: 200px;
          height: 200px; } }
      @media screen and (min-width: 768px) {
        .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle {
          border: 2px solid #fff;
          color: #fff; }
          .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle p {
            color: #fff; }
          .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle a {
            color: #fff !important; }
          .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle span {
            color: #fff; }
          .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle:hover {
            border: 2px solid #14d991;
            color: #14d991; }
            .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle:hover p {
              color: #14d991; }
            .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle:hover a {
              color: #14d991 !important; }
            .newsletter-hover-section .newsletter-hover-section-content .newsletter-hover-section-circle:hover span {
              color: #14d991; } }
  .newsletter-hover-section:hover .newsletter-hover-section-content {
    opacity: 1; }

.section-tabs .tabs {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  text-align: center;
  min-height: 540px; }
  .section-tabs .tabs .nav-tabs {
    border: none;
    list-style: none;
    padding: 0;
    margin: 40px 0 70px; }
    @media screen and (min-width: 1200px) {
      .section-tabs .tabs .nav-tabs {
        margin: 0; } }
    .section-tabs .tabs .nav-tabs li {
      display: block;
      width: 100%; }
      @media screen and (min-width: 1200px) {
        .section-tabs .tabs .nav-tabs li {
          display: inline-block;
          width: auto; } }
      .section-tabs .tabs .nav-tabs li a {
        font-family: BrandonText;
        font-size: 1rem;
        font-weight: 500;
        display: inline-block;
        padding: 6px 20px;
        cursor: pointer;
        transition: 0.1s all;
        text-decoration: none;
        color: #fff;
        border: 2px solid #536dff;
        border-radius: 30px;
        text-transform: uppercase;
        color: #536dff;
        background-color: #fff;
        width: 80%;
        padding: 6px 0;
        margin: -2px 0;
        border-radius: 0; }
        .section-tabs .tabs .nav-tabs li a.active, .section-tabs .tabs .nav-tabs li a:hover {
          color: #fff;
          background-color: #536dff; }
        @media screen and (min-width: 1200px) {
          .section-tabs .tabs .nav-tabs li a {
            min-width: 236px;
            margin: 50px -1px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px; } }
  .section-tabs .tabs .tab-content {
    overflow: hidden; }
    .section-tabs .tabs .tab-content img {
      width: 100px;
      height: 100px;
      margin-bottom: 40px; }
    .section-tabs .tabs .tab-content p {
      margin-bottom: 50px;
      font-weight: 300; }

.tiles {
  margin: 20px 0 80px; }
  @media screen and (min-width: 768px) {
    .tiles {
      margin: 70px 0 100px; } }
  .tiles h2 {
    margin-bottom: 50px; }
  .tiles .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center; }
    @media screen and (min-width: 768px) {
      .tiles .row {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; } }
  .tiles .tile,
  .tiles:not(.blog-list) .row > [class*="col-"] {
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
    background-color: #fff;
    margin: 10px;
    padding: 0;
    transition: 0.3s; }
    .tiles .tile:hover,
    .tiles:not(.blog-list) .row > [class*="col-"]:hover {
      box-shadow: 0 5px 45px 0 rgba(0, 0, 0, 0.25); }
      .tiles .tile:hover p,
      .tiles .tile:hover h3,
      .tiles .tile:hover a,
      .tiles:not(.blog-list) .row > [class*="col-"]:hover p,
      .tiles:not(.blog-list) .row > [class*="col-"]:hover h3,
      .tiles:not(.blog-list) .row > [class*="col-"]:hover a {
        color: #14d991; }
    .tiles .tile img,
    .tiles:not(.blog-list) .row > [class*="col-"] img {
      width: 100%; }
    .tiles .tile a,
    .tiles:not(.blog-list) .row > [class*="col-"] a {
      display: inline-block;
      color: #6c6c69;
      font-weight: 500;
      font-size: 1rem;
      text-decoration: none; }
      .tiles .tile a:hover,
      .tiles:not(.blog-list) .row > [class*="col-"] a:hover {
        color: #13cc88; }
    .tiles .tile p,
    .tiles:not(.blog-list) .row > [class*="col-"] p {
      margin: 20px;
      font-size: 1.2rem;
      color: #6c6c69; }
    @media screen and (min-width: 992px) {
      .tiles .tile,
      .tiles:not(.blog-list) .row > [class*="col-"] {
        margin: 10px 15px; } }
    @media screen and (min-width: 1400px) {
      .tiles .tile,
      .tiles:not(.blog-list) .row > [class*="col-"] {
        margin: 10px 23px; } }
  .tiles .webinars .post-item > header {
    padding: 20px; }
    .tiles .webinars .post-item > header h3 {
      margin-bottom: 60px;
      color: #212529; }
    .tiles .webinars .post-item > header > .read-article {
      position: absolute;
      bottom: 0;
      margin: 20px 0;
      color: #6c6c69;
      font-weight: 500;
      font-size: 1rem; }
      .tiles .webinars .post-item > header > .read-article:hover {
        color: #13cc88; }

.section-top {
  position: absolute;
  bottom: 10vh;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center; }
  @media screen and (max-width: 768px) {
    .section-top {
      margin: 0; } }
  .section-top div > [class*='col-'] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: end;
        justify-content: flex-end;
    text-align: left; }
  .section-top h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 10vh; }
    @media screen and (min-width: 420px) {
      .section-top h1 {
        font-size: 2.7rem; } }
    @media screen and (min-width: 576px) {
      .section-top h1 {
        font-size: 3.4rem; } }
  .section-top .align-center > [class*='col-'] {
    -ms-flex-align: center;
        align-items: center; }

.homepage-hero-module {
  position: relative;
  width: 100vw;
  height: 100vh; }
  @media screen and (max-width: 767px) {
    .homepage-hero-module {
      margin: 0 -15px 40px; } }
  .homepage-hero-module .video-container .poster img {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    -ms-transform: none;
        transform: none;
    object-fit: cover; }
    @media screen and (max-aspect-ratio: 1 / 1) {
      .homepage-hero-module .video-container .poster img {
        object-position: right center; } }
    @media screen and (max-aspect-ratio: 1 / 2) {
      .homepage-hero-module .video-container .poster img {
        object-position: 80% center; } }
  .homepage-hero-module .modal {
    background: rgba(108, 108, 105, 0.85); }
    .homepage-hero-module .modal .modal-dialog {
      max-width: none;
      width: auto;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }
    .homepage-hero-module .modal .modal-body {
      position: relative;
      padding: 0; }
    .homepage-hero-module .modal .close {
      position: absolute;
      right: -30px;
      top: 0;
      z-index: 999;
      font-size: 2rem;
      font-weight: normal;
      color: #fff; }
      .homepage-hero-module .modal .close:hover {
        color: #fff; }
      @media screen and (max-width: 768px) {
        .homepage-hero-module .modal .close {
          right: 0;
          top: -35px; } }

.video-container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: #000; }
  .video-container .filter {
    left: 0;
    top: 0; }
  .video-container .poster img,
  .video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }

.section-diagram {
  margin: 20px 0 80px; }
  @media screen and (min-width: 768px) {
    .section-diagram {
      margin: 70px 0 100px; } }
  .section-diagram .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center; }
    @media screen and (min-width: 1400px) {
      .section-diagram .row {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; } }
    .section-diagram .row [class*="col-"] {
      padding: 0 30px;
      transition: 0.2s opacity ease-in-out; }
      .section-diagram .row [class*="col-"]:hover {
        opacity: 1; }
      @media screen and (min-width: 1400px) {
        .section-diagram .row [class*="col-"] {
          padding: 20px 60px;
          opacity: 0.3; } }
    .section-diagram .row .col-md-8, .section-diagram .row .col-lg-8 {
      padding: 0; }
      .section-diagram .row .col-md-8 [class*="col-"], .section-diagram .row .col-lg-8 [class*="col-"] {
        opacity: 1; }
      .section-diagram .row .col-md-8:hover [class*="col-"], .section-diagram .row .col-lg-8:hover [class*="col-"] {
        opacity: 0.3; }
        .section-diagram .row .col-md-8:hover [class*="col-"]:hover, .section-diagram .row .col-lg-8:hover [class*="col-"]:hover {
          opacity: 1; }
    @media screen and (max-width: 992px) {
      .section-diagram .row .col-md-12 {
        margin-top: 10px;
        margin-bottom: 20px; } }
  .section-diagram .inactive-button {
    font-weight: 600;
    font-size: 17px;
    text-align: center;
    padding: 1rem;
    border: 2px solid #000;
    margin-bottom: 20px;
    line-height: 1; }
  .section-diagram .diagram-platform {
    height: 37px; }
    @media screen and (min-width: 768px) {
      .section-diagram .diagram-platform {
        margin: 0 90px; } }
  @media screen and (max-width: 992px) {
    .section-diagram {
      max-width: 700px !important; } }

.centered-content {
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  display: -ms-flexbox;
  display: flex; }

.section-grid {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  margin-left: 1rem !important;
  margin-right: 1rem !important; }
  @media screen and (min-width: 576px) {
    .section-grid {
      margin-left: 2.375rem !important;
      margin-right: 2.375rem !important; } }
  @media screen and (min-width: 1400px) {
    .section-grid {
      margin-left: 3.25rem !important;
      margin-right: 3.25rem !important; } }
  .section-grid .container-fluid {
    padding: 0; }
  .section-grid .column {
    padding: 10px;
    margin: 0;
    max-height: 375px;
    height: 375px;
    width: 100%;
    object-fit: cover; }
    @media screen and (max-width: 992px) {
      .section-grid .column {
        max-height: 100%;
        height: auto; } }
  .section-grid .text-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: justify;
        justify-content: space-between;
    padding: 15px; }
    .section-grid .text-column a {
      cursor: pointer;
      color: #707070; }
    .section-grid .text-column p:hover a {
      color: #14d991; }
    .section-grid .text-column p:hover img {
      filter: grayscale(100%) brightness(170%) sepia(81%) hue-rotate(466deg) saturate(840%) contrast(0.8); }
  .section-grid .icon-wrapper {
    height: 100%;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    .section-grid .icon-wrapper figure {
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      margin-bottom: 1em; }
    .section-grid .icon-wrapper p {
      text-align: center; }
  .section-grid .img-wrapper {
    overflow: hidden;
    position: relative;
    height: 100%;
    width: 100%; }
    .section-grid .img-wrapper img {
      position: absolute;
      top: 50%;
      left: 50%;
      width: auto;
      min-width: 100%;
      min-height: 100%;
      max-width: none;
      height: auto;
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .section-grid .content-wrapper {
    height: 100%;
    margin: 0; }

.news-item .read-article, .news-footer .back {
  color: #6c6c69;
  font-weight: 500;
  font-size: 1rem;
  transition: 0.3s; }
  .news-item .read-article:hover, .news-footer .back:hover {
    color: #13cc88; }

.news-item {
  margin-bottom: 60px; }
  .news-item:first-of-type {
    margin-top: 60px; }
  .news-item:last-of-type {
    margin-bottom: 100px; }
  .news-item .news-title {
    max-width: 750px; }
    @media screen and (max-width: 768px) {
      .news-item .news-title {
        margin-top: 0; } }
  @media screen and (min-width: 768px) {
    .news-item .news-date {
      text-align: center; } }
  .news-item .news-title,
  .news-item .news-date {
    line-height: 150%; }
  .news-item .news-abstract {
    min-height: 2rem;
    margin-bottom: 3rem; }

.news-info {
  font-size: 1.5rem;
  font-weight: 500; }

.news-header {
  margin-bottom: 75px; }

.news-footer {
  margin-top: 75px; }

.error-page {
  height: 50vh;
  min-height: 300px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-direction: column;
      flex-direction: column;
  padding: 25px; }

.checkbox, .forms .field-wrapper.checkboxinput, .section-newsletter form .checkbox {
  position: relative;
  cursor: pointer; }
  .checkbox input[type='checkbox'], .forms .field-wrapper.checkboxinput input[type='checkbox'] {
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    appearance: none; }
    .checkbox input[type='checkbox']:checked + span:after, .forms .field-wrapper.checkboxinput input[type='checkbox']:checked + span:after {
      content: '';
      width: 19.065px;
      height: 9px;
      border-left: 3.75px solid #212529;
      border-bottom: 3.75px solid #212529;
      display: inline-block;
      -ms-transform: translate(3.69544px, 13.5px) rotate(-45deg);
          transform: translate(3.69544px, 13.5px) rotate(-45deg);
      margin: 0 auto;
      -ms-transform-origin: left bottom 0;
          transform-origin: left bottom 0;
      position: absolute;
      left: 8.6625px; }
  .checkbox label, .forms .field-wrapper.checkboxinput label, .section-newsletter form .checkbox label {
    padding-left: 30px;
    cursor: pointer; }
  .checkbox span, .forms .field-wrapper.checkboxinput span, .section-newsletter form .checkbox span {
    height: 30px;
    width: 30px;
    position: absolute;
    left: 0;
    display: inline-block;
    border-radius: 8px;
    background-color: #e8e8e8;
    transition: all .4s; }
    .checkbox span:hover, .forms .field-wrapper.checkboxinput span:hover {
      background-color: #d3d3d3; }
    .checkbox span:after, .forms .field-wrapper.checkboxinput span:after, .section-newsletter form .checkbox span:after {
      content: ''; }
    .checkbox span.error, .forms .field-wrapper.checkboxinput span.error {
      border: 1px solid #e3351b; }
  .checkbox a, .forms .field-wrapper.checkboxinput a, .section-newsletter form .checkbox a {
    color: #6c6c69;
    font-weight: bold; }

.top-align {
  top: -87px; }

.video {
  width: inherit;
  cursor: pointer; }

video::-webkit-media-controls {
  display: none !important; }

.c-video {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex; }

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #fff;
  background: #000000b3; }

.overlay-icon {
  margin: 0 auto; }

.overlay-header {
  font-size: 32px;
  display: none;
  text-align: center;
  margin: 1rem auto;
  width: fit-content; }

.overlay-content-wrapper {
  text-align: center;
  max-width: 688px;
  margin: 0 1rem; }

.overlay-content {
  text-align: center;
  margin: 0 auto;
  width: fit-content;
  display: none; }

.overlay svg {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1Ni43NDkiIGhlaWdodD0iNTYuNzQ2IiB2aWV3Qm94PSIwIDAgNTYuNzQ5IDU2Ljc0NiI+CiAgPGRlZnM+CiAgICA8c3R5bGU+CiAgICAgIC5jbHMtMSwgLmNscy0yLCAuY2xzLTQgewogICAgICAgIGZpbGw6IG5vbmU7CiAgICAgIH0KCiAgICAgIC5jbHMtMSB7CiAgICAgICAgc3Ryb2tlOiAjZmZmOwogICAgICAgIHN0cm9rZS13aWR0aDogMnB4OwogICAgICB9CgogICAgICAuY2xzLTMsIC5jbHMtNSB7CiAgICAgICAgc3Ryb2tlOiBub25lOwogICAgICB9CgogICAgICAuY2xzLTUgewogICAgICAgIGZpbGw6ICNmZmY7CiAgICAgIH0KICAgIDwvc3R5bGU+CiAgPC9kZWZzPgogIDxnIGlkPSJQbGF5X0lDT04iIGRhdGEtbmFtZT0iUGxheSBJQ09OIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIj4KICAgIDxnIGlkPSJFbGxpcHNlXzEyIiBkYXRhLW5hbWU9IkVsbGlwc2UgMTIiIGNsYXNzPSJjbHMtMSI+CiAgICAgIDxlbGxpcHNlIGNsYXNzPSJjbHMtMyIgY3g9IjI4LjM3NCIgY3k9IjI4LjM3MyIgcng9IjI4LjM3NCIgcnk9IjI4LjM3MyIvPgogICAgICA8ZWxsaXBzZSBjbGFzcz0iY2xzLTQiIGN4PSIyOC4zNzQiIGN5PSIyOC4zNzMiIHJ4PSIyNy4zNzQiIHJ5PSIyNy4zNzMiLz4KICAgIDwvZz4KICAgIDxnIGlkPSJQb2x5Z29uXzEiIGRhdGEtbmFtZT0iUG9seWdvbiAxIiBjbGFzcz0iY2xzLTIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDM5LjA5NyAxOC42NDYpIHJvdGF0ZSg5MCkiPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTMiIGQ9Ik05LjcyOCwwbDkuNzI4LDE2LjY3N0gwWiIvPgogICAgICA8cGF0aCBjbGFzcz0iY2xzLTUiIGQ9Ik0gOS43Mjc2ODQwMjA5OTYwOTQgMy45NjkzNjUxMTk5MzQwODIgTCAzLjQ4MjAxMTc5NTA0Mzk0NSAxNC42NzY1Nzk0NzU0MDI4MyBMIDE1Ljk3MzM1MDUyNDkwMjM0IDE0LjY3NjU3OTQ3NTQwMjgzIEwgOS43Mjc2ODQwMjA5OTYwOTQgMy45NjkzNjUxMTk5MzQwODIgTSA5LjcyNzY4NDk3NDY3MDQxIDAgTCAxOS40NTUzNjQyMjcyOTQ5MiAxNi42NzY1Nzg1MjE3Mjg1MiBMIC01LjcyMjA0NTg5ODQzNzVlLTA2IDE2LjY3NjU3ODUyMTcyODUyIEwgOS43Mjc2ODQ5NzQ2NzA0MSAwIFoiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: contain;
  width: 66px;
  height: 66px;
  border: 0;
  outline: 0;
  cursor: pointer; }

.overlay-content-wrapper:hover {
  cursor: pointer;
  color: #9ff0d4;
  filter: brightness(0.5) sepia(1) hue-rotate(105deg) saturate(5); }

.c-video:hover .video-controls {
  -ms-transform: translateY(0);
      transform: translateY(0); }

.video-controls .with-overlay {
  display: none; }

.video-controls {
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  position: absolute;
  bottom: 0;
  width: 80%;
  background: #000000b3;
  -ms-transform: translateY(100%);
      transform: translateY(100%);
  transition: all 0.2s;
  max-height: 50px; }

.buttons {
  padding: 12px 26px 10px 66px; }

.buttons svg {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDE2Ij4KICA8ZyBpZD0iUGF0aF8xNzk3IiBkYXRhLW5hbWU9IlBhdGggMTc5NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQpIHJvdGF0ZSg5MCkiIGZpbGw9Im5vbmUiPgogICAgPHBhdGggZD0iTTgsMGw4LDE0SDBaIiBzdHJva2U9Im5vbmUiLz4KICAgIDxwYXRoIGQ9Ik0gNy45OTk5OTk1MjMxNjI4NDIgNC4wMzExMzc0NjY0MzA2NjQgTCAzLjQ0NjM2MzQ0OTA5NjY4IDEyIEwgMTIuNTUzNjM0NjQzNTU0NjkgMTIgTCA3Ljk5OTk5OTUyMzE2Mjg0MiA0LjAzMTEzNzQ2NjQzMDY2NCBNIDcuOTk5OTk5NTIzMTYyODQyIDAgTCAxNiAxNCBMIC05LjUzNjc0MzE2NDA2MjVlLTA3IDE0IEwgNy45OTk5OTk1MjMxNjI4NDIgMCBaIiBzdHJva2U9Im5vbmUiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  background-size: contain;
  width: 35px;
  height: 20px;
  border: 0;
  outline: 0;
  cursor: pointer; }

.buttons svg.play {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE0IDE2Ij4KICA8ZyBpZD0iUGF0aF8xNzk3IiBkYXRhLW5hbWU9IlBhdGggMTc5NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQpIHJvdGF0ZSg5MCkiIGZpbGw9Im5vbmUiPgogICAgPHBhdGggZD0iTTgsMGw4LDE0SDBaIiBzdHJva2U9Im5vbmUiLz4KICAgIDxwYXRoIGQ9Ik0gNy45OTk5OTk1MjMxNjI4NDIgNC4wMzExMzc0NjY0MzA2NjQgTCAzLjQ0NjM2MzQ0OTA5NjY4IDEyIEwgMTIuNTUzNjM0NjQzNTU0NjkgMTIgTCA3Ljk5OTk5OTUyMzE2Mjg0MiA0LjAzMTEzNzQ2NjQzMDY2NCBNIDcuOTk5OTk5NTIzMTYyODQyIDAgTCAxNiAxNCBMIC05LjUzNjc0MzE2NDA2MjVlLTA3IDE0IEwgNy45OTk5OTk1MjMxNjI4NDIgMCBaIiBzdHJva2U9Im5vbmUiIGZpbGw9IiNmZmYiLz4KICA8L2c+Cjwvc3ZnPgo=); }

.buttons svg.pause {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMCIgaGVpZ2h0PSIxNSIgdmlld0JveD0iMCAwIDEwIDE1Ij4KICA8ZyBpZD0iR3JvdXBfMzQ3MiIgZGF0YS1uYW1lPSJHcm91cCAzNDcyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxIC0wLjAwMSkiPgogICAgPGxpbmUgaWQ9IkxpbmVfODAiIGRhdGEtbmFtZT0iTGluZSA4MCIgeTE9IjE1IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSg4KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz4KICAgIDxsaW5lIGlkPSJMaW5lXzgxIiBkYXRhLW5hbWU9IkxpbmUgODEiIHkxPSIxNSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjIiLz4KICA8L2c+Cjwvc3ZnPgo=); }

.fullscreen-buttons {
  padding: 12px 66px 10px 38px; }

.fullscreen-buttons svg {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI2IDE2Ij4KICA8ZyBpZD0iR3JvdXBfNjU0IiBkYXRhLW5hbWU9Ikdyb3VwIDY1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNzggLTczNSkiPgogICAgPGcgaWQ9IlJlY3RhbmdsZV8yMDAiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDIwMCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA3OCA3MzUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgIDxyZWN0IHdpZHRoPSIyNiIgaGVpZ2h0PSIxNiIgc3Ryb2tlPSJub25lIi8+CiAgICAgIDxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIvPgogICAgPC9nPgogICAgPGcgaWQ9IlJlY3RhbmdsZV8yMDEiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDIwMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA5MCA3NDIpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgIDxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSI5IiBzdHJva2U9Im5vbmUiLz4KICAgICAgPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9IjEyIiBoZWlnaHQ9IjciIGZpbGw9Im5vbmUiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==);
  background-repeat: no-repeat;
  background-size: contain;
  width: 41px;
  height: 15px;
  border: 0;
  outline: 0;
  cursor: pointer; }

.fullscreen-buttons svg.fullscreen {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI2IDE2Ij4KICA8ZyBpZD0iR3JvdXBfNjU0IiBkYXRhLW5hbWU9Ikdyb3VwIDY1NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEwNzggLTczNSkiPgogICAgPGcgaWQ9IlJlY3RhbmdsZV8yMDAiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDIwMCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA3OCA3MzUpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgIDxyZWN0IHdpZHRoPSIyNiIgaGVpZ2h0PSIxNiIgc3Ryb2tlPSJub25lIi8+CiAgICAgIDxyZWN0IHg9IjEiIHk9IjEiIHdpZHRoPSIyNCIgaGVpZ2h0PSIxNCIgZmlsbD0ibm9uZSIvPgogICAgPC9nPgogICAgPGcgaWQ9IlJlY3RhbmdsZV8yMDEiIGRhdGEtbmFtZT0iUmVjdGFuZ2xlIDIwMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA5MCA3NDIpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS13aWR0aD0iMiI+CiAgICAgIDxyZWN0IHdpZHRoPSIxNCIgaGVpZ2h0PSI5IiBzdHJva2U9Im5vbmUiLz4KICAgICAgPHJlY3QgeD0iMSIgeT0iMSIgd2lkdGg9IjEyIiBoZWlnaHQ9IjciIGZpbGw9Im5vbmUiLz4KICAgIDwvZz4KICA8L2c+Cjwvc3ZnPg==); }

.progress-bar {
  cursor: pointer;
  margin-top: 22px;
  height: 2px;
  top: 0;
  left: 0;
  width: 100%;
  background-color: darkgray; }

.progress-juice {
  height: 2px;
  width: 0;
  background-color: #14d991;
  transition: all 0.5s; }

#video_player_box {
  position: relative;
  width: 100%;
  height: 75%;
  border-radius: 0.2rem; }

#video_player_box:-ms-fullscreen {
  height: 100%; }

#video_player_box:fullscreen {
  height: 100%; }

.justify-space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around; }

.margin-top {
  margin-top: 35px; }

.no-padding {
  padding-left: 0;
  padding-right: 0; }

.cp-section-header {
  font-size: 32px !important;
  line-height: 38px; }

.cp-section-subheader {
  color: #707070;
  font-size: 24px;
  line-height: 38px; }

.cp-section-content {
  font-size: 16px;
  line-height: 22px; }

.display-none {
  display: none; }

@media (max-width: 550px) {
  .container-wrapper {
    width: 100%; }
  .video-controls {
    width: 80%;
    max-height: 40px; }
  .buttons {
    padding: 10px 8px 10px 20px; }
  .fullscreen-buttons {
    padding: 10px 17px 9px; }
  .progress-bar {
    margin-top: 20px; }
  .overlay svg {
    width: 36px;
    height: 36px; }
  .overlay-header {
    font-size: 18px; }
  .overlay-content {
    font-size: 14px; }
  .overlay-content br {
    display: none; }
  .cp-section-header {
    font-size: 18px !important;
    margin: 10px 0 !important; }
  .cp-section-header br {
    display: none; }
  .cp-section-subheader {
    font-size: 18px !important;
    margin: 0 !important; }
  .cp-section-content {
    font-size: 14px !important;
    margin: 10px 0 !important; } }

@media (max-width: 330px) {
  .overlay-header {
    margin: 0 auto 0.5rem; } }

.section-slider {
  height: 50rem;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  margin-bottom: 5rem !important; }
  .section-slider .main-information {
    height: 42rem;
    max-width: none;
    position: absolute;
    right: 0;
    left: 0;
    width: initial; }
    @media screen and (min-width: 576px) {
      .section-slider .main-information {
        left: 3.375rem;
        right: 3.375rem; } }
    @media screen and (min-width: 1580px) {
      .section-slider .main-information {
        left: 4.25rem;
        right: 4.25rem; } }
    .section-slider .main-information .text-wrapper {
      max-width: none;
      padding-left: 2.375rem;
      padding-right: 2.375rem; }
      .section-slider .main-information .text-wrapper * {
        margin-left: auto;
        margin-top: 0.5em;
        max-width: 26rem; }
        @media screen and (min-width: 576px) {
          .section-slider .main-information .text-wrapper * {
            margin-right: 3rem; } }
        @media screen and (min-width: 992px) {
          .section-slider .main-information .text-wrapper * {
            margin-right: 6rem; } }
        @media screen and (min-width: 992px) {
          .section-slider .main-information .text-wrapper * {
            max-width: 24rem; } }
  .section-slider .sliders-wrapper {
    max-width: 62.5rem;
    overflow: hidden;
    padding-bottom: 3rem;
    margin-right: -15px;
    margin-left: -15px; }
  .section-slider .tabs {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    height: auto;
    max-width: 2000px;
    margin-left: auto;
    margin-right: auto;
    height: auto;
    left: 0;
    position: relative; }
    .section-slider .tabs.horizontal {
      border-bottom: none;
      height: auto;
      height: 575px; }
      .section-slider .tabs.horizontal .nav-tabs {
        -ms-flex-direction: row;
            flex-direction: row;
        left: 0;
        right: 740px;
        bottom: 0;
        top: inherit; }
        .section-slider .tabs.horizontal .nav-tabs li {
          width: auto; }
          .section-slider .tabs.horizontal .nav-tabs li a {
            height: 10px;
            width: 10px; }
      .section-slider .tabs.horizontal .tab-pane {
        max-height: 100%;
        height: auto; }
    .section-slider .tabs .nav-tabs {
      border: none;
      list-style: none;
      padding: 0;
      width: auto !important;
      position: absolute; }
      @media screen and (min-width: 1200px) {
        .section-slider .tabs .nav-tabs {
          margin: 0; } }
      .section-slider .tabs .nav-tabs li {
        display: block;
        width: 100%; }
        @media screen and (min-width: 1200px) {
          .section-slider .tabs .nav-tabs li {
            display: inline-block;
            width: auto; } }
      .section-slider .tabs .nav-tabs .next-arrow {
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
        margin-left: 18px;
        cursor: pointer; }
      .section-slider .tabs .nav-tabs .prev-arrow {
        margin-right: 18px;
        cursor: pointer; }
    .section-slider .tabs .tab-content {
      overflow: hidden;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
      position: absolute;
      left: -800px;
      width: auto !important; }
    .section-slider .tabs .nav {
      position: absolute;
      width: auto !important;
      left: 0 !important;
      right: 0 !important;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: center;
          justify-content: center;
      z-index: 2;
      bottom: -3rem !important;
      border-bottom: none; }
      @media screen and (min-width: 576px) {
        .section-slider .tabs .nav {
          left: 225px !important;
          right: auto !important; } }
      .section-slider .tabs .nav a {
        display: block;
        width: 15px;
        height: 15px;
        margin: 13px 10px;
        color: transparent;
        background-color: gray !important;
        border-radius: 11px;
        border: 2px solid gray !important;
        transition: 0.3s; }
        .section-slider .tabs .nav a.active {
          background-color: #14d991 !important;
          border-color: #14d991 !important; }
          .section-slider .tabs .nav a.active:hover {
            cursor: default; }
        .section-slider .tabs .nav a:hover {
          background-color: #14d991 !important;
          border-color: #14d991 !important; }
    .section-slider .tabs .tab-pane {
      overflow: hidden;
      min-height: initial;
      max-height: 50vh;
      display: -ms-flexbox !important;
      display: flex !important;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-pack: end;
          justify-content: flex-end;
      width: 300px;
      height: 765px !important;
      margin: 0 10px;
      opacity: 0.9;
      font-weight: 300; }
      @media screen and (min-width: 576px) {
        .section-slider .tabs .tab-pane {
          width: 400px; } }
      .section-slider .tabs .tab-pane .text-wrapper {
        background: black;
        color: white;
        padding: 2rem;
        display: none; }
      .section-slider .tabs .tab-pane.active, .section-slider .tabs .collapsing-item:not(.collapsed) > p.tab-pane:first-child {
        opacity: 1; }
        .section-slider .tabs .tab-pane.active .text-wrapper, .section-slider .tabs .collapsing-item:not(.collapsed) > p.tab-pane:first-child .text-wrapper {
          display: block; }
      .section-slider .tabs .tab-pane img {
        width: 100%;
        min-height: 1px; }
    .section-slider .tabs .tab-content {
      overflow: hidden;
      width: 100%; }
    .section-slider .tabs.color-blue .nav a {
      border: 2px solid #14d991; }
      .section-slider .tabs.color-blue .nav a.active {
        background-color: #14d991; }
      .section-slider .tabs.color-blue .nav a:hover {
        background-color: #14d991;
        border-color: #14d991; }

.section-slider-without-text {
  height: 35rem; }
  @media screen and (min-width: 768px) {
    .section-slider-without-text {
      height: 42rem; } }
  .section-slider-without-text .nav {
    bottom: -1rem !important; }
  .section-slider-without-text .tabs .tab-pane {
    width: 300px;
    height: 550px !important; }
    @media screen and (min-width: 576px) {
      .section-slider-without-text .tabs .tab-pane {
        width: 400px; } }
    @media screen and (min-width: 768px) {
      .section-slider-without-text .tabs .tab-pane {
        width: 500px;
        height: 650px !important; } }
  .section-slider-without-text .sliders-wrapper {
    max-width: 74rem; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .section-slider-without-text .sliders-wrapper {
        max-width: 70rem; } }
  .section-slider-without-text .main-information {
    max-height: 32rem; }

.navbar-white {
  box-shadow: none !important; }

.cropped-background {
  background: #f1f1f1;
  background-size: 20px;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  max-width: none;
  width: initial; }
  @media screen and (min-width: 992px) {
    .cropped-background {
      background: linear-gradient(90deg, #f1f1f1 80%, white 20%);
      padding-right: 0; } }
  .cropped-background .text-wrapper * {
    margin: auto;
    max-width: none;
    margin-bottom: 2rem; }
    @media screen and (min-width: 992px) {
      .cropped-background .text-wrapper * {
        max-width: 23.4375rem; } }
  .cropped-background .text-wrapper ul {
    list-style: none;
    padding-left: 34px; }
    .cropped-background .text-wrapper ul li {
      margin-bottom: 0; }
  .cropped-background .text-wrapper ul li::before {
    content: '.';
    color: #14d991;
    font-weight: bold;
    display: inline-block;
    width: 2rem;
    margin-left: -33px;
    font-size: 2.5rem;
    line-height: 2rem; }
  @media screen and (min-width: 992px) {
    .cropped-background .img-wrapper {
      padding: 0; } }
  .cropped-background .img-wrapper img {
    width: 100%; }
    @media screen and (min-width: 992px) {
      .cropped-background .img-wrapper img {
        margin-bottom: 8rem;
        max-width: 50rem; } }
  .cropped-background .img-wrapper iframe {
    width: 100%;
    height: 46vw; }
    @media screen and (min-width: 992px) {
      .cropped-background .img-wrapper iframe {
        height: 27vw; } }

.tabs-with-tiles, .section-products .product-filters {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: none;
  width: initial;
  background: #fbfbfb;
  padding: 0; }
  .tabs-with-tiles ul, .section-products .product-filters ul {
    padding-top: 1rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    margin: auto;
    list-style: none;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 0;
    margin: 0 1rem; }
    @media screen and (min-width: 992px) {
      .tabs-with-tiles ul, .section-products .product-filters ul {
        -ms-flex-direction: initial;
            flex-direction: initial;
        -ms-flex-align: initial;
            align-items: initial; } }
    .tabs-with-tiles ul li, .section-products .product-filters ul li {
      margin: 0;
      margin-top: 1rem;
      cursor: pointer;
      padding: 0 2rem;
      padding-bottom: 8px;
      color: #707070;
      width: 100%; }
      @media screen and (min-width: 992px) {
        .tabs-with-tiles ul li, .section-products .product-filters ul li {
          margin: 0 1rem;
          width: 285px; } }
    .tabs-with-tiles ul li::before, .section-products .product-filters ul li::before {
      content: '.';
      font-weight: bold;
      display: inline-block;
      width: 2rem;
      font-size: 2.5rem;
      height: 0;
      line-height: 25px; }
    .tabs-with-tiles ul .active, .section-products .product-filters ul .active, .tabs-with-tiles ul .collapsing-item:not(.collapsed) > p:first-child, .section-products .product-filters ul .collapsing-item:not(.collapsed) > p:first-child {
      box-shadow: #dadada 0 0px 10px 0px;
      color: #14d991;
      background: white; }
    .tabs-with-tiles ul li:hover, .section-products .product-filters ul li:hover {
      color: #14d991; }
  .tabs-with-tiles .tiles-wrapper, .section-products .product-filters .tiles-wrapper {
    margin-top: 3rem;
    padding: 0;
    padding-bottom: 2rem;
    display: none;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    max-width: 1400px; }
    .tabs-with-tiles .tiles-wrapper a, .section-products .product-filters .tiles-wrapper a {
      transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); }
    .tabs-with-tiles .tiles-wrapper .img-wrapper, .section-products .product-filters .tiles-wrapper .img-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center;
      width: 114px;
      height: 114px;
      margin: 5px;
      background: white;
      transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
      cursor: pointer; }
      @media screen and (min-width: 768px) {
        .tabs-with-tiles .tiles-wrapper .img-wrapper, .section-products .product-filters .tiles-wrapper .img-wrapper {
          width: 250px;
          height: 250px;
          margin: 10px; } }
      .tabs-with-tiles .tiles-wrapper .img-wrapper img, .section-products .product-filters .tiles-wrapper .img-wrapper img {
        opacity: 0.6;
        max-width: 12rem; }
    .tabs-with-tiles .tiles-wrapper .img-wrapper:hover img, .section-products .product-filters .tiles-wrapper .img-wrapper:hover img {
      opacity: 1; }
    .tabs-with-tiles .tiles-wrapper a:active, .section-products .product-filters .tiles-wrapper a:active {
      box-shadow: #dadada 0 0px 10px 0px; }
      .tabs-with-tiles .tiles-wrapper a:active img, .section-products .product-filters .tiles-wrapper a:active img {
        opacity: 1; }
    .tabs-with-tiles .tiles-wrapper .fantom-wrapper, .section-products .product-filters .tiles-wrapper .fantom-wrapper {
      width: 114px;
      margin: 5px; }
      @media screen and (min-width: 768px) {
        .tabs-with-tiles .tiles-wrapper .fantom-wrapper, .section-products .product-filters .tiles-wrapper .fantom-wrapper {
          width: 250px;
          margin: 10px; } }
  .tabs-with-tiles .tiles-wrapper.active, .section-products .product-filters .tiles-wrapper.active, .tabs-with-tiles .collapsing-item:not(.collapsed) > p.tiles-wrapper:first-child, .section-products .product-filters .collapsing-item:not(.collapsed) > p.tiles-wrapper:first-child {
    display: -ms-flexbox;
    display: flex; }

.interactive-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background: #f1f1f1;
  background-size: 20px;
  padding: 2rem 0;
  max-width: none;
  width: initial;
  background: #f1f1f1; }
  @media screen and (min-width: 768px) {
    .interactive-section {
      padding: 2rem; } }
  @media screen and (min-width: 992px) {
    .interactive-section {
      background: linear-gradient(90deg, #f1f1f1 79%, transparent 21%);
      padding-right: 0; } }
  .interactive-section ul {
    padding-top: 1rem;
    display: -ms-flexbox;
    display: flex;
    margin: auto;
    list-style: none;
    -ms-flex-align: end;
        align-items: flex-end;
    -ms-flex-direction: column;
        flex-direction: column;
    padding-left: 0;
    margin: 0 1rem; }
    .interactive-section ul li {
      position: relative;
      min-height: 1px;
      margin: 0;
      margin-top: 1rem;
      cursor: pointer;
      padding: 10px 20px;
      color: #707070;
      width: 100%;
      display: none;
      transition: 0.3s; }
      @media screen and (min-width: 992px) {
        .interactive-section ul li {
          margin: 0 1rem;
          width: 350px;
          display: block; } }
      .interactive-section ul li span {
        height: 46px;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        margin-left: 2rem; }
    .interactive-section ul .active, .interactive-section ul .collapsing-item:not(.collapsed) > p:first-child {
      display: block; }
    .interactive-section ul li::before {
      content: '.';
      font-weight: bold;
      display: inline-block;
      font-size: 2.5rem;
      position: absolute;
      left: 25px;
      top: -7px; }
    .interactive-section ul .active, .interactive-section ul .collapsing-item:not(.collapsed) > p:first-child {
      box-shadow: #dadada 0 0px 10px 0px;
      color: #14d991;
      background: white; }
    .interactive-section ul li:hover {
      color: #14d991; }
  .interactive-section .text-wrapper {
    max-width: 1200px; }
    @media screen and (min-width: 992px) {
      .interactive-section .text-wrapper {
        padding: 0; } }
    .interactive-section .text-wrapper * {
      margin-left: auto;
      margin-bottom: 1.5rem; }
      @media screen and (min-width: 992px) {
        .interactive-section .text-wrapper * {
          max-width: 24rem; } }
    .interactive-section .text-wrapper p,
    .interactive-section .text-wrapper h4 {
      color: #707070; }
  .interactive-section .img-wrapper {
    overflow: hidden; }
    @media screen and (min-width: 992px) {
      .interactive-section .img-wrapper {
        padding: 0; } }
    .interactive-section .img-wrapper img {
      width: 100%;
      display: none;
      opacity: 0; }
      @media screen and (min-width: 992px) {
        .interactive-section .img-wrapper img {
          max-width: 44rem;
          margin-top: 15px; } }
    .interactive-section .img-wrapper img.active {
      display: block;
      opacity: 1; }
  .interactive-section .slider-nav {
    margin: 2rem auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    max-width: 360px; }
    @media screen and (min-width: 992px) {
      .interactive-section .slider-nav {
        display: none; } }
    .interactive-section .slider-nav a {
      text-decoration: none;
      display: inline-block;
      border-radius: 50%;
      color: transparent;
      min-width: 10px;
      min-height: 10px;
      cursor: pointer;
      background-color: gray !important;
      border-radius: 11px;
      border: 2px solid gray !important;
      transition: 0.3s; }
      .interactive-section .slider-nav a.active {
        background-color: #14d991 !important;
        border-color: #14d991 !important; }
        .interactive-section .slider-nav a.active:hover {
          cursor: default; }
      .interactive-section .slider-nav a:hover {
        background-color: #14d991 !important;
        border-color: #14d991 !important; }
    .interactive-section .slider-nav .next-arrow {
      padding: 0;
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
      cursor: pointer;
      display: block;
      width: 40px; }
      @media screen and (min-width: 992px) {
        .interactive-section .slider-nav .next-arrow {
          max-width: 44rem;
          display: none; } }
    .interactive-section .slider-nav .prev-arrow {
      padding: 0;
      cursor: pointer;
      display: block;
      width: 40px; }
      @media screen and (min-width: 992px) {
        .interactive-section .slider-nav .prev-arrow {
          max-width: 44rem;
          display: none; } }

.interactive-section-second-variation {
  padding-left: 0; }
  .interactive-section-second-variation .row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; }
    @media screen and (min-width: 992px) {
      .interactive-section-second-variation .row {
        -ms-flex-direction: initial;
            flex-direction: initial; } }
  @media screen and (min-width: 992px) {
    .interactive-section-second-variation {
      background: linear-gradient(270deg, #f1f1f1 79%, transparent 21%); } }
  .interactive-section-second-variation .text-wrapper * {
    margin-right: auto; }
    @media screen and (min-width: 992px) {
      .interactive-section-second-variation .text-wrapper * {
        margin-left: 1rem; } }
  .interactive-section-second-variation ul {
    -ms-flex-align: start;
        align-items: flex-start; }
    .interactive-section-second-variation ul li {
      margin: 0; }
      @media screen and (min-width: 992px) {
        .interactive-section-second-variation ul li {
          width: 22rem; } }
      @media screen and (min-width: 1200px) {
        .interactive-section-second-variation ul li {
          width: 24rem; } }
  @media screen and (min-width: 1400px) {
    .interactive-section-second-variation .img-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: end;
          align-items: flex-end; } }
  @media screen and (min-width: 992px) {
    .interactive-section-second-variation .img-wrapper img {
      margin-top: 3rem; } }
  @media screen and (min-width: 992px) {
    .interactive-section-second-variation.second-variation-long ul li {
      width: 28rem; }
      .interactive-section-second-variation.second-variation-long ul li::before {
        top: 10px; } }
  @media screen and (min-width: 1200px) {
    .interactive-section-second-variation.second-variation-long ul li {
      width: 32rem; } }
  .interactive-section-second-variation.second-variation-long ul li span {
    height: auto;
    line-height: 1.2; }
    @media screen and (min-width: 992px) {
      .interactive-section-second-variation.second-variation-long ul li span {
        height: 70px;
        font-size: 15px;
        line-height: 1.2; } }
    @media screen and (min-width: 1200px) {
      .interactive-section-second-variation.second-variation-long ul li span {
        height: 82px; } }

.green-header div > * {
  width: fit-content;
  margin-right: auto;
  padding: 6px 18px;
  margin-left: 0 !important; }

.interactive-section-second-variation .green-header span {
  margin: 0;
  padding-left: 18px; }

.interactive-section-second-variation .green-header div {
  padding-left: 0; }

.interactive-section-second-variation .green-header div > * {
  padding-left: 0; }

.row-section {
  padding: 3rem 1.5rem;
  text-align: center; }
  .row-section div * {
    max-width: 14rem; }
  .row-section img {
    width: 100%; }
  .row-section h4 {
    margin: 1.5rem 0;
    font-weight: 100;
    font-size: 1.5rem;
    min-height: 3.5rem; }

body > .row-section {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 1600px; }

.section-contact {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 2.375rem;
  padding-right: 2.375rem;
  max-width: none;
  width: initial;
  background: linear-gradient(to right, #14d991 70%, #9ff0d4 70%, #9ff0d4 calc(100% - 2.375rem), #e6faf3 calc(100% - 2.375rem), #e6faf3 100%); }
  @media screen and (min-width: 768px) {
    .section-contact {
      padding: 0; } }
  @media screen and (min-width: 992px) {
    .section-contact {
      -ms-flex-direction: row;
          flex-direction: row;
      background: linear-gradient(to right, #14d991 50%, #9ff0d4 50%, #9ff0d4 80%, #e6faf3 80%, #e6faf3 100%); } }
  .section-contact .text-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 5rem;
    margin-bottom: 1rem;
    padding: 0; }
    @media screen and (min-width: 992px) {
      .section-contact .text-wrapper {
        padding: 13rem 0;
        margin: 0; } }
    .section-contact .text-wrapper.color-white {
      padding: 0;
      margin-top: 0; }
    .section-contact .text-wrapper div {
      color: white;
      max-width: 32rem; }
      @media screen and (max-width: 992px) {
        .section-contact .text-wrapper div {
          text-align: center; } }
      .section-contact .text-wrapper div p {
        margin: 2rem 0; }
      .section-contact .text-wrapper div a {
        margin: 1rem 0 !important;
        color: black !important; }
  .section-contact .card-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-pack: end;
        justify-content: flex-end;
    padding: 0; }
    .section-contact .card-wrapper div {
      background: white;
      margin-bottom: 2rem;
      text-align: center;
      max-width: 31.5rem; }
      @media screen and (min-width: 992px) {
        .section-contact .card-wrapper div {
          margin-left: 1rem; } }
      .section-contact .card-wrapper div :first-child {
        margin: 2rem 0; }
      .section-contact .card-wrapper div p {
        margin-top: 2rem; }
      .section-contact .card-wrapper div a {
        margin-top: 2rem;
        margin: 0 !important;
        background: #14d991 !important;
        border-color: #14d991 !important; }
      .section-contact .card-wrapper div a:hover {
        border-color: white !important;
        color: white !important; }

.section-contact-second, .section-products .products-bottom .section-partners {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  max-width: none;
  width: initial;
  background: linear-gradient(to right, #14d991 70%, #9ff0d4 70%, #9ff0d4 calc(100% - 2.375rem), #e6faf3 calc(100% - 2.375rem), #e6faf3 100%);
  color: white; }
  @media screen and (min-width: 768px) {
    .section-contact-second, .section-products .products-bottom .section-partners {
      padding: 0; } }
  @media screen and (min-width: 992px) {
    .section-contact-second, .section-products .products-bottom .section-partners {
      -ms-flex-direction: row;
          flex-direction: row;
      background: linear-gradient(to right, #14d991 87%, #9ff0d4 87%, #9ff0d4 calc(100% - 3.5rem), #e6faf3 calc(100% - 3.5rem), #e6faf3 100%); } }
  .section-contact-second .left-column, .section-products .products-bottom .section-partners .left-column {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: center; }
    @media screen and (min-width: 992px) {
      .section-contact-second .left-column, .section-products .products-bottom .section-partners .left-column {
        text-align: initial; } }
    .section-contact-second .left-column div, .section-products .products-bottom .section-partners .left-column div {
      max-width: 32rem; }
      .section-contact-second .left-column div p, .section-products .products-bottom .section-partners .left-column div p {
        margin-top: 5rem; }
      .section-contact-second .left-column div a, .section-products .products-bottom .section-partners .left-column div a {
        margin: 0 !important;
        color: black !important; }
  .section-contact-second .right-column, .section-products .products-bottom .section-partners .right-column {
    margin-top: 2rem;
    display: none; }
    @media screen and (min-width: 992px) {
      .section-contact-second .right-column, .section-products .products-bottom .section-partners .right-column {
        display: initial; } }
    .section-contact-second .right-column ul, .section-products .products-bottom .section-partners .right-column ul {
      list-style: none; }
      .section-contact-second .right-column ul li, .section-products .products-bottom .section-partners .right-column ul li {
        position: relative; }
      .section-contact-second .right-column ul li::before, .section-products .products-bottom .section-partners .right-column ul li::before {
        content: '.';
        font-weight: bold;
        display: inline-block;
        font-size: 2.5rem;
        position: absolute;
        left: -37px;
        color: white;
        top: -28px; }

.section-contact-third {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  margin-top: 1rem;
  margin-bottom: 1rem;
  max-width: none;
  width: initial;
  background: linear-gradient(to right, #14d991 70%, #9ff0d4 70%, #9ff0d4 calc(100% - 2.375rem), #e6faf3 calc(100% - 2.375rem), #e6faf3 100%);
  color: white;
  text-align: center; }
  .section-contact-third .raised {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
    @media screen and (min-width: 992px) {
      .section-contact-third .raised {
        margin-left: 30px !important; } }
    @media screen and (max-width: 992px) {
      .section-contact-third .raised {
        margin-top: 30px !important; } }
  @media screen and (min-width: 768px) {
    .section-contact-third {
      padding: 0;
      text-align: initial; } }
  @media screen and (min-width: 992px) {
    .section-contact-third {
      -ms-flex-direction: row;
          flex-direction: row;
      background: linear-gradient(to right, #14d991 87%, #9ff0d4 87%, #9ff0d4 calc(100% - 3.5rem), #e6faf3 calc(100% - 3.5rem), #e6faf3 100%); } }
  .section-contact-third .input-surname {
    margin-left: 30px !important; }
  .section-contact-third .text-wrapper {
    max-width: none; }
  .section-contact-third .left-column {
    max-width: none; }
  .section-contact-third .right-column {
    max-width: none; }
  .section-contact-third div {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    max-width: 32rem; }
  .section-contact-third a {
    margin: 0 !important;
    color: black !important; }
  .section-contact-third :first-child {
    margin: 0.5rem 0;
    text-align: center; }
    @media screen and (min-width: 992px) {
      .section-contact-third :first-child {
        text-align: initial; } }
  .section-contact-third .right-column {
    -ms-flex-align: center;
        align-items: center; }

.section-contact-fourth {
  background: transparent;
  padding: 0;
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .section-contact-fourth .right-column {
    margin-top: 0;
    margin-bottom: 0; }
  .section-contact-fourth .left-column {
    max-width: none;
    margin-top: 0;
    margin-bottom: 0;
    background: linear-gradient(to right, #14d991 70%, #9ff0d4 70%, #9ff0d4 calc(100% - 2.375rem), #e6faf3 calc(100% - 2.375rem), #e6faf3 100%); }
    @media screen and (min-width: 992px) {
      .section-contact-fourth .left-column {
        background: linear-gradient(to right, #14d991 75%, #9ff0d4 75%, #9ff0d4 calc(100% - 3.5rem), #e6faf3 calc(100% - 3.5rem), #e6faf3 100%); } }
    .section-contact-fourth .left-column div {
      margin-left: auto;
      max-width: 35rem; }
      @media screen and (min-width: 992px) {
        .section-contact-fourth .left-column div {
          margin-left: 0; } }
      .section-contact-fourth .left-column div p {
        margin-top: 3rem;
        margin-bottom: 1.5rem; }
    .section-contact-fourth .left-column h3 {
      margin-top: 2rem; }

.section-contact-fifth .right-column {
  display: block;
  background-color: #c8cacc;
  margin-right: 1rem;
  margin-left: 0; }

.section-contact-aside > .container:last-child {
  padding: 2rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center; }
  @media screen and (max-width: 768px) {
    .section-contact-aside > .container:last-child {
      padding: 0; } }
  .section-contact-aside > .container:last-child > .container {
    max-width: 80%;
    margin-bottom: 0; }
    @media screen and (max-width: 1580px) {
      .section-contact-aside > .container:last-child > .container {
        max-width: 100%; } }

@media screen and (max-width: 576px) {
  .section-contact-aside {
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 2em; } }

@media only screen and (max-width: 991px) {
  .section-newsletter-new {
    background: #14d991; } }

@media only screen and (max-width: 768px) {
  .section-newsletter-new {
    padding: 0; } }

.section-newsletter-new > .container {
  max-width: 87%; }
  @media only screen and (max-width: 991px) {
    .section-newsletter-new > .container {
      max-width: 100%; } }
  .section-newsletter-new > .container .section-newsletter {
    max-width: 100%;
    padding-bottom: 0; }
    .section-newsletter-new > .container .section-newsletter > div {
      -ms-flex: 1;
          flex: 1;
      max-width: 100%;
      -ms-flex-direction: column;
          flex-direction: column; }
      @media only screen and (max-width: 991px) {
        .section-newsletter-new > .container .section-newsletter > div {
          margin-bottom: 0; } }
      .section-newsletter-new > .container .section-newsletter > div h2 {
        margin-bottom: 2rem; }
      .section-newsletter-new > .container .section-newsletter > div form {
        background: transparent;
        box-shadow: none;
        margin: 0;
        padding: 0; }
        @media only screen and (max-width: 991px) {
          .section-newsletter-new > .container .section-newsletter > div form {
            width: 100%; } }
        .section-newsletter-new > .container .section-newsletter > div form > .col-lg-3.max-auto {
          -ms-flex-pack: end;
              justify-content: flex-end; }
        .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row {
          max-width: 100%; }
          @media only screen and (max-width: 991px) {
            .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row {
              display: block; } }
          .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div {
            -ms-flex-pack: start;
                justify-content: flex-start; }
            @media only screen and (max-width: 991px) {
              .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div {
                max-width: 100%;
                margin-bottom: 16px; }
                .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div input[type="text"],
                .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div input[type="email"] {
                  text-align: left; } }
            .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div.mx-auto {
              max-width: 25%; }
              @media only screen and (max-width: 991px) {
                .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div.mx-auto {
                  max-width: 100%;
                  padding-left: 0;
                  -ms-flex-pack: center;
                      justify-content: center; } }
              .section-newsletter-new > .container .section-newsletter > div form > .row.input-button-row > div.mx-auto button {
                margin: 0; }
        .section-newsletter-new > .container .section-newsletter > div form button[name="subscribe"] {
          min-width: 190px;
          width: auto;
          font-family: 'BrandonText';
          font-size: 1rem;
          font-weight: 500;
          display: inline-block;
          padding: 6px 20px;
          cursor: pointer;
          text-decoration: none;
          text-align: center;
          border-radius: 30px;
          text-transform: uppercase;
          background: #fff;
          border-color: #fff;
          color: #000;
          margin-bottom: 20px;
          transition: opacity .4s; }
          .section-newsletter-new > .container .section-newsletter > div form button[name="subscribe"]:hover {
            opacity: 0.7; }
        .section-newsletter-new > .container .section-newsletter > div form div.input {
          background: #fff;
          border: none;
          margin: 0;
          width: 100%;
          max-width: 380px; }
          @media only screen and (max-width: 1280px) {
            .section-newsletter-new > .container .section-newsletter > div form div.input {
              max-width: 100%; } }
        .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput, .section-newsletter-new > .container .section-newsletter > div form .checkbox {
          min-width: 100%;
          color: #fff; }
          @media only screen and (max-width: 1579px) {
            .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput, .section-newsletter-new > .container .section-newsletter > div form .checkbox {
              padding-top: 0; } }
          .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput input[type="checkbox"]:checked + span:after, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput input[type="checkbox"]:checked + span:after, .section-newsletter-new > .container .section-newsletter > div form .checkbox input[type="checkbox"]:checked + span:after {
            left: 5px;
            top: -2px; }
          .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput label, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput label, .section-newsletter-new > .container .section-newsletter > div form .checkbox label {
            padding-left: 22px; }
            @media only screen and (max-width: 991px) {
              .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput label, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput label, .section-newsletter-new > .container .section-newsletter > div form .checkbox label {
                text-align: left; } }
          .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput span, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput span, .section-newsletter-new > .container .section-newsletter > div form .checkbox span {
            width: 24px;
            height: 24px;
            border-radius: 4px; }
          .section-newsletter-new > .container .section-newsletter > div form .forms .field-wrapper.checkboxinput a, .forms .section-newsletter-new > .container .section-newsletter > div form .field-wrapper.checkboxinput a, .section-newsletter-new > .container .section-newsletter > div form .checkbox a {
            color: #fff !important;
            font-weight: 100;
            text-decoration: underline; }
        .section-newsletter-new > .container .section-newsletter > div form .recaptcha {
          margin-top: 0; }
          .section-newsletter-new > .container .section-newsletter > div form .recaptcha .g-recaptcha > div {
            margin-bottom: 0; }
            .section-newsletter-new > .container .section-newsletter > div form .recaptcha .g-recaptcha > div > div {
              margin-bottom: 0; }
          @media only screen and (max-width: 991px) {
            .section-newsletter-new > .container .section-newsletter > div form .recaptcha {
              margin: 0 !important; }
              .section-newsletter-new > .container .section-newsletter > div form .recaptcha .g-recaptcha > div {
                margin: 0; } }

.steps-section {
  max-width: 1300px;
  margin-top: 1rem;
  margin-bottom: 1rem; }
  .steps-section .images-wrapper {
    max-width: none;
    -ms-flex-direction: column;
        flex-direction: column;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 6rem;
    padding-right: 6rem; }
    @media screen and (min-width: 992px) {
      .steps-section .images-wrapper {
        margin-top: 0;
        -ms-flex-direction: row;
            flex-direction: row;
        -ms-flex-align: initial;
            align-items: initial; } }
    .steps-section .images-wrapper div {
      position: relative;
      display: -ms-flexbox;
      display: flex;
      -ms-flex: 0;
          flex: 0;
      -ms-flex-direction: column;
          flex-direction: column;
      -ms-flex-align: center;
          align-items: center;
      text-align: center; }
      .steps-section .images-wrapper div img {
        width: 100px !important;
        margin-bottom: 7rem; }
        @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
          .steps-section .images-wrapper div img {
            margin-left: 250px; } }
      .steps-section .images-wrapper div p {
        position: absolute;
        top: 8em;
        width: 16rem; }
    .steps-section .images-wrapper .line {
      background: #14d991;
      width: 3px;
      margin-top: 0;
      padding-top: 5rem;
      margin-bottom: 1.5rem; }
      @media screen and (min-width: 992px) {
        .steps-section .images-wrapper .line {
          height: 3px;
          -ms-flex: 1;
              flex: 1;
          margin-top: 3rem;
          -ms-flex-direction: row;
              flex-direction: row;
          min-height: none;
          padding-top: 0;
          margin-bottom: 0; } }
      @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
        .steps-section .images-wrapper .line {
          display: none; } }

.knowledge-section {
  padding-top: 1.5rem;
  max-width: none;
  width: initial;
  padding-left: 2.375rem;
  padding-right: 2.375rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem; }
  @media screen and (min-width: 992px) {
    .knowledge-section {
      margin-left: 2.375rem;
      margin-right: 2.375rem; } }
  .knowledge-section div {
    max-width: 1300px; }
  .knowledge-section .main-info-wrapper {
    padding: 0; }
    .knowledge-section .main-info-wrapper div {
      margin: auto;
      padding: 0;
      max-width: 31.5rem; }
      @media screen and (min-width: 992px) {
        .knowledge-section .main-info-wrapper div {
          padding: initial;
          padding-left: 1rem; } }
      .knowledge-section .main-info-wrapper div h3 {
        margin-bottom: 2rem; }
        @media screen and (min-width: 992px) {
          .knowledge-section .main-info-wrapper div h3 {
            width: 15rem; } }
      .knowledge-section .main-info-wrapper div p {
        color: #707070; }
  .knowledge-section .links-wrapper {
    color: black;
    padding: 0;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto; }
    @media screen and (min-width: 992px) {
      .knowledge-section .links-wrapper {
        margin-left: initial;
        margin-right: initial; } }
    .knowledge-section .links-wrapper h1,
    .knowledge-section .links-wrapper h2,
    .knowledge-section .links-wrapper h3,
    .knowledge-section .links-wrapper h4,
    .knowledge-section .links-wrapper h5,
    .knowledge-section .links-wrapper h6 {
      color: #707070;
      margin: auto;
      margin-bottom: 3rem;
      max-width: 31.5rem;
      margin-top: 2rem; }
      @media screen and (min-width: 992px) {
        .knowledge-section .links-wrapper h1,
        .knowledge-section .links-wrapper h2,
        .knowledge-section .links-wrapper h3,
        .knowledge-section .links-wrapper h4,
        .knowledge-section .links-wrapper h5,
        .knowledge-section .links-wrapper h6 {
          margin-left: 2rem;
          margin-top: initial;
          max-width: 30em; } }
    .knowledge-section .links-wrapper div {
      padding: 0;
      margin: 0;
      border-bottom: 1px solid #707070;
      margin: auto;
      margin-bottom: 15px;
      max-width: 31.5rem;
      width: initial; }
      @media screen and (min-width: 992px) {
        .knowledge-section .links-wrapper div {
          max-width: 30rem;
          margin-left: 2rem; } }
      .knowledge-section .links-wrapper div figure,
      .knowledge-section .links-wrapper div p {
        display: inline;
        color: #707070; }
      .knowledge-section .links-wrapper div figure {
        margin-right: 8px; }
    .knowledge-section .links-wrapper div:hover {
      color: #14d991;
      border-color: #14d991; }
      .knowledge-section .links-wrapper div:hover svg {
        filter: grayscale(100%) brightness(170%) sepia(81%) hue-rotate(466deg) saturate(840%) contrast(0.8); }
      .knowledge-section .links-wrapper div:hover p {
        color: #14d991; }
  .knowledge-section div {
    padding: 0; }
    @media screen and (min-width: 992px) {
      .knowledge-section div {
        padding-left: 0.5rem;
        padding-right: 0.5rem; } }
  .knowledge-section .card-wrapper {
    max-width: 505px;
    box-shadow: #dadada 0 0px 10px 0px;
    padding: 0;
    background: white;
    color: #707070;
    margin: auto;
    margin-bottom: 2rem; }
    @media screen and (min-width: 992px) {
      .knowledge-section .card-wrapper {
        margin: initial; } }
    .knowledge-section .card-wrapper div {
      padding: 0;
      overflow: hidden; }
      .knowledge-section .card-wrapper div img {
        height: 235px;
        object-fit: none; }
      .knowledge-section .card-wrapper div img:hover {
        -ms-transform: scale(1.1);
            transform: scale(1.1); }
    .knowledge-section .card-wrapper h1,
    .knowledge-section .card-wrapper h2,
    .knowledge-section .card-wrapper h3,
    .knowledge-section .card-wrapper h4,
    .knowledge-section .card-wrapper h5,
    .knowledge-section .card-wrapper p {
      margin: 1rem 2.2rem; }
    .knowledge-section .card-wrapper p {
      padding-bottom: 2rem;
      margin-top: 0; }
      .knowledge-section .card-wrapper p a {
        cursor: pointer;
        color: #707070; }
      .knowledge-section .card-wrapper p img {
        width: 10px;
        margin-bottom: 5px;
        transition: 0s; }
    .knowledge-section .card-wrapper p:hover a {
      color: #14d991; }
    .knowledge-section .card-wrapper p:hover img {
      filter: grayscale(100%) brightness(170%) sepia(81%) hue-rotate(466deg) saturate(840%) contrast(0.8); }
    .knowledge-section .card-wrapper .title-link {
      color: black;
      cursor: pointer; }
    .knowledge-section .card-wrapper img {
      width: 100%;
      transition: 0.3s; }
    .knowledge-section .card-wrapper .title-link:hover {
      color: #14d991; }
  .knowledge-section .left-card {
    margin-left: auto; }
  .knowledge-section .right-card,
  .knowledge-section .links-wrapper {
    margin-right: auto; }
  .knowledge-section .main-info-wrapper {
    margin: 0 auto; }

.section-headers, .section-headers-second-version {
  max-width: none !important;
  margin: 2rem 1rem;
  background: linear-gradient(180deg, #aff2d9 calc(100% - 3rem), white calc(100% - 3rem), white 100%); }
  @media screen and (min-width: 768px) {
    .section-headers, .section-headers-second-version {
      margin-left: 2.375rem;
      margin-right: 2.375rem; } }
  @media screen and (min-width: 1400px) {
    .section-headers, .section-headers-second-version {
      margin-left: 3.25rem;
      margin-right: 3.25rem; } }
  .section-headers .text-column, .section-headers-second-version .text-column {
    margin-top: 2rem; }
    @media screen and (min-width: 992px) {
      .section-headers .text-column, .section-headers-second-version .text-column {
        margin-top: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-align: center;
            align-items: center;
        -ms-flex-pack: center;
            justify-content: center; } }
    .section-headers .text-column *, .section-headers-second-version .text-column * {
      max-width: none; }
      @media screen and (min-width: 992px) {
        .section-headers .text-column *, .section-headers-second-version .text-column * {
          max-width: 35rem; } }
  .section-headers .img-column img, .section-headers-second-version .img-column img {
    margin-top: 6rem;
    width: 100%; }

.section-headers-second-version {
  background: linear-gradient(180deg, #14d991 calc(100% - 3rem), white calc(100% - 3rem), white 100%); }

.section-carriers-slider {
  background: #000;
  color: #fff;
  height: 27.375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem; }
  @media screen and (min-width: 768px) {
    .section-carriers-slider {
      height: 34.375rem; } }
  .section-carriers-slider .text-wrapper {
    max-width: 380px; }
  .section-carriers-slider .tab-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .section-carriers-slider .tab-content .tab-pane {
      display: none;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: center;
          align-items: center;
      padding: 0 1rem; }
      @media screen and (min-width: 768px) {
        .section-carriers-slider .tab-content .tab-pane {
          width: 800px;
          padding: 0 2rem; } }
      @media screen and (min-width: 992px) {
        .section-carriers-slider .tab-content .tab-pane {
          padding: 0; } }
      .section-carriers-slider .tab-content .tab-pane img {
        display: none;
        height: 300px;
        width: 300px; }
        @media screen and (min-width: 768px) {
          .section-carriers-slider .tab-content .tab-pane img {
            display: block; } }
    .section-carriers-slider .tab-content .active, .section-carriers-slider .tab-content .collapsing-item:not(.collapsed) > p:first-child {
      display: -ms-flexbox;
      display: flex; }
  .section-carriers-slider .tabs {
    position: relative;
    height: 300px !important; }
  .section-carriers-slider .nav {
    position: absolute;
    width: auto;
    left: 0;
    right: 0;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    z-index: 2;
    bottom: -4rem;
    border-bottom: none; }
    .section-carriers-slider .nav a {
      display: block;
      width: 10px;
      height: 10px;
      margin: 13px 10px;
      color: transparent;
      background-color: #808080;
      border-radius: 11px;
      border: 2px solid #808080;
      transition: 0.3s; }
      .section-carriers-slider .nav a.active {
        background-color: #14d991;
        border-color: #14d991; }
        .section-carriers-slider .nav a.active:hover {
          cursor: default; }
      .section-carriers-slider .nav a:hover {
        background-color: #14d991;
        border-color: #14d991; }

.careers {
  overflow: hidden; }
  .careers .container-fluid:first-of-type {
    padding: 0; }
  .careers .hero-module {
    position: relative;
    width: 100vw;
    height: 75vh; }
    .careers .hero-module .centered-logo {
      height: 200px;
      width: 370px;
      position: absolute;
      margin: auto;
      left: 0;
      right: 0;
      top: 27%;
      -ms-transform: scale(0.8);
          transform: scale(0.8); }
      @media screen and (min-width: 1400px) {
        .careers .hero-module .centered-logo {
          -ms-transform: none;
              transform: none; } }
      .careers .hero-module .centered-logo figure {
        height: 182px; }
  .careers .hero-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    max-width: 500px;
    min-width: 280px; }
  .careers .button-hero {
    font-family: BrandonText;
    font-size: 1rem;
    font-weight: 500;
    display: inline-block;
    padding: 6px 20px;
    cursor: pointer;
    transition: 0.1s all;
    text-decoration: none;
    color: #fff;
    border: 2px solid #536dff;
    border-radius: 30px;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #fff;
    color: #fff;
    text-transform: none; }
    @media screen and (max-width: 420px) {
      .careers .button-hero {
        font-size: 0.65rem; } }
  .careers .careers-infos .row {
    height: 100%;
    min-height: 520px;
    padding-bottom: 0 !important; }
  .careers .careers-infos [class*='col-'] {
    position: relative;
    min-height: 520px;
    overflow: hidden; }
  .careers .careers-infos .img-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    height: auto;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .careers .careers-infos .hover-column {
    padding: 0 !important; }
    .careers .careers-infos .hover-column .img-centered {
      transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); }
    .careers .careers-infos .hover-column:hover .image-container {
      -ms-transform: none;
          transform: none; }
      .careers .careers-infos .hover-column:hover .image-container .img-centered {
        -ms-transform: scale(1.1) translate(-45%, -45%);
            transform: scale(1.1) translate(-45%, -45%);
        transition: all 0.5s cubic-bezier(0.65, 0.05, 0.36, 1); }
  @media screen and (max-width: 768px) {
    .careers .careers-infos {
      margin-left: -15px;
      margin-right: -15px; } }
  .careers .stages {
    margin-top: 50px;
    padding-left: 40px;
    padding-right: 40px; }
    .careers .stages [class*='col-'] {
      padding: 0;
      margin: 0; }
      @media screen and (max-width: 992px) {
        .careers .stages [class*='col-']:not(:last-of-type) {
          margin-bottom: 90px; } }
      .careers .stages [class*='col-'] p:first-of-type {
        margin-top: 90px; }
        @media screen and (max-width: 992px) {
          .careers .stages [class*='col-'] p:first-of-type {
            margin-top: 50px; } }
    .careers .stages .hline {
      position: absolute;
      left: 0;
      right: 0;
      top: 150px;
      height: 6px;
      border: 3px solid #14d991;
      margin-left: 20px;
      margin-right: 20px; }
      .careers .stages .hline:before, .careers .stages .hline:after {
        content: '';
        position: absolute;
        top: -9px;
        display: -ms-flexbox;
        display: flex;
        height: 18px;
        width: 18px;
        border-radius: 9px;
        border: 6px solid #14d991; }
      .careers .stages .hline:before {
        left: -15px; }
      .careers .stages .hline:after {
        right: -15px; }
  .careers .jobs-header {
    color: #133929; }
    .careers .jobs-header.row {
      padding-bottom: 0;
      color: #133929; }
      .careers .jobs-header.row p {
        color: #133929;
        text-transform: uppercase;
        margin-bottom: 0; }
  .careers .jobs .job {
    color: #133929;
    display: block;
    margin: 0;
    position: relative; }
    .careers .jobs .job h1,
    .careers .jobs .job h2,
    .careers .jobs .job h3,
    .careers .jobs .job h4,
    .careers .jobs .job h5,
    .careers .jobs .job h6,
    .careers .jobs .job a {
      color: #133929; }
    .careers .jobs .job .job-detail {
      border-bottom: 1px solid currentColor; }
      @media screen and (min-width: 768px) {
        .careers .jobs .job .job-detail {
          margin-left: 35px;
          margin-right: 35px; } }
      .careers .jobs .job .job-detail .job-type > p {
        margin-bottom: 0; }
      .careers .jobs .job .job-detail > .row {
        padding-bottom: 20px; }
        .careers .jobs .job .job-detail > .row .job-name,
        .careers .jobs .job .job-detail > .row .job-location {
          padding: 0; }
          .careers .jobs .job .job-detail > .row .job-name > h3,
          .careers .jobs .job .job-detail > .row .job-location > h3 {
            margin-top: 10px; }
        .careers .jobs .job .job-detail > .row .job-name > h3 {
          margin-left: 0; }
    .careers .jobs .job:hover {
      color: #14d991; }
      .careers .jobs .job:hover h1,
      .careers .jobs .job:hover h2,
      .careers .jobs .job:hover h3,
      .careers .jobs .job:hover h4,
      .careers .jobs .job:hover h5,
      .careers .jobs .job:hover h6 {
        color: #14d991; }
    .careers .jobs .job:after {
      content: 'I';
      font-size: 1.5rem;
      font-weight: 700;
      position: absolute;
      right: 35px;
      bottom: 35px;
      transition: 0.3s; }
      @media screen and (max-width: 768px) {
        .careers .jobs .job:after {
          right: 0; } }

.section-grid-slider {
  margin: 2rem 0; }
  .section-grid-slider .section-grid {
    margin: 0; }
  .section-grid-slider .tabs {
    position: relative; }
  .section-grid-slider .active, .section-grid-slider .collapsing-item:not(.collapsed) > p:first-child {
    font-weight: 300; }
  .section-grid-slider .nav {
    position: absolute;
    width: auto;
    left: 0;
    right: 0;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: center;
        justify-content: center;
    z-index: 2;
    bottom: -2.25rem;
    border-bottom: none; }
    .section-grid-slider .nav a {
      display: block;
      width: 10px;
      height: 10px;
      margin: 13px 10px;
      color: transparent;
      background-color: #808080;
      border-radius: 11px;
      border: 2px solid #808080;
      transition: 0.3s; }
      .section-grid-slider .nav a.active {
        background-color: #14d991;
        border-color: #14d991;
        font-weight: 300; }
        .section-grid-slider .nav a.active:hover {
          cursor: default; }
      .section-grid-slider .nav a:hover {
        background-color: #14d991;
        border-color: #14d991; }

.interactive-circle, .section-scroll-interactive .interactive-circle-one, .section-scroll-interactive .interactive-circle-two, .section-scroll-interactive .interactive-circle-three {
  position: fixed;
  border-radius: 50%;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  top: calc(100% - 33rem);
  left: calc(100% - 56rem); }
  @media screen and (min-width: 992px) {
    .interactive-circle, .section-scroll-interactive .interactive-circle-one, .section-scroll-interactive .interactive-circle-two, .section-scroll-interactive .interactive-circle-three {
      visibility: visible; } }

.section-scroll-interactive {
  margin-top: 2rem;
  margin-bottom: 2rem;
  min-height: 100vh; }
  .section-scroll-interactive p {
    font-weight: 300; }
  @media screen and (min-width: 992px) {
    .section-scroll-interactive .sticky-content {
      height: 100vh;
      position: sticky;
      top: 0; } }
  .section-scroll-interactive .interactive-circle-one {
    z-index: 2;
    height: 12rem;
    width: 12rem;
    background-color: #14d991; }
  .section-scroll-interactive .interactive-circle-two {
    z-index: 3;
    height: 7rem;
    width: 7rem;
    margin: 2.5rem;
    background-color: #9ff0d4; }
  .section-scroll-interactive .interactive-circle-three {
    z-index: 4;
    height: 3rem;
    width: 3rem;
    margin: 4.5rem;
    background-color: white; }
  .section-scroll-interactive .space-between-items {
    height: 0; }
    @media screen and (min-width: 992px) {
      .section-scroll-interactive .space-between-items {
        height: calc(100vh - 350px); } }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .section-scroll-interactive .space-between-items {
        height: 0; } }
  .section-scroll-interactive .interactive-item {
    position: relative;
    z-index: 5;
    opacity: 1;
    transition: 2s; }
    @media screen and (min-width: 992px) {
      .section-scroll-interactive .interactive-item {
        opacity: 0; } }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .section-scroll-interactive .interactive-item {
        opacity: 1; } }
  .section-scroll-interactive .interactive-item > * {
    max-width: 32rem; }
  .section-scroll-interactive .active, .section-scroll-interactive .collapsing-item:not(.collapsed) > p:first-child {
    opacity: 1; }

.section-tables {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .section-tables .offer-table {
    transition: 0.3s;
    padding: 1rem; }
    @media screen and (min-width: 576px) {
      .section-tables .offer-table {
        padding: 3rem; } }
    .section-tables .offer-table ul {
      list-style: none;
      padding-left: 0; }
      .section-tables .offer-table ul li {
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 0;
        padding-left: 26px;
        margin-top: 10px;
        position: relative;
        border-bottom: 1px solid;
        min-height: 55px; }
      .section-tables .offer-table ul :last-child {
        border-bottom: none; }
    .section-tables .offer-table li::before {
      content: '.';
      font-weight: bold;
      display: inline-block;
      font-size: 2.5rem;
      position: absolute;
      left: 0;
      top: -28px;
      transition: 0.3s; }
    .section-tables .offer-table strong {
      transition: 0.3s; }
    .section-tables .offer-table:hover {
      background: #f1f1f1; }
      .section-tables .offer-table:hover li::before {
        color: #14d991; }
      .section-tables .offer-table:hover strong {
        color: #14d991; }
      .section-tables .offer-table:hover .button-wrapper {
        opacity: 1; }
    .section-tables .offer-table a {
      color: white;
      margin: 0 !important;
      background: #14d991 !important;
      border-color: #14d991 !important;
      padding: 2px 4rem !important; }
    .section-tables .offer-table .button-wrapper {
      text-align: center;
      opacity: 0;
      transition: 0.3s; }

.section-render {
  margin-top: 2rem;
  margin-bottom: 2rem; }
  .section-render a {
    color: white;
    margin: 0 !important;
    background: #14d991 !important;
    border-color: #14d991 !important;
    padding: 2px 4.5rem !important; }
  .section-render .top-text {
    max-width: 32rem; }
  .section-render img {
    width: 100%; }
  .section-render .render-column {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    @media screen and (min-width: 992px) {
      .section-render .render-column {
        -ms-flex-direction: initial;
            flex-direction: initial; } }
  .section-render .text-wrapper {
    min-width: 15.625rem;
    margin-right: 1rem; }

.section-hubspot iframe {
  width: 100%;
  height: 900px;
  border: 0; }
  @media only screen and (max-width: 707px) {
    .section-hubspot iframe {
      height: 800px; } }

.section-products {
  background-color: #fbfbfb;
  padding: 0; }
  .section-products .products-top {
    overflow: hidden; }
    .section-products .products-top .hero-module {
      position: relative;
      width: 100vw;
      height: 75vh; }
    .section-products .products-top .hero-container {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      max-width: 380px;
      min-width: 280px;
      color: white; }
      @media screen and (min-width: 992px) {
        .section-products .products-top .hero-container {
          left: 22%; } }
      .section-products .products-top .hero-container h1 {
        text-decoration: underline;
        font-size: 3.4rem; }
      .section-products .products-top .hero-container p {
        font-size: 1.2rem; }
  .section-products .product-filters {
    margin-left: 0;
    margin-right: 0;
    padding: 0 1rem;
    color: #707070; }
    @media screen and (max-width: 992px) {
      .section-products .product-filters {
        margin-top: 1rem;
        margin-bottom: 1rem; } }
    .section-products .product-filters .product-filter-top {
      padding: 1rem 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: row;
          flex-direction: row;
      -ms-flex-pack: justify;
          justify-content: space-between; }
      @media screen and (max-width: 992px) {
        .section-products .product-filters .product-filter-top {
          -ms-flex-direction: column;
              flex-direction: column;
          padding: 0; } }
      .section-products .product-filters .product-filter-top .filter-header {
        padding-top: 0.6rem;
        min-width: 100px; }
      .section-products .product-filters .product-filter-top .active-filters {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
        min-height: 1.5rem;
        margin-bottom: 0;
        margin-right: auto; }
        @media screen and (max-width: 992px) {
          .section-products .product-filters .product-filter-top .active-filters {
            padding-bottom: 0.4rem;
            min-height: 0; } }
        .section-products .product-filters .product-filter-top .active-filters span {
          color: #14d991;
          border: 1px solid #14d991;
          border-radius: 1.5rem;
          padding: 0.3rem 0.5rem;
          margin: 5px;
          cursor: pointer; }
        .section-products .product-filters .product-filter-top .active-filters span:after {
          content: ' \2715';
          color: #14d991;
          padding: 0.3rem;
          font-size: 1.1rem; }
      .section-products .product-filters .product-filter-top .filter-reset {
        padding-top: 0.6rem;
        text-transform: uppercase;
        text-decoration: underline;
        cursor: pointer;
        min-width: 200px;
        text-align: right; }
        @media screen and (max-width: 992px) {
          .section-products .product-filters .product-filter-top .filter-reset {
            text-align: left; } }
    .section-products .product-filters ul {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: left;
          justify-content: left;
      margin: 0;
      padding-top: 0;
      padding-bottom: 1rem; }
      .section-products .product-filters ul li {
        padding-left: 1rem;
        margin-left: 0;
        margin-bottom: 5px; }
        @media screen and (min-width: 992px) {
          .section-products .product-filters ul li {
            width: auto; } }
        .section-products .product-filters ul li.disabled {
          color: #c8cacc;
          cursor: default; }
      .section-products .product-filters ul li::before {
        width: 1.5rem; }
    .section-products .product-filters .product-dropdown-row {
      padding: 10px 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap; }
      @media screen and (max-width: 992px) {
        .section-products .product-filters .product-dropdown-row {
          -ms-flex-flow: column;
              flex-flow: column; } }
      .section-products .product-filters .product-dropdown-row .dropdown.show .button-tile, .section-products .product-filters .product-dropdown-row .dropdown.show .dropdown-menu {
        box-shadow: #dadada 0 0px 10px 0px;
        background: white; }
      @media screen and (max-width: 992px) {
        .section-products .product-filters .product-dropdown-row .dropdown:first-child {
          margin-bottom: 10px; } }
      .section-products .product-filters .product-dropdown-row .button-tile {
        border: 0px;
        margin: 0;
        padding: 0;
        padding: 1rem;
        background-color: #fbfbfb;
        color: #707070;
        font-size: 16px;
        font-family: BrandonText;
        font-weight: 300;
        width: 100%;
        text-align: left;
        margin-right: 1rem; }
        @media screen and (min-width: 992px) {
          .section-products .product-filters .product-dropdown-row .button-tile {
            width: 250px; } }
        .section-products .product-filters .product-dropdown-row .button-tile img {
          float: right; }
      .section-products .product-filters .product-dropdown-row .dropdown-menu-tile {
        width: 100%;
        padding: 10px;
        border: 0;
        color: #707070;
        font-size: 16px;
        font-family: BrandonText;
        font-weight: 300;
        /* checkbox aspect */
        /* checked mark aspect */
        /* checked mark aspect changes */ }
        @media screen and (min-width: 992px) {
          .section-products .product-filters .product-dropdown-row .dropdown-menu-tile {
            margin-right: 1rem;
            width: 250px; } }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile .search-field {
          width: 100%;
          border: 0px;
          color: #6c6c69;
          font-size: 16px;
          font-family: BrandonText;
          font-weight: 300;
          background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgeG1sbnM6c29kaXBvZGk9Imh0dHA6Ly9zb2RpcG9kaS5zb3VyY2Vmb3JnZS5uZXQvRFREL3NvZGlwb2RpLTAuZHRkIgogICB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIKICAgd2lkdGg9IjE2IgogICBoZWlnaHQ9IjE2IgogICBmaWxsPSJjdXJyZW50Q29sb3IiCiAgIGNsYXNzPSJiaSBiaS1zZWFyY2giCiAgIHZpZXdCb3g9IjAgMCAxNiAxNiIKICAgdmVyc2lvbj0iMS4xIgogICBpZD0ic3ZnNCIKICAgc29kaXBvZGk6ZG9jbmFtZT0ic2VhcmNoLnN2ZyIKICAgaW5rc2NhcGU6dmVyc2lvbj0iMC45Mi40ICg1ZGE2ODljMzEzLCAyMDE5LTAxLTE0KSI+CiAgPG1ldGFkYXRhCiAgICAgaWQ9Im1ldGFkYXRhMTAiPgogICAgPHJkZjpSREY+CiAgICAgIDxjYzpXb3JrCiAgICAgICAgIHJkZjphYm91dD0iIj4KICAgICAgICA8ZGM6Zm9ybWF0PmltYWdlL3N2Zyt4bWw8L2RjOmZvcm1hdD4KICAgICAgICA8ZGM6dHlwZQogICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+CiAgICAgIDwvY2M6V29yaz4KICAgIDwvcmRmOlJERj4KICA8L21ldGFkYXRhPgogIDxkZWZzCiAgICAgaWQ9ImRlZnM4IiAvPgogIDxzb2RpcG9kaTpuYW1lZHZpZXcKICAgICBwYWdlY29sb3I9IiNmZmZmZmYiCiAgICAgYm9yZGVyY29sb3I9IiM2NjY2NjYiCiAgICAgYm9yZGVyb3BhY2l0eT0iMSIKICAgICBvYmplY3R0b2xlcmFuY2U9IjEwIgogICAgIGdyaWR0b2xlcmFuY2U9IjEwIgogICAgIGd1aWRldG9sZXJhbmNlPSIxMCIKICAgICBpbmtzY2FwZTpwYWdlb3BhY2l0eT0iMCIKICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIgogICAgIGlua3NjYXBlOndpbmRvdy13aWR0aD0iMTkyMCIKICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSIxMDE2IgogICAgIGlkPSJuYW1lZHZpZXc2IgogICAgIHNob3dncmlkPSJmYWxzZSIKICAgICBpbmtzY2FwZTp6b29tPSIxNC43NSIKICAgICBpbmtzY2FwZTpjeD0iLTUuNDIzNzI4OCIKICAgICBpbmtzY2FwZTpjeT0iNy43Mjg4MTM2IgogICAgIGlua3NjYXBlOndpbmRvdy14PSIwIgogICAgIGlua3NjYXBlOndpbmRvdy15PSIyNyIKICAgICBpbmtzY2FwZTp3aW5kb3ctbWF4aW1pemVkPSIxIgogICAgIGlua3NjYXBlOmN1cnJlbnQtbGF5ZXI9InN2ZzQiIC8+CiAgPHBhdGgKICAgICBkPSJNMTEuNzQyIDEwLjM0NGE2LjUgNi41IDAgMSAwLTEuMzk3IDEuMzk4aC0uMDAxYy4wMy4wNC4wNjIuMDc4LjA5OC4xMTVsMy44NSAzLjg1YTEgMSAwIDAgMCAxLjQxNS0xLjQxNGwtMy44NS0zLjg1YTEuMDA3IDEuMDA3IDAgMCAwLS4xMTUtLjF6TTEyIDYuNWE1LjUgNS41IDAgMSAxLTExIDAgNS41IDUuNSAwIDAgMSAxMSAweiIKICAgICBpZD0icGF0aDIiCiAgICAgc3R5bGU9ImZpbGw6I2M4Y2FjYztmaWxsLW9wYWNpdHk6MSIgLz4KPC9zdmc+Cg==) right 0.5rem center no-repeat; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile .dropdown-divider {
          border-top: 1px solid #707070; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile .dropdown-filters {
          overflow-y: auto;
          max-height: 215px; }
          .section-products .product-filters .product-dropdown-row .dropdown-menu-tile .dropdown-filters .dropdown-empty-filters {
            display: none;
            color: #000;
            font-style: italic; }
          .section-products .product-filters .product-dropdown-row .dropdown-menu-tile .dropdown-filters p {
            margin-top: 1rem;
            margin-bottom: 0; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:not(:checked),
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:checked {
          position: absolute;
          left: 0;
          opacity: 0.01; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:not(:checked) + label,
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:checked + label {
          position: relative;
          padding-left: 2.3em;
          font-size: 1.05em;
          line-height: 1.7;
          cursor: pointer; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:not(:checked) + label:before,
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:checked + label:before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          width: 1.4em;
          height: 1.4em;
          border: 1px solid #e8e8e8;
          background: #e8e8e8;
          border-radius: .4em; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:not(:checked) + label:after,
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:checked + label:after {
          content: '\2022';
          position: absolute;
          top: .18em;
          left: .09em;
          font-size: 2.5em;
          color: #14d991;
          line-height: 0; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:not(:checked) + label:after {
          opacity: 0; }
        .section-products .product-filters .product-dropdown-row .dropdown-menu-tile [type="checkbox"]:checked + label:after {
          opacity: 1; }
  .section-products .products-list {
    background-color: #fbfbfb;
    margin: 20px 0 80px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: start;
        align-content: flex-start; }
    @media screen and (min-width: 768px) {
      .section-products .products-list {
        margin: 30px 0 90px; } }
    .section-products .products-list .product-item {
      -ms-flex-positive: 1;
          flex-grow: 1;
      width: 250px;
      margin: 10px; }
    .section-products .products-list .product-tile {
      box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.15);
      background-color: #fff;
      padding: 0;
      transition: 0.3s; }
      .section-products .products-list .product-tile:hover {
        box-shadow: 0 5px 45px 0 rgba(0, 0, 0, 0.25); }
        .section-products .products-list .product-tile:hover .product-tile-hover-view {
          opacity: 1; }
      .section-products .products-list .product-tile img {
        width: 100%; }
      .section-products .products-list .product-tile p {
        margin: 20px;
        font-size: 1.2rem;
        color: #6c6c69; }
      .section-products .products-list .product-tile .product-tile-hover-view {
        opacity: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-align: left;
            align-items: left;
        -ms-flex-pack: justify;
            justify-content: space-between;
        background-color: rgba(0, 0, 0, 0.75);
        transition: all 0.3s;
        padding: 15px; }
        .section-products .products-list .product-tile .product-tile-hover-view h5, .section-products .products-list .product-tile .product-tile-hover-view p {
          color: #fff; }
        .section-products .products-list .product-tile .product-tile-hover-view p {
          margin: 0;
          font-size: initial; }
          .section-products .products-list .product-tile .product-tile-hover-view p a {
            text-transform: uppercase;
            color: #fff;
            display: inline-block;
            font-weight: 500;
            font-size: 1rem;
            text-decoration: none; }
            .section-products .products-list .product-tile .product-tile-hover-view p a:hover {
              color: #13cc88; }
            .section-products .products-list .product-tile .product-tile-hover-view p a:after {
              font-size: 13px;
              content: 'J';
              margin-left: 10px;
              position: relative;
              right: 0;
              transition: right 0.3s; }
    .section-products .products-list .product-caption p {
      margin: 20px;
      font-size: 1.2rem;
      color: #000;
      text-align: center; }
    .section-products .products-list #products-no-results {
      display: none; }
  .section-products .products-bottom {
    padding-bottom: 60px; }
    .section-products .products-bottom .section-partners .left-column div p {
      font-size: 24px;
      margin-top: 2rem !important;
      margin-bottom: 1.5rem !important; }
    .section-products .products-bottom .section-partners .right-column {
      display: initial;
      margin-top: 1rem;
      text-align: center; }
      @media screen and (min-width: 992px) {
        .section-products .products-bottom .section-partners .right-column {
          text-align: initial; } }
      .section-products .products-bottom .section-partners .right-column p {
        margin-top: 1rem; }
        @media screen and (min-width: 992px) {
          .section-products .products-bottom .section-partners .right-column p {
            margin-top: 6rem; } }
      .section-products .products-bottom .section-partners .right-column a {
        margin: 0 !important;
        color: black !important; }

.homepage-hero-module :root {
  --swiper-navigation-sides-offset: 30px; }
  @media (max-width: 600px) {
    .homepage-hero-module :root {
      --swiper-navigation-sides-offset: 15px; } }

.homepage-hero-module .swiper {
  width: 100vw;
  height: 100vh;
  min-height: 100%; }
  .homepage-hero-module .swiper .swiper-button-prev, .homepage-hero-module .swiper .swiper-button-next {
    color: white;
    transition: color .4s; }
    .homepage-hero-module .swiper .swiper-button-prev:hover, .homepage-hero-module .swiper .swiper-button-next:hover {
      color: #14d991; }
  .homepage-hero-module .swiper .swiper-slide-captions {
    padding: 60px; }
    .homepage-hero-module .swiper .swiper-slide-captions h1 {
      color: white;
      line-height: 60px; }
      @media (max-width: 700px) {
        .homepage-hero-module .swiper .swiper-slide-captions h1 {
          font-size: 35px;
          line-height: 40px; } }
      @media (max-width: 400px) {
        .homepage-hero-module .swiper .swiper-slide-captions h1 {
          font-size: 25px;
          line-height: 40px; } }
    .homepage-hero-module .swiper .swiper-slide-captions a {
      margin-top: 25px; }
  .homepage-hero-module .swiper .button-scroll-down-wrapper {
    display: block;
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    transition: all .4s; }
  .homepage-hero-module .swiper .swiper-pagination .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    border-radius: 17px;
    margin: 8px;
    border: 2px solid #14d991;
    background: none;
    transition: opacity .4s; }
    .homepage-hero-module .swiper .swiper-pagination .swiper-pagination-bullet:hover {
      opacity: 0.5; }
  .homepage-hero-module .swiper .swiper-pagination .swiper-pagination-bullet-active {
    border-color: white; }

.text-slider-module {
  height: 500px; }
  @media screen and (max-width: 700px) {
    .text-slider-module .h0 {
      font-size: 30px !important; } }
  .text-slider-module .swiper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 0 40px 0; }
    .text-slider-module .swiper .swiper-slide {
      height: 100%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; }
    .text-slider-module .swiper .swiper-button-prev, .text-slider-module .swiper .swiper-button-next {
      color: #dadada;
      transition: color .4s; }
      .text-slider-module .swiper .swiper-button-prev:hover, .text-slider-module .swiper .swiper-button-next:hover {
        color: #0b835b; }
    .text-slider-module .swiper .swiper-button-prev {
      position: absolute;
      rotate: 90deg;
      margin: 0 auto;
      top: 50px;
      left: 0;
      right: 0; }
    .text-slider-module .swiper .swiper-button-next {
      position: absolute;
      rotate: 90deg;
      margin: 0 auto;
      top: 430px;
      left: 0;
      right: 0; }
    .text-slider-module .swiper .swiper-pagination .swiper-pagination-bullet-active {
      background-color: #14d991; }
    @media screen and (max-width: 700px) {
      .text-slider-module .swiper .swiper-pagination {
        display: none; } }

@font-face {
  font-family: "BrandonText";
  font-weight: 300;
  src: url(fonts/BrandonText-Regular.otf) format("opentype"); }

@font-face {
  font-family: "BrandonText";
  font-style: italic;
  font-weight: 300;
  src: url(fonts/BrandonText-RegularItalic.otf) format("opentype"); }

@font-face {
  font-family: "BrandonText";
  font-weight: 500;
  src: url(fonts/BrandonText-Bold.otf) format("opentype"); }

@font-face {
  font-family: "BrandonText";
  font-style: italic;
  font-weight: 500;
  src: url(fonts/BrandonText-Bold.otf) format("opentype"); }

@font-face {
  font-family: "BrandonText";
  font-weight: 700;
  src: url(fonts/BrandonText-Black.otf) format("opentype"); }

@font-face {
  font-family: "BrandonText";
  font-style: italic;
  font-weight: 700;
  src: url(fonts/BrandonText-BlackItalic.otf) format("opentype"); }

@font-face {
  font-family: 'silvairIcons';
  src: url(fonts/silvairIcons.woff) format("woff"), url(fonts/silvairIcons.ttf) format("truetype"), url(df64f28da4264b97c22550e319ab93f3.svg#Glyphter) format("svg");
  font-weight: normal;
  font-style: normal; }

body {
  background-color: #fff;
  font-size: 16px;
  overflow-x: hidden;
  font-family: BrandonText;
  font-weight: 300; }
  @media screen and (max-width: 991px) {
    body.mobile-menu-expanded {
      overflow: hidden; } }

.row,
.navbar {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto; }
  @media screen and (min-width: 1580px) {
    .row,
    .navbar {
      max-width: 1600px; } }

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

.h0 {
  font-size: 72px;
  line-height: 74px;
  font-weight: 300; }

h1,
.h1-style {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px; }

.h1-style {
  margin: 0.67em 0; }

h2,
.h2-style {
  font-size: 36px;
  font-weight: 700;
  line-height: 40px; }

.h2-style {
  color: inherit; }

h4 {
  font-size: 24px;
  line-height: 28px; }

h3 {
  font-size: 24px;
  line-height: 28px;
  color: #707070;
  font-weight: 300; }

h5 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 300; }

p {
  font-size: 16px;
  line-height: 22px; }

button:focus,
input:focus {
  outline: none; }

figure {
  margin: 0; }

.img-fullscreen {
  width: 100%;
  height: auto; }

@media screen and (max-width: 992px) {
  .img-responsive {
    width: 100%; } }

.left-column.full-column {
  margin-top: 1rem; }
  .left-column.full-column > div {
    max-width: 100%; }
    .left-column.full-column > div > p {
      margin-top: 1rem; }

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