@charset "UTF-8";
html {
  font-size: 62.5%;
}

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    transform: scaleX(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(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    transform: scaleX(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(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  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);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  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 {
  -webkit-animation-name: jello;
  animation-name: jello;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  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: translateZ(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    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: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    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: translateZ(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-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);
  }
}
@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 {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  0% {
    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);
  }
}
@keyframes jackInTheBox {
  0% {
    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 {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
/*!
 * Bootstrap v4.5.0 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
:root {
  --blue: #46BDD4;
  --indigo: #A850D6;
  --purple: #6f42c1;
  --pink: #E676AE;
  --red: #E65D5D;
  --orange: #F09552;
  --yellow: #ffc107;
  --green: #56CB9A;
  --teal: #56CB9A;
  --cyan: #1FABC8;
  --white: #FFFFFF;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #46BDD4;
  --secondary: #2E3236;
  --success: #56CB9A;
  --info: #1FABC8;
  --warning: #ffc107;
  --danger: #E65D5D;
  --light: #F4F5F5;
  --dark: #2E3236;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --font-family-sans-serif: "futura-pt";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
@font-face {
  font-family: GraublauWeb;
  src: url("/css/fonts/ArbFONTS-GE-SS-Text-Medium_26.otf") format("opentype");
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(46, 50, 54, 0);
}

article, aside, figcaption, .paragraph-video-caption .__caption, .paragraph-single-image-caption .__caption, .paragraph-3-images-caption .__caption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "futura-pt";
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.777778;
  color: #2E3236;
  text-align: left;
  background-color: #FFFFFF;
}

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, .homepage__field-hero-title, h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .basic-page-title, h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content, h4, .basic-page-hero-v2-subtitle, h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #56B2CB;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #56B2CB;
  text-decoration: underline;
}

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

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

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

th {
  text-align: inherit;
}

label {
  display: inline-block;
  margin-bottom: 0;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

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

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

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

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

textarea {
  overflow: auto;
  resize: vertical;
}

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

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, .homepage__field-hero-title, h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .basic-page-title, h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content, h4, .basic-page-hero-v2-subtitle, h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1.27777;
}

h1, .homepage__field-hero-title, .h1 {
  font-size: 3.6rem;
}

h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .views-embed-default-section .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .views-embed-default-section .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .basic-page-title, .h2 {
  font-size: 3rem;
}

h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content, .h3 {
  font-size: 2.4rem;
}

h4, .basic-page-hero-v2-subtitle, .h4 {
  font-size: 1.8rem;
}

h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle, .h5 {
  font-size: 1.4rem;
}

h6, .h6 {
  font-size: 1.2rem;
}

.lead {
  font-size: 2.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.27777;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.27777;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.27777;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.27777;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #6E7A84;
}

small,
.small {
  font-size: 80%;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 2.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 80%;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "\2014\A0";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #FFFFFF;
  border: 1px solid #dee2e6;
  border-radius: 2px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #E676AE;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #FFFFFF;
  background-color: #212529;
  border-radius: 2px;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 1360px;
  }
}

.container-fluid, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-sm, .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    max-width: 1360px;
  }
}
.row, .single-feature__container, .double-feature .double-feature-items .single-feature__container, .double-feature .double-feature-items {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .single-feature__information, .single-feature__image, .col-lg-5, .col-lg-4, .page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-wrapper,
.page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-item-mail, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .double-feature .double-feature-items > .double-feature-item, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  min-width: 0;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12, .page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-wrapper,
.page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-item-mail, .single-feature__information, .single-feature__image, .double-feature .double-feature-items > .double-feature-item {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-sm-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    order: -1;
  }

  .order-sm-last {
    order: 13;
  }

  .order-sm-0 {
    order: 0;
  }

  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }

  .order-sm-3 {
    order: 3;
  }

  .order-sm-4 {
    order: 4;
  }

  .order-sm-5 {
    order: 5;
  }

  .order-sm-6 {
    order: 6;
  }

  .order-sm-7 {
    order: 7;
  }

  .order-sm-8 {
    order: 8;
  }

  .order-sm-9 {
    order: 9;
  }

  .order-sm-10 {
    order: 10;
  }

  .order-sm-11 {
    order: 11;
  }

  .order-sm-12 {
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-md-6, .double-feature .double-feature-items > .double-feature-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    order: -1;
  }

  .order-md-last {
    order: 13;
  }

  .order-md-0 {
    order: 0;
  }

  .order-md-1 {
    order: 1;
  }

  .order-md-2 {
    order: 2;
  }

  .order-md-3 {
    order: 3;
  }

  .order-md-4 {
    order: 4;
  }

  .order-md-5 {
    order: 5;
  }

  .order-md-6 {
    order: 6;
  }

  .order-md-7 {
    order: 7;
  }

  .order-md-8 {
    order: 8;
  }

  .order-md-9 {
    order: 9;
  }

  .order-md-10 {
    order: 10;
  }

  .order-md-11 {
    order: 11;
  }

  .order-md-12 {
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4, .page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-wrapper,
.page__bottom .contact-form-block #contact-message-contact-form-form .layout__region > .form-item-mail {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-lg-6, .single-feature__information, .single-feature__image {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    order: -1;
  }

  .order-lg-last {
    order: 13;
  }

  .order-lg-0 {
    order: 0;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .order-lg-3 {
    order: 3;
  }

  .order-lg-4 {
    order: 4;
  }

  .order-lg-5 {
    order: 5;
  }

  .order-lg-6 {
    order: 6;
  }

  .order-lg-7 {
    order: 7;
  }

  .order-lg-8 {
    order: 8;
  }

  .order-lg-9 {
    order: 9;
  }

  .order-lg-10 {
    order: 10;
  }

  .order-lg-11 {
    order: 11;
  }

  .order-lg-12 {
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    order: -1;
  }

  .order-xl-last {
    order: 13;
  }

  .order-xl-0 {
    order: 0;
  }

  .order-xl-1 {
    order: 1;
  }

  .order-xl-2 {
    order: 2;
  }

  .order-xl-3 {
    order: 3;
  }

  .order-xl-4 {
    order: 4;
  }

  .order-xl-5 {
    order: 5;
  }

  .order-xl-6 {
    order: 6;
  }

  .order-xl-7 {
    order: 7;
  }

  .order-xl-8 {
    order: 8;
  }

  .order-xl-9 {
    order: 9;
  }

  .order-xl-10 {
    order: 10;
  }

  .order-xl-11 {
    order: 11;
  }

  .order-xl-12 {
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex-basis: 0;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
  }

  .row-cols-xxl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .row-cols-xxl-6 > * {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }

  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xxl-first {
    order: -1;
  }

  .order-xxl-last {
    order: 13;
  }

  .order-xxl-0 {
    order: 0;
  }

  .order-xxl-1 {
    order: 1;
  }

  .order-xxl-2 {
    order: 2;
  }

  .order-xxl-3 {
    order: 3;
  }

  .order-xxl-4 {
    order: 4;
  }

  .order-xxl-5 {
    order: 5;
  }

  .order-xxl-6 {
    order: 6;
  }

  .order-xxl-7 {
    order: 7;
  }

  .order-xxl-8 {
    order: 8;
  }

  .order-xxl-9 {
    order: 9;
  }

  .order-xxl-10 {
    order: 10;
  }

  .order-xxl-11 {
    order: 11;
  }

  .order-xxl-12 {
    order: 12;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.6666666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.6666666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.6666666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.6666666667%;
  }
}
.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #2E3236;
}
.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(46, 50, 54, 0.05);
}

.table-hover tbody tr:hover {
  color: #2E3236;
  background-color: rgba(46, 50, 54, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #cbedf3;
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #9fdde9;
}

.table-hover .table-primary:hover {
  background-color: #b6e6ee;
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #b6e6ee;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #c4c6c7;
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #929496;
}

.table-hover .table-secondary:hover {
  background-color: #b7b9bb;
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #b7b9bb;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #d0f0e3;
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #a7e4ca;
}

.table-hover .table-success:hover {
  background-color: #bdead7;
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bdead7;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #c0e7f0;
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #8bd3e2;
}

.table-hover .table-info:hover {
  background-color: #abdfeb;
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdfeb;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f8d2d2;
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #f2abab;
}

.table-hover .table-danger:hover {
  background-color: #f5bcbc;
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f5bcbc;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fcfcfc;
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #f9fafa;
}

.table-hover .table-light:hover {
  background-color: #efefef;
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #efefef;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c4c6c7;
}
.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #929496;
}

.table-hover .table-dark:hover {
  background-color: #b7b9bb;
}
.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b7b9bb;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(46, 50, 54, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(34, 37, 40, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(34, 37, 40, 0.075);
}

.table .thead-dark th {
  color: #FFFFFF;
  background-color: #343a40;
  border-color: #454d55;
}
.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #FFFFFF;
  background-color: #343a40;
}
.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}
.table-dark.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.285714;
  color: #2E3236;
  background-color: transparent;
  background-clip: padding-box;
  border: 0 solid #2E3236;
  border-radius: 0;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #2E3236;
}
.form-control:focus {
  color: #2E3236;
  background-color: transparent;
  border-color: #2E3236;
  outline: 0;
  box-shadow: none;
}
.form-control::-moz-placeholder {
  color: #2E3236;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #2E3236;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #2E3236;
  opacity: 1;
}
.form-control::placeholder {
  color: #2E3236;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: transparent;
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:focus::-ms-value {
  color: #2E3236;
  background-color: transparent;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.285714;
}

.col-form-label-lg {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
}

.col-form-label-sm {
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 1.6rem 0;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.285714;
  color: #2E3236;
  background-color: transparent;
  border: solid transparent;
  border-width: 0 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 0;
}

.form-control-lg {
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 0;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6E7A84;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #56CB9A;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 1.8rem;
  line-height: 1.777778;
  color: #212529;
  background-color: rgba(86, 203, 154, 0.9);
  border-radius: 2px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #56CB9A;
  padding-right: calc(1.285714em + 3.2rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2356CB9A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.3214285em + 0.8rem) center;
  background-size: calc(0.642857em + 1.6rem) calc(0.642857em + 1.6rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #56CB9A;
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.285714em + 3.2rem);
  background-position: top calc(0.3214285em + 0.8rem) right calc(0.3214285em + 0.8rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #56CB9A;
  padding-right: calc(0.75em + 6rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 2.6rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2356CB9A' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") transparent no-repeat center right 3.6rem/calc(0.642857em + 1.6rem) calc(0.642857em + 1.6rem);
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #56CB9A;
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #56CB9A;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #56CB9A;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #56CB9A;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #7dd7b1;
  background-color: #7dd7b1;
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #56CB9A;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #56CB9A;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #56CB9A;
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #E65D5D;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 1.8rem;
  line-height: 1.777778;
  color: #FFFFFF;
  background-color: rgba(230, 93, 93, 0.9);
  border-radius: 2px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #E65D5D;
  padding-right: calc(1.285714em + 3.2rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E65D5D' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E65D5D' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.3214285em + 0.8rem) center;
  background-size: calc(0.642857em + 1.6rem) calc(0.642857em + 1.6rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #E65D5D;
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.285714em + 3.2rem);
  background-position: top calc(0.3214285em + 0.8rem) right calc(0.3214285em + 0.8rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #E65D5D;
  padding-right: calc(0.75em + 6rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 2.6rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23E65D5D' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23E65D5D' stroke='none'/%3e%3c/svg%3e") transparent no-repeat center right 3.6rem/calc(0.642857em + 1.6rem) calc(0.642857em + 1.6rem);
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #E65D5D;
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #E65D5D;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #E65D5D;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #E65D5D;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #ed8989;
  background-color: #ed8989;
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #E65D5D;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #E65D5D;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #E65D5D;
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.25);
}

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
.form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    align-items: center;
    justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn {
  display: inline-block;
  font-weight: 400;
  color: #2E3236;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0 solid transparent;
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 2px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #2E3236;
  text-decoration: none;
}
.btn:focus, .btn.focus {
  outline: 0;
  box-shadow: none;
}
.btn.disabled, .btn:disabled {
  opacity: 1;
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled,
fieldset:disabled a.btn {
  pointer-events: none;
}

.btn-primary {
  color: #212529;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.btn-primary:hover {
  color: #FFFFFF;
  background-color: #2eadc6;
  border-color: #2ca4bb;
}
.btn-primary:focus, .btn-primary.focus {
  color: #FFFFFF;
  background-color: #2eadc6;
  border-color: #2ca4bb;
  box-shadow: 0 0 0 0 rgba(64, 166, 186, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #2ca4bb;
  border-color: #299bb1;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(64, 166, 186, 0.5);
}

.btn-secondary {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-secondary:hover {
  color: #FFFFFF;
  background-color: #1c1f21;
  border-color: #17191a;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #FFFFFF;
  background-color: #1c1f21;
  border-color: #17191a;
  box-shadow: 0 0 0 0 rgba(77, 81, 84, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #17191a;
  border-color: #111214;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(77, 81, 84, 0.5);
}

.btn-success {
  color: #212529;
  background-color: #56CB9A;
  border-color: #56CB9A;
}
.btn-success:hover {
  color: #FFFFFF;
  background-color: #3bc088;
  border-color: #38b681;
}
.btn-success:focus, .btn-success.focus {
  color: #FFFFFF;
  background-color: #3bc088;
  border-color: #38b681;
  box-shadow: 0 0 0 0 rgba(78, 178, 137, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #212529;
  background-color: #56CB9A;
  border-color: #56CB9A;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #FFFFFF;
  background-color: #38b681;
  border-color: #35ac7a;
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(78, 178, 137, 0.5);
}

.btn-info {
  color: #FFFFFF;
  background-color: #1FABC8;
  border-color: #1FABC8;
}
.btn-info:hover {
  color: #FFFFFF;
  background-color: #1a8fa7;
  border-color: #18859c;
}
.btn-info:focus, .btn-info.focus {
  color: #FFFFFF;
  background-color: #1a8fa7;
  border-color: #18859c;
  box-shadow: 0 0 0 0 rgba(65, 184, 208, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #FFFFFF;
  background-color: #1FABC8;
  border-color: #1FABC8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #FFFFFF;
  background-color: #18859c;
  border-color: #167c91;
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(65, 184, 208, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #FFFFFF;
  background-color: #E65D5D;
  border-color: #E65D5D;
}
.btn-danger:hover {
  color: #FFFFFF;
  background-color: #e13c3c;
  border-color: #df3131;
}
.btn-danger:focus, .btn-danger.focus {
  color: #FFFFFF;
  background-color: #e13c3c;
  border-color: #df3131;
  box-shadow: 0 0 0 0 rgba(234, 117, 117, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #FFFFFF;
  background-color: #E65D5D;
  border-color: #E65D5D;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #FFFFFF;
  background-color: #df3131;
  border-color: #dd2626;
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(234, 117, 117, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #F4F5F5;
  border-color: #F4F5F5;
}
.btn-light:hover {
  color: #212529;
  background-color: #e0e3e3;
  border-color: #d9dddd;
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e0e3e3;
  border-color: #d9dddd;
  box-shadow: 0 0 0 0 rgba(212, 214, 214, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #F4F5F5;
  border-color: #F4F5F5;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #d9dddd;
  border-color: #d3d7d7;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(212, 214, 214, 0.5);
}

.btn-dark {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-dark:hover {
  color: #FFFFFF;
  background-color: #1c1f21;
  border-color: #17191a;
}
.btn-dark:focus, .btn-dark.focus {
  color: #FFFFFF;
  background-color: #1c1f21;
  border-color: #17191a;
  box-shadow: 0 0 0 0 rgba(77, 81, 84, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #FFFFFF;
  background-color: #17191a;
  border-color: #111214;
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(77, 81, 84, 0.5);
}

.btn-outline-primary {
  color: #46BDD4;
  border-color: #46BDD4;
}
.btn-outline-primary:hover {
  color: #212529;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(70, 189, 212, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #46BDD4;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(70, 189, 212, 0.5);
}

.btn-outline-secondary {
  color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-secondary:hover {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #2E3236;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}

.btn-outline-success {
  color: #56CB9A;
  border-color: #56CB9A;
}
.btn-outline-success:hover {
  color: #212529;
  background-color: #56CB9A;
  border-color: #56CB9A;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #56CB9A;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #212529;
  background-color: #56CB9A;
  border-color: #56CB9A;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.5);
}

.btn-outline-info {
  color: #1FABC8;
  border-color: #1FABC8;
}
.btn-outline-info:hover {
  color: #FFFFFF;
  background-color: #1FABC8;
  border-color: #1FABC8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(31, 171, 200, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #1FABC8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #FFFFFF;
  background-color: #1FABC8;
  border-color: #1FABC8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(31, 171, 200, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #E65D5D;
  border-color: #E65D5D;
}
.btn-outline-danger:hover {
  color: #FFFFFF;
  background-color: #E65D5D;
  border-color: #E65D5D;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #E65D5D;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #FFFFFF;
  background-color: #E65D5D;
  border-color: #E65D5D;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.5);
}

.btn-outline-light {
  color: #F4F5F5;
  border-color: #F4F5F5;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #F4F5F5;
  border-color: #F4F5F5;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(244, 245, 245, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #F4F5F5;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #F4F5F5;
  border-color: #F4F5F5;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(244, 245, 245, 0.5);
}

.btn-outline-dark {
  color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-dark:hover {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #2E3236;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #FFFFFF;
  background-color: #2E3236;
  border-color: #2E3236;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #56B2CB;
  text-decoration: none;
}
.btn-link:hover {
  color: #56B2CB;
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 2px;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 2px;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.8rem;
  color: #2E3236;
  text-align: left;
  list-style: none;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(46, 50, 54, 0.15);
  border-radius: 2px;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #f8f9fa;
}
.dropdown-item.active, .dropdown-item:active {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #46BDD4;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.8rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  flex: 1 1 auto;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover {
  z-index: 1;
}
.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 1.95rem;
  padding-left: 1.95rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 1.95rem;
  padding-left: 1.95rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.95rem;
  padding-left: 1.95rem;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn,
.btn-group-toggle > .btn-group > .btn {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control,
.input-group > .form-control + .custom-select,
.input-group > .form-control + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: 0;
}
.input-group > .form-control:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:last-child),
.input-group > .custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .form-control:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: flex;
  align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: flex;
}
.input-group-prepend .btn,
.input-group-append .btn {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus,
.input-group-append .btn:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-append .btn + .btn,
.input-group-append .btn + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn {
  margin-left: 0;
}

.input-group-prepend {
  margin-right: 0;
}

.input-group-append {
  margin-left: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 1.6rem 2.6rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.285714;
  color: #2E3236;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0 solid #2E3236;
  border-radius: 0;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.285714em + 3.2rem);
}

.input-group-lg > .form-control,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.input-group-lg > .input-group-append > .btn {
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 0;
}

.input-group-sm > .form-control:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.285714em + 3.2rem);
}

.input-group-sm > .form-control,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-append > .btn {
  padding: 1.6rem 2.6rem;
  font-size: 1.4rem;
  line-height: 1.285714;
  border-radius: 0;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 3.6rem;
}

.input-group > .input-group-prepend > .btn,
.input-group > .input-group-prepend > .input-group-text,
.input-group > .input-group-append:not(:last-child) > .btn,
.input-group > .input-group-append:not(:last-child) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  display: block;
  min-height: 3.2000004rem;
  padding-left: 1.5rem;
}

.custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 2.1000002rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #FFFFFF;
  border-color: #46BDD4;
  background-color: #46BDD4;
}
.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #2E3236;
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #FFFFFF;
  background-color: #d7f1f6;
  border-color: #d7f1f6;
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: transparent;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 1.1000002rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: transparent;
  border: #adb5bd solid 0;
}
.custom-control-label::after {
  position: absolute;
  top: 1.1000002rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 2px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23FFFFFF' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #46BDD4;
  background-color: #46BDD4;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23FFFFFF' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(70, 189, 212, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(70, 189, 212, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFF'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(70, 189, 212, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: 1.1000002rem;
  left: -2.25rem;
  width: 1rem;
  height: 1rem;
  background-color: #adb5bd;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: transparent;
  transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(70, 189, 212, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 3.6rem 1.6rem 2.6rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.285714;
  color: #2E3236;
  vertical-align: middle;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 2.6rem center/8px 10px;
  border: 0 solid #2E3236;
  border-radius: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: #2E3236;
  outline: 0;
  box-shadow: 0 0 0 0 transparent;
}
.custom-select:focus::-ms-value {
  color: #2E3236;
  background-color: transparent;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 2.6rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #2E3236;
}

.custom-select-sm {
  height: calc(1.285714em + 3.2rem);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 2.6rem;
  font-size: 1.4rem;
}

.custom-select-lg {
  height: calc(1.285714em + 3.2rem);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 2.6rem;
  font-size: 1.4rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.285714em + 3.2rem);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.285714em + 3.2rem);
  margin: 0;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: #2E3236;
  box-shadow: none;
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: transparent;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 2.6rem;
  font-weight: 400;
  line-height: 1.285714;
  color: #2E3236;
  background-color: transparent;
  border: 0 solid #2E3236;
  border-radius: 0;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.285714em + 3.2rem);
  padding: 1.6rem 2.6rem;
  line-height: 1.285714;
  color: #2E3236;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0 0 0;
}

.custom-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: none;
}
.custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, none;
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, none;
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #FFFFFF, none;
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #46BDD4;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: #d7f1f6;
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #46BDD4;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: #d7f1f6;
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  background-color: #46BDD4;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: #d7f1f6;
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
.custom-file-label,
.custom-select {
    transition: none;
  }
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-tabs .nav-link {
  border: 1px solid transparent;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #FFFFFF;
  border-color: #dee2e6 #dee2e6 #FFFFFF;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  border-radius: 2px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFFFFF;
  background-color: #46BDD4;
}

.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container, .navbar .paragraph-page-link-wrapper, .navbar .single-feature, .navbar .single-cta-content, .navbar .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .navbar .views-infinite-scroll-content-wrapper, .navbar .products-listing .views-embed-default-container, .products-listing .navbar .views-embed-default-container, .navbar .articles-listing-container,
.navbar .container-fluid,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl,
.navbar .container-xxl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-right: 1rem;
  font-size: 1.8rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.8rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 2px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  background-size: 100% 100%;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container, .navbar-expand-sm > .paragraph-page-link-wrapper, .navbar-expand-sm > .single-feature, .navbar-expand-sm > .single-cta-content, .testimonials-listing .navbar-expand-sm > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-sm > .views-embed-default-container, .navbar-expand-sm > .articles-listing-container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl,
.navbar-expand-sm > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container, .navbar-expand-sm > .paragraph-page-link-wrapper, .navbar-expand-sm > .single-feature, .navbar-expand-sm > .single-cta-content, .testimonials-listing .navbar-expand-sm > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-sm > .views-embed-default-container, .navbar-expand-sm > .articles-listing-container,
.navbar-expand-sm > .container-fluid,
.navbar-expand-sm > .container-sm,
.navbar-expand-sm > .container-md,
.navbar-expand-sm > .container-lg,
.navbar-expand-sm > .container-xl,
.navbar-expand-sm > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container, .navbar-expand-md > .paragraph-page-link-wrapper, .navbar-expand-md > .single-feature, .navbar-expand-md > .single-cta-content, .testimonials-listing .navbar-expand-md > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-md > .views-embed-default-container, .navbar-expand-md > .articles-listing-container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl,
.navbar-expand-md > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container, .navbar-expand-md > .paragraph-page-link-wrapper, .navbar-expand-md > .single-feature, .navbar-expand-md > .single-cta-content, .testimonials-listing .navbar-expand-md > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-md > .views-embed-default-container, .navbar-expand-md > .articles-listing-container,
.navbar-expand-md > .container-fluid,
.navbar-expand-md > .container-sm,
.navbar-expand-md > .container-md,
.navbar-expand-md > .container-lg,
.navbar-expand-md > .container-xl,
.navbar-expand-md > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .navbar-expand-lg > .paragraph-page-link-wrapper, .navbar-expand-lg > .single-feature, .navbar-expand-lg > .single-cta-content, .testimonials-listing .navbar-expand-lg > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-lg > .views-embed-default-container, .navbar-expand-lg > .articles-listing-container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl,
.navbar-expand-lg > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container, .navbar-expand-lg > .paragraph-page-link-wrapper, .navbar-expand-lg > .single-feature, .navbar-expand-lg > .single-cta-content, .testimonials-listing .navbar-expand-lg > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-lg > .views-embed-default-container, .navbar-expand-lg > .articles-listing-container,
.navbar-expand-lg > .container-fluid,
.navbar-expand-lg > .container-sm,
.navbar-expand-lg > .container-md,
.navbar-expand-lg > .container-lg,
.navbar-expand-lg > .container-xl,
.navbar-expand-lg > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container, .navbar-expand-xl > .paragraph-page-link-wrapper, .navbar-expand-xl > .single-feature, .navbar-expand-xl > .single-cta-content, .testimonials-listing .navbar-expand-xl > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-xl > .views-embed-default-container, .navbar-expand-xl > .articles-listing-container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl,
.navbar-expand-xl > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container, .navbar-expand-xl > .paragraph-page-link-wrapper, .navbar-expand-xl > .single-feature, .navbar-expand-xl > .single-cta-content, .testimonials-listing .navbar-expand-xl > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-xl > .views-embed-default-container, .navbar-expand-xl > .articles-listing-container,
.navbar-expand-xl > .container-fluid,
.navbar-expand-xl > .container-sm,
.navbar-expand-xl > .container-md,
.navbar-expand-xl > .container-lg,
.navbar-expand-xl > .container-xl,
.navbar-expand-xl > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1399.98px) {
  .navbar-expand-xxl > .container, .navbar-expand-xxl > .paragraph-page-link-wrapper, .navbar-expand-xxl > .single-feature, .navbar-expand-xxl > .single-cta-content, .testimonials-listing .navbar-expand-xxl > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-xxl > .views-embed-default-container, .navbar-expand-xxl > .articles-listing-container,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl,
.navbar-expand-xxl > .container-xxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-flow: row nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container, .navbar-expand-xxl > .paragraph-page-link-wrapper, .navbar-expand-xxl > .single-feature, .navbar-expand-xxl > .single-cta-content, .testimonials-listing .navbar-expand-xxl > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand-xxl > .views-embed-default-container, .navbar-expand-xxl > .articles-listing-container,
.navbar-expand-xxl > .container-fluid,
.navbar-expand-xxl > .container-sm,
.navbar-expand-xxl > .container-md,
.navbar-expand-xxl > .container-lg,
.navbar-expand-xxl > .container-xl,
.navbar-expand-xxl > .container-xxl {
    flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  flex-flow: row nowrap;
  justify-content: flex-start;
}
.navbar-expand > .container, .navbar-expand > .paragraph-page-link-wrapper, .navbar-expand > .single-feature, .navbar-expand > .single-cta-content, .testimonials-listing .navbar-expand > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand > .views-embed-default-container, .navbar-expand > .articles-listing-container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container, .navbar-expand > .paragraph-page-link-wrapper, .navbar-expand > .single-feature, .navbar-expand > .single-cta-content, .testimonials-listing .navbar-expand > .views-infinite-scroll-content-wrapper, .products-listing .navbar-expand > .views-embed-default-container, .navbar-expand > .articles-listing-container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl {
  flex-wrap: nowrap;
}
.navbar-expand .navbar-collapse {
  display: flex !important;
  flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(46, 50, 54, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(46, 50, 54, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(46, 50, 54, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(46, 50, 54, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(46, 50, 54, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(46, 50, 54, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(46, 50, 54, 0.5);
  border-color: rgba(46, 50, 54, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2846, 50, 54, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(46, 50, 54, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(46, 50, 54, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(46, 50, 54, 0.9);
}

.navbar-dark .navbar-brand {
  color: #FFFFFF;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #FFFFFF;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #FFFFFF;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #FFFFFF;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #FFFFFF;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #FFFFFF;
  background-clip: border-box;
  border: 1px solid rgba(46, 50, 54, 0.125);
  border-radius: 2px;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(46, 50, 54, 0.03);
  border-bottom: 1px solid rgba(46, 50, 54, 0.125);
}
.card-header:first-child {
  border-radius: 1px 1px 0 0;
}
.card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(46, 50, 54, 0.03);
  border-top: 1px solid rgba(46, 50, 54, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 1px 1px;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-columns {
    -moz-column-count: 3;
         column-count: 3;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 2px;
}

.breadcrumb-item {
  display: flex;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 2px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #56B2CB;
  background-color: #FFFFFF;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: #56B2CB;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #FFFFFF;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #FFFFFF;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.8rem;
  line-height: 1.777778;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 1.8rem;
  line-height: 1.777778;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 2px;
  border-bottom-left-radius: 2px;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 2px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #212529;
  background-color: #46BDD4;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #212529;
  background-color: #2ca4bb;
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(70, 189, 212, 0.5);
}

.badge-secondary {
  color: #FFFFFF;
  background-color: #2E3236;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #FFFFFF;
  background-color: #17191a;
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}

.badge-success {
  color: #212529;
  background-color: #56CB9A;
}
a.badge-success:hover, a.badge-success:focus {
  color: #212529;
  background-color: #38b681;
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(86, 203, 154, 0.5);
}

.badge-info {
  color: #FFFFFF;
  background-color: #1FABC8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #FFFFFF;
  background-color: #18859c;
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(31, 171, 200, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #FFFFFF;
  background-color: #E65D5D;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #FFFFFF;
  background-color: #df3131;
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(230, 93, 93, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #F4F5F5;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #d9dddd;
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(244, 245, 245, 0.5);
}

.badge-dark {
  color: #FFFFFF;
  background-color: #2E3236;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #FFFFFF;
  background-color: #17191a;
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  box-shadow: 0 0 0 0 rgba(46, 50, 54, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 2px;
}
@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 2px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 5.2rem;
}
.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #3a7a88;
  background-color: #daf2f6;
  border-color: #cbedf3;
}
.alert-primary hr {
  border-top-color: #b6e6ee;
}
.alert-primary .alert-link {
  color: #2b5a64;
}

.alert-secondary {
  color: #2e3236;
  background-color: #d5d6d7;
  border-color: #c4c6c7;
}
.alert-secondary hr {
  border-top-color: #b7b9bb;
}
.alert-secondary .alert-link {
  color: #17191a;
}

.alert-success {
  color: #43826a;
  background-color: #ddf5eb;
  border-color: #d0f0e3;
}
.alert-success hr {
  border-top-color: #bdead7;
}
.alert-success .alert-link {
  color: #32604f;
}

.alert-info {
  color: #267182;
  background-color: #d2eef4;
  border-color: #c0e7f0;
}
.alert-info hr {
  border-top-color: #abdfeb;
}
.alert-info .alert-link {
  color: #1a4f5b;
}

.alert-warning {
  color: #9b7c1e;
  background-color: #fff3cd;
  border-color: #ffeeba;
}
.alert-warning hr {
  border-top-color: #ffe8a1;
}
.alert-warning .alert-link {
  color: #705a16;
}

.alert-danger {
  color: #8e484a;
  background-color: #fadfdf;
  border-color: #f8d2d2;
}
.alert-danger hr {
  border-top-color: #f5bcbc;
}
.alert-danger .alert-link {
  color: #6c3738;
}

.alert-light {
  color: #959799;
  background-color: #fdfdfd;
  border-color: #fcfcfc;
}
.alert-light hr {
  border-top-color: #efefef;
}
.alert-light .alert-link {
  color: #7b7e80;
}

.alert-dark {
  color: #2e3236;
  background-color: #d5d6d7;
  border-color: #c4c6c7;
}
.alert-dark hr {
  border-top-color: #b7b9bb;
}
.alert-dark .alert-link {
  color: #17191a;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 1.35rem;
  background-color: #e9ecef;
  border-radius: 2px;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  background-color: #46BDD4;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: progress-bar-stripes 1s linear infinite;
          animation: progress-bar-stripes 1s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: flex;
  align-items: flex-start;
}

.media-body {
  flex: 1;
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 2px;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #2E3236;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #FFFFFF;
  border: 1px solid rgba(46, 50, 54, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #FFFFFF;
}
.list-group-item.active {
  z-index: 2;
  color: #FFFFFF;
  background-color: #46BDD4;
  border-color: #46BDD4;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 2px;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 2px;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 2px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 2px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #3a7a88;
  background-color: #cbedf3;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #3a7a88;
  background-color: #b6e6ee;
}
.list-group-item-primary.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #3a7a88;
  border-color: #3a7a88;
}

.list-group-item-secondary {
  color: #2e3236;
  background-color: #c4c6c7;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #2e3236;
  background-color: #b7b9bb;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #2e3236;
  border-color: #2e3236;
}

.list-group-item-success {
  color: #43826a;
  background-color: #d0f0e3;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #43826a;
  background-color: #bdead7;
}
.list-group-item-success.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #43826a;
  border-color: #43826a;
}

.list-group-item-info {
  color: #267182;
  background-color: #c0e7f0;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #267182;
  background-color: #abdfeb;
}
.list-group-item-info.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #267182;
  border-color: #267182;
}

.list-group-item-warning {
  color: #9b7c1e;
  background-color: #ffeeba;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #9b7c1e;
  background-color: #ffe8a1;
}
.list-group-item-warning.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #9b7c1e;
  border-color: #9b7c1e;
}

.list-group-item-danger {
  color: #8e484a;
  background-color: #f8d2d2;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #8e484a;
  background-color: #f5bcbc;
}
.list-group-item-danger.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #8e484a;
  border-color: #8e484a;
}

.list-group-item-light {
  color: #959799;
  background-color: #fcfcfc;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #959799;
  background-color: #efefef;
}
.list-group-item-light.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #959799;
  border-color: #959799;
}

.list-group-item-dark {
  color: #2e3236;
  background-color: #c4c6c7;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #2e3236;
  background-color: #b7b9bb;
}
.list-group-item-dark.list-group-item-action.active {
  color: #FFFFFF;
  background-color: #2e3236;
  border-color: #2e3236;
}

.close {
  float: right;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1;
  color: #2E3236;
  text-shadow: 0 1px 0 #FFFFFF;
  opacity: 0.5;
}
.close:hover {
  color: #2E3236;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

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

a.close.disabled {
  pointer-events: none;
}

.toast {
  max-width: 350px;
  overflow: hidden;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.25rem 0.75rem rgba(46, 50, 54, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(46, 50, 54, 0.2);
  border-radius: 2px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #2E3236;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.777778;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 1px;
  border-bottom-left-radius: 1px;
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "futura-pt";
  font-style: normal;
  font-weight: 400;
  line-height: 1.777778;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.8rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #2E3236;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #2E3236;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #2E3236;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #2E3236;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #FFFFFF;
  text-align: center;
  background-color: #2E3236;
  border-radius: 2px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "futura-pt";
  font-style: normal;
  font-weight: 400;
  line-height: 1.777778;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 1.8rem;
  word-wrap: break-word;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border: 1px solid rgba(46, 50, 54, 0.2);
  border-radius: 2px;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 2px;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(46, 50, 54, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #FFFFFF;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 2px 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(46, 50, 54, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #FFFFFF;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(46, 50, 54, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #FFFFFF;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 2px 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(46, 50, 54, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #FFFFFF;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.8rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #2E3236;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #FFFFFF;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #FFFFFF;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFF' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #FFFFFF;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #FFFFFF;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
          animation: spinner-border 0.75s linear infinite;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: text-bottom;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: spinner-grow 0.75s linear infinite;
          animation: spinner-grow 0.75s linear infinite;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #46BDD4 !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #2ca4bb !important;
}

.bg-secondary {
  background-color: #2E3236 !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #17191a !important;
}

.bg-success {
  background-color: #56CB9A !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #38b681 !important;
}

.bg-info {
  background-color: #1FABC8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #18859c !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #E65D5D !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #df3131 !important;
}

.bg-light {
  background-color: #F4F5F5 !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #d9dddd !important;
}

.bg-dark {
  background-color: #2E3236 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #17191a !important;
}

.bg-white {
  background-color: #FFFFFF !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #46BDD4 !important;
}

.border-secondary {
  border-color: #2E3236 !important;
}

.border-success {
  border-color: #56CB9A !important;
}

.border-info {
  border-color: #1FABC8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #E65D5D !important;
}

.border-light {
  border-color: #F4F5F5 !important;
}

.border-dark {
  border-color: #2E3236 !important;
}

.border-white {
  border-color: #FFFFFF !important;
}

.rounded-sm {
  border-radius: 2px !important;
}

.rounded {
  border-radius: 2px !important;
}

.rounded-top {
  border-top-left-radius: 2px !important;
  border-top-right-radius: 2px !important;
}

.rounded-right {
  border-top-right-radius: 2px !important;
  border-bottom-right-radius: 2px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
}

.rounded-left {
  border-top-left-radius: 2px !important;
  border-bottom-left-radius: 2px !important;
}

.rounded-lg {
  border-radius: 2px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: flex !important;
  }

  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }

  .flex-sm-column {
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-sm-start {
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    justify-content: center !important;
  }

  .justify-content-sm-between {
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    align-items: center !important;
  }

  .align-items-sm-baseline {
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    align-items: stretch !important;
  }

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

  .align-self-sm-start {
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }

  .flex-md-column {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-md-start {
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    justify-content: center !important;
  }

  .justify-content-md-between {
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    justify-content: space-around !important;
  }

  .align-items-md-start {
    align-items: flex-start !important;
  }

  .align-items-md-end {
    align-items: flex-end !important;
  }

  .align-items-md-center {
    align-items: center !important;
  }

  .align-items-md-baseline {
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    align-items: stretch !important;
  }

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

  .align-self-md-start {
    align-self: flex-start !important;
  }

  .align-self-md-end {
    align-self: flex-end !important;
  }

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }

  .flex-lg-column {
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-lg-start {
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    justify-content: center !important;
  }

  .justify-content-lg-between {
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    align-items: center !important;
  }

  .align-items-lg-baseline {
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    align-items: stretch !important;
  }

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

  .align-self-lg-start {
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }

  .flex-xl-column {
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    justify-content: center !important;
  }

  .justify-content-xl-between {
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    align-items: center !important;
  }

  .align-items-xl-baseline {
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    align-items: stretch !important;
  }

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }

  .float-sm-right {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }

  .float-md-right {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }

  .float-lg-right {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }

  .float-xl-right {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-left {
    float: left !important;
  }

  .float-xxl-right {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(46, 50, 54, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(46, 50, 54, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(46, 50, 54, 0.175) !important;
}

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

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
  }

  .mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
  }

  .mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
  }

  .mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
  }

  .mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .mt-md-n1,
.my-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-md-n1,
.mx-md-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-md-n1,
.my-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-md-n1,
.mx-md-n1 {
    margin-left: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .mt-md-n2,
.my-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-md-n2,
.mx-md-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-md-n2,
.my-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-md-n2,
.mx-md-n2 {
    margin-left: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .mt-md-n3,
.my-md-n3 {
    margin-top: -1rem !important;
  }

  .mr-md-n3,
.mx-md-n3 {
    margin-right: -1rem !important;
  }

  .mb-md-n3,
.my-md-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-md-n3,
.mx-md-n3 {
    margin-left: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .mt-md-n4,
.my-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-md-n4,
.mx-md-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-md-n4,
.my-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-md-n4,
.mx-md-n4 {
    margin-left: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .mt-md-n5,
.my-md-n5 {
    margin-top: -3rem !important;
  }

  .mr-md-n5,
.mx-md-n5 {
    margin-right: -3rem !important;
  }

  .mb-md-n5,
.my-md-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-md-n5,
.mx-md-n5 {
    margin-left: -3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .mt-lg-n1,
.my-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-lg-n1,
.mx-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-lg-n1,
.my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-lg-n1,
.mx-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .mt-lg-n2,
.my-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-lg-n2,
.mx-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-lg-n2,
.my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-lg-n2,
.mx-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .mt-lg-n3,
.my-lg-n3 {
    margin-top: -1rem !important;
  }

  .mr-lg-n3,
.mx-lg-n3 {
    margin-right: -1rem !important;
  }

  .mb-lg-n3,
.my-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-lg-n3,
.mx-lg-n3 {
    margin-left: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .mt-lg-n4,
.my-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-lg-n4,
.mx-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-lg-n4,
.my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-lg-n4,
.mx-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .mt-lg-n5,
.my-lg-n5 {
    margin-top: -3rem !important;
  }

  .mr-lg-n5,
.mx-lg-n5 {
    margin-right: -3rem !important;
  }

  .mb-lg-n5,
.my-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-lg-n5,
.mx-lg-n5 {
    margin-left: -3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xl-n1,
.my-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xl-n1,
.mx-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xl-n1,
.my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xl-n1,
.mx-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xl-n2,
.my-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xl-n2,
.mx-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xl-n2,
.my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xl-n2,
.mx-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .mt-xl-n3,
.my-xl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xl-n3,
.mx-xl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xl-n3,
.my-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xl-n3,
.mx-xl-n3 {
    margin-left: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xl-n4,
.my-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xl-n4,
.mx-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xl-n4,
.my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xl-n4,
.mx-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .mt-xl-n5,
.my-xl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xl-n5,
.mx-xl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xl-n5,
.my-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xl-n5,
.mx-xl-n5 {
    margin-left: -3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }

  .mt-xxl-0,
.my-xxl-0 {
    margin-top: 0 !important;
  }

  .mr-xxl-0,
.mx-xxl-0 {
    margin-right: 0 !important;
  }

  .mb-xxl-0,
.my-xxl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xxl-0,
.mx-xxl-0 {
    margin-left: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .mt-xxl-1,
.my-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xxl-1,
.mx-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xxl-1,
.my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xxl-1,
.mx-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .mt-xxl-2,
.my-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xxl-2,
.mx-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xxl-2,
.my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xxl-2,
.mx-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .mt-xxl-3,
.my-xxl-3 {
    margin-top: 1rem !important;
  }

  .mr-xxl-3,
.mx-xxl-3 {
    margin-right: 1rem !important;
  }

  .mb-xxl-3,
.my-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xxl-3,
.mx-xxl-3 {
    margin-left: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .mt-xxl-4,
.my-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xxl-4,
.mx-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xxl-4,
.my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xxl-4,
.mx-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .mt-xxl-5,
.my-xxl-5 {
    margin-top: 3rem !important;
  }

  .mr-xxl-5,
.mx-xxl-5 {
    margin-right: 3rem !important;
  }

  .mb-xxl-5,
.my-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xxl-5,
.mx-xxl-5 {
    margin-left: 3rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .pt-xxl-0,
.py-xxl-0 {
    padding-top: 0 !important;
  }

  .pr-xxl-0,
.px-xxl-0 {
    padding-right: 0 !important;
  }

  .pb-xxl-0,
.py-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xxl-0,
.px-xxl-0 {
    padding-left: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .pt-xxl-1,
.py-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xxl-1,
.px-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xxl-1,
.py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xxl-1,
.px-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .pt-xxl-2,
.py-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xxl-2,
.px-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xxl-2,
.py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xxl-2,
.px-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .pt-xxl-3,
.py-xxl-3 {
    padding-top: 1rem !important;
  }

  .pr-xxl-3,
.px-xxl-3 {
    padding-right: 1rem !important;
  }

  .pb-xxl-3,
.py-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xxl-3,
.px-xxl-3 {
    padding-left: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .pt-xxl-4,
.py-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xxl-4,
.px-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xxl-4,
.py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xxl-4,
.px-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .pt-xxl-5,
.py-xxl-5 {
    padding-top: 3rem !important;
  }

  .pr-xxl-5,
.px-xxl-5 {
    padding-right: 3rem !important;
  }

  .pb-xxl-5,
.py-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xxl-5,
.px-xxl-5 {
    padding-left: 3rem !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .mt-xxl-n1,
.my-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mr-xxl-n1,
.mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .mb-xxl-n1,
.my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .ml-xxl-n1,
.mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .mt-xxl-n2,
.my-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mr-xxl-n2,
.mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .mb-xxl-n2,
.my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .ml-xxl-n2,
.mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .mt-xxl-n3,
.my-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mr-xxl-n3,
.mx-xxl-n3 {
    margin-right: -1rem !important;
  }

  .mb-xxl-n3,
.my-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .ml-xxl-n3,
.mx-xxl-n3 {
    margin-left: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .mt-xxl-n4,
.my-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mr-xxl-n4,
.mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .mb-xxl-n4,
.my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .ml-xxl-n4,
.mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .mt-xxl-n5,
.my-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mr-xxl-n5,
.mx-xxl-n5 {
    margin-right: -3rem !important;
  }

  .mb-xxl-n5,
.my-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .ml-xxl-n5,
.mx-xxl-n5 {
    margin-left: -3rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mt-xxl-auto,
.my-xxl-auto {
    margin-top: auto !important;
  }

  .mr-xxl-auto,
.mx-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-auto,
.my-xxl-auto {
    margin-bottom: auto !important;
  }

  .ml-xxl-auto,
.mx-xxl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }

  .text-xxl-right {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #FFFFFF !important;
}

.text-primary {
  color: #46BDD4 !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #2792a7 !important;
}

.text-secondary {
  color: #2E3236 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #0b0c0d !important;
}

.text-success {
  color: #56CB9A !important;
}

a.text-success:hover, a.text-success:focus {
  color: #32a373 !important;
}

.text-info {
  color: #1FABC8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #157286 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #E65D5D !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #d62121 !important;
}

.text-light {
  color: #F4F5F5 !important;
}

a.text-light:hover, a.text-light:focus {
  color: #ccd1d1 !important;
}

.text-dark {
  color: #2E3236 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #0b0c0d !important;
}

.text-body {
  color: #2E3236 !important;
}

.text-muted {
  color: #6E7A84 !important;
}

.text-black-50 {
  color: rgba(46, 50, 54, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
*::before,
*::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  a:not(.btn) {
    text-decoration: underline;
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre {
    white-space: pre-wrap !important;
  }

  pre,
blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
img {
    page-break-inside: avoid;
  }

  p,
h2,
.page__bottom .contact-form-block--title,
.recent-posts__field-title,
.faq-accordion-title .field__item,
.flippable-card-deck__field-title,
.views-embed-default-section h3,
.views-embed-default-section .paragraph-post-title,
.views-embed-default-section ._-page-links__field-page-links .link-title,
._-page-links__field-page-links .views-embed-default-section .link-title,
.paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div,
.views-embed-default-section .flippable-card__label,
.views-embed-default-section .flippable-card__title,
.block--views-block--related-content-block-1 h3,
.block--views-block--related-content-block-1 .paragraph-post-title,
.block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title,
._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title,
.paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div,
.block--views-block--related-content-block-1 .flippable-card__label,
.block--views-block--related-content-block-1 .flippable-card__title,
.basic-page-title,
h3,
.paragraph-post-title,
._-page-links__field-page-links .link-title,
.paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label,
.paragraph--type--impact-statistic-feature .statistics__label > div,
.flippable-card__label,
.flippable-card__title,
.distributors-listing .views-embed-default-item-box .views-field-title,
.products-listing .views-embed-default-item-box .views-field-title .field-content,
.articles-listing-item .views-field-title .field-content {
    orphans: 3;
    widows: 3;
  }

  h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .basic-page-title,
h3,
.paragraph-post-title,
._-page-links__field-page-links .link-title,
.paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label,
.paragraph--type--impact-statistic-feature .statistics__label > div,
.flippable-card__label,
.flippable-card__title,
.distributors-listing .views-embed-default-item-box .views-field-title,
.products-listing .views-embed-default-item-box .views-field-title .field-content,
.articles-listing-item .views-field-title .field-content {
    page-break-after: avoid;
  }

  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }

  .container, .paragraph-page-link-wrapper, .single-feature, .single-cta-content, .testimonials-listing .views-infinite-scroll-content-wrapper, .products-listing .views-embed-default-container, .articles-listing-container {
    min-width: 992px !important;
  }

  .navbar {
    display: none;
  }

  .badge {
    border: 1px solid #2E3236;
  }

  .table {
    border-collapse: collapse !important;
  }
  .table td,
.table th {
    background-color: #FFFFFF !important;
  }

  .table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6 !important;
  }

  .table-dark {
    color: inherit;
  }
  .table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
    border-color: #dee2e6;
  }

  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "\2190";
}
[dir=rtl] .slick-prev:before {
  content: "\2192";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "\2192";
}
[dir=rtl] .slick-next:before {
  content: "\2190";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2022";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.animated .delay-150ms {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
.animated .delay-300ms {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.animated .delay-500ms {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.animated .delay-600ms {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.animated .delay-700ms {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.number-callout, .paragraph--type--impact-statistic-feature .statistics__number, .homepage__field-hero-description p, p.large {
  font-family: "futura-pt";
  font-weight: 300;
}

form select[name]::-moz-placeholder, form textarea[name]::-moz-placeholder, form input[type]:not([type=hidden])::-moz-placeholder {
  font-family: "futura-pt";
  font-weight: 400;
}

form select[name]:-ms-input-placeholder, form textarea[name]:-ms-input-placeholder, form input[type]:not([type=hidden]):-ms-input-placeholder {
  font-family: "futura-pt";
  font-weight: 400;
}

form select[name]::-ms-input-placeholder, form textarea[name]::-ms-input-placeholder, form input[type]:not([type=hidden])::-ms-input-placeholder {
  font-family: "futura-pt";
  font-weight: 400;
}

.block--languageswitcher ul.nav li a, form select[name]::placeholder,
form textarea[name]::placeholder,
form input[type]:not([type=hidden])::placeholder {
  font-family: "futura-pt";
  font-weight: 400;
}

.page__footer .footer-copyright-container .footer-copyright p, figcaption, .paragraph-video-caption .__caption, .paragraph-single-image-caption .__caption, .paragraph-3-images-caption .__caption, h6, h5.subtitle, .subtitle.paragraph-post-subtitle, ._-page-links__field-page-links .subtitle.link-subtitle, .subtitle.flippable-card__eyebrow, .subtitle.basic-page-subtitle, h5.eyebrow, .eyebrow.paragraph-post-subtitle, ._-page-links__field-page-links .eyebrow.link-subtitle, .eyebrow.flippable-card__eyebrow, .eyebrow.basic-page-subtitle {
  font-family: "futura-pt";
  font-weight: 500;
}

#rotating-button, .experience-badge-text, .views-embed-default-items .views-field-title a, .m_single .title h3, .m_single .title .paragraph-post-title, .m_single .title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .m_single .title .link-title, .m_single .title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_single .title .feature__field-label, .paragraph--type--impact-statistic-feature .m_single .title .statistics__label > div, .m_single .title .flippable-card__label, .m_single .title .flippable-card__title, .related-content .views-field-title a, .basic-page-post-meta, .block--languageswitcher h3, .block--languageswitcher .paragraph-post-title, .block--languageswitcher ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--languageswitcher .link-title, .block--languageswitcher .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--languageswitcher .feature__field-label, .paragraph--type--impact-statistic-feature .block--languageswitcher .statistics__label > div, .block--languageswitcher .flippable-card__label, .block--languageswitcher .flippable-card__title, #main-nav .nav-col-menu > ul > li > a, #main-nav .nav-col-menu h3, #main-nav .nav-col-menu .paragraph-post-title, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div, #main-nav .nav-col-menu .flippable-card__label, #main-nav .nav-col-menu .flippable-card__title, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content, .utility-menu-container nav ul li a, .scentair-top-bar .hamburger-icon a,
.scentair-top-bar .close-icon a, form select[name],
form textarea[name],
form input[type]:not([type=hidden]), .eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button, .btn,
.btn-primary, .products-listing .views-embed-default-item-box .views-field-view-node a,
.products-listing .views-embed-default-item-box .views-field-title-1 a, .latest-updates__card__link, .eu-cookie-compliance-banner .find-more-button, .articles-listing-item .views-field-view-node a,
.articles-listing-item .views-field-title-1 a, .paragraph--type--impact-statistic-feature .statistics__link a, .single-feature__cta_button a, .single-cta-content .__cta a, .flippable-card__field-card-link a, .curated-collection__button a, .paragraph--type--cta-slide .cta-slide__cta-button a, .m_hero .homepage__field-hero-cta a, .m_hero .element-one .content .center .btn-speak a, form button,
form input[type=submit], .eu-cookie-compliance-banner .eu-cookie-compliance-default-button, .m_single .cta a, .m_industries_carousel .element-two .cta a, form.alt-form button,
form.alt-form input[type=submit], form.contact-message-contact-form-form button,
form.contact-message-contact-form-form input[type=submit], .js-pager__items .pager__item .button, ol li::before,
ul li::before, h1, .homepage__field-hero-title, h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .basic-page-title, h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content, h4, .basic-page-hero-v2-subtitle, h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle {
  font-family: "futura-pt";
  /**
   * We're actually using same as Medium
   * because of a rendering issue of the Demi font
   * If needed, revert to 600 and load https://use.typekit.net/ukj2vft.css
   * as second typekit source to use Demi again
   */
  font-weight: 500;
}

.paragraph-quote-credits .author, .paragraph--type--cta-slide .cta-slide__title {
  font-family: "futura-pt";
  font-weight: 700;
}

.icon-clock, .icon-white-check, .icon-white-big-check, .icon-white-big-cross, .icon-white-cross, .icon-white-dropdown, .icon-up-arrow, .icon-search, .icon-right-arrow, .icon-question-mark-white, .icon-question-mark, .icon-greater, a[target=_blank]::after, .icon-external-link, .icon-dropdown-i-con, .icon-download, .icon-download-dark, .icon-down-arrow, .icon-document, .icon-copy, .icon-comment, .icon-circle-red, .icon-circle-gray, .icon-circle-blue, .icon-cross, .icon-cross-bigger, .icon-check, .icon-check-bigger, .views-embed-default-items .views-field-view-node a::after, .related-content .views-field-view-node a::after, #main-nav .nav-col-menu > ul a::after, #main-nav .nav-col-menu h3 > a::after, #main-nav .nav-col-menu .paragraph-post-title > a::after, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title > a::after, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title > a::after, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label > a::after, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label > a::after, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div > a::after, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div > a::after, #main-nav .nav-col-menu .flippable-card__label > a::after, #main-nav .nav-col-menu .flippable-card__title > a::after, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title > a::after, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title > a::after, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content > a::after, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content > a::after, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content > a::after, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content > a::after, .paragraph-post-readmore::after, ._-page-links__field-page-links .link-title::after, .products-listing .views-embed-default-item-box .views-field-view-node a::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a::after, .latest-updates__card__link::after, .eu-cookie-compliance-banner .find-more-button::after, .articles-listing-item .views-field-view-node a::after,
.articles-listing-item .views-field-title-1 a::after, .icon-blue-row, .icon-blog, .icon-press-release, .icon-in-the-news, .icon-announcement, ._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title::after, .m_single .cta a::after, .m_industries_carousel .element-two .cta a::after, form.alt-form button::after,
form.alt-form input[type=submit]::after, form.contact-message-contact-form-form button::after,
form.contact-message-contact-form-form input[type=submit]::after, .js-pager__items .pager__item .button::after, .paragraph--type--impact-statistic-feature .statistics__link a::after, .single-feature__cta_button a::after, .single-cta-content .__cta a::after, .flippable-card__field-card-link a::after, .curated-collection__button a::after, .paragraph--type--cta-slide .cta-slide__cta-button a::after, .m_hero .homepage__field-hero-cta a::after, .m_hero .element-one .content .center .btn-speak a::after, form button::after,
form input[type=submit]::after, .paragraph-post-readmore::after, ._-page-links__field-page-links .link-title::after, .products-listing .views-embed-default-item-box .views-field-view-node a::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a::after, .latest-updates__card__link::after, .eu-cookie-compliance-banner .find-more-button::after, .articles-listing-item .views-field-view-node a::after,
.articles-listing-item .views-field-title-1 a::after, ._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title::after, .m_single .cta a::after, .m_industries_carousel .element-two .cta a::after, form.alt-form button::after,
form.alt-form input[type=submit]::after, form.contact-message-contact-form-form button::after,
form.contact-message-contact-form-form input[type=submit]::after, .js-pager__items .pager__item .button::after, .paragraph--type--impact-statistic-feature .statistics__link a::after, .single-feature__cta_button a::after, .single-cta-content .__cta a::after, .flippable-card__field-card-link a::after, .curated-collection__button a::after, .paragraph--type--cta-slide .cta-slide__cta-button a::after, .m_hero .homepage__field-hero-cta a::after, .m_hero .element-one .content .center .btn-speak a::after, form button::after,
form input[type=submit]::after, .icon-white-row, .icon-statistic-essential-oils, .icon-statistic-odor-neutralizing, .icon-statistic-halal, .icon-statistic-vegan, .icon-statistic-bio-static, .icon-statistic-cruelty-free, .icon-social-media-facebook-dark, .icon-social-media-linkedin-dark, .icon-social-media-instagram-dark, .icon-social-media-facebook-blue, .icon-social-media-linkedin-blue, .icon-social-media-instagram-blue, .flippable-card__flip-button--minus, .icon-minus-button, .flippable-card__flip-button--plus, .icon-plus-button, .icon-luxe-sophisticated-white, .icon-luxe-sophisticated-color, .icon-warm-inviting-white, .icon-warm-inviting-color, .icon-crisp-invigorating-white, .icon-crisp-invigorating-color, .icon-relaxing-soothing-white, .icon-relaxing-soothing-color, .icon-passionate-sensual-white, .icon-passionate-sensual-color, .icon-timeless-floral-white, .icon-timeless-floral-color, .icon-voyage-escape-white, .icon-voyage-escape-color, .icon-savory-gourmand-white, .icon-savory-gourmand-color {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.icon-social-media-facebook-dark, .icon-social-media-linkedin-dark, .icon-social-media-instagram-dark, .icon-social-media-facebook-blue, .icon-social-media-linkedin-blue, .icon-social-media-instagram-blue {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-luxe-sophisticated-white, .icon-luxe-sophisticated-color, .icon-warm-inviting-white, .icon-warm-inviting-color, .icon-crisp-invigorating-white, .icon-crisp-invigorating-color, .icon-relaxing-soothing-white, .icon-relaxing-soothing-color, .icon-passionate-sensual-white, .icon-passionate-sensual-color, .icon-timeless-floral-white, .icon-timeless-floral-color, .icon-voyage-escape-white, .icon-voyage-escape-color, .icon-savory-gourmand-white, .icon-savory-gourmand-color {
  width: 2rem;
  height: 2rem;
}

.flippable-card__flip-button--minus, .icon-minus-button, .flippable-card__flip-button--plus, .icon-plus-button {
  width: 6rem;
  height: 6rem;
}

.icon-savory-gourmand-color {
  background-image: url(../images/icons/SAVORY_GOURMAND.svg);
}

.icon-savory-gourmand-white {
  background-image: url(../images/icons/WHITE_SAVORY_GOURMAND.svg);
}

.icon-voyage-escape-color {
  background-image: url(../images/icons/VOYAGE_ESCAPE.svg);
}

.icon-voyage-escape-white {
  background-image: url(../images/icons/WHITE_VOYAGE_ESCAPE.svg);
}

.icon-timeless-floral-color {
  background-image: url(../images/icons/TIMELESS_FLORAL.svg);
}

.icon-timeless-floral-white {
  background-image: url(../images/icons/WHITE_TIMELESS_FLORAL.svg);
}

.icon-passionate-sensual-color {
  background-image: url(../images/icons/PASSIONATE_SENSUAL.svg);
}

.icon-passionate-sensual-white {
  background-image: url(../images/icons/WHITE_PASSIONATE_SENSUAL.svg);
}

.icon-relaxing-soothing-color {
  background-image: url(../images/icons/RELAXING_SOOTHING.svg);
}

.icon-relaxing-soothing-white {
  background-image: url(../images/icons/WHITE_RELAXING_SOOTHING.svg);
}

.icon-crisp-invigorating-color {
  background-image: url(../images/icons/CRISP_INVIGORATING.svg);
}

.icon-crisp-invigorating-white {
  background-image: url(../images/icons/WHITE_CRISP_INVIGORATING.svg);
}

.icon-warm-inviting-color {
  background-image: url(../images/icons/WARM_INVITING.svg);
}

.icon-warm-inviting-white {
  background-image: url(../images/icons/WHITE_WARM_INVITING.svg);
}

.icon-luxe-sophisticated-color {
  background-image: url(../images/icons/LUXE_SOPHISTICATED.svg);
}

.icon-luxe-sophisticated-white {
  background-image: url(../images/icons/WHITE_LUXE_SOPHISTICATED.svg);
}

.flippable-card__flip-button--plus, .icon-plus-button {
  background-image: url(../images/icons/PLUS_FLIP_ICON.svg);
}

.flippable-card__flip-button--minus, .icon-minus-button {
  background-image: url(../images/icons/MINUS_FLIP_ICON.svg);
}

.icon-social-media-instagram-blue {
  background-image: url(../images/icons/INSTAGRAM_BLUE.svg);
}

.icon-social-media-linkedin-blue {
  background-image: url(../images/icons/LINKEDIN_BLUE.svg);
}

.icon-social-media-facebook-blue {
  background-image: url(../images/icons/FACEBOOK_BLUE.svg);
}

.icon-social-media-instagram-dark {
  background-image: url(../images/icons/INSTAGRAM_DARK.svg);
}

.icon-social-media-linkedin-dark {
  background-image: url(../images/icons/LINKEDIN_DARK.svg);
}

.icon-social-media-facebook-dark {
  background-image: url(../images/icons/FACEBOOK_DARK.svg);
}

.icon-statistic-cruelty-free {
  background-image: url(../images/icons/CRUELTY_FREE.svg);
  width: 3.6rem;
}

.icon-statistic-bio-static {
  background-image: url(../images/icons/BIO_STATIC.svg);
  width: 4.1rem;
}

.icon-statistic-vegan {
  background-image: url(../images/icons/VEGAN.svg);
  width: 4.2rem;
}

.icon-statistic-halal {
  background-image: url(../images/icons/HALAL.svg);
  width: 3.8rem;
}

.icon-statistic-odor-neutralizing {
  background-image: url(../images/icons/ODOR_NEUTRALIZING.svg);
  width: 3.8rem;
}

.icon-statistic-essential-oils {
  background-image: url(../images/icons/ESSENTIAL_OILS.svg);
  width: 3.8rem;
}

._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title::after, .m_single .cta a::after, .m_industries_carousel .element-two .cta a::after, form.alt-form button::after,
form.alt-form input[type=submit]::after, form.contact-message-contact-form-form button::after,
form.contact-message-contact-form-form input[type=submit]::after, .js-pager__items .pager__item .button::after, .paragraph--type--impact-statistic-feature .statistics__link a::after, .single-feature__cta_button a::after, .single-cta-content .__cta a::after, .flippable-card__field-card-link a::after, .curated-collection__button a::after, .paragraph--type--cta-slide .cta-slide__cta-button a::after, .m_hero .homepage__field-hero-cta a::after, .m_hero .element-one .content .center .btn-speak a::after, form button::after,
form input[type=submit]::after, .paragraph-post-readmore::after, ._-page-links__field-page-links .link-title::after, .products-listing .views-embed-default-item-box .views-field-view-node a::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a::after, .latest-updates__card__link::after, .eu-cookie-compliance-banner .find-more-button::after, .articles-listing-item .views-field-view-node a::after,
.articles-listing-item .views-field-title-1 a::after, .icon-white-row {
  background-image: url(../images/icons/WHITE_GO_ARROW_ICON.svg);
  width: 1.2rem;
}

.icon-announcement {
  background-image: url(../images/icons/ANNOUNCEMENT.svg);
  width: 1.6rem;
}

.icon-in-the-news {
  background-image: url(../images/icons/IN_THE_NEWS.svg);
  width: 1.6rem;
}

.icon-press-release {
  background-image: url(../images/icons/PRESS_RELEASE.svg);
  width: 1.6rem;
}

.icon-blog {
  background-image: url(../images/icons/BLOG.svg);
  width: 1.6rem;
}

.views-embed-default-items .views-field-view-node a::after, .related-content .views-field-view-node a::after, #main-nav .nav-col-menu > ul a::after, #main-nav .nav-col-menu h3 > a::after, #main-nav .nav-col-menu .paragraph-post-title > a::after, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title > a::after, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title > a::after, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label > a::after, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label > a::after, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div > a::after, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div > a::after, #main-nav .nav-col-menu .flippable-card__label > a::after, #main-nav .nav-col-menu .flippable-card__title > a::after, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title > a::after, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title > a::after, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content > a::after, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content > a::after, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content > a::after, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content > a::after, .paragraph-post-readmore::after, ._-page-links__field-page-links .link-title::after, .products-listing .views-embed-default-item-box .views-field-view-node a::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a::after, .latest-updates__card__link::after, .eu-cookie-compliance-banner .find-more-button::after, .articles-listing-item .views-field-view-node a::after,
.articles-listing-item .views-field-title-1 a::after, .icon-blue-row {
  background-image: url(../images/icons/GO_ARROW_ICON.svg);
  width: 1.2rem;
}

.icon-check-bigger {
  background-image: url(../images/icons/CHECK_BIGGER_ICON.svg);
}

.icon-check {
  background-image: url(../images/icons/CHECK_ICON.svg);
}

.icon-cross-bigger {
  background-image: url(../images/icons/CROSS_BIGGER_ICON.svg);
}

.icon-cross {
  background-image: url(../images/icons/CROSS_ICON.svg);
}

.icon-circle-blue {
  background-image: url(../images/icons/CIRCLE_BLUE_ICON.svg);
}

.icon-circle-gray {
  background-image: url(../images/icons/CIRCLE_GRAY_ICON.svg);
}

.icon-circle-red {
  background-image: url(../images/icons/CIRCLE_RED_ICON.svg);
}

.icon-comment {
  background-image: url(../images/icons/COMMENT_ICON.svg);
}

.icon-copy {
  background-image: url(../images/icons/COPY_ICON.svg);
}

.icon-document {
  background-image: url(../images/icons/DOCUMENT_ICON.svg);
}

.icon-down-arrow {
  background-image: url(../images/icons/DOWN_ARROW.svg);
}

.icon-download-dark {
  background-image: url(../images/icons/DOWNLOAD_DARK_ICON.svg);
}

.icon-download {
  background-image: url(../images/icons/DOWNLOAD_ICON.svg);
}

.icon-dropdown-i-con {
  background-image: url(../images/icons/DROPDOWN_ICON.svg);
}

a[target=_blank]::after, .icon-external-link {
  background-image: url(../images/icons/EXTERNAL_LINK_ICON.svg);
}

.icon-greater {
  background-image: url(../images/icons/GREATER_ICON.svg);
}

.icon-question-mark {
  background-image: url(../images/icons/QUESTION_MARK_ICON.svg);
}

.icon-question-mark-white {
  background-image: url(../images/icons/QUESTION_MARK_WHITE_ICON.svg);
}

.icon-right-arrow {
  background-image: url(../images/icons/RIGHT_ARROW_ICON.svg);
}

.icon-search {
  background-image: url(../images/icons/SEARCH_ICON.svg);
}

.icon-up-arrow {
  background-image: url(../images/icons/UP_ARROW_ICON.svg);
}

.icon-white-dropdown {
  background-image: url(../images/icons/WHITE_DROPDOWN.svg);
}

.icon-white-cross {
  background-image: url(../images/icons/WHITE_CROSS.svg);
}

.icon-white-big-cross {
  background-image: url(../images/icons/WHITE_BIG_CROSS.svg);
}

.icon-white-big-check {
  background-image: url(../images/icons/WHITE_BIG_CHECK.svg);
}

.icon-white-check {
  background-image: url(../images/icons/WHITE_CHECK.svg);
}

.icon-clock {
  background-image: url(../images/icons/CLOCK_ICON.svg);
}

.paragraph-post-readmore::after, ._-page-links__field-page-links .link-title::after, .products-listing .views-embed-default-item-box .views-field-view-node a::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a::after, .latest-updates__card__link::after, .eu-cookie-compliance-banner .find-more-button::after, .articles-listing-item .views-field-view-node a::after,
.articles-listing-item .views-field-title-1 a::after, ._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title::after, .m_single .cta a::after, .m_industries_carousel .element-two .cta a::after, form.alt-form button::after,
form.alt-form input[type=submit]::after, form.contact-message-contact-form-form button::after,
form.contact-message-contact-form-form input[type=submit]::after, .js-pager__items .pager__item .button::after, .paragraph--type--impact-statistic-feature .statistics__link a::after, .single-feature__cta_button a::after, .single-cta-content .__cta a::after, .flippable-card__field-card-link a::after, .curated-collection__button a::after, .paragraph--type--cta-slide .cta-slide__cta-button a::after, .m_hero .homepage__field-hero-cta a::after, .m_hero .element-one .content .center .btn-speak a::after, form button::after,
form input[type=submit]::after {
  content: "";
  height: 0.6rem;
  position: relative;
  top: 0;
  left: 2rem;
  transition: all 0.3s ease;
}

.page__bottom .contact-form-block--title::before, .recent-posts__field-title::before, .paragraph--type--impact-statistic-feature .statistics__title::before, .single-feature__title h2::before, .single-feature__title .page__bottom .contact-form-block--title::before, .page__bottom .single-feature__title .contact-form-block--title::before, .single-feature__title .recent-posts__field-title::before, .single-feature__title .basic-page-title::before, .single-feature__title .block--views-block--related-content-block-1 h3::before, .single-feature__title .block--views-block--related-content-block-1 .paragraph-post-title::before, .single-feature__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .single-feature__title .block--views-block--related-content-block-1 .link-title::before, .single-feature__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .single-feature__title .block--views-block--related-content-block-1 .feature__field-label::before, .single-feature__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .single-feature__title .block--views-block--related-content-block-1 .statistics__label > div::before, .block--views-block--related-content-block-1 .single-feature__title h3::before, .block--views-block--related-content-block-1 .single-feature__title .paragraph-post-title::before, .block--views-block--related-content-block-1 .single-feature__title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .block--views-block--related-content-block-1 .single-feature__title .link-title::before, .block--views-block--related-content-block-1 .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .single-feature__title .feature__field-label::before, .block--views-block--related-content-block-1 .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .single-feature__title .statistics__label > div::before, .single-feature__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content::before, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .single-feature__title .field-content::before, .single-feature__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content::before, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .single-feature__title .field-content::before, .single-feature__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .single-feature__title .field-content::before, .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .single-feature__title .field-content::before, .single-feature__title .views-embed-default-section h3::before, .single-feature__title .views-embed-default-section .paragraph-post-title::before, .single-feature__title .views-embed-default-section ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .single-feature__title .views-embed-default-section .link-title::before, .single-feature__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .single-feature__title .views-embed-default-section .feature__field-label::before, .single-feature__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .single-feature__title .views-embed-default-section .statistics__label > div::before, .views-embed-default-section .single-feature__title h3::before, .views-embed-default-section .single-feature__title .paragraph-post-title::before, .views-embed-default-section .single-feature__title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .views-embed-default-section .single-feature__title .link-title::before, .views-embed-default-section .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .single-feature__title .feature__field-label::before, .views-embed-default-section .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .views-embed-default-section .single-feature__title .statistics__label > div::before, .single-feature__title .views-embed-default-section .articles-listing-item .views-field-title .field-content::before, .views-embed-default-section .articles-listing-item .views-field-title .single-feature__title .field-content::before, .single-feature__title .articles-listing-item .views-field-title .views-embed-default-section .field-content::before, .articles-listing-item .views-field-title .views-embed-default-section .single-feature__title .field-content::before, .single-feature__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .single-feature__title .field-content::before, .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .single-feature__title .field-content::before, .single-feature__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title::before, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .single-feature__title .views-field-title::before, .single-feature__title .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title::before, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .single-feature__title .views-field-title::before, .single-feature__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title::before, .views-embed-default-section .distributors-listing .views-embed-default-item-box .single-feature__title .views-field-title::before, .single-feature__title .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title::before, .distributors-listing .views-embed-default-item-box .views-embed-default-section .single-feature__title .views-field-title::before, .single-feature__title .block--views-block--related-content-block-1 .flippable-card__label::before, .block--views-block--related-content-block-1 .single-feature__title .flippable-card__label::before, .single-feature__title .block--views-block--related-content-block-1 .flippable-card__title::before, .block--views-block--related-content-block-1 .single-feature__title .flippable-card__title::before, .single-feature__title .views-embed-default-section .flippable-card__label::before, .views-embed-default-section .single-feature__title .flippable-card__label::before, .single-feature__title .views-embed-default-section .flippable-card__title::before, .views-embed-default-section .single-feature__title .flippable-card__title::before, .single-feature__title .flippable-card-deck__field-title::before, .single-feature__title .faq-accordion-title .field__item::before, .faq-accordion-title .single-feature__title .field__item::before, .single-cta-content .__title .single-cta__field-text::before, .single-cta-content .__title .single-cta-with-title__field-title::before, .faq-accordion-title .field__item::before, .flippable-card-deck__field-title::before, .paragraph--type--double-cta > div .title > h2::before, .paragraph--type--double-cta > div .page__bottom .title > .contact-form-block--title::before, .page__bottom .paragraph--type--double-cta > div .title > .contact-form-block--title::before, .paragraph--type--double-cta > div .title > .recent-posts__field-title::before, .paragraph--type--double-cta > div .faq-accordion-title .title > .field__item::before, .faq-accordion-title .paragraph--type--double-cta > div .title > .field__item::before, .paragraph--type--double-cta > div .title > .flippable-card-deck__field-title::before, .paragraph--type--double-cta > div .title > .basic-page-title::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > h3::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .paragraph-post-title::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 ._-page-links__field-page-links .title > .link-title::before, ._-page-links__field-page-links .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .link-title::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .feature__field-label::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label.title > div::before, .paragraph--type--impact-statistic-feature .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .statistics__label.title > div::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .flippable-card__label::before, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .flippable-card__title::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > h3::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .paragraph-post-title::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div ._-page-links__field-page-links .title > .link-title::before, ._-page-links__field-page-links .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .link-title::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .feature__field-label::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .paragraph--type--impact-statistic-feature .statistics__label.title > div::before, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .statistics__label.title > div::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .flippable-card__label::before, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .flippable-card__title::before, .paragraph--type--double-cta > div .views-embed-default-section .title > h3::before, .paragraph--type--double-cta > div .views-embed-default-section .title > .paragraph-post-title::before, .paragraph--type--double-cta > div .views-embed-default-section ._-page-links__field-page-links .title > .link-title::before, ._-page-links__field-page-links .paragraph--type--double-cta > div .views-embed-default-section .title > .link-title::before, .paragraph--type--double-cta > div .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .paragraph--type--double-cta > div .views-embed-default-section .title > .feature__field-label::before, .paragraph--type--double-cta > div .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label.title > div::before, .paragraph--type--impact-statistic-feature .paragraph--type--double-cta > div .views-embed-default-section .statistics__label.title > div::before, .paragraph--type--double-cta > div .views-embed-default-section .title > .flippable-card__label::before, .paragraph--type--double-cta > div .views-embed-default-section .title > .flippable-card__title::before, .views-embed-default-section .paragraph--type--double-cta > div .title > h3::before, .views-embed-default-section .paragraph--type--double-cta > div .title > .paragraph-post-title::before, .views-embed-default-section .paragraph--type--double-cta > div ._-page-links__field-page-links .title > .link-title::before, ._-page-links__field-page-links .views-embed-default-section .paragraph--type--double-cta > div .title > .link-title::before, .views-embed-default-section .paragraph--type--double-cta > div .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .paragraph--type--double-cta > div .title > .feature__field-label::before, .views-embed-default-section .paragraph--type--double-cta > div .paragraph--type--impact-statistic-feature .statistics__label.title > div::before, .paragraph--type--impact-statistic-feature .views-embed-default-section .paragraph--type--double-cta > div .statistics__label.title > div::before, .views-embed-default-section .paragraph--type--double-cta > div .title > .flippable-card__label::before, .views-embed-default-section .paragraph--type--double-cta > div .title > .flippable-card__title::before, .curated-collection__title::before, .views-embed-default-section h3::before, .views-embed-default-section .paragraph-post-title::before, .views-embed-default-section ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .views-embed-default-section .link-title::before, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label::before, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div::before, .views-embed-default-section .flippable-card__label::before, .views-embed-default-section .flippable-card__title::before, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title::before, .views-embed-default-section .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .views-embed-default-section .field-content::before, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content::before, .m_single .title h3::before, .m_single .title .paragraph-post-title::before, .m_single .title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .m_single .title .link-title::before, .m_single .title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_single .title .feature__field-label::before, .m_single .title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .m_single .title .statistics__label > div::before, .m_single .title .flippable-card__label::before, .m_single .title .flippable-card__title::before, .m_single .title .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .m_single .title .views-field-title::before, .m_single .title .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .m_single .title .field-content::before, .m_single .title .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .m_single .title .field-content::before, .block--views-block--related-content-block-1 h3::before, .block--views-block--related-content-block-1 .paragraph-post-title::before, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title::before, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label::before, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div::before, .block--views-block--related-content-block-1 .flippable-card__label::before, .block--views-block--related-content-block-1 .flippable-card__title::before, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title::before, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content::before, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content::before, .customer-logos__title::before, .leadership__title::before, .m_industries_carousel .element-one .left h3::before, .m_industries_carousel .element-one .left .paragraph-post-title::before, .m_industries_carousel .element-one .left ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .m_industries_carousel .element-one .left .link-title::before, .m_industries_carousel .element-one .left .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_industries_carousel .element-one .left .feature__field-label::before, .m_industries_carousel .element-one .left .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .m_industries_carousel .element-one .left .statistics__label > div::before, .m_industries_carousel .element-one .left .flippable-card__label::before, .m_industries_carousel .element-one .left .flippable-card__title::before, .m_industries_carousel .element-one .left .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .m_industries_carousel .element-one .left .views-field-title::before, .m_industries_carousel .element-one .left .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .m_industries_carousel .element-one .left .field-content::before, .m_industries_carousel .element-one .left .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .m_industries_carousel .element-one .left .field-content::before, .homepage__field-hero-title::before, .global-offices-text h2::before, .global-offices-text .page__bottom .contact-form-block--title::before, .page__bottom .global-offices-text .contact-form-block--title::before, .global-offices-text .recent-posts__field-title::before, .global-offices-text .basic-page-title::before, h2.with-accent::before, .page__bottom .with-accent.contact-form-block--title::before, .with-accent.recent-posts__field-title::before, .with-accent.basic-page-title::before {
  content: "\2015\2015\2015\2015";
  display: block;
  color: #56B2CB;
  text-align: inherit;
  line-height: 0.2rem;
  font-size: 1.8rem;
  letter-spacing: -0.25em;
  margin-bottom: 3.5rem;
}

.homepage__field-hero-description p, p.large {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #6E7A84;
  letter-spacing: 0.02em;
  margin: 0 0 1.66666em;
}
@media (min-width: 992px) {
  .homepage__field-hero-description p, p.large {
    font-size: 3rem;
    line-height: 4rem;
  }
}

h1, .homepage__field-hero-title {
  letter-spacing: -0.025em;
  line-height: 4rem;
  color: inherit;
  margin: 0.571428em 0;
}
@media (min-width: 576px) {
  h1, .homepage__field-hero-title {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}
@media (min-width: 992px) {
  h1, .homepage__field-hero-title {
    font-size: 6rem;
    line-height: 6.5rem;
  }
}

h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .views-embed-default-section .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .views-embed-default-section .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .basic-page-title {
  letter-spacing: -0.02em;
  line-height: 3.6rem;
  color: inherit;
  margin: 0 0 0.75em;
}
@media (min-width: 576px) {
  h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .views-embed-default-section .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .views-embed-default-section .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .basic-page-title {
    font-size: 3.5rem;
    line-height: 4.5rem;
  }
}
@media (min-width: 992px) {
  h2, .page__bottom .contact-form-block--title, .recent-posts__field-title, .faq-accordion-title .field__item, .flippable-card-deck__field-title, .views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .views-embed-default-section .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .views-embed-default-section .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .basic-page-title {
    font-size: 3rem;
    line-height: 4rem;
  }
}
h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content {
  line-height: 4rem;
  color: inherit;
  margin: 0 0 1em;
}
@media (min-width: 576px) {
  h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content {
    font-size: 2.6rem;
    line-height: 3rem;
  }
}
@media (min-width: 992px) {
  h3, .paragraph-post-title, ._-page-links__field-page-links .link-title, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph--type--impact-statistic-feature .statistics__label > div, .flippable-card__label, .flippable-card__title, .distributors-listing .views-embed-default-item-box .views-field-title, .products-listing .views-embed-default-item-box .views-field-title .field-content, .articles-listing-item .views-field-title .field-content {
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

h4, .basic-page-hero-v2-subtitle {
  line-height: 3rem;
  color: #6E7A84;
  margin: 0 0 0.833333em;
}
@media (min-width: 576px) {
  h4, .basic-page-hero-v2-subtitle {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
@media (min-width: 992px) {
  h4, .basic-page-hero-v2-subtitle {
    font-size: 2rem;
    line-height: 3rem;
  }
}

h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle {
  line-height: 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: inherit;
}
@media (min-width: 576px) {
  h5, .paragraph-post-subtitle, ._-page-links__field-page-links .link-subtitle, .flippable-card__eyebrow, .basic-page-subtitle {
    font-size: 1.4rem;
    line-height: 1.2rem;
  }
}
h5.eyebrow, .eyebrow.paragraph-post-subtitle, ._-page-links__field-page-links .eyebrow.link-subtitle, .eyebrow.flippable-card__eyebrow, .eyebrow.basic-page-subtitle {
  color: #56B2CB;
}
h5.subtitle, .subtitle.paragraph-post-subtitle, ._-page-links__field-page-links .subtitle.link-subtitle, .subtitle.flippable-card__eyebrow, .subtitle.basic-page-subtitle {
  color: #6E7A84;
  margin: 0 0 2.14285em;
}

h6 {
  letter-spacing: 0.1rem;
  line-height: 1.2rem;
  text-transform: uppercase;
  color: #6E7A84;
}

p {
  letter-spacing: 0.02em;
  line-height: 1.77778em;
  margin: 0 0 1.77778em;
}
p:last-child {
  margin-bottom: 0;
}

.number-callout, .paragraph--type--impact-statistic-feature .statistics__number {
  font-size: 3.88888em;
  letter-spacing: -0.025em;
  color: #56B2CB;
  vertical-align: text-bottom;
  line-height: inherit;
}

p + ul,
p + ol {
  margin-top: -0.77778em;
}

a {
  color: #56B2CB;
}
a:visited {
  color: #A850D6;
}
a[target=_blank] {
  color: #56B2CB;
}
a[target=_blank]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  line-height: inherit;
  vertical-align: middle;
  transform: translateY(-0.15em);
}

nav a[target=_blank]::after,
.nav a[target=_blank]::after,
.social-icons a[target=_blank]::after,
.footer-social-icons a[target=_blank]::after {
  content: "";
  display: none;
}

h1 a, .homepage__field-hero-title a, h2 a, .page__bottom .contact-form-block--title a, .recent-posts__field-title a, .faq-accordion-title .field__item a, .flippable-card-deck__field-title a, .views-embed-default-section h3 a, .views-embed-default-section ._-page-links__field-page-links .link-title a, ._-page-links__field-page-links .views-embed-default-section .link-title a, .block--views-block--related-content-block-1 h3 a, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title a, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title a, .basic-page-title a, h3 a, .paragraph-post-title a, ._-page-links__field-page-links .link-title a, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label a, .paragraph--type--impact-statistic-feature .statistics__label > div a, .flippable-card__label a, .flippable-card__title a, .distributors-listing .views-embed-default-item-box .views-field-title a, .products-listing .views-embed-default-item-box .views-field-title .field-content a, .articles-listing-item .views-field-title .field-content a, h4 a, .basic-page-hero-v2-subtitle a, h5 a, .paragraph-post-subtitle a, ._-page-links__field-page-links .link-subtitle a, .flippable-card__eyebrow a, .basic-page-subtitle a, h6 a, .block--scentair-local-tasks a, #toolbar-administration a {
  color: inherit;
}
h1 a:visited, .homepage__field-hero-title a:visited, h1 a:hover, .homepage__field-hero-title a:hover, h2 a:visited, .page__bottom .contact-form-block--title a:visited, .recent-posts__field-title a:visited, .faq-accordion-title .field__item a:visited, .flippable-card-deck__field-title a:visited, .basic-page-title a:visited, h2 a:hover, .page__bottom .contact-form-block--title a:hover, .recent-posts__field-title a:hover, .faq-accordion-title .field__item a:hover, .flippable-card-deck__field-title a:hover, .basic-page-title a:hover, h3 a:visited, .paragraph-post-title a:visited, ._-page-links__field-page-links .link-title a:visited, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label a:visited, .paragraph--type--impact-statistic-feature .statistics__label > div a:visited, .flippable-card__label a:visited, .flippable-card__title a:visited, .distributors-listing .views-embed-default-item-box .views-field-title a:visited, .products-listing .views-embed-default-item-box .views-field-title .field-content a:visited, .articles-listing-item .views-field-title .field-content a:visited, h3 a:hover, .paragraph-post-title a:hover, ._-page-links__field-page-links .link-title a:hover, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label a:hover, .paragraph--type--impact-statistic-feature .statistics__label > div a:hover, .flippable-card__label a:hover, .flippable-card__title a:hover, .distributors-listing .views-embed-default-item-box .views-field-title a:hover, .products-listing .views-embed-default-item-box .views-field-title .field-content a:hover, .articles-listing-item .views-field-title .field-content a:hover, h4 a:visited, .basic-page-hero-v2-subtitle a:visited, h4 a:hover, .basic-page-hero-v2-subtitle a:hover, h5 a:visited, .paragraph-post-subtitle a:visited, ._-page-links__field-page-links .link-subtitle a:visited, .flippable-card__eyebrow a:visited, .basic-page-subtitle a:visited, h5 a:hover, .paragraph-post-subtitle a:hover, ._-page-links__field-page-links .link-subtitle a:hover, .flippable-card__eyebrow a:hover, .basic-page-subtitle a:hover, h6 a:visited, h6 a:hover, .block--scentair-local-tasks a:visited, .block--scentair-local-tasks a:hover, #toolbar-administration a:visited, #toolbar-administration a:hover {
  color: inherit;
}

ol,
ul {
  padding-left: 2.22222em;
  margin: 1em 0 1.77778em;
}
ol li,
ul li {
  list-style: none;
}
ol li::before,
ul li::before {
  content: "\2022";
  color: #56B2CB;
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
  text-align: right;
  direction: rtl;
  padding-right: 0.5em;
}

ol {
  counter-reset: li;
}
ol li {
  counter-increment: li;
}
ol li::before {
  content: "." counter(li);
}

nav ol,
nav ul,
.nav,
.nav-submenu,
ul[role=presentation] {
  padding: 0;
  margin: 0;
}
nav ol li::before,
nav ul li::before,
.nav li::before,
.nav-submenu li::before,
ul[role=presentation] li::before {
  content: "";
  display: none;
}

figcaption, .paragraph-video-caption .__caption, .paragraph-single-image-caption .__caption, .paragraph-3-images-caption .__caption {
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin-top: 2rem;
  letter-spacing: 0.1em;
  color: #6E7A84;
  text-transform: uppercase;
}

hr {
  margin: 1rem 0 6rem;
}

.basic-page-content .field__item.paragraph + .field__item.paragraph, .landing-page-content .field__item.paragraph + .field__item.paragraph {
  margin-top: 8rem;
}
.basic-page-content .field__item.paragraph:last-child, .landing-page-content .field__item.paragraph:last-child {
  /**
   * When the last paragraph is of this type
   * there's not enough room to prevent it from
   * being covered by the footer swirl,
   * So we add it here
   */
}
.basic-page-content .field__item.paragraph:last-child > .paragraph--type--wysiwyg, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--recent-posts, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--recent-posts, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--cta-slider, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--faq-accordion, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .global-offices, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .articles-listing, .basic-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .contact-form__field-contact-, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--wysiwyg, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--recent-posts, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--recent-posts, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--cta-slider, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--faq-accordion, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .global-offices, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .articles-listing, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--block-embed .contact-form__field-contact- {
  margin-bottom: 10rem;
}
.basic-page-content .field__item.paragraph:last-child > .paragraph--type--single-cta .single-cta, .landing-page-content .field__item.paragraph:last-child > .paragraph--type--single-cta .single-cta {
  padding-bottom: 5rem;
}

.toolbar-menu {
  color: #2E3236;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button, .btn,
.btn-primary, .products-listing .views-embed-default-item-box .views-field-view-node a,
.products-listing .views-embed-default-item-box .views-field-title-1 a, .latest-updates__card__link, .eu-cookie-compliance-banner .find-more-button, .articles-listing-item .views-field-view-node a,
.articles-listing-item .views-field-title-1 a, .paragraph--type--impact-statistic-feature .statistics__link a, .single-feature__cta_button a, .single-cta-content .__cta a, .flippable-card__field-card-link a, .curated-collection__button a, .paragraph--type--cta-slide .cta-slide__cta-button a, .m_hero .homepage__field-hero-cta a, .m_hero .element-one .content .center .btn-speak a, form button,
form input[type=submit], .eu-cookie-compliance-banner .eu-cookie-compliance-default-button, .m_single .cta a, .m_industries_carousel .element-two .cta a, form.alt-form button,
form.alt-form input[type=submit], form.contact-message-contact-form-form button,
form.contact-message-contact-form-form input[type=submit], .js-pager__items .pager__item .button {
  align-items: center;
  background: #46BDD4;
  border-radius: 0.2rem;
  border: none;
  color: #FFFFFF;
  display: inline-flex;
  font-size: 1.4rem;
  justify-content: center;
  letter-spacing: 0.1rem;
  line-height: 1.8rem;
  padding: 1.6rem 2.6rem;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: none;
}
@media (min-width: 1200px) {
  .eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button, .btn,
.btn-primary, .products-listing .views-embed-default-item-box .views-field-view-node a,
.products-listing .views-embed-default-item-box .views-field-title-1 a, .latest-updates__card__link, .eu-cookie-compliance-banner .find-more-button, .articles-listing-item .views-field-view-node a,
.articles-listing-item .views-field-title-1 a, .paragraph--type--impact-statistic-feature .statistics__link a, .single-feature__cta_button a, .single-cta-content .__cta a, .flippable-card__field-card-link a, .curated-collection__button a, .paragraph--type--cta-slide .cta-slide__cta-button a, .m_hero .homepage__field-hero-cta a, .m_hero .element-one .content .center .btn-speak a, form button,
form input[type=submit], .eu-cookie-compliance-banner .eu-cookie-compliance-default-button, .m_single .cta a, .m_industries_carousel .element-two .cta a, form.alt-form button,
form.alt-form input[type=submit], form.contact-message-contact-form-form button,
form.contact-message-contact-form-form input[type=submit], .js-pager__items .pager__item .button {
    padding: 1.6rem 3rem;
  }
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:visited, .btn:visited,
.btn-primary:visited, .products-listing .views-embed-default-item-box .views-field-view-node a:visited,
.products-listing .views-embed-default-item-box .views-field-title-1 a:visited, .latest-updates__card__link:visited, .eu-cookie-compliance-banner .find-more-button:visited, .articles-listing-item .views-field-view-node a:visited,
.articles-listing-item .views-field-title-1 a:visited, .paragraph--type--impact-statistic-feature .statistics__link a:visited, .single-feature__cta_button a:visited, .single-cta-content .__cta a:visited, .flippable-card__field-card-link a:visited, .curated-collection__button a:visited, .paragraph--type--cta-slide .cta-slide__cta-button a:visited, .m_hero .homepage__field-hero-cta a:visited, .m_hero .element-one .content .center .btn-speak a:visited, form button:visited,
form input[type=submit]:visited, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:visited, .m_single .cta a:visited, .m_industries_carousel .element-two .cta a:visited, .js-pager__items .pager__item .button:visited {
  color: #FFFFFF;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:hover, .btn:hover,
.btn-primary:hover, .products-listing .views-embed-default-item-box .views-field-view-node a:hover,
.products-listing .views-embed-default-item-box .views-field-title-1 a:hover, .latest-updates__card__link:hover, .eu-cookie-compliance-banner .find-more-button:hover, .articles-listing-item .views-field-view-node a:hover,
.articles-listing-item .views-field-title-1 a:hover, .paragraph--type--impact-statistic-feature .statistics__link a:hover, .single-feature__cta_button a:hover, .single-cta-content .__cta a:hover, .flippable-card__field-card-link a:hover, .curated-collection__button a:hover, .paragraph--type--cta-slide .cta-slide__cta-button a:hover, .m_hero .homepage__field-hero-cta a:hover, .m_hero .element-one .content .center .btn-speak a:hover, form button:hover,
form input[type=submit]:hover, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:hover, .m_single .cta a:hover, .m_industries_carousel .element-two .cta a:hover, .js-pager__items .pager__item .button:hover {
  background: #46BDD4;
  border: none;
  box-shadow: 0 0.3rem 0.6rem rgba(46, 50, 54, 0.15);
  color: #FFFFFF;
  text-decoration: none;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:hover::after, .btn:hover::after,
.btn-primary:hover::after, .products-listing .views-embed-default-item-box .views-field-view-node a:hover::after,
.products-listing .views-embed-default-item-box .views-field-title-1 a:hover::after, .latest-updates__card__link:hover::after, .eu-cookie-compliance-banner .find-more-button:hover::after, .articles-listing-item .views-field-view-node a:hover::after,
.articles-listing-item .views-field-title-1 a:hover::after, .paragraph--type--impact-statistic-feature .statistics__link a:hover::after, .single-feature__cta_button a:hover::after, .single-cta-content .__cta a:hover::after, .flippable-card__field-card-link a:hover::after, .curated-collection__button a:hover::after, .paragraph--type--cta-slide .cta-slide__cta-button a:hover::after, .m_hero .homepage__field-hero-cta a:hover::after, .m_hero .element-one .content .center .btn-speak a:hover::after, form button:hover::after,
form input[type=submit]:hover::after, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:hover::after, .m_single .cta a:hover::after, .m_industries_carousel .element-two .cta a:hover::after, .js-pager__items .pager__item .button:hover::after {
  transform: translateX(1rem);
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:focus, .btn:focus,
.btn-primary:focus, .products-listing .views-embed-default-item-box .views-field-view-node a:focus,
.products-listing .views-embed-default-item-box .views-field-title-1 a:focus, .latest-updates__card__link:focus, .eu-cookie-compliance-banner .find-more-button:focus, .articles-listing-item .views-field-view-node a:focus,
.articles-listing-item .views-field-title-1 a:focus, .paragraph--type--impact-statistic-feature .statistics__link a:focus, .single-feature__cta_button a:focus, .single-cta-content .__cta a:focus, .flippable-card__field-card-link a:focus, .curated-collection__button a:focus, .paragraph--type--cta-slide .cta-slide__cta-button a:focus, .m_hero .homepage__field-hero-cta a:focus, .m_hero .element-one .content .center .btn-speak a:focus, form button:focus,
form input[type=submit]:focus, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:focus, .m_single .cta a:focus, .m_industries_carousel .element-two .cta a:focus, .js-pager__items .pager__item .button:focus {
  border: none;
  box-shadow: none;
}
.eu-cookie-compliance-banner .focus-visible.eu-cookie-compliance-secondary-button:focus, .focus-visible.btn:focus,
.focus-visible.btn-primary:focus, .products-listing .views-embed-default-item-box .views-field-view-node a.focus-visible:focus,
.products-listing .views-embed-default-item-box .views-field-title-1 a.focus-visible:focus, .focus-visible.latest-updates__card__link:focus, .eu-cookie-compliance-banner .focus-visible.find-more-button:focus, .articles-listing-item .views-field-view-node a.focus-visible:focus,
.articles-listing-item .views-field-title-1 a.focus-visible:focus, .paragraph--type--impact-statistic-feature .statistics__link a.focus-visible:focus, .single-feature__cta_button a.focus-visible:focus, .single-cta-content .__cta a.focus-visible:focus, .flippable-card__field-card-link a.focus-visible:focus, .curated-collection__button a.focus-visible:focus, .paragraph--type--cta-slide .cta-slide__cta-button a.focus-visible:focus, .m_hero .homepage__field-hero-cta a.focus-visible:focus, .m_hero .element-one .content .center .btn-speak a.focus-visible:focus, form button.focus-visible:focus,
form input.focus-visible[type=submit]:focus, .eu-cookie-compliance-banner .focus-visible.eu-cookie-compliance-default-button:focus, .m_single .cta a.focus-visible:focus, .m_industries_carousel .element-two .cta a.focus-visible:focus, .js-pager__items .pager__item .focus-visible.button:focus {
  border: none;
  box-shadow: none;
  outline-color: #EC2C2D;
  outline-offset: 0.3rem;
  outline-style: dotted;
  outline-width: 0.2rem;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:not(:disabled):not(.disabled):active, .btn:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active, .products-listing .views-embed-default-item-box .views-field-view-node a:not(:disabled):not(.disabled):active,
.products-listing .views-embed-default-item-box .views-field-title-1 a:not(:disabled):not(.disabled):active, .latest-updates__card__link:not(:disabled):not(.disabled):active, .eu-cookie-compliance-banner .find-more-button:not(:disabled):not(.disabled):active, .articles-listing-item .views-field-view-node a:not(:disabled):not(.disabled):active,
.articles-listing-item .views-field-title-1 a:not(:disabled):not(.disabled):active, .paragraph--type--impact-statistic-feature .statistics__link a:not(:disabled):not(.disabled):active, .single-feature__cta_button a:not(:disabled):not(.disabled):active, .single-cta-content .__cta a:not(:disabled):not(.disabled):active, .flippable-card__field-card-link a:not(:disabled):not(.disabled):active, .curated-collection__button a:not(:disabled):not(.disabled):active, .paragraph--type--cta-slide .cta-slide__cta-button a:not(:disabled):not(.disabled):active, .m_hero .homepage__field-hero-cta a:not(:disabled):not(.disabled):active, .m_hero .element-one .content .center .btn-speak a:not(:disabled):not(.disabled):active, form button:not(:disabled):not(.disabled):active,
form input[type=submit]:not(:disabled):not(.disabled):active, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:not(:disabled):not(.disabled):active, .m_single .cta a:not(:disabled):not(.disabled):active, .m_industries_carousel .element-two .cta a:not(:disabled):not(.disabled):active, .js-pager__items .pager__item .button:not(:disabled):not(.disabled):active {
  background: #46BDD4;
  border: none;
  box-shadow: none;
  color: #FFFFFF;
  opacity: 0.65;
  outline: none !important;
}
.eu-cookie-compliance-banner .disabled.eu-cookie-compliance-secondary-button, .disabled.btn,
.disabled.btn-primary, .products-listing .views-embed-default-item-box .views-field-view-node a.disabled,
.products-listing .views-embed-default-item-box .views-field-title-1 a.disabled, .disabled.latest-updates__card__link, .eu-cookie-compliance-banner .disabled.find-more-button, .articles-listing-item .views-field-view-node a.disabled,
.articles-listing-item .views-field-title-1 a.disabled, .paragraph--type--impact-statistic-feature .statistics__link a.disabled, .single-feature__cta_button a.disabled, .single-cta-content .__cta a.disabled, .flippable-card__field-card-link a.disabled, .curated-collection__button a.disabled, .paragraph--type--cta-slide .cta-slide__cta-button a.disabled, .m_hero .homepage__field-hero-cta a.disabled, .m_hero .element-one .content .center .btn-speak a.disabled, form button.disabled,
form input.disabled[type=submit], .eu-cookie-compliance-banner .disabled.eu-cookie-compliance-default-button, .m_single .cta a.disabled, .m_industries_carousel .element-two .cta a.disabled, .js-pager__items .pager__item .disabled.button, .eu-cookie-compliance-banner .eu-cookie-compliance-secondary-button:disabled, .btn:disabled,
.btn-primary:disabled, .products-listing .views-embed-default-item-box .views-field-view-node a:disabled,
.products-listing .views-embed-default-item-box .views-field-title-1 a:disabled, .latest-updates__card__link:disabled, .eu-cookie-compliance-banner .find-more-button:disabled, .articles-listing-item .views-field-view-node a:disabled,
.articles-listing-item .views-field-title-1 a:disabled, .paragraph--type--impact-statistic-feature .statistics__link a:disabled, .single-feature__cta_button a:disabled, .single-cta-content .__cta a:disabled, .flippable-card__field-card-link a:disabled, .curated-collection__button a:disabled, .paragraph--type--cta-slide .cta-slide__cta-button a:disabled, .m_hero .homepage__field-hero-cta a:disabled, .m_hero .element-one .content .center .btn-speak a:disabled, form button:disabled,
form input[type=submit]:disabled, .eu-cookie-compliance-banner .eu-cookie-compliance-default-button:disabled, .m_single .cta a:disabled, .m_industries_carousel .element-two .cta a:disabled, .js-pager__items .pager__item .button:disabled {
  background: #C6D0D8;
  border: none;
  color: #6E7A84;
  cursor: pointer;
  opacity: 1;
  pointer-events: none;
  box-shadow: none;
}

.eu-cookie-compliance-banner .eu-cookie-compliance-default-button, .m_single .cta a, .m_industries_carousel .element-two .cta a, form.alt-form button,
form.alt-form input[type=submit], form.contact-message-contact-form-form button,
form.contact-message-contact-form-form input[type=submit], .js-pager__items .pager__item .button {
  background: #2E3236;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-default-button:hover, .m_single .cta a:hover, .m_industries_carousel .element-two .cta a:hover, form.alt-form button:hover,
form.alt-form input[type=submit]:hover, form.contact-message-contact-form-form button:hover,
form.contact-message-contact-form-form input[type=submit]:hover, .js-pager__items .pager__item .button:hover {
  background: #2E3236;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-default-button:not(:disabled):not(.disabled):active, .m_single .cta a:not(:disabled):not(.disabled):active, .m_industries_carousel .element-two .cta a:not(:disabled):not(.disabled):active, form.alt-form button:not(:disabled):not(.disabled):active,
form.alt-form input[type=submit]:not(:disabled):not(.disabled):active, form.contact-message-contact-form-form button:not(:disabled):not(.disabled):active,
form.contact-message-contact-form-form input[type=submit]:not(:disabled):not(.disabled):active, .js-pager__items .pager__item .button:not(:disabled):not(.disabled):active {
  background: #2E3236;
}

.paragraph--type--impact-statistic-feature .statistics__link a, .single-feature__cta_button a, .single-cta-content .__cta a, .flippable-card__field-card-link a, .curated-collection__button a, .paragraph--type--cta-slide .cta-slide__cta-button a, .m_hero .homepage__field-hero-cta a, .m_hero .element-one .content .center .btn-speak a, form button,
form input[type=submit] {
  padding-right: 6.2rem !important;
}

.m_single .cta a, .m_industries_carousel .element-two .cta a, form.alt-form button,
form.alt-form input[type=submit], form.contact-message-contact-form-form button,
form.contact-message-contact-form-form input[type=submit], .js-pager__items .pager__item .button {
  padding-right: 6.2rem !important;
}

.products-listing .views-embed-default-item-box .views-field-view-node a,
.products-listing .views-embed-default-item-box .views-field-title-1 a, .latest-updates__card__link, .eu-cookie-compliance-banner .find-more-button, .articles-listing-item .views-field-view-node a,
.articles-listing-item .views-field-title-1 a {
  color: #56B2CB;
  background: transparent;
  padding: 0 3.2rem 0 0;
}
.products-listing .views-embed-default-item-box .views-field-view-node a:visited,
.products-listing .views-embed-default-item-box .views-field-title-1 a:visited, .latest-updates__card__link:visited, .eu-cookie-compliance-banner .find-more-button:visited, .articles-listing-item .views-field-view-node a:visited,
.articles-listing-item .views-field-title-1 a:visited {
  color: #56B2CB;
}
.products-listing .views-embed-default-item-box .views-field-view-node a:hover,
.products-listing .views-embed-default-item-box .views-field-title-1 a:hover, .latest-updates__card__link:hover, .eu-cookie-compliance-banner .find-more-button:hover, .articles-listing-item .views-field-view-node a:hover,
.articles-listing-item .views-field-title-1 a:hover {
  color: #56B2CB;
  background: transparent;
  text-decoration: underline;
  box-shadow: none;
}
.products-listing .views-embed-default-item-box .views-field-view-node a:not(:disabled):not(.disabled):active,
.products-listing .views-embed-default-item-box .views-field-title-1 a:not(:disabled):not(.disabled):active, .latest-updates__card__link:not(:disabled):not(.disabled):active, .eu-cookie-compliance-banner .find-more-button:not(:disabled):not(.disabled):active, .articles-listing-item .views-field-view-node a:not(:disabled):not(.disabled):active,
.articles-listing-item .views-field-title-1 a:not(:disabled):not(.disabled):active {
  background: transparent;
  color: #56B2CB;
}
.products-listing .views-embed-default-item-box .views-field-view-node a.disabled,
.products-listing .views-embed-default-item-box .views-field-title-1 a.disabled, .disabled.latest-updates__card__link, .eu-cookie-compliance-banner .disabled.find-more-button, .articles-listing-item .views-field-view-node a.disabled,
.articles-listing-item .views-field-title-1 a.disabled, .products-listing .views-embed-default-item-box .views-field-view-node a:disabled,
.products-listing .views-embed-default-item-box .views-field-title-1 a:disabled, .latest-updates__card__link:disabled, .eu-cookie-compliance-banner .find-more-button:disabled, .articles-listing-item .views-field-view-node a:disabled,
.articles-listing-item .views-field-title-1 a:disabled {
  background: transparent;
}

.subscribe-btn > div {
  margin: 0 auto;
}

.views-infinite-scroll-content-wrapper {
  padding-bottom: 8rem;
}

.js-pager__items {
  display: flex;
  justify-content: center;
  margin: 0 auto 8rem;
  padding: 0;
}
.js-pager__items li::before {
  display: none;
}
.js-pager__items .pager__item {
  list-style: none;
  padding: 0;
  margin: 0;
}
form {
  max-width: 69rem;
  margin: auto;
  padding: 0 5rem;
}
form label {
  color: #2E3236;
}
form label[for*=edit-field], form label[for*=edit-mail] {
  display: none;
}
form select[name],
form textarea[name],
form input[type]:not([type=hidden]) {
  background: transparent;
  border: 0;
  border-bottom: 0.1rem solid #2E3236;
  color: #2E3236;
  margin: 0;
  padding: 0 0.3rem;
  outline: 0;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.6rem;
  line-height: 1.8rem;
  border-radius: 0;
}
form select[name]::-moz-placeholder, form textarea[name]::-moz-placeholder, form input[type]:not([type=hidden])::-moz-placeholder {
  color: #2E3236;
  font-size: 1.6rem;
}
form select[name]:-ms-input-placeholder, form textarea[name]:-ms-input-placeholder, form input[type]:not([type=hidden]):-ms-input-placeholder {
  color: #2E3236;
  font-size: 1.6rem;
}
form select[name]::-ms-input-placeholder, form textarea[name]::-ms-input-placeholder, form input[type]:not([type=hidden])::-ms-input-placeholder {
  color: #2E3236;
  font-size: 1.6rem;
}
form select[name]::placeholder,
form textarea[name]::placeholder,
form input[type]:not([type=hidden])::placeholder {
  color: #2E3236;
  font-size: 1.6rem;
}
form select[name]:focus,
form textarea[name]:focus,
form input[type]:not([type=hidden]):focus {
  outline: none;
  box-shadow: none;
}
form select[name].focus-visible:focus,
form textarea[name].focus-visible:focus,
form input[type]:not([type=hidden]).focus-visible:focus {
  box-shadow: none;
  outline-color: #EC2C2D;
  outline-offset: 0.3rem;
  outline-style: dotted;
  outline-width: 0.2rem;
}
form select[name].disabled, form select[name]:disabled,
form textarea[name].disabled,
form textarea[name]:disabled,
form input[type]:not([type=hidden]).disabled,
form input[type]:not([type=hidden]):disabled {
  opacity: 0.4;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
form select[name] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/sort-solid-black.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 1.4em;
  padding-right: 2rem;
}
form select[name] option {
  color: #2E3236;
}
form select[name]::-ms-expand {
  display: none;
}
form textarea[name] {
  min-height: 19rem;
  background-color: #F4F5F5;
  padding: 2rem;
  border: 0.1rem solid #DFE3E6;
  resize: none;
}
form textarea[name].focus-visible:focus, form textarea[name]:focus {
  border-color: #DFE3E6;
  background-color: #F4F5F5;
}
form .form-wrapper,
form .form-group {
  margin-bottom: 2rem;
}
form.alt-form label, form.contact-message-contact-form-form label {
  color: #FFFFFF;
}
form.alt-form select[name], form.contact-message-contact-form-form select[name] {
  background-image: url(../images/sort-solid-white.svg);
}
form.alt-form textarea[name], form.contact-message-contact-form-form textarea[name] {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
form.alt-form textarea[name].focus-visible:focus, form.alt-form textarea[name]:focus, form.contact-message-contact-form-form textarea[name].focus-visible:focus, form.contact-message-contact-form-form textarea[name]:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}
form.alt-form .form-item-mail, form.contact-message-contact-form-form .form-item-mail {
  color: white;
  line-height: 4.8rem;
  font-size: 1.6rem;
}

.user-login-form {
  margin: 8rem auto;
}

.paragraph--type--_-page-links, .curated-collection, .views-infinite-scroll-content-wrapper {
  background: #FFFFFF;
  background: linear-gradient(180deg, #F2F3F4 0%, #FFFFFF 100%);
}

.paragraph--type--impact-statistic-feature > *, .single-cta > *, .paragraph--type--double-cta > div > * {
  z-index: 2;
}
.paragraph--type--impact-statistic-feature::before, .single-cta::before, .paragraph--type--double-cta > div::before {
  content: "";
  display: block;
  background-color: #2E3236;
  opacity: 0.7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.contained {
  width: auto;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding: 0 2vw;
}
.contained--1 {
  max-width: 900px;
}
.contained--2 {
  max-width: 1245px;
}
.contained--3 {
  max-width: 136rem;
}
@media only screen and (min-width: 1400px) {
  .contained--3 {
    padding: 0;
  }
}

.slick-slider .slick-arrow::before {
  vertical-align: middle;
  line-height: 0rem;
}
.slick-slider .slick-arrow.slick-next::before {
  content: url(../images/arrow-right-blue-big.svg);
}
.slick-slider .slick-arrow.slick-next:hover::before {
  content: url(../images/arrow-right-white-big.svg);
}
.slick-slider .slick-arrow.slick-prev::before {
  content: url(../images/arrow-left-blue-big.svg);
}
.slick-slider .slick-arrow.slick-prev:hover::before {
  content: url(../images/arrow-left-white-big.svg);
}

table {
  margin-bottom: 4rem;
  width: 100%;
}
table tr:nth-child(even) {
  background-color: #F4F5F5;
}
table tr:nth-child(odd) {
  background-color: #FFFFFF;
}
table tr:hover {
  background-color: #C6D0D8;
}
table tr th, table tr td {
  padding: 2.5rem 3rem;
}
table tr th {
  color: #6E7A84;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3.2rem;
}
table tr td {
  color: #2E3236;
  font-size: 1.8rem;
  left: 0.036rem;
  line-height: 3.2rem;
}

.ui-dialog-titlebar {
  background: none;
  border: none;
}

.ui-dialog .ui-dialog-title {
  text-align: center;
  width: 100%;
}

button.ui-dialog-titlebar-close {
  border: none;
  right: 0.6rem;
  outline: none !important;
}
button.ui-dialog-titlebar-close:before {
  content: "x";
  display: block;
  background-color: transparent;
  border: 3px solid #2E3236;
  border-radius: 50%;
  color: #2E3236;
  font-weight: bold;
  height: 32px;
  padding: 6px 2px 2px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  line-height: 1rem;
  font-size: 2.25rem;
}

.main-nav-section {
  display: block;
  position: relative;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  background-color: #FFFFFF;
}
.main-nav-section .close-icon {
  display: none;
}
@media (min-width: 992px) {
  .main-nav-section {
    display: flex;
    flex-direction: row;
    height: 10.3rem;
    padding: 0 3.4rem;
  }
  .main-nav-section.open, .main-nav-section.fixed {
    box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.15);
  }
  .main-nav-section.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 500;
  }
  .main-nav-section.fixed + .main-content {
    padding-top: 10.3rem;
  }
}
@media (min-width: 992px) {
  .main-nav-section {
    height: 14.8rem;
    flex-direction: row;
  }
  .main-nav-section.fixed + .main-content {
    padding-top: 14.8rem;
  }
}
@media (min-width: 1200px) {
  .main-nav-section {
    padding: 0 5rem;
  }
}

.scentair-top-bar-mobile {
  padding: 1.3rem 2.4rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 992px) {
  .scentair-top-bar-mobile {
    display: none;
  }
}

.scentair-top-bar {
  display: none;
  align-items: center;
  min-height: 100%;
}
@media (min-width: 992px) {
  .scentair-top-bar {
    display: flex;
  }
}
.scentair-top-bar .hamburger-icon a,
.scentair-top-bar .close-icon a {
  color: #2E3236;
  white-space: nowrap;
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.2rem;
}
.scentair-top-bar .hamburger-icon a:hover,
.scentair-top-bar .close-icon a:hover {
  color: #56B2CB;
}
.scentair-top-bar .hamburger-icon a img,
.scentair-top-bar .close-icon a img {
  display: inline-block;
  margin: 0 0.5em 0 0;
}

.nav-container {
  display: none;
  flex-direction: column;
}
.nav-container.open {
  display: flex;
}
@media (min-width: 992px) {
  .nav-container {
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
  }
}

.scentair-logo {
  width: 13rem;
}
@media (min-width: 992px) {
  .scentair-logo {
    width: 14rem;
    margin-right: 2.4rem;
  }
}
@media (min-width: 1200px) {
  .scentair-logo {
    width: 17rem;
  }
}
.scentair-logo a {
  display: inline-block;
}
.scentair-logo a img {
  width: 100%;
}

.search-cta-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 992px) {
  .search-cta-container {
    flex-direction: row-reverse;
  }
}
.search-cta-container .btn {
  width: 100%;
}
@media (min-width: 992px) {
  .search-cta-container .btn {
    width: auto;
  }
}

.block--requestconstulationbutton p {
  margin: 0;
}
.block--requestconstulationbutton .btn-primary {
  white-space: nowrap;
  background: #56B2CB;
}
.block--requestconstulationbutton .btn-primary:not(:disabled):not(.disabled):active {
  background: #56B2CB;
}
.block--requestconstulationbutton .btn-primary:hover {
  background: #2E3236;
}
@media (max-width: 1399.98px) {
  .block--requestconstulationbutton .btn-primary {
    padding: 1.2rem 1.8rem;
  }
}
@media (max-width: 1199.98px) {
  .block--requestconstulationbutton {
    width: 100%;
  }
}

.block--scentair-exposedformsearchpage-1 {
  width: 100%;
  background-color: #F4F5F5;
  padding: 1.3rem 2.4rem;
}
.block--scentair-exposedformsearchpage-1 form {
  padding: 0;
  position: relative;
  max-width: 100%;
}
.block--scentair-exposedformsearchpage-1 form .form-item {
  margin: 0;
}
.block--scentair-exposedformsearchpage-1 form label {
  display: none;
}
.block--scentair-exposedformsearchpage-1 form #edit-search-api-fulltext {
  background-color: #FFFFFF;
  background-image: url(../images/search.svg);
  background-position: calc( 100% - 2rem ) 50%;
  background-repeat: no-repeat;
  border-color: transparent;
  padding-right: 5rem;
}
.block--scentair-exposedformsearchpage-1 form .form-actions {
  display: none;
}
@media (min-width: 992px) {
  .block--scentair-exposedformsearchpage-1 {
    background-color: #FFFFFF;
    background-image: url(../images/search.svg);
    background-position: calc(100% - 2rem) center;
    background-repeat: no-repeat;
    cursor: pointer;
    padding: 0 6rem 0 0;
    height: 100%;
    position: relative;
    z-index: 99;
    margin: 0;
  }
  .block--scentair-exposedformsearchpage-1 form {
    display: none;
    width: 0;
  }
  .block--scentair-exposedformsearchpage-1.opened #views-exposed-form-search-page-1 {
    display: flex;
    position: absolute;
    right: 1rem;
    top: calc(50% - 25px);
    width: 40vw;
    max-width: 640px;
    margin: 0;
    padding: 0;
  }
  .block--scentair-exposedformsearchpage-1.opened #views-exposed-form-search-page-1 .form-item {
    width: 100%;
  }
  .block--scentair-exposedformsearchpage-1.opened #views-exposed-form-search-page-1 #edit-search-api-fulltext {
    width: 100%;
    border-color: #56B2CB;
    background-position: calc( 100% - 1rem ) 50%;
  }
}

.utility-menu-container {
  display: flex;
  align-items: stretch;
  padding: 1.2rem 2.4rem;
}
.utility-menu-container nav {
  width: 100%;
}
.utility-menu-container nav ul {
  flex-direction: column;
}
.utility-menu-container nav ul li a {
  color: #6E7A84;
  display: block;
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 1em 0;
}
.utility-menu-container .my-account {
  color: #56B2CB;
}
.utility-menu-container .my-account::before {
  content: url("../images/user.svg");
  display: inline-block;
  margin-right: 0.5em;
  width: 1em;
}
@media (min-width: 992px) {
  .utility-menu-container {
    padding: 0 0 0 2rem;
    width: 100%;
  }
  .utility-menu-container nav {
    align-items: center;
    display: flex;
    padding: 0;
  }
  .utility-menu-container nav ul {
    flex-direction: row;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0 1rem 0 0;
    justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .utility-menu-container {
    width: 40rem;
  }
}

#main-nav {
  display: flex;
  flex-direction: column;
  background-color: #F4F5F5;
  padding: 0;
  width: 100%;
  justify-content: flex-end;
}
#main-nav .nav-col.opened {
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  #main-nav .nav-col {
    flex: 0 0 25%;
    padding: 0 4rem 3rem 0;
  }
}
#main-nav .nav-col-menu {
  padding: 1rem 2.4rem;
}
@media (min-width: 992px) {
  #main-nav .nav-col-menu {
    padding: 0;
  }
}
#main-nav .nav-col-menu h3, #main-nav .nav-col-menu .paragraph-post-title, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div, #main-nav .nav-col-menu .flippable-card__label, #main-nav .nav-col-menu .flippable-card__title, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content {
  font-size: 1.8rem;
  line-height: 1.111111em;
  margin: 0;
  cursor: pointer;
}
#main-nav .nav-col-menu h3.has-submenu, #main-nav .nav-col-menu .has-submenu.paragraph-post-title, #main-nav .nav-col-menu ._-page-links__field-page-links .has-submenu.link-title, ._-page-links__field-page-links #main-nav .nav-col-menu .has-submenu.link-title, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .has-submenu.feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .has-submenu.feature__field-label, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div.has-submenu, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div.has-submenu, #main-nav .nav-col-menu .has-submenu.flippable-card__label, #main-nav .nav-col-menu .has-submenu.flippable-card__title, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .has-submenu.views-field-title, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .has-submenu.views-field-title, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .has-submenu.field-content, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .has-submenu.field-content, #main-nav .nav-col-menu .articles-listing-item .views-field-title .has-submenu.field-content, .articles-listing-item .views-field-title #main-nav .nav-col-menu .has-submenu.field-content {
  background-image: url("../images/switcher-arrow-down-gray.svg");
  background-repeat: no-repeat;
  background-position: calc( 100% - 0.6rem ) center;
  background-size: 0.8rem auto;
}
#main-nav .nav-col-menu h3 > a::after, #main-nav .nav-col-menu .paragraph-post-title > a::after, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title > a::after, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title > a::after, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label > a::after, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label > a::after, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div > a::after, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div > a::after, #main-nav .nav-col-menu .flippable-card__label > a::after, #main-nav .nav-col-menu .flippable-card__title > a::after, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title > a::after, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title > a::after, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content > a::after, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content > a::after, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content > a::after, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content > a::after {
  content: "";
  display: block;
  height: 0.8rem;
  margin-left: 0.7rem;
  position: absolute;
  right: -1.7rem;
  bottom: 0.25em;
  transition: all 0.3s ease;
  visibility: hidden;
}
#main-nav .nav-col-menu h3 > a:hover, #main-nav .nav-col-menu .paragraph-post-title > a:hover, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title > a:hover, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title > a:hover, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label > a:hover, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label > a:hover, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div > a:hover, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div > a:hover, #main-nav .nav-col-menu .flippable-card__label > a:hover, #main-nav .nav-col-menu .flippable-card__title > a:hover, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title > a:hover, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title > a:hover, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content > a:hover, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content > a:hover, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content > a:hover, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content > a:hover {
  text-decoration: underline;
  color: #56B2CB;
  position: relative;
}
#main-nav .nav-col-menu h3 > a:hover::after, #main-nav .nav-col-menu .paragraph-post-title > a:hover::after, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title > a:hover::after, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title > a:hover::after, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label > a:hover::after, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label > a:hover::after, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div > a:hover::after, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div > a:hover::after, #main-nav .nav-col-menu .flippable-card__label > a:hover::after, #main-nav .nav-col-menu .flippable-card__title > a:hover::after, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title > a:hover::after, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title > a:hover::after, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content > a:hover::after, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content > a:hover::after, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content > a:hover::after, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content > a:hover::after {
  visibility: visible;
  transform: translateX(1rem);
}
@media (min-width: 992px) {
  #main-nav .nav-col-menu h3, #main-nav .nav-col-menu .paragraph-post-title, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div, #main-nav .nav-col-menu .flippable-card__label, #main-nav .nav-col-menu .flippable-card__title, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content {
    font-size: 2.2rem;
    background: none !important;
  }
}
@media (min-width: 992px) {
  #main-nav .nav-col-menu h3, #main-nav .nav-col-menu .paragraph-post-title, #main-nav .nav-col-menu ._-page-links__field-page-links .link-title, ._-page-links__field-page-links #main-nav .nav-col-menu .link-title, #main-nav .nav-col-menu .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label #main-nav .nav-col-menu .feature__field-label, #main-nav .nav-col-menu .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature #main-nav .nav-col-menu .statistics__label > div, #main-nav .nav-col-menu .flippable-card__label, #main-nav .nav-col-menu .flippable-card__title, #main-nav .nav-col-menu .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box #main-nav .nav-col-menu .views-field-title, #main-nav .nav-col-menu .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title #main-nav .nav-col-menu .field-content, #main-nav .nav-col-menu .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title #main-nav .nav-col-menu .field-content {
    font-size: 2.4rem;
  }
}
#main-nav .nav-col-menu > ul {
  display: none;
  padding: 2rem 0 0 2rem;
}
#main-nav .nav-col-menu > ul.opened {
  display: block;
}
#main-nav .nav-col-menu > ul a {
  position: relative;
  color: #6E7A84;
}
#main-nav .nav-col-menu > ul a::after {
  content: "";
  display: block;
  height: 0.8rem;
  position: absolute;
  right: -1.7rem;
  bottom: 0.6rem;
  visibility: hidden;
  transition: all 0.3s ease;
}
#main-nav .nav-col-menu > ul a:hover {
  color: #56B2CB;
  text-decoration: underline;
}
#main-nav .nav-col-menu > ul a:hover::after {
  visibility: visible;
  transform: translateX(1rem);
}
#main-nav .nav-col-menu > ul > li {
  margin-bottom: 2rem;
}
#main-nav .nav-col-menu > ul > li > a {
  text-transform: uppercase;
  font-size: 1.4rem;
  letter-spacing: 0;
}
#main-nav .nav-col-menu > ul > li > a::after {
  bottom: 0.4rem !important;
}
#main-nav .nav-col-menu > ul > li > ul {
  padding: 0 0 0 1rem;
}
#main-nav .nav-col-menu > ul > li > ul > li {
  margin-bottom: 1.6rem;
}
#main-nav .nav-col-menu > ul > li > ul > li > a {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.02em;
}
@media (min-width: 992px) {
  #main-nav .nav-col-menu > ul {
    display: block;
    padding: 0.5rem 0 0 0;
  }
  #main-nav .nav-col-menu > ul > li {
    margin-bottom: 0;
  }
  #main-nav .nav-col-menu > ul > li > ul {
    padding: 0 0 0 1rem;
  }
  #main-nav .nav-col-menu > ul > li > ul > li {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  #main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 10%;
    width: 80%;
    border-top: 2rem solid #F4F5F5;
    background-color: #FFFFFF;
    box-shadow: 0 0 0.6rem rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    flex-wrap: wrap;
    z-index: 9998;
    flex-direction: row;
    padding: 2.5rem 2rem;
    max-height: calc(100vh);
    overflow: auto;
  }
  #main-nav.open {
    display: flex;
  }
}

.block--languageswitcher {
  position: relative;
}
.block--languageswitcher h3, .block--languageswitcher .paragraph-post-title, .block--languageswitcher ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--languageswitcher .link-title, .block--languageswitcher .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--languageswitcher .feature__field-label, .block--languageswitcher .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--languageswitcher .statistics__label > div, .block--languageswitcher .flippable-card__label, .block--languageswitcher .flippable-card__title, .block--languageswitcher .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--languageswitcher .views-field-title, .block--languageswitcher .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--languageswitcher .field-content, .block--languageswitcher .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--languageswitcher .field-content {
  display: inline-block;
  color: #6E7A84;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.4rem;
  letter-spacing: 0;
  margin: 0;
  padding: 1em 2rem 1em 0;
  text-transform: uppercase;
  background-image: url("../images/switcher-arrow-down-gray.svg");
  background-repeat: no-repeat;
  background-position: calc( 100% - 0.6rem ) center;
  background-size: 0.8rem auto;
}
.block--languageswitcher h3.opened, .block--languageswitcher .opened.paragraph-post-title, .block--languageswitcher ._-page-links__field-page-links .opened.link-title, ._-page-links__field-page-links .block--languageswitcher .opened.link-title, .block--languageswitcher .paragraph.paragraph--type--_-features .paragraph--type--feature .label .opened.feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--languageswitcher .opened.feature__field-label, .block--languageswitcher .paragraph--type--impact-statistic-feature .statistics__label > div.opened, .paragraph--type--impact-statistic-feature .block--languageswitcher .statistics__label > div.opened, .block--languageswitcher .opened.flippable-card__label, .block--languageswitcher .opened.flippable-card__title, .block--languageswitcher .distributors-listing .views-embed-default-item-box .opened.views-field-title, .distributors-listing .views-embed-default-item-box .block--languageswitcher .opened.views-field-title, .block--languageswitcher .products-listing .views-embed-default-item-box .views-field-title .opened.field-content, .products-listing .views-embed-default-item-box .views-field-title .block--languageswitcher .opened.field-content, .block--languageswitcher .articles-listing-item .views-field-title .opened.field-content, .articles-listing-item .views-field-title .block--languageswitcher .opened.field-content {
  background-image: url(../images/switcher-arrow-up-blue.svg);
}
.block--languageswitcher ul.nav {
  display: none;
  padding-left: 2.4rem;
  width: auto;
}
.block--languageswitcher ul.nav.opened {
  display: block;
}
.block--languageswitcher ul.nav li a {
  color: #2E3236;
  font-size: 1.4rem;
  display: block;
  font-size: 1.4rem;
  line-height: 1.8rem;
  letter-spacing: 0;
  text-transform: none;
  padding: 0;
  white-space: nowrap;
}
.block--languageswitcher ul.nav li a:hover {
  color: #56B2CB;
  text-decoration: underline;
}
.block--languageswitcher ul.nav li a.is-active {
  color: #56B2CB;
}
@media (min-width: 992px) {
  .block--languageswitcher ul.nav {
    background-color: #FFFFFF;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    height: auto;
    margin: 0;
    overflow: hidden;
    padding: 2rem;
    z-index: 999;
  }
  .block--languageswitcher ul.nav.opened {
    left: 0;
    height: auto !important;
    padding: 2rem !important;
    position: absolute;
    top: 4.5rem;
  }
  .block--languageswitcher ul.nav li a.language-link {
    font-size: 1.6rem;
    line-height: 2rem;
  }
}

.page__footer {
  background-color: #2E3236;
  color: #FFFFFF;
  padding: 4rem 2rem 1rem;
}
.page__footer .footer-social-icons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  white-space: nowrap;
}
.page__footer .footer-social-icons a {
  color: #FFFFFF;
  padding: 0 0.75rem;
}
@media (min-width: 768px) {
  .page__footer .footer-social-icons a {
    padding: 0 1.5rem;
  }
}
.page__footer .footer-social-icons .svg-inline--fa {
  width: 1.6rem;
  height: 1.6rem;
}
.page__footer .footer-info h2, .page__footer .footer-info .page__bottom .contact-form-block--title, .page__bottom .page__footer .footer-info .contact-form-block--title, .page__footer .footer-info .recent-posts__field-title, .page__footer .footer-info .faq-accordion-title .field__item, .faq-accordion-title .page__footer .footer-info .field__item, .page__footer .footer-info .flippable-card-deck__field-title, .page__footer .footer-info .views-embed-default-section h3, .page__footer .footer-info .views-embed-default-section .paragraph-post-title, .page__footer .footer-info .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .page__footer .footer-info .views-embed-default-section .link-title, .page__footer .footer-info .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .page__footer .footer-info .views-embed-default-section .feature__field-label, .page__footer .footer-info .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .page__footer .footer-info .views-embed-default-section .statistics__label > div, .page__footer .footer-info .views-embed-default-section .flippable-card__label, .page__footer .footer-info .views-embed-default-section .flippable-card__title, .page__footer .footer-info .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .page__footer .footer-info .views-embed-default-section .views-field-title, .views-embed-default-section .page__footer .footer-info h3, .views-embed-default-section .page__footer .footer-info .paragraph-post-title, .views-embed-default-section .page__footer .footer-info ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .page__footer .footer-info .link-title, .views-embed-default-section .page__footer .footer-info .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .page__footer .footer-info .feature__field-label, .views-embed-default-section .page__footer .footer-info .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .page__footer .footer-info .statistics__label > div, .views-embed-default-section .page__footer .footer-info .flippable-card__label, .views-embed-default-section .page__footer .footer-info .flippable-card__title, .views-embed-default-section .page__footer .footer-info .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .page__footer .footer-info .views-field-title, .page__footer .footer-info .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .page__footer .footer-info .field-content, .page__footer .footer-info .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .page__footer .footer-info .field-content, .page__footer .footer-info .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .page__footer .footer-info .field-content, .page__footer .footer-info .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .page__footer .footer-info .field-content, .page__footer .footer-info .block--views-block--related-content-block-1 h3, .page__footer .footer-info .block--views-block--related-content-block-1 .paragraph-post-title, .page__footer .footer-info .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .page__footer .footer-info .block--views-block--related-content-block-1 .link-title, .page__footer .footer-info .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .page__footer .footer-info .block--views-block--related-content-block-1 .feature__field-label, .page__footer .footer-info .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .page__footer .footer-info .block--views-block--related-content-block-1 .statistics__label > div, .page__footer .footer-info .block--views-block--related-content-block-1 .flippable-card__label, .page__footer .footer-info .block--views-block--related-content-block-1 .flippable-card__title, .page__footer .footer-info .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .page__footer .footer-info .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .page__footer .footer-info h3, .block--views-block--related-content-block-1 .page__footer .footer-info .paragraph-post-title, .block--views-block--related-content-block-1 .page__footer .footer-info ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .page__footer .footer-info .link-title, .block--views-block--related-content-block-1 .page__footer .footer-info .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .page__footer .footer-info .feature__field-label, .block--views-block--related-content-block-1 .page__footer .footer-info .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .page__footer .footer-info .statistics__label > div, .block--views-block--related-content-block-1 .page__footer .footer-info .flippable-card__label, .block--views-block--related-content-block-1 .page__footer .footer-info .flippable-card__title, .block--views-block--related-content-block-1 .page__footer .footer-info .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .page__footer .footer-info .views-field-title, .page__footer .footer-info .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .page__footer .footer-info .field-content, .page__footer .footer-info .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .page__footer .footer-info .field-content, .page__footer .footer-info .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .page__footer .footer-info .field-content, .page__footer .footer-info .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .page__footer .footer-info .field-content, .page__footer .footer-info .basic-page-title {
  color: #FFFFFF;
  font-size: 3rem;
  margin: 4rem 0;
}
.page__footer .footer-info p {
  text-align: center;
}
@media (min-width: 768px) {
  .page__footer .footer-info p {
    text-align: left;
  }
}
.page__footer .footer-copyright-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.page__footer .footer-copyright-container .footer-copyright {
  width: 100%;
}
.page__footer .footer-copyright-container .footer-copyright p {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.6rem;
  text-align: center;
  text-transform: uppercase;
}
.page__footer .footer-copyright-container .footer-copyright p a {
  color: #FFFFFF;
  display: block;
}
.page__footer .footer-copyright-container .footer-copyright p a:hover {
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .page__footer .footer-copyright-container .footer-copyright p {
    text-align: left;
    margin: 0;
  }
  .page__footer .footer-copyright-container .footer-copyright p a {
    display: inline-block;
  }
  .page__footer .footer-copyright-container .footer-copyright p a::before {
    content: " | ";
  }
  .page__footer .footer-copyright-container .footer-copyright p a:hover {
    text-decoration: none;
  }
}
.page__footer .footer-nav h3, .page__footer .footer-nav .paragraph-post-title, .page__footer .footer-nav ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .page__footer .footer-nav .link-title, .page__footer .footer-nav .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .page__footer .footer-nav .feature__field-label, .page__footer .footer-nav .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .page__footer .footer-nav .statistics__label > div, .page__footer .footer-nav .flippable-card__label, .page__footer .footer-nav .flippable-card__title, .page__footer .footer-nav .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .page__footer .footer-nav .views-field-title, .page__footer .footer-nav .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .page__footer .footer-nav .field-content, .page__footer .footer-nav .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .page__footer .footer-nav .field-content {
  color: #FFFFFF;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 1.2rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.page__footer .footer-nav ul {
  padding: 0;
  margin: 0;
  flex-direction: column;
}
.page__footer .footer-nav ul li a {
  display: block;
  padding: 0.5rem 0;
  color: #C6D0D8;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.6rem;
}
.page__footer .footer-nav ul li a:hover {
  text-decoration: underline;
}
.page__footer .footer-nav ul li ul {
  padding-left: 1rem;
}
.page__footer .footer-nav .row, .page__footer .footer-nav .single-feature__container, .page__footer .footer-nav .double-feature .double-feature-items .single-feature__container, .double-feature .double-feature-items .page__footer .footer-nav .single-feature__container, .page__footer .footer-nav .double-feature .double-feature-items, .double-feature .page__footer .footer-nav .double-feature-items {
  justify-content: flex-end;
}
@media (max-width: 767.98px) {
  .page__footer .footer-nav .row, .page__footer .footer-nav .single-feature__container, .page__footer .footer-nav .double-feature .double-feature-items .single-feature__container, .double-feature .double-feature-items .page__footer .footer-nav .single-feature__container, .page__footer .footer-nav .double-feature .double-feature-items, .double-feature .page__footer .footer-nav .double-feature-items {
    justify-content: center;
  }
}
.page__footer .footer-nav .nav-col {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 0 1rem 2rem;
}
@media (max-width: 767.98px) {
  .page__footer .footer-nav .nav-col {
    display: none;
  }
}
@media (min-width: 992px) {
  .page__footer .footer-nav .nav-col {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 767.98px) {
  .page__footer .footer-nav .nav-col.__menu_1 {
    display: flex;
    flex-direction: column;
    flex: 0 0 100%;
    margin-top: 2rem;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .page__footer .footer-nav .nav-col.__menu_1 ul {
    flex-direction: row;
    justify-content: space-between;
  }
}

.landing-page-content-swirl {
  margin-top: -7rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .landing-page-content-swirl {
    margin-top: -10rem;
  }
}

.advertising-landing-page .paragraph .button-below {
  margin-top: 2rem;
  text-align: center;
}
.advertising-landing-page .paragraph .button-below a.see-below {
  display: inline-block;
  height: 50px;
  width: 50px;
  background-color: #fff;
  background-image: url("../images/arrow-down.gif");
  background-size: contain;
  background-repeat: no-repeat;
  color: transparent;
  overflow: hidden;
  text-indent: -99999px;
}
.advertising-landing-page .field__item.paragraph:nth-child(2) .double-feature {
  margin-top: -8rem;
}
.advertising-landing-page .double-feature-items .single-feature__title h2:before, .advertising-landing-page .double-feature-items .single-feature__title .page__bottom .contact-form-block--title:before, .page__bottom .advertising-landing-page .double-feature-items .single-feature__title .contact-form-block--title:before, .advertising-landing-page .double-feature-items .single-feature__title .recent-posts__field-title:before, .advertising-landing-page .double-feature-items .single-feature__title .faq-accordion-title .field__item:before, .faq-accordion-title .advertising-landing-page .double-feature-items .single-feature__title .field__item:before, .advertising-landing-page .double-feature-items .single-feature__title .flippable-card-deck__field-title:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section h3:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .paragraph-post-title:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section ._-page-links__field-page-links .link-title:before, ._-page-links__field-page-links .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .link-title:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label:before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .feature__field-label:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div:before, .paragraph--type--impact-statistic-feature .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .statistics__label > div:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__label:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__title:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title:before, .distributors-listing .views-embed-default-item-box .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .views-field-title:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title h3:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .paragraph-post-title:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title:before, ._-page-links__field-page-links .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .link-title:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label:before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .feature__field-label:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div:before, .paragraph--type--impact-statistic-feature .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .statistics__label > div:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .flippable-card__label:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .flippable-card__title:before, .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .views-field-title:before, .distributors-listing .views-embed-default-item-box .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .views-field-title:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .articles-listing-item .views-field-title .field-content:before, .views-embed-default-section .articles-listing-item .views-field-title .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .articles-listing-item .views-field-title .views-embed-default-section .field-content:before, .articles-listing-item .views-field-title .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content:before, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content:before, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 h3:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph-post-title:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title:before, ._-page-links__field-page-links .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .link-title:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label:before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .feature__field-label:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div:before, .paragraph--type--impact-statistic-feature .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .statistics__label > div:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__label:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__title:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title:before, .distributors-listing .views-embed-default-item-box .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .views-field-title:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title h3:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .paragraph-post-title:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title:before, ._-page-links__field-page-links .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .link-title:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label:before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .feature__field-label:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div:before, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .statistics__label > div:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .flippable-card__label:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .flippable-card__title:before, .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .views-field-title:before, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .views-field-title:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content:before, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content:before, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content:before, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content:before, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .advertising-landing-page .double-feature-items .single-feature__title .field-content:before, .advertising-landing-page .double-feature-items .single-feature__title .basic-page-title:before {
  display: block !important;
}
.advertising-landing-page .double-feature-items form button {
  background: #56B2CB;
}
.advertising-landing-page .double-feature-items form {
  padding: 0 1rem;
  width: 100%;
}

.articles-listing {
  padding: 0 1rem;
}
@media (min-width: 992px) {
  .articles-listing {
    padding: 0;
  }
}
.articles-listing-item {
  border-bottom: 1px solid #6E7A84;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .articles-listing-item {
    grid-template-columns: auto 210px;
  }
}
.articles-listing-item .views-field-title {
  grid-column-start: 1;
  grid-row-start: 1;
}
.articles-listing-item .views-field-field-summary {
  grid-column-start: 1;
  grid-row-start: 2;
}
.articles-listing-item .views-field-view-node,
.articles-listing-item .views-field-title-1 {
  grid-column-start: 1;
  grid-row-start: 3;
}
.articles-listing-item .views-field-field-hero-image {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-row-end: span 3;
  display: none;
}
.articles-listing-item .views-field-field-hero-image .field-content {
  text-align: center;
}
@media (min-width: 768px) {
  .articles-listing-item .views-field-field-hero-image {
    display: block;
  }
}

.basic-page-hero {
  background-image: url(../images/basic-page-hero-bg.svg);
  background-position: center calc(100% - 10rem);
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.basic-page-hero-image {
  margin: 5rem 0;
}
.basic-page-hero-image img {
  height: auto;
  width: 100%;
  max-width: 85rem;
  display: block;
  margin: 0 auto;
}

.basic-page-hero-v2 {
  position: relative;
}
.basic-page-hero-v2-image img {
  height: auto;
  width: 100%;
}
.basic-page-hero-v2-text {
  bottom: 0;
  left: 0;
  padding-top: 2rem;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}
@media (min-width: 992px) {
  .basic-page-hero-v2-text {
    padding-top: 3rem;
  }
}
@media (min-width: 1200px) {
  .basic-page-hero-v2-text {
    padding-top: 7rem;
  }
}
.basic-page-hero-v2-title {
  margin-bottom: 0.2em;
}
.basic-page-hero-v2-subtitle {
  margin: 0 auto;
}
@media (min-width: 992px) {
  .basic-page-hero-v2-subtitle {
    max-width: 42%;
  }
}

.basic-page-info {
  margin: 0 auto;
  max-width: 90rem;
  padding: 2.5rem;
}
@media (min-width: 992px) {
  .basic-page-info {
    padding: 0 0 1.8rem;
  }
}
.basic-page-subtitle {
  color: #6E7A84;
  margin: 0 0 2.14285em;
}
.basic-page-post-meta {
  color: #6E7A84;
  display: flex;
  font-size: 1.2rem;
  justify-content: space-between;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  align-items: center;
}
.basic-page-post-meta-col {
  display: flex;
  align-items: center;
}
.basic-page-post-meta a {
  color: #56B2CB;
  display: inline-block;
  margin: 0 0.5em;
}
.basic-page-post-meta a:first {
  margin-left: 0;
}
.basic-page-post-meta p {
  color: #6E7A84;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
}
.basic-page-post-meta .post-taxonomy a {
  color: #6E7A84;
}
.basic-page-post-meta .post-taxonomy a::before {
  display: inline-block;
  margin-right: 1rem;
  position: relative;
  top: 1px;
  transform: scale(0.9);
}
.basic-page-post-meta .post-taxonomy .label-blog a::before {
  content: url(../images/icons/featured-blog.svg);
}
.basic-page-post-meta .post-taxonomy .label-in-the-news a::before {
  content: url(../images/icons/featured-news.svg);
}
.basic-page-post-meta .post-taxonomy .label-press-release a::before {
  content: url(../images/icons/featured-press-release.svg);
}
.basic-page-post-meta .post-taxonomy .label-announcement a::before {
  content: url(../images/icons/featured-announcement.svg);
}
.basic-page-post-meta .post-duration {
  margin-left: 2rem;
}
.basic-page-post-meta .post-share {
  margin-left: 2rem;
}
.basic-page-post-meta .post-share a::after {
  display: none;
}
.basic-page-post-meta .post-download .basic-page-download-link a {
  font-size: 0;
  display: inline-block;
  padding-right: 0;
  background-image: url(../images/icons/fa-download.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-position: right calc(50% - 2px);
  background-size: auto 12px;
}
.basic-page-post-meta .post-download .basic-page-download-link a::before {
  content: "Download PDF";
  font-size: 1.2rem;
}

div#sliding-popup {
  background-color: #F4F5F5;
  color: #2E3236;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  left: 5%;
  width: 90% !important;
}
@media (min-width: 992px) {
  div#sliding-popup {
    left: auto;
    right: 5%;
    width: 80rem !important;
  }
}
div#sliding-popup p, div#sliding-popup h2, div#sliding-popup .page__bottom .contact-form-block--title, .page__bottom div#sliding-popup .contact-form-block--title, div#sliding-popup .recent-posts__field-title, div#sliding-popup .faq-accordion-title .field__item, .faq-accordion-title div#sliding-popup .field__item, div#sliding-popup .flippable-card-deck__field-title, div#sliding-popup .views-embed-default-section h3, div#sliding-popup .views-embed-default-section .paragraph-post-title, div#sliding-popup .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links div#sliding-popup .views-embed-default-section .link-title, div#sliding-popup .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label div#sliding-popup .views-embed-default-section .feature__field-label, div#sliding-popup .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature div#sliding-popup .views-embed-default-section .statistics__label > div, div#sliding-popup .views-embed-default-section .flippable-card__label, div#sliding-popup .views-embed-default-section .flippable-card__title, div#sliding-popup .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box div#sliding-popup .views-embed-default-section .views-field-title, .views-embed-default-section div#sliding-popup h3, .views-embed-default-section div#sliding-popup .paragraph-post-title, .views-embed-default-section div#sliding-popup ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section div#sliding-popup .link-title, .views-embed-default-section div#sliding-popup .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section div#sliding-popup .feature__field-label, .views-embed-default-section div#sliding-popup .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section div#sliding-popup .statistics__label > div, .views-embed-default-section div#sliding-popup .flippable-card__label, .views-embed-default-section div#sliding-popup .flippable-card__title, .views-embed-default-section div#sliding-popup .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section div#sliding-popup .views-field-title, div#sliding-popup .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title div#sliding-popup .field-content, div#sliding-popup .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section div#sliding-popup .field-content, div#sliding-popup .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title div#sliding-popup .field-content, div#sliding-popup .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section div#sliding-popup .field-content, div#sliding-popup .block--views-block--related-content-block-1 h3, div#sliding-popup .block--views-block--related-content-block-1 .paragraph-post-title, div#sliding-popup .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links div#sliding-popup .block--views-block--related-content-block-1 .link-title, div#sliding-popup .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label div#sliding-popup .block--views-block--related-content-block-1 .feature__field-label, div#sliding-popup .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature div#sliding-popup .block--views-block--related-content-block-1 .statistics__label > div, div#sliding-popup .block--views-block--related-content-block-1 .flippable-card__label, div#sliding-popup .block--views-block--related-content-block-1 .flippable-card__title, div#sliding-popup .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box div#sliding-popup .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 div#sliding-popup h3, .block--views-block--related-content-block-1 div#sliding-popup .paragraph-post-title, .block--views-block--related-content-block-1 div#sliding-popup ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 div#sliding-popup .link-title, .block--views-block--related-content-block-1 div#sliding-popup .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 div#sliding-popup .feature__field-label, .block--views-block--related-content-block-1 div#sliding-popup .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 div#sliding-popup .statistics__label > div, .block--views-block--related-content-block-1 div#sliding-popup .flippable-card__label, .block--views-block--related-content-block-1 div#sliding-popup .flippable-card__title, .block--views-block--related-content-block-1 div#sliding-popup .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 div#sliding-popup .views-field-title, div#sliding-popup .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title div#sliding-popup .field-content, div#sliding-popup .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 div#sliding-popup .field-content, div#sliding-popup .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title div#sliding-popup .field-content, div#sliding-popup .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 div#sliding-popup .field-content, div#sliding-popup .basic-page-title {
  color: #2E3236;
  font-weight: normal;
}

.eu-cookie-compliance-content {
  max-width: 90%;
}

.eu-cookie-compliance-message {
  margin-top: 1rem;
  max-width: 70%;
}

.eu-cookie-compliance-banner {
  padding: 2rem;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-default-button {
  background-color: #6E7A84 !important;
}
.eu-cookie-compliance-banner .eu-cookie-compliance-buttons {
  margin: 0;
}

.global-offices {
  background-image: url(../images/global-offices-bg.png);
  background-position: center top;
  background-size: 600%;
  background-repeat: no-repeat;
  padding: 7rem 5rem 0;
}
@media (min-width: 576px) {
  .global-offices {
    background-size: 220%;
  }
}
@media (min-width: 992px) {
  .global-offices {
    background-size: 160%;
  }
}
@media (min-width: 1200px) {
  .global-offices {
    background-size: contain;
  }
}
.global-offices-text {
  text-align: center;
}
.global-offices-text h2, .global-offices-text .page__bottom .contact-form-block--title, .page__bottom .global-offices-text .contact-form-block--title, .global-offices-text .recent-posts__field-title, .global-offices-text .faq-accordion-title .field__item, .faq-accordion-title .global-offices-text .field__item, .global-offices-text .flippable-card-deck__field-title, .global-offices-text .views-embed-default-section h3, .global-offices-text .views-embed-default-section .paragraph-post-title, .global-offices-text .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .global-offices-text .views-embed-default-section .link-title, .global-offices-text .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .global-offices-text .views-embed-default-section .feature__field-label, .global-offices-text .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .global-offices-text .views-embed-default-section .statistics__label > div, .global-offices-text .views-embed-default-section .flippable-card__label, .global-offices-text .views-embed-default-section .flippable-card__title, .global-offices-text .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .global-offices-text .views-embed-default-section .views-field-title, .views-embed-default-section .global-offices-text h3, .views-embed-default-section .global-offices-text .paragraph-post-title, .views-embed-default-section .global-offices-text ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .global-offices-text .link-title, .views-embed-default-section .global-offices-text .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .global-offices-text .feature__field-label, .views-embed-default-section .global-offices-text .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .global-offices-text .statistics__label > div, .views-embed-default-section .global-offices-text .flippable-card__label, .views-embed-default-section .global-offices-text .flippable-card__title, .views-embed-default-section .global-offices-text .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .global-offices-text .views-field-title, .global-offices-text .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .global-offices-text .field-content, .global-offices-text .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .global-offices-text .field-content, .global-offices-text .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .global-offices-text .field-content, .global-offices-text .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .global-offices-text .field-content, .global-offices-text .block--views-block--related-content-block-1 h3, .global-offices-text .block--views-block--related-content-block-1 .paragraph-post-title, .global-offices-text .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .global-offices-text .block--views-block--related-content-block-1 .link-title, .global-offices-text .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .global-offices-text .block--views-block--related-content-block-1 .feature__field-label, .global-offices-text .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .global-offices-text .block--views-block--related-content-block-1 .statistics__label > div, .global-offices-text .block--views-block--related-content-block-1 .flippable-card__label, .global-offices-text .block--views-block--related-content-block-1 .flippable-card__title, .global-offices-text .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .global-offices-text .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .global-offices-text h3, .block--views-block--related-content-block-1 .global-offices-text .paragraph-post-title, .block--views-block--related-content-block-1 .global-offices-text ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .global-offices-text .link-title, .block--views-block--related-content-block-1 .global-offices-text .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .global-offices-text .feature__field-label, .block--views-block--related-content-block-1 .global-offices-text .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .global-offices-text .statistics__label > div, .block--views-block--related-content-block-1 .global-offices-text .flippable-card__label, .block--views-block--related-content-block-1 .global-offices-text .flippable-card__title, .block--views-block--related-content-block-1 .global-offices-text .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .global-offices-text .views-field-title, .global-offices-text .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .global-offices-text .field-content, .global-offices-text .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .global-offices-text .field-content, .global-offices-text .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .global-offices-text .field-content, .global-offices-text .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .global-offices-text .field-content, .global-offices-text .basic-page-title {
  margin-bottom: 0.7em;
}
.global-offices__description {
  color: #6E7A84;
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.02rem;
  margin: 0 auto 3em;
  max-width: 711px;
}
@media (min-width: 768px) {
  .global-offices-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.global-offices-cards .paragraph--type--office-card {
  background-color: #FFFFFF;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.15);
  padding: 3rem 1rem;
  text-align: center;
  width: 100%;
}
@media (min-width: 992px) {
  .global-offices-cards .paragraph--type--office-card {
    height: 360px;
  }
}
.global-offices-cards .office-card__field-flag {
  margin-bottom: 3rem;
}
.global-offices-cards .office-card__field-flag img {
  height: auto;
  max-width: 40px;
}
.global-offices-cards .office-card__field-country {
  color: #56B2CB;
  font-size: 7rem;
  letter-spacing: -0.025rem;
  line-height: 7.5rem;
  margin: 0 auto 0.2em;
  max-height: 7.5rem;
  max-width: 10rem;
  overflow: hidden;
}
.global-offices-cards .office-card__field-city-state {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 0.5em;
}
.global-offices-cards .office-card__field-telephone a {
  color: #6E7A84;
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  margin-bottom: 1em;
}
.global-offices-cards .office-card__field-link a {
  color: #56B2CB;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.global-offices-cards .office-card__field-link a::after {
  content: url(../images/arrow-right-blue.svg);
  display: inline-block;
  margin-left: 1em;
  vertical-align: text-bottom;
}
.global-offices-card {
  padding: 0 0.5rem 1rem;
}
@media (min-width: 768px) {
  .global-offices-card {
    flex: 0 0 50%;
  }
}
@media (min-width: 992px) {
  .global-offices-card {
    flex: 0 0 25%;
  }
}

.special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
  margin-left: calc( 15px + 10px );
  margin-right: calc( 15px + 10px );
}
@media (min-width: 576px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-left: calc( 15px + 5rem );
  }
}
@media (min-width: 992px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-left: calc( 15px + 35px + 15px + 2.5vw );
  }
}
@media (min-width: 1200px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-left: calc( 15px + 35px + 15px + 3vw );
  }
}
@media (min-width: 1400px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-left: calc( 15px + 35px + 15px + 7.5vw );
  }
}
@media (min-width: 576px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-right: calc( 15px + 5rem );
  }
}
@media (min-width: 992px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-right: calc( 15px + 35px + 15px + 2.5vw );
  }
}
@media (min-width: 1200px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-right: calc( 15px + 35px + 15px + 3vw );
  }
}
@media (min-width: 1400px) {
  .special-homepage-container, .cta_slider, .m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container, .m_articles .latest-updates .container .contained, .m_articles .latest-updates .paragraph-page-link-wrapper .contained, .m_articles .latest-updates .single-feature .contained, .m_articles .latest-updates .single-cta-content .contained, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper .contained, .m_articles .latest-updates .products-listing .views-embed-default-container .contained, .products-listing .m_articles .latest-updates .views-embed-default-container .contained, .m_articles .latest-updates .articles-listing-container .contained, .m_industries_carousel .element-two, .m_industries_carousel .element-one__container {
    margin-right: calc( 15px + 35px + 15px + 7.5vw );
  }
}

/* Hero */
.m_hero {
  margin-top: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .m_hero {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .m_hero {
    margin-top: 0;
  }
}
@media (min-width: 1400px) {
  .m_hero {
    margin-top: 2rem;
  }
}
@media (min-width: 576px) {
  .m_hero .element-one {
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .m_hero .element-one > .row, .m_hero .element-one > .single-feature__container, .m_hero .double-feature .double-feature-items .element-one > .single-feature__container, .double-feature .double-feature-items .m_hero .element-one > .single-feature__container, .m_hero .double-feature .element-one > .double-feature-items, .double-feature .m_hero .element-one > .double-feature-items {
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 4.5rem;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
    position: static;
  }
}
.m_hero .element-one .content {
  align-items: center;
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 992px) {
  .m_hero .element-one .content {
    justify-content: flex-end;
    position: static;
  }
}
.m_hero .element-one .content .center {
  padding: 1rem 1rem 3rem;
}
@media (min-width: 576px) {
  .m_hero .element-one .content .center {
    padding: 3rem 5rem;
  }
}
@media (min-width: 992px) {
  .m_hero .element-one .content .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4% 3rem 2.5vw;
  }
}
@media (min-width: 1200px) {
  .m_hero .element-one .content .center {
    padding: 0 5% 3rem 3vw;
  }
}
@media (min-width: 1400px) {
  .m_hero .element-one .content .center {
    padding: 0 7% 3rem 7.5vw;
  }
}
.m_hero .element-one .content .center .btn-speak a {
  border-radius: 0 !important;
}
.m_hero .element-one div#slick-node-2-hero-image-default-1,
.m_hero .element-one .media {
  height: 100%;
}
.m_hero .element-one .image {
  padding: 0;
}
@media (min-width: 992px) {
  .m_hero .element-one .image {
    display: flex;
    min-height: 100%;
    justify-content: flex-end;
    position: static;
  }
}
@media (min-width: 1200px) {
  .m_hero .element-one .image {
    max-height: 70vh;
  }
}
@media (min-width: 1400px) {
  .m_hero .element-one .image {
    max-height: 80vh;
  }
}
.m_hero .element-one .image picture {
  width: 100%;
}
.m_hero .element-one .image img {
  display: none;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 991.98px) {
  .m_hero .homepage__field-hero-cta {
    padding-bottom: 11rem;
  }
}
.m_hero .homepage__field-hero-cta a {
  width: 100%;
}
@media (min-width: 576px) {
  .m_hero .homepage__field-hero-cta a {
    max-width: 208px;
  }
}
.m_hero .homepage__field-hero-image {
  width: 100%;
}
@media (max-width: 767.98px) {
  .m_hero .homepage__field-hero-image {
    padding-bottom: 8rem;
  }
}

.homepage__field-double-cta .paragraph--type--double-cta {
  margin-top: 0;
  margin-bottom: 0;
}
.homepage__field-double-cta .double-cta-right h2, .homepage__field-double-cta .double-cta-right .page__bottom .contact-form-block--title, .page__bottom .homepage__field-double-cta .double-cta-right .contact-form-block--title, .homepage__field-double-cta .double-cta-right .recent-posts__field-title, .homepage__field-double-cta .double-cta-right .faq-accordion-title .field__item, .faq-accordion-title .homepage__field-double-cta .double-cta-right .field__item, .homepage__field-double-cta .double-cta-right .flippable-card-deck__field-title, .homepage__field-double-cta .double-cta-right .views-embed-default-section h3, .homepage__field-double-cta .double-cta-right .views-embed-default-section .paragraph-post-title, .homepage__field-double-cta .double-cta-right .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .homepage__field-double-cta .double-cta-right .views-embed-default-section .link-title, .homepage__field-double-cta .double-cta-right .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .homepage__field-double-cta .double-cta-right .views-embed-default-section .feature__field-label, .homepage__field-double-cta .double-cta-right .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .homepage__field-double-cta .double-cta-right .views-embed-default-section .statistics__label > div, .homepage__field-double-cta .double-cta-right .views-embed-default-section .flippable-card__label, .homepage__field-double-cta .double-cta-right .views-embed-default-section .flippable-card__title, .homepage__field-double-cta .double-cta-right .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .homepage__field-double-cta .double-cta-right .views-embed-default-section .views-field-title, .views-embed-default-section .homepage__field-double-cta .double-cta-right h3, .views-embed-default-section .homepage__field-double-cta .double-cta-right .paragraph-post-title, .views-embed-default-section .homepage__field-double-cta .double-cta-right ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .homepage__field-double-cta .double-cta-right .link-title, .views-embed-default-section .homepage__field-double-cta .double-cta-right .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .homepage__field-double-cta .double-cta-right .feature__field-label, .views-embed-default-section .homepage__field-double-cta .double-cta-right .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .homepage__field-double-cta .double-cta-right .statistics__label > div, .views-embed-default-section .homepage__field-double-cta .double-cta-right .flippable-card__label, .views-embed-default-section .homepage__field-double-cta .double-cta-right .flippable-card__title, .views-embed-default-section .homepage__field-double-cta .double-cta-right .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .homepage__field-double-cta .double-cta-right .views-field-title, .homepage__field-double-cta .double-cta-right .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 h3, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .paragraph-post-title, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .link-title, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .feature__field-label, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .statistics__label > div, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .flippable-card__label, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .flippable-card__title, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right h3, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .paragraph-post-title, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .link-title, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .feature__field-label, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .statistics__label > div, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .flippable-card__label, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .flippable-card__title, .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .views-field-title, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .homepage__field-double-cta .double-cta-right .field-content, .homepage__field-double-cta .double-cta-right .basic-page-title {
  color: #FFFFFF;
}

.homepage__field-hero-title {
  margin-bottom: 0.5em;
}
.homepage__field-hero-title::before {
  color: #2E3236;
}
@media (min-width: 992px) {
  .homepage__field-hero-title {
    font-size: 5rem;
    line-height: 0.9;
  }
}
@media (min-width: 1400px) {
  .homepage__field-hero-title {
    font-size: 6rem;
  }
}
.homepage__field-hero-description p {
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .homepage__field-hero-description p {
    font-size: 2rem;
    line-height: 2.5rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1400px) {
  .homepage__field-hero-description p {
    font-size: 3rem;
    line-height: 4rem;
    padding-right: 0;
  }
}

/* industries_carousel */
.m_industries_carousel {
  background: #46BDD4;
  position: relative;
}
@media (min-width: 992px) {
  .m_industries_carousel {
    top: -80px;
  }
}
.m_industries_carousel .leafy-plant {
  display: none;
  position: absolute;
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  transform: translate3d(0, 100%, 0);
  transform: translate3d(-46%, 72%, 0);
  z-index: -1;
  max-width: 100vw;
}
@media (min-width: 992px) {
  .m_industries_carousel .leafy-plant {
    display: block;
  }
}
.m_industries_carousel .element-one {
  color: #FFFFFF;
  padding: 2.5rem 0;
}
@media (min-width: 992px) {
  .m_industries_carousel .element-one {
    padding: 0;
  }
}
@media (min-width: 768px) {
  .m_industries_carousel .element-one__container {
    display: flex;
  }
}
.m_industries_carousel .element-one .left h3, .m_industries_carousel .element-one .left .paragraph-post-title, .m_industries_carousel .element-one .left ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .m_industries_carousel .element-one .left .link-title, .m_industries_carousel .element-one .left .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_industries_carousel .element-one .left .feature__field-label, .m_industries_carousel .element-one .left .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .m_industries_carousel .element-one .left .statistics__label > div, .m_industries_carousel .element-one .left .flippable-card__label, .m_industries_carousel .element-one .left .flippable-card__title, .m_industries_carousel .element-one .left .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .m_industries_carousel .element-one .left .views-field-title, .m_industries_carousel .element-one .left .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .m_industries_carousel .element-one .left .field-content, .m_industries_carousel .element-one .left .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .m_industries_carousel .element-one .left .field-content {
  color: #FFFFFF;
  font-size: 3rem;
  line-height: 3.6rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.m_industries_carousel .element-one .left h3::before, .m_industries_carousel .element-one .left .paragraph-post-title::before, .m_industries_carousel .element-one .left ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .m_industries_carousel .element-one .left .link-title::before, .m_industries_carousel .element-one .left .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_industries_carousel .element-one .left .feature__field-label::before, .m_industries_carousel .element-one .left .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .m_industries_carousel .element-one .left .statistics__label > div::before, .m_industries_carousel .element-one .left .flippable-card__label::before, .m_industries_carousel .element-one .left .flippable-card__title::before, .m_industries_carousel .element-one .left .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .m_industries_carousel .element-one .left .views-field-title::before, .m_industries_carousel .element-one .left .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .m_industries_carousel .element-one .left .field-content::before, .m_industries_carousel .element-one .left .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .m_industries_carousel .element-one .left .field-content::before {
  color: #FFFFFF;
  margin-bottom: 3rem;
}
.m_industries_carousel .element-one .right .description {
  font-size: 0.88889em;
}
.m_industries_carousel .element-one .right .description li:before {
  color: #FFFFFF;
}
.m_industries_carousel .element-one .right .description .homepage__field-industries-carousel-desc > :last-child {
  margin-bottom: 1rem;
}
.m_industries_carousel .element-one .right .description li:before {
  color: #FFFFFF;
}
.m_industries_carousel .element-two {
  display: flex;
  flex-direction: column;
}
.m_industries_carousel .element-two .cta {
  order: 2;
  padding: 44px 0;
}
.m_industries_carousel .element-two .cta a {
  width: 100%;
}
@media (min-width: 576px) {
  .m_industries_carousel .element-two .cta a {
    width: auto;
  }
}
.m_industries_carousel .featured_content {
  display: flex;
  justify-content: center;
}
.m_industries_carousel .featured_content .slick-next,
.m_industries_carousel .featured_content .slick-prev {
  display: none !important;
}
.m_industries_carousel .featured_content .slick-slide {
  margin: 0 10px;
}
.m_industries_carousel .featured_content .slick-slide article {
  width: unset !important;
}
.m_industries_carousel .featured_content .slick-slide article:hover .landing-page__field-industry-type .field__item::after {
  content: url(../images/arrow-right-blue-big.svg);
}
.m_industries_carousel .featured_content .slick-slide .field__item {
  background: #FFFFFF;
}
.m_industries_carousel .featured_content .slick-slide .field__item img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.m_industries_carousel .featured_content .slick-slide:hover .field__item img {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.m_industries_carousel .featured_content article {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .m_industries_carousel .featured_content article {
    border-bottom: 2px solid #FFFFFF;
  }
  .m_industries_carousel .featured_content article:hover {
    border-bottom: 2px solid #46BDD4;
  }
}
.m_industries_carousel .featured_content article .landing-page__field-industry-type .field__item {
  height: 50px;
  background: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2E3236;
  text-transform: uppercase;
  font-size: 1.4rem;
  padding-left: 3px;
}
.m_industries_carousel .featured_content article .landing-page__field-industry-type .field__item:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #2E3236;
  text-decoration: none;
}
.m_industries_carousel .featured_content article .landing-page__field-industry-type .field__item a {
  color: inherit;
}
.m_industries_carousel .featured_content article .landing-page__field-industry-type .field__item:hover {
  text-decoration: none;
}
.m_industries_carousel .featured_content article .landing-page__field-industry-type .field__item::after {
  display: inline-block;
  content: url(../images/arrow-right-black-big.svg);
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
  transform: translate3d(0, 0, 0) scale(0.9);
}
.m_industries_carousel .featured_content article:hover a {
  color: #46BDD4;
}
.m_industries_carousel .border-svg-top {
  position: absolute;
  top: -30px;
  width: 100%;
  height: 50px !important;
  pointer-events: none;
}
.m_industries_carousel .border-svg-bottom {
  width: 100%;
  position: absolute;
  height: 30px !important;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .m_industries_carousel .slick-current img {
    -webkit-filter: none !important;
            filter: none !important;
  }
}
@media (max-width: 767.98px) {
  .m_industries_carousel .slick-slide:not(.slick-current) {
    transform: scale(0.9);
  }
}

@media (min-width: 768px) {
  .m_industries_carousel {
    top: -4rem;
    margin-top: 4rem;
    margin-bottom: 15rem;
  }
  .m_industries_carousel .element-one {
    position: relative;
    top: 120px;
    padding: 0;
  }
  .m_industries_carousel .element-one .left {
    flex: 0 0 44%;
  }
  .m_industries_carousel .element-one .left h3, .m_industries_carousel .element-one .left .paragraph-post-title, .m_industries_carousel .element-one .left ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .m_industries_carousel .element-one .left .link-title, .m_industries_carousel .element-one .left .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_industries_carousel .element-one .left .feature__field-label, .m_industries_carousel .element-one .left .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .m_industries_carousel .element-one .left .statistics__label > div, .m_industries_carousel .element-one .left .flippable-card__label, .m_industries_carousel .element-one .left .flippable-card__title, .m_industries_carousel .element-one .left .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .m_industries_carousel .element-one .left .views-field-title, .m_industries_carousel .element-one .left .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .m_industries_carousel .element-one .left .field-content, .m_industries_carousel .element-one .left .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .m_industries_carousel .element-one .left .field-content {
    padding-right: 5rem;
  }
  .m_industries_carousel .element-two {
    position: relative;
    margin-right: 0;
    top: 160px;
    display: grid;
    grid-template-columns: 34rem auto minmax(0, 70%);
    grid-template-rows: repeat(2, 1fr);
  }
  .m_industries_carousel .element-two .cta {
    display: flex;
    align-items: center;
    grid-column: 1/3;
    padding-right: 15px;
  }
  .m_industries_carousel .element-two .cta a:hover {
    text-decoration: none;
  }
  .m_industries_carousel .element-two .next-button {
    grid-row: 2/3;
    grid-column: 1/3;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .m_industries_carousel .element-two .next-button #next {
    margin-left: 10px;
  }
  .m_industries_carousel .element-two .featured_content {
    grid-column: 3/4;
    grid-row: 1/3;
    justify-content: flex-end;
  }
  .m_industries_carousel .element-two .featured_content .slick-list {
    padding-bottom: 20px !important;
  }
  .m_industries_carousel .element-two .featured_content .slick-prev,
.m_industries_carousel .element-two .featured_content .slick-next {
    top: auto !important;
    bottom: 10px;
    position: absolute;
    display: inline-block !important;
    border: 1px solid #46BDD4;
    border-radius: 50%;
    padding: 25px;
  }
  .m_industries_carousel .element-two .featured_content .slick-prev::before,
.m_industries_carousel .element-two .featured_content .slick-next::before {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #46BDD4;
    transform: translate3d(-50%, -50%, 0);
  }
  .m_industries_carousel .element-two .featured_content .slick-prev:hover,
.m_industries_carousel .element-two .featured_content .slick-next:hover {
    background-color: #46BDD4;
  }
  .m_industries_carousel .element-two .featured_content .slick-prev:hover::before,
.m_industries_carousel .element-two .featured_content .slick-next:hover::before {
    color: #FFFFFF;
  }
  .m_industries_carousel .element-two .featured_content .slick-prev {
    left: -155px;
  }
  .m_industries_carousel .element-two .featured_content .slick-next {
    left: -80px;
  }
  .m_industries_carousel .element-two .featured_content article {
    margin-left: 20px;
  }
  .m_industries_carousel .border-svg-top {
    top: -70px;
    height: 150px !important;
  }
}
@media (min-width: 992px) {
  .m_industries_carousel {
    top: -85px;
  }
  .m_industries_carousel .element-two .featured_content .slick-prev,
.m_industries_carousel .element-two .featured_content .slick-next {
    bottom: -8px;
  }
}
.landing-page-hero {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  background-size: auto 70%;
  background-position: right bottom;
  background-position: calc(100% + 10px) calc(100% - 50px);
  background-repeat: no-repeat;
  padding-bottom: 7rem;
}
@media (min-width: 1400px) {
  .landing-page-hero {
    padding-bottom: 10rem;
  }
}
@media (max-width: 991.98px) {
  .landing-page-hero {
    background-image: none !important;
  }
}
.landing-page-hero-background {
  background-image: linear-gradient(0deg, #F4F5F5 21%, #FFFFFF 88%);
  position: relative;
}
.landing-page-hero-image {
  padding: 0 0 3rem;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 992px) {
  .landing-page-hero-image {
    padding: 0;
  }
}
.landing-page-hero-image img {
  height: auto;
  max-width: 100%;
}
.landing-page-hero-text {
  margin: 0 auto 10rem;
  text-align: center;
}
@media (min-width: 992px) {
  .landing-page-hero-text {
    margin: 3rem auto 10rem;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .landing-page-hero-text {
    margin: 5rem auto 10rem;
  }
}
.landing-page-hero h1, .landing-page-hero .homepage__field-hero-title {
  margin-bottom: 0.4em;
  padding: 0 4rem;
}
@media (min-width: 992px) {
  .landing-page-hero h1, .landing-page-hero .homepage__field-hero-title {
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 100%;
  }
}
.landing-page-hero-taxonomy {
  margin-bottom: 1em;
}
.landing-page-hero-taxonomy a {
  color: #56B2CB;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-transform: uppercase;
}
.landing-page-hero-subtitle {
  color: #6E7A84;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 3rem;
  margin: 0 auto;
  max-width: 42%;
  padding: 0 4rem;
}
@media (min-width: 992px) {
  .landing-page-hero-subtitle {
    padding: 0;
  }
}
.landing-page-hero-subtitle p {
  margin-bottom: 0;
}

.landing-page-hero .landing-page-hero-text {
  margin-bottom: 2rem;
}
.landing-page-hero .landing-page-hero-subtitle {
  max-width: 58rem;
}
.landing-page-hero h1, .landing-page-hero .homepage__field-hero-title {
  margin-bottom: 0.25em;
}

.m_articles {
  background-color: #F4F5F5;
  position: relative;
  margin-bottom: 8rem;
}
.m_articles .latest-updates .container, .m_articles .latest-updates .paragraph-page-link-wrapper, .m_articles .latest-updates .single-feature, .m_articles .latest-updates .single-cta-content, .m_articles .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_articles .latest-updates .views-infinite-scroll-content-wrapper, .m_articles .latest-updates .products-listing .views-embed-default-container, .products-listing .m_articles .latest-updates .views-embed-default-container, .m_articles .latest-updates .articles-listing-container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.latest-updates {
  background-image: url("../images/gingerbread.png");
  background-repeat: no-repeat;
  background-position: 112% 121%;
  background-size: 25%;
}
@media (min-width: 768px) {
  .latest-updates {
    padding: 15rem 0;
  }
}
@media (min-width: 768px) {
  .latest-updates {
    padding: 4rem 0;
  }
}
@media (min-width: 992px) {
  .latest-updates {
    padding: 6rem 0;
  }
}
.latest-updates__label .article-type__name::before {
  display: inline-block;
  margin-right: 1rem;
  position: relative;
  top: 2px;
}
.latest-updates__label .article-type__name.label-blog::before {
  content: url(../images/icons/featured-blog.svg);
}
.latest-updates__label .article-type__name.label-in-the-news::before {
  content: url(../images/icons/featured-news.svg);
}
.latest-updates__label .article-type__name.label-press-release::before {
  content: url(../images/icons/featured-press-release.svg);
}
.latest-updates__label .article-type__name.label-announcement::before {
  content: url(../images/icons/featured-announcement.svg);
}
.latest-updates .contained {
  padding: 0;
}
@media (min-width: 992px) {
  .latest-updates .contained {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-gap: 30px;
  }
}
.latest-updates__first_article {
  grid-row: 1/-1;
}
.latest-updates .container, .latest-updates .paragraph-page-link-wrapper, .latest-updates .single-feature, .latest-updates .single-cta-content, .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .latest-updates .views-infinite-scroll-content-wrapper, .latest-updates .products-listing .views-embed-default-container, .products-listing .latest-updates .views-embed-default-container, .latest-updates .articles-listing-container {
  padding: 5rem 2.5rem;
}
@media (min-width: 992px) {
  .latest-updates .container, .latest-updates .paragraph-page-link-wrapper, .latest-updates .single-feature, .latest-updates .single-cta-content, .latest-updates .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .latest-updates .views-infinite-scroll-content-wrapper, .latest-updates .products-listing .views-embed-default-container, .products-listing .latest-updates .views-embed-default-container, .latest-updates .articles-listing-container {
    padding: 0;
  }
}
.latest-updates .latest-updates__views-row,
.latest-updates .latest-updates__first_article {
  border-bottom: 2px solid white;
  background: #FFFFFF;
}
.latest-updates .latest-updates__views-row:hover,
.latest-updates .latest-updates__first_article:hover {
  border-bottom: 2px solid #46BDD4;
}
.latest-updates__first_article, .latest-updates__views-row {
  width: 100%;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}
.latest-updates .latest-updates__title h2, .latest-updates .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates .latest-updates__title .contact-form-block--title, .latest-updates .latest-updates__title .recent-posts__field-title, .latest-updates .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates .latest-updates__title .field__item, .latest-updates .latest-updates__title .flippable-card-deck__field-title, .latest-updates .latest-updates__title .views-embed-default-section h3, .latest-updates .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates .latest-updates__title .views-embed-default-section .link-title, .latest-updates .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates .latest-updates__title h3, .views-embed-default-section .latest-updates .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates .latest-updates__title .link-title, .views-embed-default-section .latest-updates .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates .latest-updates__title .views-field-title, .latest-updates .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .views-field-title, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates .latest-updates__title .field-content, .latest-updates .latest-updates__title .basic-page-title {
  letter-spacing: 0;
  color: #2E3236;
  line-height: 35px;
  margin: 20px 0;
}
@media (max-width: 991.98px) {
  .latest-updates .latest-updates__subtitle p {
    display: none;
  }
}
.latest-updates__first_article {
  text-decoration: none;
}
@media (min-width: 992px) {
  .latest-updates__first_article {
    margin-right: 3%;
  }
}
.latest-updates__first_article:hover, .latest-updates__first_article:active, .latest-updates__first_article:focus {
  text-decoration: none;
}
.latest-updates__first_article:hover .latest-updates__title h2, .latest-updates__first_article:hover .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__first_article:hover .latest-updates__title .contact-form-block--title, .latest-updates__first_article:hover .latest-updates__title .recent-posts__field-title, .latest-updates__first_article:hover .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__first_article:hover .latest-updates__title .field__item, .latest-updates__first_article:hover .latest-updates__title .flippable-card-deck__field-title, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section h3, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .link-title, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title h3, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .link-title, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .views-field-title, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .views-field-title, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:hover .latest-updates__title .field-content, .latest-updates__first_article:hover .latest-updates__title .basic-page-title, .latest-updates__first_article:active .latest-updates__title h2, .latest-updates__first_article:active .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__first_article:active .latest-updates__title .contact-form-block--title, .latest-updates__first_article:active .latest-updates__title .recent-posts__field-title, .latest-updates__first_article:active .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__first_article:active .latest-updates__title .field__item, .latest-updates__first_article:active .latest-updates__title .flippable-card-deck__field-title, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section h3, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .link-title, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title h3, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .link-title, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .views-field-title, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .views-field-title, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:active .latest-updates__title .field-content, .latest-updates__first_article:active .latest-updates__title .basic-page-title, .latest-updates__first_article:focus .latest-updates__title h2, .latest-updates__first_article:focus .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__first_article:focus .latest-updates__title .contact-form-block--title, .latest-updates__first_article:focus .latest-updates__title .recent-posts__field-title, .latest-updates__first_article:focus .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__first_article:focus .latest-updates__title .field__item, .latest-updates__first_article:focus .latest-updates__title .flippable-card-deck__field-title, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section h3, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .link-title, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title h3, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .link-title, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .views-field-title, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .views-field-title, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article:focus .latest-updates__title .field-content, .latest-updates__first_article:focus .latest-updates__title .basic-page-title {
  color: #56B2CB;
}
.latest-updates__first_article:hover .latest-updates__description, .latest-updates__first_article:active .latest-updates__description, .latest-updates__first_article:focus .latest-updates__description {
  color: #2E3236;
}
.latest-updates__first_article:hover .latest-updates__description p, .latest-updates__first_article:active .latest-updates__description p, .latest-updates__first_article:focus .latest-updates__description p {
  color: #2E3236;
}
.latest-updates__first_article .latest-updates__title h2, .latest-updates__first_article .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__first_article .latest-updates__title .contact-form-block--title, .latest-updates__first_article .latest-updates__title .recent-posts__field-title, .latest-updates__first_article .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__first_article .latest-updates__title .field__item, .latest-updates__first_article .latest-updates__title .flippable-card-deck__field-title, .latest-updates__first_article .latest-updates__title .views-embed-default-section h3, .latest-updates__first_article .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__first_article .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article .latest-updates__title .views-embed-default-section .link-title, .latest-updates__first_article .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__first_article .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__first_article .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__first_article .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__first_article .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__first_article .latest-updates__title h3, .views-embed-default-section .latest-updates__first_article .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__first_article .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__first_article .latest-updates__title .link-title, .views-embed-default-section .latest-updates__first_article .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__first_article .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__first_article .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__first_article .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__first_article .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__first_article .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__first_article .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__first_article .latest-updates__title .views-field-title, .latest-updates__first_article .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .views-field-title, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__first_article .latest-updates__title .field-content, .latest-updates__first_article .latest-updates__title .basic-page-title {
  font-size: 3rem;
}
.latest-updates__first_article .latest-updates__description {
  color: #2E3236;
}
.latest-updates__first_article .latest-updates__description p {
  color: #2E3236;
}
.latest-updates__views-row {
  background-color: #FFFFFF;
  min-height: 212px;
  display: none;
}
@media (min-width: 768px) {
  .latest-updates__views-row {
    display: block;
    margin: 2rem 0;
  }
}
@media (min-width: 992px) {
  .latest-updates__views-row {
    margin: 0;
  }
}
.latest-updates__views-row .latest-updates__title h2, .latest-updates__views-row .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__views-row .latest-updates__title .contact-form-block--title, .latest-updates__views-row .latest-updates__title .recent-posts__field-title, .latest-updates__views-row .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__views-row .latest-updates__title .field__item, .latest-updates__views-row .latest-updates__title .flippable-card-deck__field-title, .latest-updates__views-row .latest-updates__title .views-embed-default-section h3, .latest-updates__views-row .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__views-row .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__views-row .latest-updates__title .views-embed-default-section .link-title, .latest-updates__views-row .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__views-row .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__views-row .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__views-row .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__views-row .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__views-row .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__views-row .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__views-row .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__views-row .latest-updates__title h3, .views-embed-default-section .latest-updates__views-row .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__views-row .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__views-row .latest-updates__title .link-title, .views-embed-default-section .latest-updates__views-row .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__views-row .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__views-row .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__views-row .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__views-row .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__views-row .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__views-row .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__views-row .latest-updates__title .views-field-title, .latest-updates__views-row .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .views-field-title, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__views-row .latest-updates__title .field-content, .latest-updates__views-row .latest-updates__title .basic-page-title {
  font-size: 2.4rem;
}
.latest-updates .article-type__name {
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  color: #2E3236;
  text-transform: uppercase;
}
.latest-updates__views-row .latest-updates__card {
  height: 100%;
}
.latest-updates__card {
  padding: 40px;
  background-color: #FFFFFF;
  text-decoration: none;
}
.latest-updates__card:hover, .latest-updates__card:active, .latest-updates__card:focus {
  text-decoration: none;
}
.latest-updates__card:hover .latest-updates__title h2, .latest-updates__card:hover .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__card:hover .latest-updates__title .contact-form-block--title, .latest-updates__card:hover .latest-updates__title .recent-posts__field-title, .latest-updates__card:hover .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__card:hover .latest-updates__title .field__item, .latest-updates__card:hover .latest-updates__title .flippable-card-deck__field-title, .latest-updates__card:hover .latest-updates__title .views-embed-default-section h3, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__card:hover .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:hover .latest-updates__title .views-embed-default-section .link-title, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:hover .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:hover .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:hover .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__card:hover .latest-updates__title h3, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__card:hover .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__card:hover .latest-updates__title .link-title, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__card:hover .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__card:hover .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__card:hover .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__card:hover .latest-updates__title .views-field-title, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .views-field-title, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:hover .latest-updates__title .field-content, .latest-updates__card:hover .latest-updates__title .basic-page-title, .latest-updates__card:active .latest-updates__title h2, .latest-updates__card:active .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__card:active .latest-updates__title .contact-form-block--title, .latest-updates__card:active .latest-updates__title .recent-posts__field-title, .latest-updates__card:active .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__card:active .latest-updates__title .field__item, .latest-updates__card:active .latest-updates__title .flippable-card-deck__field-title, .latest-updates__card:active .latest-updates__title .views-embed-default-section h3, .latest-updates__card:active .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__card:active .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:active .latest-updates__title .views-embed-default-section .link-title, .latest-updates__card:active .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:active .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__card:active .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:active .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__card:active .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__card:active .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__card:active .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:active .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__card:active .latest-updates__title h3, .views-embed-default-section .latest-updates__card:active .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__card:active .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__card:active .latest-updates__title .link-title, .views-embed-default-section .latest-updates__card:active .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__card:active .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__card:active .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__card:active .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__card:active .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__card:active .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__card:active .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__card:active .latest-updates__title .views-field-title, .latest-updates__card:active .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .views-field-title, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:active .latest-updates__title .field-content, .latest-updates__card:active .latest-updates__title .basic-page-title, .latest-updates__card:focus .latest-updates__title h2, .latest-updates__card:focus .latest-updates__title .page__bottom .contact-form-block--title, .page__bottom .latest-updates__card:focus .latest-updates__title .contact-form-block--title, .latest-updates__card:focus .latest-updates__title .recent-posts__field-title, .latest-updates__card:focus .latest-updates__title .faq-accordion-title .field__item, .faq-accordion-title .latest-updates__card:focus .latest-updates__title .field__item, .latest-updates__card:focus .latest-updates__title .flippable-card-deck__field-title, .latest-updates__card:focus .latest-updates__title .views-embed-default-section h3, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .paragraph-post-title, .latest-updates__card:focus .latest-updates__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:focus .latest-updates__title .views-embed-default-section .link-title, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:focus .latest-updates__title .views-embed-default-section .feature__field-label, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:focus .latest-updates__title .views-embed-default-section .statistics__label > div, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .flippable-card__label, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .flippable-card__title, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:focus .latest-updates__title .views-embed-default-section .views-field-title, .views-embed-default-section .latest-updates__card:focus .latest-updates__title h3, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .paragraph-post-title, .views-embed-default-section .latest-updates__card:focus .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .latest-updates__card:focus .latest-updates__title .link-title, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .latest-updates__card:focus .latest-updates__title .feature__field-label, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .latest-updates__card:focus .latest-updates__title .statistics__label > div, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .flippable-card__label, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .flippable-card__title, .views-embed-default-section .latest-updates__card:focus .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .latest-updates__card:focus .latest-updates__title .views-field-title, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 h3, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph-post-title, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .link-title, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .feature__field-label, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .statistics__label > div, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__label, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .flippable-card__title, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title h3, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .paragraph-post-title, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .link-title, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .feature__field-label, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .statistics__label > div, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .flippable-card__label, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .flippable-card__title, .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .views-field-title, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .latest-updates__card:focus .latest-updates__title .field-content, .latest-updates__card:focus .latest-updates__title .basic-page-title {
  color: #56B2CB;
}
.latest-updates__card__link {
  margin-top: 2rem !important;
  display: inline-flex !important;
}
.latest-updates .latest-updates__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.leadership {
  padding: 0;
}
.leadership-head {
  text-align: center;
}
.leadership__title {
  display: inline-block;
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .leadership-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.leadership-items .paragraph--type--leadership-spotlight {
  text-align: center;
  padding: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .leadership-items .paragraph--type--leadership-spotlight {
    width: 33.33%;
  }
}
@media (min-width: 992px) {
  .leadership-items .paragraph--type--leadership-spotlight {
    width: 20%;
  }
}
.leadership-items .paragraph--type--leadership-spotlight:hover .leadership-spotlight__field-name {
  color: #56B2CB;
}
.leadership-items .paragraph--type--leadership-spotlight:hover .leadership-spotlight__field-portrait {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.leadership-items .leadership-spotlight__field-name {
  font-size: 3rem;
  line-height: 4rem;
  margin-bottom: 0.5em;
}
.leadership-items .leadership-spotlight__field-title {
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  text-transform: uppercase;
}
.leadership-items .leadership-spotlight__field-portrait {
  margin-bottom: 3rem;
  border-radius: 50%;
  overflow: hidden !important;
  padding-bottom: 100%;
  position: relative;
  text-align: center;
  width: 100%;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
}
.leadership-items .leadership-spotlight__field-portrait img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.customer-logos {
  padding: 0 0 10rem;
  background-image: url("../images/background-flower.png");
  background-repeat: no-repeat;
  background-position: calc(0% - 20rem) calc( 100% + 20rem );
}
@media (max-width: 991.98px) {
  .customer-logos {
    background-size: 330px auto;
    background-position: calc(0% - 10rem) calc( 100% + 10rem );
  }
}
@media (max-width: 575.98px) {
  .customer-logos {
    display: none;
  }
}
.customer-logos__title {
  text-align: center;
  margin-bottom: 5rem;
}
.customer-logos .loyal-customers__field-logos {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
}
.customer-logos .loyal-customers__field-logos > .field__item {
  flex: 0 0 31%;
  margin: 0 1% 1% !important;
  height: 13.4rem;
  background: #FFFFFF;
}
@media (min-width: 992px) {
  .customer-logos .loyal-customers__field-logos > .field__item {
    flex: 0 0 23%;
  }
}
.customer-logos .loyal-customers__field-logos .paragraph--type--customer-logo {
  box-shadow: 3px 10px 14px rgba(0, 0, 0, 0.15);
  height: 13.4rem;
  overflow: hidden;
}
.customer-logos .loyal-customers__field-logos .paragraph--type--customer-logo .logo {
  height: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}
.customer-logos .loyal-customers__field-logos .paragraph--type--customer-logo .logo img {
  max-width: 14rem;
  margin: auto;
  width: auto;
  height: auto;
}

.products-listing .views-embed-default-item-box {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}
.products-listing .views-embed-default-item-box .views-field-field-hero-image {
  grid-column-start: 1;
  grid-row-start: 1;
}
.products-listing .views-embed-default-item-box .views-field-title {
  grid-column-start: 1;
  grid-row-start: 2;
}
.products-listing .views-embed-default-item-box .views-field-field-summary {
  grid-column-start: 1;
  grid-row-start: 3;
}
.products-listing .views-embed-default-item-box .views-field-view-node,
.products-listing .views-embed-default-item-box .views-field-title-1 {
  grid-column-start: 1;
  grid-row-start: 4;
}
.block--views-block--related-content-block-1 {
  text-align: center;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .block--views-block--related-content-block-1 {
    padding: 0;
  }
}
.block--views-block--related-content-block-1 h3, .block--views-block--related-content-block-1 .paragraph-post-title, .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .link-title, .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content {
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 5rem;
}

.related-content {
  margin: 2.5rem auto 8rem;
  max-width: 136rem;
}
@media (min-width: 992px) {
  .related-content {
    display: flex;
  }
}
.related-content .views-row {
  background-color: #FFFFFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0 1rem 2rem;
  padding: 4rem;
  text-align: left;
}
@media (min-width: 992px) {
  .related-content .views-row {
    flex: 0 0 33.333%;
  }
}
.related-content .views-field-field-type-tag {
  color: #2E3236;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.related-content .views-field-title a {
  display: block;
  color: #2E3236;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 4rem;
}
.related-content .views-field-title a:hover {
  color: #56B2CB;
  text-decoration: none;
}
.related-content .views-field-view-node a {
  color: #56B2CB;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.related-content .views-field-view-node a::after {
  content: "";
  display: inline-block;
  height: 0.8rem;
  margin-left: 0.7rem;
}

/* m_single or single-cta  */
.m_single {
  background-color: #46BDD4;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .m_single {
    padding: 5rem 0;
  }
}
.m_single .container, .m_single .paragraph-page-link-wrapper, .m_single .single-feature, .m_single .single-cta-content, .m_single .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .m_single .views-infinite-scroll-content-wrapper, .m_single .articles-listing-container, .m_single .products-listing .views-embed-default-container, .products-listing .m_single .views-embed-default-container {
  max-width: 100%;
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .m_single .content {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .m_single .element-one {
    flex: 0 0 45%;
  }
}
.m_single .element-two {
  padding-top: 5rem;
  max-height: 50rem;
}
@media (max-width: 991.98px) {
  .m_single .element-two {
    display: none;
  }
}
.m_single.border-svg-sm {
  display: none;
}
@media (min-width: 992px) {
  .m_single.border-svg-sm {
    display: block;
  }
}
.m_single .title h3, .m_single .title .paragraph-post-title, .m_single .title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .m_single .title .link-title, .m_single .title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_single .title .feature__field-label, .m_single .title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .m_single .title .statistics__label > div, .m_single .title .flippable-card__label, .m_single .title .flippable-card__title, .m_single .title .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .m_single .title .views-field-title, .m_single .title .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .m_single .title .field-content, .m_single .title .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .m_single .title .field-content {
  color: #FFFFFF;
}
.m_single .title h3::before, .m_single .title .paragraph-post-title::before, .m_single .title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .m_single .title .link-title::before, .m_single .title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_single .title .feature__field-label::before, .m_single .title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .m_single .title .statistics__label > div::before, .m_single .title .flippable-card__label::before, .m_single .title .flippable-card__title::before, .m_single .title .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .m_single .title .views-field-title::before, .m_single .title .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .m_single .title .field-content::before, .m_single .title .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .m_single .title .field-content::before {
  color: #FFFFFF;
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .m_single .title h3::before, .m_single .title .paragraph-post-title::before, .m_single .title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .m_single .title .link-title::before, .m_single .title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .m_single .title .feature__field-label::before, .m_single .title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .m_single .title .statistics__label > div::before, .m_single .title .flippable-card__label::before, .m_single .title .flippable-card__title::before, .m_single .title .distributors-listing .views-embed-default-item-box .views-field-title::before, .distributors-listing .views-embed-default-item-box .m_single .title .views-field-title::before, .m_single .title .articles-listing-item .views-field-title .field-content::before, .articles-listing-item .views-field-title .m_single .title .field-content::before, .m_single .title .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .m_single .title .field-content::before {
    margin-bottom: 4rem;
  }
}
.m_single .cta {
  margin-top: 40px;
}
.m_single .image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) and (min-width: 992px) {
  .m_single .content .content-text {
    padding-right: 4rem;
    width: 100%;
  }
}
.m_single.border-svg-lg {
  display: none;
}
@media (min-width: 992px) {
  .m_single.border-svg-lg {
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
  }
}

/***/
.field__label {
  display: none;
}

.m_single.border-svg-lg,
.m_single.border-svg-sm {
  background: transparent;
  margin-top: -75px;
}

.social-icons {
  display: none;
}
@media (min-width: 576px) {
  .social-icons {
    display: block;
  }
}
.social-icons.__fixed {
  left: 2.6%;
  top: 50%;
  position: absolute;
  z-index: 77;
  transform: translateY(-50%);
  /*
  Enable if needed as sticky on scroll
  @at-root .sticky-nav & {
    position: fixed;
    top: 19rem;
    margin-top: 0;
  }
  */
}
.social-icons.__fixed > .plain-html__body {
  display: flex;
  flex-direction: column;
  height: 12rem;
  justify-content: space-between;
}
.social-icons.__fixed a {
  color: #2E3236;
}
.social-icons a {
  display: inline-block;
  height: 2rem;
  width: 2rem;
  line-height: 2rem;
  text-align: center;
  vertical-align: middle;
}
.social-icons a:hover {
  color: #56B2CB;
}
.social-icons svg {
  width: 100% !important;
  height: auto !important;
  max-height: 2rem;
  max-width: 2rem;
}

.testimonials-listing .views-infinite-scroll-content-wrapper {
  background: none;
}

.views-embed-default-section {
  text-align: center;
}
.views-embed-default-section h3, .views-embed-default-section .paragraph-post-title, .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .link-title, .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .feature__field-label, .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .statistics__label > div, .views-embed-default-section .flippable-card__label, .views-embed-default-section .flippable-card__title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .views-embed-default-section .articles-listing-item .views-field-title .field-content, .articles-listing-item .views-field-title .views-embed-default-section .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content {
  display: block;
  line-height: 1;
  text-align: center;
  margin-bottom: 5rem;
}

.views-embed-default-items {
  margin: 2.5rem auto 8rem;
  max-width: 136rem;
}
@media (min-width: 992px) {
  .views-embed-default-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.views-embed-default-item, .views-embed-default .views-row {
  display: flex;
  padding: 0 1rem 2rem;
}
@media (min-width: 992px) {
  .views-embed-default-item, .views-embed-default .views-row {
    flex: 0 0 33.333%;
  }
}
.views-embed-default-item-box, .views-embed-default .views-row-box {
  background-color: #FFFFFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  padding: 4rem;
  text-align: left;
}

.related-content-view .views-embed-default-items .views-embed-default-item-box {
  cursor: pointer;
}
.related-content-view .views-embed-default-items .views-embed-default-item-box:hover a, .related-content-view .views-embed-default-items .views-embed-default-item-box:focus a, .related-content-view .views-embed-default-items .views-embed-default-item-box:active a {
  color: #56B2CB;
}

.views-embed-default-items .views-field-field-type-tag {
  order: 1;
  color: #2E3236;
  font-size: 1.2rem;
  letter-spacing: 1.2px;
  line-height: 1;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.views-embed-default-items .views-field-title {
  order: 3;
}
.views-embed-default-items .views-field-title a {
  display: block;
  color: #2E3236;
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-bottom: 2rem;
}
.views-embed-default-items .views-field-title a:hover {
  color: #56B2CB;
  text-decoration: none;
}
.views-embed-default-items .views-field-field-summary {
  margin-bottom: 2rem;
  order: 4;
}
.views-embed-default-items .views-field-view-node {
  order: 5;
}
.views-embed-default-items .views-field-view-node a {
  color: #56B2CB;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.views-embed-default-items .views-field-view-node a::after {
  content: "";
  display: inline-block;
  height: 0.8rem;
  margin-left: 0.7rem;
}
.views-embed-default-items .views-field-field-hero-image {
  order: 2;
}
.views-embed-default-items .views-field-field-hero-image .field-content a img {
  width: 100%;
}

.distributors-listing {
  padding: 0 0 10rem;
}
.distributors-listing .views-infinite-scroll-content-wrapper {
  background: none;
}
.distributors-listing .views-embed-default-items {
  max-width: none;
  margin: 0;
}
.distributors-listing .views-embed-default-item-box {
  flex-direction: column-reverse;
  justify-content: flex-end;
}
.distributors-listing .views-embed-default-item-box .views-field {
  text-align: center;
}

.block--banner-message {
  padding: 3rem;
  background-color: #F4F5F5;
  position: relative;
}
.block--banner-message .banner-message__field-message {
  text-align: center;
}
.block--banner-message .banner-message__field-message .field__item {
  color: #2E3236;
}
.block--banner-message .banner-message__field-message .field__item a {
  color: #2E3236;
}
.block--banner-message .banner-message__close-button button {
  background-color: transparent;
  border: 3px solid #2E3236;
  border-radius: 50%;
  color: #2E3236;
  font-weight: bold;
  height: 32px;
  padding: 0 2px 2px;
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  line-height: 1rem;
  font-size: 2.25rem;
}

.cta_slider {
  position: relative;
}
.cta_slider .container, .cta_slider .paragraph-page-link-wrapper, .cta_slider .single-feature, .cta_slider .single-cta-content, .cta_slider .articles-listing-container, .cta_slider .products-listing .views-embed-default-container, .products-listing .cta_slider .views-embed-default-container, .cta_slider .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .cta_slider .views-infinite-scroll-content-wrapper {
  max-width: 100%;
  margin: 0 -15px;
}

/* next and prev slider */
.cta-slider__field-cta-slides {
  position: unset;
}

.paragraph--type--cta-slider .cta_slides {
  padding: 0;
  position: relative;
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .cta_slides {
    background-position: bottom center;
    background-size: auto 150px;
  }
}
.paragraph--type--cta-slider .cta_slides .container, .paragraph--type--cta-slider .cta_slides .paragraph-page-link-wrapper, .paragraph--type--cta-slider .cta_slides .single-feature, .paragraph--type--cta-slider .cta_slides .single-cta-content, .paragraph--type--cta-slider .cta_slides .articles-listing-container, .paragraph--type--cta-slider .cta_slides .products-listing .views-embed-default-container, .products-listing .paragraph--type--cta-slider .cta_slides .views-embed-default-container, .paragraph--type--cta-slider .cta_slides .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .paragraph--type--cta-slider .cta_slides .views-infinite-scroll-content-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .cta_slides .container, .paragraph--type--cta-slider .cta_slides .paragraph-page-link-wrapper, .paragraph--type--cta-slider .cta_slides .single-feature, .paragraph--type--cta-slider .cta_slides .single-cta-content, .paragraph--type--cta-slider .cta_slides .articles-listing-container, .paragraph--type--cta-slider .cta_slides .products-listing .views-embed-default-container, .products-listing .paragraph--type--cta-slider .cta_slides .views-embed-default-container, .paragraph--type--cta-slider .cta_slides .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .paragraph--type--cta-slider .cta_slides .views-infinite-scroll-content-wrapper {
    margin-bottom: 8rem;
  }
}
@media (min-width: 992px) {
  .paragraph--type--cta-slider .cta_slides .container, .paragraph--type--cta-slider .cta_slides .paragraph-page-link-wrapper, .paragraph--type--cta-slider .cta_slides .single-feature, .paragraph--type--cta-slider .cta_slides .single-cta-content, .paragraph--type--cta-slider .cta_slides .articles-listing-container, .paragraph--type--cta-slider .cta_slides .products-listing .views-embed-default-container, .products-listing .paragraph--type--cta-slider .cta_slides .views-embed-default-container, .paragraph--type--cta-slider .cta_slides .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .paragraph--type--cta-slider .cta_slides .views-infinite-scroll-content-wrapper {
    padding: 0 0 20px;
  }
}
@media (min-width: 576px) {
  .paragraph--type--cta-slider .cta_slides .container .contained, .paragraph--type--cta-slider .cta_slides .paragraph-page-link-wrapper .contained, .paragraph--type--cta-slider .cta_slides .single-feature .contained, .paragraph--type--cta-slider .cta_slides .single-cta-content .contained, .paragraph--type--cta-slider .cta_slides .articles-listing-container .contained, .paragraph--type--cta-slider .cta_slides .products-listing .views-embed-default-container .contained, .products-listing .paragraph--type--cta-slider .cta_slides .views-embed-default-container .contained, .paragraph--type--cta-slider .cta_slides .testimonials-listing .views-infinite-scroll-content-wrapper .contained, .testimonials-listing .paragraph--type--cta-slider .cta_slides .views-infinite-scroll-content-wrapper .contained {
    padding: 0 6rem;
  }
}
.paragraph--type--cta-slider .cta_slides__background {
  position: relative;
  z-index: -1;
  width: 100%;
  height: auto;
  text-align: right;
}
@media (min-width: 576px) {
  .paragraph--type--cta-slider .cta_slides__background {
    height: 18rem;
    line-height: 18rem;
  }
}
.paragraph--type--cta-slider .cta_slides__background > img {
  max-width: 90%;
  max-height: 100%;
  width: auto;
  height: auto;
  vertical-align: bottom;
}
@media (min-width: 576px) {
  .paragraph--type--cta-slider .cta_slides__background:not(.bottom-center) {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
  }
  .paragraph--type--cta-slider .cta_slides__background:not(.bottom-center) > img {
    max-height: 75%;
    position: absolute;
    bottom: 0;
  }
  .paragraph--type--cta-slider .cta_slides__background:not(.bottom-center).bottom-left > img {
    left: 0;
  }
  .paragraph--type--cta-slider .cta_slides__background:not(.bottom-center).bottom-right > img {
    right: 0;
  }
}
.paragraph--type--cta-slider .cta_slides__background.bottom-left {
  text-align: left;
}
.paragraph--type--cta-slider .cta_slides__background.bottom-center {
  margin-top: 0;
  text-align: center;
}
@media (min-width: 768px) {
  .paragraph--type--cta-slider .cta_slides__background.bottom-center > img {
    max-height: 155px;
  }
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .cta_slides__background {
    margin-top: 8rem;
    text-align: center !important;
  }
}
.paragraph--type--cta-slider .field__label.font-weight-bold {
  display: none;
}
.paragraph--type--cta-slider .slick-prev, .paragraph--type--cta-slider .slick-next {
  border: 1px solid #56B2CB;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  z-index: 10;
  top: 82%;
  top: 43%;
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .slick-prev, .paragraph--type--cta-slider .slick-next {
    top: auto;
    bottom: -90px;
  }
}
.paragraph--type--cta-slider .slick-prev:hover, .paragraph--type--cta-slider .slick-next:hover {
  background-color: #56B2CB;
}
.paragraph--type--cta-slider .slick-prev:hover::before, .paragraph--type--cta-slider .slick-next:hover::before {
  color: #FFFFFF !important;
}
.paragraph--type--cta-slider .slick-prev::before, .paragraph--type--cta-slider .slick-next::before {
  color: #56B2CB;
  font-size: 1.7rem;
  opacity: 1;
}
.paragraph--type--cta-slider .slick-next {
  right: 15px;
}
@media (max-width: 767.98px) {
  .paragraph--type--cta-slider .slick-next {
    right: 15px;
  }
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .slick-next {
    right: calc(50% - 61px);
  }
}
.paragraph--type--cta-slider .slick-prev {
  left: 15px;
}
@media (max-width: 767.98px) {
  .paragraph--type--cta-slider .slick-prev {
    left: 15px;
  }
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slider .slick-prev {
    left: calc(50% - 61px);
  }
}

.paragraph--type--cta-slide .cta-slide {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.paragraph--type--cta-slide .cta-slide__logo img {
  margin: 0 auto 3rem;
  max-width: 160px;
  height: auto;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  transition: all 0.2s ease;
}
.paragraph--type--cta-slide .cta-slide__logo img:hover {
  -webkit-filter: unset;
          filter: unset;
}
.paragraph--type--cta-slide .cta-slide__quote {
  margin: 0 auto 3rem;
  letter-spacing: 0;
  font-size: 4rem;
  line-height: 1.3;
  color: #2E3236;
  max-width: 790px;
}
@media (max-width: 991.98px) {
  .paragraph--type--cta-slide .cta-slide__quote {
    font-size: 3rem;
    line-height: 3.6rem;
    max-width: 500px;
  }
}
.paragraph--type--cta-slide .cta-slide__author {
  display: flex;
  justify-content: center;
  letter-spacing: 0.1em;
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #6E7A84;
  text-transform: uppercase;
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slide .cta-slide__author {
    flex-direction: row;
    flex-flow: wrap;
  }
}
.paragraph--type--cta-slide .cta-slide__divider {
  margin: 0 8px;
}
@media (max-width: 575.98px) {
  .paragraph--type--cta-slide .cta-slide__divider {
    display: none;
  }
}
.paragraph--type--cta-slide .cta-slide__cta-button {
  margin-top: 65px;
  flex: 1;
  justify-content: center;
  display: flex;
  font-size: 1.4rem;
}
.paragraph--type--cta-slide .cta-slide .field__label.font-weight-bold {
  display: none;
}

.curated-collection {
  padding-top: 5rem;
}
@media (min-width: 992px) {
  .curated-collection--info {
    display: grid;
    grid-template-columns: auto 34rem;
    grid-column-gap: 8rem;
    max-width: 900px;
    width: 80%;
    margin: 0 auto;
  }
  .curated-collection--text {
    grid-column-start: 1;
  }
  .curated-collection__buttons {
    grid-column-start: 2;
  }
}
.curated-collection__description {
  color: #6E7A84;
}
.curated-collection__buttons {
  display: flex;
  flex-direction: column;
  max-width: 34rem;
}
@media (min-width: 992px) {
  .curated-collection__buttons {
    padding-top: 8rem;
  }
}
.curated-collection__button {
  margin-bottom: 1.77778em;
}
.curated-collection__button a {
  display: flex;
}
.curated-collection__collection {
  margin-top: 1.77778em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.curated-collection__collection .paragraph--type--experience-badge {
  flex: 0 0 20%;
}

.paragraph--type--block-embed .field__label.font-weight-bold {
  display: none;
}

.paragraph--type--double-cta {
  margin-top: 8rem;
  margin-bottom: 8rem;
  display: flex;
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .paragraph--type--double-cta {
    flex-direction: row !important;
  }
}
.paragraph--type--double-cta > div {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 1;
}
.paragraph--type--double-cta > div .content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5rem 2.5rem;
}
@media (min-width: 992px) {
  .paragraph--type--double-cta > div .content {
    padding: 2.66667em;
  }
}
.paragraph--type--double-cta > div .content .curated-collection__button {
  margin-bottom: 0;
}
.paragraph--type--double-cta > div .title > h2, .paragraph--type--double-cta > div .page__bottom .title > .contact-form-block--title, .page__bottom .paragraph--type--double-cta > div .title > .contact-form-block--title, .paragraph--type--double-cta > div .title > .recent-posts__field-title, .paragraph--type--double-cta > div .faq-accordion-title .title > .field__item, .faq-accordion-title .paragraph--type--double-cta > div .title > .field__item, .paragraph--type--double-cta > div .title > .flippable-card-deck__field-title, .paragraph--type--double-cta > div .title > .basic-page-title, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > h3, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .paragraph-post-title, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 ._-page-links__field-page-links .title > .link-title, ._-page-links__field-page-links .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .link-title, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .feature__field-label, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label.title > div, .paragraph--type--impact-statistic-feature .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .statistics__label.title > div, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .flippable-card__label, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .title > .flippable-card__title, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > h3, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .paragraph-post-title, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div ._-page-links__field-page-links .title > .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .link-title, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .feature__field-label, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .paragraph--type--impact-statistic-feature .statistics__label.title > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .statistics__label.title > div, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .flippable-card__label, .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .flippable-card__title, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .title > .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .title > .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .title > .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .title > .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .views-embed-default-section .title > h3, .paragraph--type--double-cta > div .views-embed-default-section .title > .paragraph-post-title, .paragraph--type--double-cta > div .views-embed-default-section ._-page-links__field-page-links .title > .link-title, ._-page-links__field-page-links .paragraph--type--double-cta > div .views-embed-default-section .title > .link-title, .paragraph--type--double-cta > div .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .paragraph--type--double-cta > div .views-embed-default-section .title > .feature__field-label, .paragraph--type--double-cta > div .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label.title > div, .paragraph--type--impact-statistic-feature .paragraph--type--double-cta > div .views-embed-default-section .statistics__label.title > div, .paragraph--type--double-cta > div .views-embed-default-section .title > .flippable-card__label, .paragraph--type--double-cta > div .views-embed-default-section .title > .flippable-card__title, .views-embed-default-section .paragraph--type--double-cta > div .title > h3, .views-embed-default-section .paragraph--type--double-cta > div .title > .paragraph-post-title, .views-embed-default-section .paragraph--type--double-cta > div ._-page-links__field-page-links .title > .link-title, ._-page-links__field-page-links .views-embed-default-section .paragraph--type--double-cta > div .title > .link-title, .views-embed-default-section .paragraph--type--double-cta > div .paragraph.paragraph--type--_-features .paragraph--type--feature .label .title > .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .paragraph--type--double-cta > div .title > .feature__field-label, .views-embed-default-section .paragraph--type--double-cta > div .paragraph--type--impact-statistic-feature .statistics__label.title > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .paragraph--type--double-cta > div .statistics__label.title > div, .views-embed-default-section .paragraph--type--double-cta > div .title > .flippable-card__label, .views-embed-default-section .paragraph--type--double-cta > div .title > .flippable-card__title, .paragraph--type--double-cta > div .views-embed-default-section .articles-listing-item .views-field-title .title > .field-content, .views-embed-default-section .articles-listing-item .views-field-title .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .articles-listing-item .views-field-title .views-embed-default-section .title > .field-content, .articles-listing-item .views-field-title .views-embed-default-section .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .title > .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .title > .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .paragraph--type--double-cta > div .title > .field-content, .paragraph--type--double-cta > div .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .title > .views-field-title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .paragraph--type--double-cta > div .title > .views-field-title, .paragraph--type--double-cta > div .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .title > .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .paragraph--type--double-cta > div .title > .views-field-title, .paragraph--type--double-cta > div .views-embed-default-section .distributors-listing .views-embed-default-item-box .title > .views-field-title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .paragraph--type--double-cta > div .title > .views-field-title, .paragraph--type--double-cta > div .distributors-listing .views-embed-default-item-box .views-embed-default-section .title > .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .paragraph--type--double-cta > div .title > .views-field-title {
  max-width: 440px;
  margin-bottom: 0.5em;
}
.paragraph--type--double-cta > div .description > p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  letter-spacing: 0.02rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .paragraph--type--double-cta > div .description > p {
    letter-spacing: 0.36px;
    padding-right: 3rem;
  }
}
.paragraph--type--double-cta > div .cta {
  align-self: baseline;
  width: 100%;
}
@media (min-width: 576px) {
  .paragraph--type--double-cta > div .cta {
    width: auto;
  }
}
.paragraph--type--double-cta > div .cta a {
  justify-content: center;
  width: 100%;
}
@media (min-width: 576px) {
  .paragraph--type--double-cta > div .cta a {
    justify-content: flex-start;
    width: auto;
  }
}
@media (min-width: 992px) {
  .paragraph--type--double-cta .double-cta-left {
    display: flex;
    justify-content: flex-end;
    padding: 0;
  }
}
.paragraph--type--double-cta .double-cta-left .content {
  max-width: 72rem;
}
@media (max-width: 991.98px) {
  .paragraph--type--double-cta .double-cta-left .content {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .paragraph--type--double-cta .double-cta-left .content {
    max-width: 48.8rem;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--double-cta .double-cta-left .content {
    max-width: 57.8rem;
  }
}
@media (min-width: 1400px) {
  .paragraph--type--double-cta .double-cta-left .content {
    max-width: 69rem;
  }
}
@media (min-width: 992px) {
  .paragraph--type--double-cta .double-cta-right {
    display: flex;
    justify-content: flex-start;
    padding: 0;
  }
}
.paragraph--type--double-cta .double-cta-right .content {
  max-width: 72rem;
}
@media (max-width: 991.98px) {
  .paragraph--type--double-cta .double-cta-right .content {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .paragraph--type--double-cta .double-cta-right .content {
    max-width: 48.8rem;
  }
}
@media (min-width: 1200px) {
  .paragraph--type--double-cta .double-cta-right .content {
    max-width: 57.8rem;
  }
}
@media (min-width: 1400px) {
  .paragraph--type--double-cta .double-cta-right .content {
    max-width: 69rem;
  }
}

/* Customization for the homepage */
@media (min-width: 992px) {
  .m_double {
    overflow: hidden;
    margin-top: 18rem;
  }
  .m_double .paragraph--type--double-cta {
    min-height: 49rem;
  }
  .m_double .double-cta {
    display: grid;
    grid-template-columns: 55% 50%;
  }
  .m_double .double-cta .double-cta-right {
    position: relative;
    right: 10%;
    height: 86%;
    top: 6%;
  }
}
.m_double .double-cta-left {
  background-position: right 25%;
  background-size: 150%;
  color: #2E3236;
  margin-top: -1px;
  margin-bottom: -1px;
}
@media (min-width: 992px) {
  .m_double .double-cta-left {
    background-position: right center;
    background-size: cover;
  }
}
.m_double .double-cta-left::before, .m_double .double-cta-left::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0;
  bottom: auto;
  height: 30px;
  background: url("../images/ScentAir_ImageMask_Top.svg") no-repeat 10% top;
  background-size: 200%;
  opacity: 1;
  transform: scaleX(-1);
  -webkit-filter: FlipH;
          filter: FlipH;
  -ms-filter: "FlipH";
}
@media (min-width: 992px) {
  .m_double .double-cta-left::before, .m_double .double-cta-left::after {
    width: 110%;
    background: url("../images/ScentAir_ImageMask_Top.svg") no-repeat top right;
    background-size: 100% auto;
  }
}
.m_double .double-cta-left::after {
  bottom: -1px;
  top: auto;
  background: url("../images/ScentAir_ImageMask_Bottom.svg") no-repeat bottom right;
  background-size: 100%;
}
.m_double .double-cta-left .content {
  max-width: 88rem;
}
@media (min-width: 992px) {
  .m_double .double-cta-left .content {
    justify-content: center;
    padding: 0 30% 3rem 15%;
  }
}
.m_double .double-cta-right .content {
  max-width: 88rem;
}
@media (min-width: 992px) {
  .m_double .double-cta-right .content {
    justify-content: center;
    padding: 3rem 20%;
  }
}
.m_double .content .description > p {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .m_double .content .description > p {
    padding-right: 0;
  }
}

.flippable-card {
  padding: 0;
}
.flippable-card__front .flippable-card__label {
  color: #FFFFFF;
  margin: 0;
}
.flippable-card__eyebrow {
  margin-bottom: 1em;
}
.flippable-card__inner .flippable-card__description .flippable-card__field-description {
  text-align: left;
  margin: 0;
}
.flippable-card__inner .flippable-card__description .flippable-card__field-description p {
  overflow-y: auto;
  line-height: 1.6;
}
.flippable-card__inner .flippable-card__description .flippable-card__field-description p:last-child {
  margin: 0 0 0.5em;
}
.flippable-card__cards {
  display: flex;
  flex-wrap: wrap;
}
.flippable-card__cards > div {
  flex: 0 0 46%;
  margin: 2% 2% 0;
}
@media (max-width: 991.98px) {
  .flippable-card__cards > div {
    flex: 0 0 96%;
  }
}
.flippable-card__item {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  perspective: 150rem;
  padding-top: 50%;
}
@media (min-width: 992px) {
  .flippable-card__item {
    padding-top: 70%;
  }
}
.flippable-card__front {
  flex: 1;
  background-image: url("../images/lum3n-5GK0KjhBLs4-unsplash.png");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: stretch;
  align-items: flex-end;
}
.flippable-card__front::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  background: transparent linear-gradient(0deg, #25282B 0%, rgba(37, 40, 43, 0) 100%) 0% 0% no-repeat padding-box;
}
.flippable-card__front * {
  z-index: 1;
}
.flippable-card__back {
  background-color: #FFFFFF;
  transform: rotateY(180deg);
}
.flippable-card__front, .flippable-card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: all 0.8s ease;
  box-shadow: 0px 10px 25px #0000001A;
}
.flippable-card__item--flipped .flippable-card__front {
  transform: rotateY(180deg);
}
.flippable-card__item--flipped .flippable-card__back {
  transform: rotateY(0deg);
}
.flippable-card__inner {
  padding: 5%;
  display: flex;
  width: 100%;
  align-items: flex-end;
}
.flippable-card__back .flippable-card__inner {
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}
.flippable-card__flip-button {
  cursor: pointer;
}
.flippable-card__flip-button--minus {
  margin-left: auto;
  margin-top: auto;
}
.flippable-card__front .flippable-card__icon {
  margin-right: auto;
  margin-left: 2rem;
}
.flippable-card__front .flippable-card__icon svg {
  width: 2rem;
  height: auto;
  fill: #FFFFFF;
  stroke: none;
}
.flippable-card__front .flippable-card__icon.icon-spa svg path, .flippable-card__front .flippable-card__icon.icon-leaf svg path, .flippable-card__front .flippable-card__icon.icon-orange svg path, .flippable-card__front .flippable-card__icon.icon-heart svg path, .flippable-card__front .flippable-card__icon.icon-pie svg path, .flippable-card__front .flippable-card__icon.icon-tree-palm svg path {
  stroke: none;
  fill: #FFFFFF;
}
.flippable-card__front .flippable-card__icon.icon-bowtie svg path, .flippable-card__front .flippable-card__icon.icon-flower svg path, .flippable-card__front .flippable-card__icon.icon-sun svg path {
  stroke: #FFFFFF;
  fill: none;
}
.flippable-card__front .flippable-card__icon.icon-flower svg line, .flippable-card__front .flippable-card__icon.icon-sun svg line {
  stroke: #FFFFFF;
  fill: none;
}
.flippable-card__front .flippable-card__icon.icon-bowtie svg rect,
.flippable-card__front .flippable-card__icon.icon-bowtie svg circle, .flippable-card__front .flippable-card__icon.icon-sun svg rect,
.flippable-card__front .flippable-card__icon.icon-sun svg circle {
  stroke: #FFFFFF;
  fill: none;
}
.flippable-card__back .flippable-card__icon {
  margin-bottom: 2rem;
}
.flippable-card__back .flippable-card__icon svg {
  width: 2rem;
  height: auto;
  fill: currentColor;
  stroke: none;
}
.flippable-card__back .flippable-card__icon.icon-spa svg path, .flippable-card__back .flippable-card__icon.icon-leaf svg path, .flippable-card__back .flippable-card__icon.icon-orange svg path, .flippable-card__back .flippable-card__icon.icon-heart svg path, .flippable-card__back .flippable-card__icon.icon-pie svg path, .flippable-card__back .flippable-card__icon.icon-tree-palm svg path {
  stroke: none;
  fill: currentColor;
}
.flippable-card__back .flippable-card__icon.icon-bowtie svg path, .flippable-card__back .flippable-card__icon.icon-flower svg path, .flippable-card__back .flippable-card__icon.icon-sun svg path {
  stroke: currentColor;
  fill: none;
}
.flippable-card__back .flippable-card__icon.icon-flower svg line, .flippable-card__back .flippable-card__icon.icon-sun svg line {
  stroke: currentColor;
  fill: none;
}
.flippable-card__back .flippable-card__icon.icon-bowtie svg rect,
.flippable-card__back .flippable-card__icon.icon-bowtie svg circle, .flippable-card__back .flippable-card__icon.icon-sun svg rect,
.flippable-card__back .flippable-card__icon.icon-sun svg circle {
  stroke: currentColor;
  fill: none;
}

.flippable-card-deck__field-title {
  text-align: center;
  margin-bottom: 2rem;
}

.flippable-card__description {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 71rem;
}

.paragraph-3-images-caption {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.paragraph-3-images-caption .__images {
  display: flex;
}
.paragraph-3-images-caption .__images img {
  height: auto;
  width: 100%;
}
.paragraph-3-images-caption .__caption {
  margin-top: 2rem;
}

.double-feature .double-feature-items > .double-feature-item {
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 991.98px) {
  .double-feature .double-feature-items > .double-feature-item + .double-feature-item {
    margin-top: 8rem;
  }
}
.double-feature .double-feature-items .single-feature {
  max-width: none !important;
}
.double-feature .double-feature-items .single-feature--image-first .single-feature__container {
  flex-flow: column;
}
.double-feature .double-feature-items .single-feature__container {
  flex-flow: column-reverse;
}
.double-feature .double-feature-items .single-feature__information, .double-feature .double-feature-items .single-feature__image {
  padding: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.double-feature .double-feature-items .single-feature__title h2, .double-feature .double-feature-items .single-feature__title .page__bottom .contact-form-block--title, .page__bottom .double-feature .double-feature-items .single-feature__title .contact-form-block--title, .double-feature .double-feature-items .single-feature__title .recent-posts__field-title, .double-feature .double-feature-items .single-feature__title .faq-accordion-title .field__item, .faq-accordion-title .double-feature .double-feature-items .single-feature__title .field__item, .double-feature .double-feature-items .single-feature__title .basic-page-title, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 h3, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph-post-title, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .link-title, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .feature__field-label, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .statistics__label > div, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title h3, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph-post-title, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .link-title, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .feature__field-label, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .statistics__label > div, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .views-embed-default-section h3, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph-post-title, .double-feature .double-feature-items .single-feature__title .views-embed-default-section ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .double-feature .double-feature-items .single-feature__title .views-embed-default-section .link-title, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .double-feature .double-feature-items .single-feature__title .views-embed-default-section .feature__field-label, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .double-feature .double-feature-items .single-feature__title .views-embed-default-section .statistics__label > div, .views-embed-default-section .double-feature .double-feature-items .single-feature__title h3, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph-post-title, .views-embed-default-section .double-feature .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title, ._-page-links__field-page-links .views-embed-default-section .double-feature .double-feature-items .single-feature__title .link-title, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .double-feature .double-feature-items .single-feature__title .feature__field-label, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div, .paragraph--type--impact-statistic-feature .views-embed-default-section .double-feature .double-feature-items .single-feature__title .statistics__label > div, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .articles-listing-item .views-field-title .field-content, .views-embed-default-section .articles-listing-item .views-field-title .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .articles-listing-item .views-field-title .views-embed-default-section .field-content, .articles-listing-item .views-field-title .views-embed-default-section .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .double-feature .double-feature-items .single-feature__title .field-content, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .double-feature .double-feature-items .single-feature__title .views-field-title, .double-feature .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .views-field-title, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title, .views-embed-default-section .distributors-listing .views-embed-default-item-box .double-feature .double-feature-items .single-feature__title .views-field-title, .double-feature .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title, .distributors-listing .views-embed-default-item-box .views-embed-default-section .double-feature .double-feature-items .single-feature__title .views-field-title, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__label, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .flippable-card__label, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__title, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .flippable-card__title, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__label, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .flippable-card__label, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__title, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .flippable-card__title, .double-feature .double-feature-items .single-feature__title .flippable-card-deck__field-title {
  margin-top: 3rem;
}
.double-feature .double-feature-items .single-feature__title h2::before, .double-feature .double-feature-items .single-feature__title .page__bottom .contact-form-block--title::before, .page__bottom .double-feature .double-feature-items .single-feature__title .contact-form-block--title::before, .double-feature .double-feature-items .single-feature__title .recent-posts__field-title::before, .double-feature .double-feature-items .single-feature__title .faq-accordion-title .field__item::before, .faq-accordion-title .double-feature .double-feature-items .single-feature__title .field__item::before, .double-feature .double-feature-items .single-feature__title .basic-page-title::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 h3::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph-post-title::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .link-title::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .feature__field-label::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .statistics__label > div::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title h3::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph-post-title::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .link-title::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .feature__field-label::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .statistics__label > div::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .field-content::before, .block--views-block--related-content-block-1 .articles-listing-item .views-field-title .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .field-content::before, .articles-listing-item .views-field-title .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .block--views-block--related-content-block-1 .products-listing .views-embed-default-item-box .views-field-title .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section h3::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph-post-title::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .double-feature .double-feature-items .single-feature__title .views-embed-default-section .link-title::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .double-feature .double-feature-items .single-feature__title .views-embed-default-section .feature__field-label::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .double-feature .double-feature-items .single-feature__title .views-embed-default-section .statistics__label > div::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title h3::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph-post-title::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title ._-page-links__field-page-links .link-title::before, ._-page-links__field-page-links .views-embed-default-section .double-feature .double-feature-items .single-feature__title .link-title::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label::before, .paragraph.paragraph--type--_-features .paragraph--type--feature .label .views-embed-default-section .double-feature .double-feature-items .single-feature__title .feature__field-label::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .paragraph--type--impact-statistic-feature .statistics__label > div::before, .paragraph--type--impact-statistic-feature .views-embed-default-section .double-feature .double-feature-items .single-feature__title .statistics__label > div::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .articles-listing-item .views-field-title .field-content::before, .views-embed-default-section .articles-listing-item .views-field-title .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .articles-listing-item .views-field-title .views-embed-default-section .field-content::before, .articles-listing-item .views-field-title .views-embed-default-section .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .field-content::before, .views-embed-default-section .products-listing .views-embed-default-item-box .views-field-title .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .field-content::before, .products-listing .views-embed-default-item-box .views-field-title .views-embed-default-section .double-feature .double-feature-items .single-feature__title .field-content::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .views-field-title::before, .block--views-block--related-content-block-1 .distributors-listing .views-embed-default-item-box .double-feature .double-feature-items .single-feature__title .views-field-title::before, .double-feature .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .views-field-title::before, .distributors-listing .views-embed-default-item-box .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .views-field-title::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .distributors-listing .views-embed-default-item-box .views-field-title::before, .views-embed-default-section .distributors-listing .views-embed-default-item-box .double-feature .double-feature-items .single-feature__title .views-field-title::before, .double-feature .double-feature-items .single-feature__title .distributors-listing .views-embed-default-item-box .views-embed-default-section .views-field-title::before, .distributors-listing .views-embed-default-item-box .views-embed-default-section .double-feature .double-feature-items .single-feature__title .views-field-title::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__label::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .flippable-card__label::before, .double-feature .double-feature-items .single-feature__title .block--views-block--related-content-block-1 .flippable-card__title::before, .block--views-block--related-content-block-1 .double-feature .double-feature-items .single-feature__title .flippable-card__title::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__label::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .flippable-card__label::before, .double-feature .double-feature-items .single-feature__title .views-embed-default-section .flippable-card__title::before, .views-embed-default-section .double-feature .double-feature-items .single-feature__title .flippable-card__title::before, .double-feature .double-feature-items .single-feature__title .flippable-card-deck__field-title::before {
  display: none;
}
.double-feature .double-feature-items .block-embed__field-block {
  margin-top: 1.5rem;
}

.paragraph--type--experience-badge {
  margin-top: 5rem;
}

.experience-badge {
  display: block;
  text-decoration: none !important;
}
.experience-badge-box {
  height: 25rem;
  margin: 0 1rem;
  width: 21rem;
}
.experience-badge-box .__line {
  background-color: #56B2CB;
  content: "";
  display: block;
  height: 0.2rem;
  margin: 0 auto;
  transition: all 0.3s;
  width: 5rem;
}
.experience-badge-box:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}
.experience-badge-box:hover .__line {
  width: 100%;
}
.experience-badge-box:hover .experience-badge-text {
  background-color: #FFFFFF;
}
.experience-badge-box:hover .experience-badge-image {
  align-items: center;
}
.experience-badge-box:hover .experience-badge-image .__icon {
  background-color: currentColor;
  bottom: auto;
  box-sizing: content-box;
  height: 6.2rem;
  width: 6.2rem;
  line-height: 6.2rem;
}
.experience-badge-box:hover .experience-badge-image .__icon svg {
  width: 3rem !important;
  height: 3rem !important;
}
.experience-badge-image {
  align-items: flex-end;
  display: flex;
  justify-content: center;
  position: relative;
}
.experience-badge-image img {
  width: 210px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience-badge-image .__icon {
  border-radius: 50%;
  bottom: 2.25rem;
  display: inline-block;
  font-size: 2rem;
  position: absolute;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  vertical-align: middle;
  background-color: transparent;
}
.experience-badge-image .__icon svg {
  width: 2rem !important;
  height: 2rem !important;
  fill: #FFFFFF;
}
.experience-badge-text {
  color: #2E3236;
  font-size: 0.77777em;
  text-align: center;
  text-transform: uppercase;
  height: 3.8rem;
  line-height: 3.8rem;
}

.faq-accordion-title {
  text-align: center;
}
.faq-accordion-title .field__item {
  display: inline-block;
}
.faq-accordion-subtitle {
  color: #6E7A84;
  margin-bottom: 5rem;
  text-align: center;
}
.faq-accordion-subtitle .field_item {
  font-size: 1.8rem;
  line-height: 3.2rem;
  text-align: center;
}
.faq-accordion .card {
  border: none;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}
.faq-accordion .card .card-header {
  background-color: #FFFFFF;
  border: none;
  padding: 0;
}
.faq-accordion .card .card-header.opened {
  background-color: #F4F5F5;
}
.faq-accordion .card .card-header.opened .btn {
  background-image: url(../images/accordion-arrow-up.svg);
}
.faq-accordion .card .card-header .btn {
  background-color: transparent;
  background-image: url(../images/accordion-arrow-down.svg);
  background-position: 96% center;
  background-repeat: no-repeat;
  color: #2E3236;
  display: block;
  font-size: 2.4rem;
  line-height: 3.2rem;
  padding: 4rem;
  text-align: left;
  width: 100%;
}
.faq-accordion .card .card-header .btn:focus, .faq-accordion .card .card-header .btn:hover {
  text-decoration: none;
}
.faq-accordion .card .card-body {
  background-color: #F4F5F5;
  color: #6E7A84;
  font-size: 1.8rem;
  letter-spacing: 0.02rem;
  line-height: 3.2rem;
  padding: 0 4rem 4rem 4rem;
}

.paragraph-quote {
  padding: 0;
}
.paragraph-quote-wrapper {
  align-items: center;
  background: #efefef;
  background: linear-gradient(0deg, #efefef 0%, rgba(239, 239, 239, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 90rem;
}
.paragraph-quote-wrapper-b {
  background-image: url("../images/ScentAir_ImageMask_Top.svg"), url("../images/ScentAir_ImageMask_Bottom.svg");
  background-repeat: no-repeat;
  background-size: 105%;
  background-position: center top, center bottom;
  margin-bottom: -1px;
  margin-top: -1px;
  padding: 4rem;
  width: 100%;
}
@media (min-width: 992px) {
  .paragraph-quote-wrapper-b {
    padding: 8rem 5rem;
  }
}
.paragraph-quote-text {
  font-size: 3rem;
  line-height: 3.6rem;
}
.paragraph-quote-text p {
  margin-bottom: 0.5em;
  line-height: 3.6rem;
  margin-bottom: 0.5em;
}
@media (min-width: 992px) {
  .paragraph-quote-text p {
    font-size: 4rem;
    line-height: 5rem;
  }
}
@media (min-width: 992px) {
  .paragraph-quote-text {
    font-size: 4rem;
    line-height: 5rem;
  }
}
.paragraph-quote-credits {
  color: #6E7A84;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-top: 15px;
  text-align: center;
}
.paragraph-quote-credits .author {
  display: inline-block;
}
.paragraph-quote-credits .subtitle {
  display: inline-block;
}

.single-cta {
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.single-cta-content {
  align-items: center;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 30rem;
  padding: 2.5rem;
  position: relative;
  text-align: center;
  width: 100%;
}
.single-cta-content .__text {
  color: #F4F5F5;
}
.paragraph-single-image-caption {
  margin: 0 auto;
  max-width: 90rem;
}
.paragraph-single-image-caption .__image {
  margin-bottom: 1rem;
}
.paragraph-single-image-caption .__image img {
  width: 100%;
}
.paragraph-video-caption {
  padding: 2.5rem;
}
.paragraph-video-caption .__video {
  margin-bottom: 1rem;
}
.paragraph-video-caption .__video .video__created {
  display: none;
}
.paragraph-video-caption .__video .video__uid {
  display: none;
}
.paragraph-video-caption .__video .video__thumbnail {
  display: none;
}
.paragraph-video-caption .__video .video__field-media-oembed-video .field__item {
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
}
.paragraph-video-caption .__video .video__field-media-oembed-video .field__item iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.paragraph-wysiwyg {
  margin: 0 auto;
  max-width: 900px;
  padding: 0 1rem;
  width: 100%;
}
@media (min-width: 992px) {
  .paragraph-wysiwyg {
    padding: 0;
  }
}

@media (min-width: 992px) {
  .single-feature--image-first .single-feature__container {
    flex-flow: row;
  }
}
@media (min-width: 992px) {
  .single-feature__container {
    flex-flow: row-reverse;
  }
}
.single-feature__information, .single-feature__image {
  padding: 0 2.5rem;
}
@media (min-width: 992px) {
  .single-feature__information, .single-feature__image {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.single-feature__information {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.single-feature__image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.single-feature__description {
  color: #6E7A84;
}
.single-feature__description img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-feature__cta_button {
  display: flex;
  margin: 2em 0 0;
}
.single-feature__cta_button.subscribe-btn {
  margin-bottom: 2em;
}
.paragraph--type--impact-statistic-feature {
  background-image: url("../images/brooke-cagle-WHWYBmtn3_0-unsplash_1.jpg");
  padding: 0;
  margin: 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.paragraph--type--impact-statistic-feature .border-svg-top {
  position: absolute;
  top: -4px;
  right: 0;
  bottom: auto;
  left: 0;
}
.paragraph--type--impact-statistic-feature .border-svg-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  top: auto;
  left: 0;
}
.paragraph--type--impact-statistic-feature .statistics {
  color: #FFFFFF;
  position: relative;
  padding: 6rem 0;
  background-image: url(../images/impact-border-svg-top.svg), url(../images/impact-border-svg-bottom.svg);
  background-repeat: no-repeat;
  background-size: 105%;
  background-position: center -1px, center calc(100% + 1px);
}
@media (min-width: 992px) {
  .paragraph--type--impact-statistic-feature .statistics {
    padding: 8rem 0;
  }
}
.paragraph--type--impact-statistic-feature .statistics__information {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.paragraph--type--impact-statistic-feature .statistics__features {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.paragraph--type--impact-statistic-feature .statistics__features > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.paragraph--type--impact-statistic-feature .statistics__pair-row {
  display: flex;
  align-items: center;
  justify-content: start;
}
.paragraph--type--impact-statistic-feature .statistics__number {
  height: 100%;
  align-items: center;
  padding: 0 1rem;
}
.paragraph--type--impact-statistic-feature .statistics__label > div {
  margin: 0;
  align-items: center;
  padding: 0 1rem;
}
.paragraph--type--impact-statistic-feature .field__label.font-weight-bold {
  display: none;
}

.paragraph.paragraph--type--_-features ._-features__field-features {
  display: flex;
  flex-wrap: wrap;
  padding: 1.77778em 0;
}
.paragraph.paragraph--type--_-features ._-features__field-features > .field__item {
  flex: 0 0 50%;
  padding: 0 3%;
  margin: 0 !important;
  width: 50%;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature {
  display: grid;
  grid-template-columns: 4rem auto;
  grid-template-rows: auto;
  grid-column-gap: 1.5rem;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature .label {
  grid-column-start: 2;
  grid-row-start: 1;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature .label .feature__field-label {
  color: #FFFFFF;
  margin: 0;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature .icon {
  grid-column-start: 1;
  grid-row-start: 1;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature .icon svg {
  width: 4rem;
  height: 4rem;
}
.paragraph.paragraph--type--_-features .paragraph--type--feature .description {
  grid-column-start: 2;
  grid-row-start: 2;
}

.impact-statistic-feature__field-description {
  max-width: 56rem;
}

.paragraph--type--_-page-links {
  padding: 4rem 0 0;
}

.paragraph-page-link-wrapper {
  max-width: 80rem;
}

._-page-links__field-page-links .field__items {
  display: flex;
  flex-wrap: wrap;
}
._-page-links__field-page-links .field__item {
  flex: 0 0 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  ._-page-links__field-page-links .field__item {
    flex: 0 0 50%;
  }
}
._-page-links__field-page-links .field__item.paragraph + .field__item.paragraph {
  margin-top: 0;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link {
  height: 100%;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
  color: #2E3236;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  text-decoration: none;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a:hover {
  border-color: #56B2CB;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a:hover .link-title::after {
  transform: translate(1rem, -50%);
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a.active {
  background-color: #56B2CB;
  border: 2px solid #56B2CB;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title {
  color: #FFFFFF;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-title::after {
  top: 50% !important;
}
._-page-links__field-page-links .field__item .paragraph--type--page-link a.active .link-subtitle {
  color: #FFFFFF;
}
._-page-links__field-page-links .link-title {
  margin: 0;
  display: inline-flex;
}
._-page-links__field-page-links .link-title::after {
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}
.recent-posts__field-related-content .field__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.recent-posts__field-related-content .field__items .field__item.paragraph {
  flex: 0 0 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  .recent-posts__field-related-content .field__items .field__item.paragraph {
    flex: 0 0 33.3333%;
  }
}
.recent-posts__field-related-content .field__items .field__item.paragraph + .field__item.paragraph {
  margin: 0;
}

.recent-posts__field-title {
  text-align: center;
  padding: 4rem 0 0;
}

.paragraph-post {
  height: 100%;
}
.paragraph-post-box {
  background-color: #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  box-shadow: 0px 1rem 2.5rem rgba(0, 0, 0, 0.15);
  color: #2E3236;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 4rem;
  text-decoration: none;
}
.paragraph-post-box:hover {
  border-color: #56B2CB;
  color: #2E3236;
  text-decoration: none;
}
.paragraph-post-box:hover .paragraph-post-readmore::after {
  transform: translateX(0.5em);
}
.paragraph-post-subtitle {
  margin-bottom: 2rem;
}
.paragraph-post-readmore {
  color: #56B2CB;
  display: flex;
  font-size: 1.4rem;
  letter-spacing: 0.14rem;
  line-height: 1;
  margin: 0;
}
.paragraph-post-readmore::after {
  height: auto;
  transform: translateX(0em);
}

#rotating-button {
  position: absolute;
  left: 50%;
  bottom: auto;
  top: -9.9rem;
  transform: translateX(-50%);
  text-decoration: none;
}
@media (min-width: 992px) {
  #rotating-button {
    bottom: 5rem;
    top: auto;
  }
}
#rotating-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  background-color: #2E3236;
  -webkit-mask: url("../images/icons/GO_ARROW_ICON_DARK.svg") no-repeat center center;
          mask: url("../images/icons/GO_ARROW_ICON_DARK.svg") no-repeat center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: all 0.2s ease-in-out;
}
#rotating-button svg {
  width: 200px;
  height: auto;
  font-size: 58px;
  letter-spacing: 28px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  fill: #2E3236;
  transition: all 0.2s ease-in-out;
}
#rotating-button:hover {
  text-decoration: none;
}
#rotating-button:hover::before {
  background-color: #56B2CB;
}
#rotating-button:hover svg {
  fill: #56B2CB;
}

.page__bottom .block--contactform {
  position: relative;
}
.page__bottom .contact-form-block {
  background: #56B2CB;
  padding: 5rem 2.5rem;
}
@media (min-width: 992px) {
  .page__bottom .contact-form-block {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .page__bottom .contact-form-block .container, .page__bottom .contact-form-block .articles-listing-container, .page__bottom .contact-form-block .products-listing .views-embed-default-container, .products-listing .page__bottom .contact-form-block .views-embed-default-container, .page__bottom .contact-form-block .testimonials-listing .views-infinite-scroll-content-wrapper, .testimonials-listing .page__bottom .contact-form-block .views-infinite-scroll-content-wrapper, .page__bottom .contact-form-block .single-cta-content, .page__bottom .contact-form-block .single-feature, .page__bottom .contact-form-block .paragraph-page-link-wrapper {
    padding: 0;
  }
}
.page__bottom .contact-form-block--border-svg-top {
  display: block;
  margin: -8rem 0 -1px;
  overflow: hidden;
  height: 10rem;
  position: relative;
  z-index: 99;
}
@media (min-width: 992px) {
  .page__bottom .contact-form-block--border-svg-top {
    height: 15rem;
  }
}
.page__bottom .contact-form-block--title {
  color: #FFFFFF;
  max-width: 33rem;
}
.page__bottom .contact-form-block--title::before {
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .page__bottom .contact-form-block--title::before {
    margin-bottom: 3rem;
  }
}
.page__bottom .contact-form-block #contact-message-contact-form-form {
  background: #56B2CB;
  max-width: initial;
  padding: 0;
}
.page__bottom .contact-form-block #contact-message-contact-form-form label {
  display: none;
}
.page__bottom .contact-form-block #contact-message-contact-form-form select[name],
.page__bottom .contact-form-block #contact-message-contact-form-form textarea[name],
.page__bottom .contact-form-block #contact-message-contact-form-form input[type]:not([type=hidden]) {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.page__bottom .contact-form-block #contact-message-contact-form-form select[name]::-moz-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form textarea[name]::-moz-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form input[type]:not([type=hidden])::-moz-placeholder {
  color: #FFFFFF;
}
.page__bottom .contact-form-block #contact-message-contact-form-form select[name]:-ms-input-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form textarea[name]:-ms-input-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form input[type]:not([type=hidden]):-ms-input-placeholder {
  color: #FFFFFF;
}
.page__bottom .contact-form-block #contact-message-contact-form-form select[name]::-ms-input-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form textarea[name]::-ms-input-placeholder, .page__bottom .contact-form-block #contact-message-contact-form-form input[type]:not([type=hidden])::-ms-input-placeholder {
  color: #FFFFFF;
}
.page__bottom .contact-form-block #contact-message-contact-form-form select[name]::placeholder,
.page__bottom .contact-form-block #contact-message-contact-form-form textarea[name]::placeholder,
.page__bottom .contact-form-block #contact-message-contact-form-form input[type]:not([type=hidden])::placeholder {
  color: #FFFFFF;
}
@media (min-width: 992px) {
  .page__bottom .contact-form-block #contact-message-contact-form-form .layout__region {
    display: flex;
    flex-wrap: wrap;
  }
}
.page__bottom .contact-form-block #contact-message-contact-form-form .layout__region #edit-field-current-url-wrapper {
  display: none;
}
.page__bottom .contact-form-block #contact-message-contact-form-form .layout__region #edit-submit {
  min-width: 100%;
}
.page__bottom .contact-form-block .field--widget-field-hidden-string-textfield {
  display: none !important;
}

.resumator-advanced-widget {
  min-height: 50rem;
}