@charset "UTF-8"; /*!
 * 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 {
  20%,
  53%,
  80%,
  from,
  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: translate3d(0, 0, 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 {
  20%,
  53%,
  80%,
  from,
  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: translate3d(0, 0, 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 {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  50%,
  from,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -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: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  11.1%,
  from,
  to {
    transform: translate3d(0, 0, 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.39062deg) skewY(0.39062deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  11.1%,
  from,
  to {
    transform: translate3d(0, 0, 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.39062deg) skewY(0.39062deg);
  }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.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 {
  20%,
  40%,
  60%,
  80%,
  from,
  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: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  20%,
  40%,
  60%,
  80%,
  from,
  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: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  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: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  60%,
  75%,
  90%,
  from,
  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: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  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: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  60%,
  75%,
  90%,
  from,
  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: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  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);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  60%,
  75%,
  90%,
  from,
  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);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  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);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  60%,
  75%,
  90%,
  from,
  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);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -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 {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 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 {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -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 {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-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 {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    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 {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate3d(0, 0, 1, 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 {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    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 {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 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 (print), (prefers-reduced-motion: reduce) {
  .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;
  }
}
@font-face {
  font-family: UniversLTStd-ThinUltraCn;
  src: url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-ThinUltraCn.svg#UniversLTStd-ThinUltraCn)
      format("svg");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-LightCn;
  src: url(../fonts/UniversLTStd/UniversLTStd-LightCn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-LightCn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCn.svg#UniversLTStd-LightCn)
      format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Light;
  src: url(../fonts/UniversLTStd/UniversLTStd-Light.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Light.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Light.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Light.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Light.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Light.svg#UniversLTStd-Light)
      format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-LightCnObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightCnObl.svg#UniversLTStd-LightCnObl)
      format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-LightObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-LightObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-LightObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-LightObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-LightObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightObl.svg#UniversLTStd-LightObl)
      format("svg");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-LightUltraCn;
  src: url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-LightUltraCn.svg#UniversLTStd-LightUltraCn)
      format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd;
  src: url(../fonts/UniversLTStd/UniversLTStd.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd.svg#UniversLTStd) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-UltraCn;
  src: url(../fonts/UniversLTStd/UniversLTStd-UltraCn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-UltraCn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-UltraCn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-UltraCn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-UltraCn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-UltraCn.svg#UniversLTStd-UltraCn)
      format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-CnObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-CnObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-CnObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-CnObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-CnObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-CnObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-CnObl.svg#UniversLTStd-CnObl)
      format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Obl;
  src: url(../fonts/UniversLTStd/UniversLTStd-Obl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Obl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Obl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Obl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Obl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Obl.svg#UniversLTStd-Obl)
      format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Cn;
  src: url(../fonts/UniversLTStd/UniversLTStd-Cn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Cn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Cn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Cn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Cn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Cn.svg#UniversLTStd-Cn) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Ex;
  src: url(../fonts/UniversLTStd/UniversLTStd-Ex.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Ex.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Ex.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Ex.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Ex.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Ex.svg#UniversLTStd-Ex) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-ExObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-ExObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-ExObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-ExObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-ExObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-ExObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-ExObl.svg#UniversLTStd-ExObl)
      format("svg");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BoldObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldObl.svg#UniversLTStd-BoldObl)
      format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BoldCnObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCnObl.svg#UniversLTStd-BoldCnObl)
      format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Bold;
  src: url(../fonts/UniversLTStd/UniversLTStd-Bold.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Bold.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Bold.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Bold.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Bold.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Bold.svg#UniversLTStd-Bold)
      format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BoldEx;
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldEx.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldEx.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldEx.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldEx.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldEx.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldEx.svg#UniversLTStd-BoldEx)
      format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BoldCn;
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldCn.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldCn.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCn.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCn.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCn.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldCn.svg#UniversLTStd-BoldCn)
      format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BoldExObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BoldExObl.svg#UniversLTStd-BoldExObl)
      format("svg");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-Black;
  src: url(../fonts/UniversLTStd/UniversLTStd-Black.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-Black.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-Black.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-Black.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-Black.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-Black.svg#UniversLTStd-Black)
      format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-XBlackExObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackExObl.svg#UniversLTStd-XBlackExObl)
      format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-XBlackEx;
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackEx.svg#UniversLTStd-XBlackEx)
      format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-XBlack;
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlack.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlack.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlack.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlack.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlack.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlack.svg#UniversLTStd-XBlack)
      format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BlackEx;
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackEx.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackEx.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackEx.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackEx.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackEx.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackEx.svg#UniversLTStd-BlackEx)
      format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-XBlackObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-XBlackObl.svg#UniversLTStd-XBlackObl)
      format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BlackObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackObl.svg#UniversLTStd-BlackObl)
      format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: UniversLTStd-BlackExObl;
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.eot);
  src: url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.eot?#iefix)
      format("embedded-opentype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.woff2) format("woff2"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.woff) format("woff"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.ttf) format("truetype"),
    url(../fonts/UniversLTStd/UniversLTStd-BlackExObl.svg#UniversLTStd-BlackExObl)
      format("svg");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: icomoon;
  src: url(../fonts/iconFont/icomoon.eot?lc4tcf);
  src: url(../fonts/iconFont/icomoon.eot?lc4tcf#iefix)
      format("embedded-opentype"),
    url(../fonts/iconFont/icomoon.ttf?lc4tcf) format("truetype"),
    url(../fonts/iconFont/icomoon.woff?lc4tcf) format("woff"),
    url(../fonts/iconFont/icomoon.svg?lc4tcf#icomoon) format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
[class*=" icon-"],
[class^="icon-"] {
  font-family: icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-link:before {
  content: "\e91e";
}
.icon-Email:before {
  content: "\e91c";
}
.icon-Phone:before {
  content: "\e91d";
}
.icon-check::before {
  content: "\e91b";
}
.icon-close::before {
  content: "\e900";
}
.icon-close-circle::before {
  content: "\e901";
}
.icon-angle-up::before {
  content: "\e902";
}
.icon-angle-down::before {
  content: "\e903";
}
.icon-angle-left::before {
  content: "\e904";
}
.icon-angle-right::before {
  content: "\e905";
}
.icon-arrow-up::before {
  content: "\e907";
}
.icon-arrow-down::before {
  content: "\e906";
}
.icon-arrow-left::before {
  content: "\e909";
}
.icon-arrow-right::before {
  content: "\e908";
}
.icon-caret-up::before {
  content: "\e90a";
}
.icon-caret-down::before {
  content: "\e90b";
}
.icon-caret-left::before {
  content: "\e90c";
}
.icon-caret-right::before {
  content: "\e90d";
}
.icon-select::before {
  content: "\e90e";
}
.icon-check-circle::before {
  content: "\e90f";
}
.icon-info-circle::before {
  content: "\e910";
}
.icon-exclamation-circle::before {
  content: "\e911";
}
.icon-flag::before {
  content: "\e912";
}
.icon-globe::before {
  content: "\e913";
}
.icon-search::before {
  content: "\e914";
}
.icon-share::before {
  content: "\e915";
}
.fa fa-facebook::before {
  content: "\e916";
}
.icon-twitter::before {
  content: "\e917";
}
.fa fa-youtube::before {
  content: "\e918";
}
.icon-instagram::before {
  content: "\e919";
}
.fa fa-linkedin::before {
  content: "\e91a";
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  -webkit-overflow-scrolling: touch;
}
html {
  font-size: 16px;
}
html .mt-5 {
  margin-top: 0.3125rem;
}
@media (max-width: 991px) {
  html .mt-5 {
    margin-top: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html .mt-5 {
    margin-top: 0.17361rem;
  }
}
html .mt-10 {
  margin-top: 0.625rem;
}
@media (max-width: 991px) {
  html .mt-10 {
    margin-top: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html .mt-10 {
    margin-top: 0.34722rem;
  }
}
html .mt-15 {
  margin-top: 0.9375rem;
}
@media (max-width: 991px) {
  html .mt-15 {
    margin-top: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html .mt-15 {
    margin-top: 0.52083rem;
  }
}
html .mt-20 {
  margin-top: 1.25rem;
}
@media (max-width: 991px) {
  html .mt-20 {
    margin-top: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html .mt-20 {
    margin-top: 0.69444rem;
  }
}
html .mt-25 {
  margin-top: 1.5625rem;
}
@media (max-width: 991px) {
  html .mt-25 {
    margin-top: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html .mt-25 {
    margin-top: 0.86806rem;
  }
}
html .mt-30 {
  margin-top: 1.875rem;
}
@media (max-width: 991px) {
  html .mt-30 {
    margin-top: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html .mt-30 {
    margin-top: 1.04167rem;
  }
}
html .mt-35 {
  margin-top: 2.1875rem;
}
@media (max-width: 991px) {
  html .mt-35 {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html .mt-35 {
    margin-top: 1.21528rem;
  }
}
html .mt-40 {
  margin-top: 2.5rem;
}
@media (max-width: 991px) {
  html .mt-40 {
    margin-top: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html .mt-40 {
    margin-top: 1.38889rem;
  }
}
html .mt-45 {
  margin-top: 2.8125rem;
}
@media (max-width: 991px) {
  html .mt-45 {
    margin-top: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html .mt-45 {
    margin-top: 1.5625rem;
  }
}
html .mt-50 {
  margin-top: 3.125rem;
}
@media (max-width: 991px) {
  html .mt-50 {
    margin-top: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html .mt-50 {
    margin-top: 1.73611rem;
  }
}
html .mt-55 {
  margin-top: 3.4375rem;
}
@media (max-width: 991px) {
  html .mt-55 {
    margin-top: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html .mt-55 {
    margin-top: 1.90972rem;
  }
}
html .mt-60 {
  margin-top: 3.75rem;
}
@media (max-width: 991px) {
  html .mt-60 {
    margin-top: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html .mt-60 {
    margin-top: 2.08333rem;
  }
}
html .mt-65 {
  margin-top: 4.0625rem;
}
@media (max-width: 991px) {
  html .mt-65 {
    margin-top: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html .mt-65 {
    margin-top: 2.25694rem;
  }
}
html .mt-70 {
  margin-top: 4.375rem;
}
@media (max-width: 991px) {
  html .mt-70 {
    margin-top: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .mt-70 {
    margin-top: 2.43056rem;
  }
}
html .mt-75 {
  margin-top: 4.6875rem;
}
@media (max-width: 991px) {
  html .mt-75 {
    margin-top: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html .mt-75 {
    margin-top: 2.60417rem;
  }
}
html .mt-80 {
  margin-top: 5rem;
}
@media (max-width: 991px) {
  html .mt-80 {
    margin-top: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html .mt-80 {
    margin-top: 2.77778rem;
  }
}
html .mt-85 {
  margin-top: 5.3125rem;
}
@media (max-width: 991px) {
  html .mt-85 {
    margin-top: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html .mt-85 {
    margin-top: 2.95139rem;
  }
}
html .mt-90 {
  margin-top: 5.625rem;
}
@media (max-width: 991px) {
  html .mt-90 {
    margin-top: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html .mt-90 {
    margin-top: 3.125rem;
  }
}
html .mt-95 {
  margin-top: 5.9375rem;
}
@media (max-width: 991px) {
  html .mt-95 {
    margin-top: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html .mt-95 {
    margin-top: 3.29861rem;
  }
}
html .mt-100 {
  margin-top: 6.25rem;
}
@media (max-width: 991px) {
  html .mt-100 {
    margin-top: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html .mt-100 {
    margin-top: 3.47222rem;
  }
}
html .mt-105 {
  margin-top: 6.5625rem;
}
@media (max-width: 1200px) {
  html .mt-105 {
    margin-top: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html .mt-105 {
    margin-top: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html .mt-105 {
    margin-top: 1.82292rem;
  }
}
html .mt-110 {
  margin-top: 6.875rem;
}
@media (max-width: 1200px) {
  html .mt-110 {
    margin-top: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html .mt-110 {
    margin-top: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .mt-110 {
    margin-top: 1.90972rem;
  }
}
html .mt-115 {
  margin-top: 7.1875rem;
}
@media (max-width: 1200px) {
  html .mt-115 {
    margin-top: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html .mt-115 {
    margin-top: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html .mt-115 {
    margin-top: 1.99653rem;
  }
}
html .mt-120 {
  margin-top: 7.5rem;
}
@media (max-width: 1200px) {
  html .mt-120 {
    margin-top: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html .mt-120 {
    margin-top: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html .mt-120 {
    margin-top: 2.08333rem;
  }
}
html .mt-125 {
  margin-top: 7.8125rem;
}
@media (max-width: 1200px) {
  html .mt-125 {
    margin-top: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html .mt-125 {
    margin-top: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html .mt-125 {
    margin-top: 2.17014rem;
  }
}
html .mt-130 {
  margin-top: 8.125rem;
}
@media (max-width: 1200px) {
  html .mt-130 {
    margin-top: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html .mt-130 {
    margin-top: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html .mt-130 {
    margin-top: 2.25694rem;
  }
}
html .mt-135 {
  margin-top: 8.4375rem;
}
@media (max-width: 1200px) {
  html .mt-135 {
    margin-top: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html .mt-135 {
    margin-top: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html .mt-135 {
    margin-top: 2.34375rem;
  }
}
html .mt-140 {
  margin-top: 8.75rem;
}
@media (max-width: 1200px) {
  html .mt-140 {
    margin-top: 6.25rem;
  }
}
@media (max-width: 991px) {
  html .mt-140 {
    margin-top: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html .mt-140 {
    margin-top: 2.43056rem;
  }
}
html .mt-145 {
  margin-top: 9.0625rem;
}
@media (max-width: 1200px) {
  html .mt-145 {
    margin-top: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html .mt-145 {
    margin-top: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html .mt-145 {
    margin-top: 2.51736rem;
  }
}
html .mt-150 {
  margin-top: 9.375rem;
}
@media (max-width: 1200px) {
  html .mt-150 {
    margin-top: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html .mt-150 {
    margin-top: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html .mt-150 {
    margin-top: 2.60417rem;
  }
}
html .mt-155 {
  margin-top: 9.6875rem;
}
@media (max-width: 1200px) {
  html .mt-155 {
    margin-top: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html .mt-155 {
    margin-top: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html .mt-155 {
    margin-top: 2.69097rem;
  }
}
html .mt-160 {
  margin-top: 10rem;
}
@media (max-width: 1200px) {
  html .mt-160 {
    margin-top: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html .mt-160 {
    margin-top: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html .mt-160 {
    margin-top: 2.77778rem;
  }
}
html .mt-165 {
  margin-top: 10.3125rem;
}
@media (max-width: 1200px) {
  html .mt-165 {
    margin-top: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html .mt-165 {
    margin-top: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html .mt-165 {
    margin-top: 2.86458rem;
  }
}
html .mt-170 {
  margin-top: 10.625rem;
}
@media (max-width: 1200px) {
  html .mt-170 {
    margin-top: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html .mt-170 {
    margin-top: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html .mt-170 {
    margin-top: 2.95139rem;
  }
}
html .mt-175 {
  margin-top: 10.9375rem;
}
@media (max-width: 1200px) {
  html .mt-175 {
    margin-top: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html .mt-175 {
    margin-top: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html .mt-175 {
    margin-top: 3.03819rem;
  }
}
html .mt-180 {
  margin-top: 11.25rem;
}
@media (max-width: 1200px) {
  html .mt-180 {
    margin-top: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html .mt-180 {
    margin-top: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html .mt-180 {
    margin-top: 3.125rem;
  }
}
html .mt-185 {
  margin-top: 11.5625rem;
}
@media (max-width: 1200px) {
  html .mt-185 {
    margin-top: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html .mt-185 {
    margin-top: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html .mt-185 {
    margin-top: 3.21181rem;
  }
}
html .mt-190 {
  margin-top: 11.875rem;
}
@media (max-width: 1200px) {
  html .mt-190 {
    margin-top: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html .mt-190 {
    margin-top: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html .mt-190 {
    margin-top: 3.29861rem;
  }
}
html .mt-195 {
  margin-top: 12.1875rem;
}
@media (max-width: 1200px) {
  html .mt-195 {
    margin-top: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html .mt-195 {
    margin-top: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html .mt-195 {
    margin-top: 3.38542rem;
  }
}
html .mt-200 {
  margin-top: 12.5rem;
}
@media (max-width: 1200px) {
  html .mt-200 {
    margin-top: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html .mt-200 {
    margin-top: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html .mt-200 {
    margin-top: 3.47222rem;
  }
}
html .mt-205 {
  margin-top: 12.8125rem;
}
@media (max-width: 1200px) {
  html .mt-205 {
    margin-top: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html .mt-205 {
    margin-top: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html .mt-205 {
    margin-top: 3.55903rem;
  }
}
html .mt-210 {
  margin-top: 13.125rem;
}
@media (max-width: 1200px) {
  html .mt-210 {
    margin-top: 9.375rem;
  }
}
@media (max-width: 991px) {
  html .mt-210 {
    margin-top: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html .mt-210 {
    margin-top: 3.64583rem;
  }
}
html .mt-215 {
  margin-top: 13.4375rem;
}
@media (max-width: 1200px) {
  html .mt-215 {
    margin-top: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html .mt-215 {
    margin-top: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html .mt-215 {
    margin-top: 3.73264rem;
  }
}
html .mt-220 {
  margin-top: 13.75rem;
}
@media (max-width: 1200px) {
  html .mt-220 {
    margin-top: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html .mt-220 {
    margin-top: 6.25rem;
  }
}
@media (max-width: 767px) {
  html .mt-220 {
    margin-top: 3.81944rem;
  }
}
html .mt-225 {
  margin-top: 14.0625rem;
}
@media (max-width: 1200px) {
  html .mt-225 {
    margin-top: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html .mt-225 {
    margin-top: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html .mt-225 {
    margin-top: 3.90625rem;
  }
}
html .mt-230 {
  margin-top: 14.375rem;
}
@media (max-width: 1200px) {
  html .mt-230 {
    margin-top: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html .mt-230 {
    margin-top: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html .mt-230 {
    margin-top: 3.99306rem;
  }
}
html .mt-235 {
  margin-top: 14.6875rem;
}
@media (max-width: 1200px) {
  html .mt-235 {
    margin-top: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html .mt-235 {
    margin-top: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html .mt-235 {
    margin-top: 4.07986rem;
  }
}
html .mt-240 {
  margin-top: 15rem;
}
@media (max-width: 1200px) {
  html .mt-240 {
    margin-top: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html .mt-240 {
    margin-top: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html .mt-240 {
    margin-top: 4.16667rem;
  }
}
html .mt-245 {
  margin-top: 15.3125rem;
}
@media (max-width: 1200px) {
  html .mt-245 {
    margin-top: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html .mt-245 {
    margin-top: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html .mt-245 {
    margin-top: 4.25347rem;
  }
}
html .mt-250 {
  margin-top: 15.625rem;
}
@media (max-width: 1200px) {
  html .mt-250 {
    margin-top: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html .mt-250 {
    margin-top: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html .mt-250 {
    margin-top: 4.34028rem;
  }
}
html .mt-255 {
  margin-top: 15.9375rem;
}
@media (max-width: 1200px) {
  html .mt-255 {
    margin-top: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html .mt-255 {
    margin-top: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html .mt-255 {
    margin-top: 4.42708rem;
  }
}
html .mt-260 {
  margin-top: 16.25rem;
}
@media (max-width: 1200px) {
  html .mt-260 {
    margin-top: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html .mt-260 {
    margin-top: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html .mt-260 {
    margin-top: 4.51389rem;
  }
}
html .mt-265 {
  margin-top: 16.5625rem;
}
@media (max-width: 1200px) {
  html .mt-265 {
    margin-top: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html .mt-265 {
    margin-top: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html .mt-265 {
    margin-top: 4.60069rem;
  }
}
html .mt-270 {
  margin-top: 16.875rem;
}
@media (max-width: 1200px) {
  html .mt-270 {
    margin-top: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html .mt-270 {
    margin-top: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html .mt-270 {
    margin-top: 4.6875rem;
  }
}
html .mt-275 {
  margin-top: 17.1875rem;
}
@media (max-width: 1200px) {
  html .mt-275 {
    margin-top: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html .mt-275 {
    margin-top: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html .mt-275 {
    margin-top: 4.77431rem;
  }
}
html .mt-280 {
  margin-top: 17.5rem;
}
@media (max-width: 1200px) {
  html .mt-280 {
    margin-top: 12.5rem;
  }
}
@media (max-width: 991px) {
  html .mt-280 {
    margin-top: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html .mt-280 {
    margin-top: 4.86111rem;
  }
}
html .mt-285 {
  margin-top: 17.8125rem;
}
@media (max-width: 1200px) {
  html .mt-285 {
    margin-top: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html .mt-285 {
    margin-top: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html .mt-285 {
    margin-top: 4.94792rem;
  }
}
html .mt-290 {
  margin-top: 18.125rem;
}
@media (max-width: 1200px) {
  html .mt-290 {
    margin-top: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html .mt-290 {
    margin-top: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html .mt-290 {
    margin-top: 5.03472rem;
  }
}
html .mt-295 {
  margin-top: 18.4375rem;
}
@media (max-width: 1200px) {
  html .mt-295 {
    margin-top: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html .mt-295 {
    margin-top: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html .mt-295 {
    margin-top: 5.12153rem;
  }
}
html .mt-300 {
  margin-top: 18.75rem;
}
@media (max-width: 1200px) {
  html .mt-300 {
    margin-top: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html .mt-300 {
    margin-top: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html .mt-300 {
    margin-top: 5.20833rem;
  }
}
html .mb-5 {
  margin-bottom: 0.3125rem;
}
@media (max-width: 991px) {
  html .mb-5 {
    margin-bottom: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html .mb-5 {
    margin-bottom: 0.17361rem;
  }
}
html .mb-10 {
  margin-bottom: 0.625rem;
}
@media (max-width: 991px) {
  html .mb-10 {
    margin-bottom: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html .mb-10 {
    margin-bottom: 0.34722rem;
  }
}
html .mb-15 {
  margin-bottom: 0.9375rem;
}
@media (max-width: 991px) {
  html .mb-15 {
    margin-bottom: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html .mb-15 {
    margin-bottom: 0.52083rem;
  }
}
html .mb-20 {
  margin-bottom: 1.25rem;
}
@media (max-width: 991px) {
  html .mb-20 {
    margin-bottom: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html .mb-20 {
    margin-bottom: 0.69444rem;
  }
}
html .mb-25 {
  margin-bottom: 1.5625rem;
}
@media (max-width: 991px) {
  html .mb-25 {
    margin-bottom: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html .mb-25 {
    margin-bottom: 0.86806rem;
  }
}
html .mb-30 {
  margin-bottom: 1.875rem;
}
@media (max-width: 991px) {
  html .mb-30 {
    margin-bottom: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html .mb-30 {
    margin-bottom: 1.04167rem;
  }
}
html .mb-35 {
  margin-bottom: 2.1875rem;
}
@media (max-width: 991px) {
  html .mb-35 {
    margin-bottom: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html .mb-35 {
    margin-bottom: 1.21528rem;
  }
}
html .mb-40 {
  margin-bottom: 2.5rem;
}
@media (max-width: 991px) {
  html .mb-40 {
    margin-bottom: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html .mb-40 {
    margin-bottom: 1.38889rem;
  }
}
html .mb-45 {
  margin-bottom: 2.8125rem;
}
@media (max-width: 991px) {
  html .mb-45 {
    margin-bottom: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html .mb-45 {
    margin-bottom: 1.5625rem;
  }
}
html .mb-50 {
  margin-bottom: 3.125rem;
}
@media (max-width: 991px) {
  html .mb-50 {
    margin-bottom: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html .mb-50 {
    margin-bottom: 1.73611rem;
  }
}
html .mb-55 {
  margin-bottom: 3.4375rem;
}
@media (max-width: 991px) {
  html .mb-55 {
    margin-bottom: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html .mb-55 {
    margin-bottom: 1.90972rem;
  }
}
html .mb-60 {
  margin-bottom: 3.75rem;
}
@media (max-width: 991px) {
  html .mb-60 {
    margin-bottom: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html .mb-60 {
    margin-bottom: 2.08333rem;
  }
}
html .mb-65 {
  margin-bottom: 4.0625rem;
}
@media (max-width: 991px) {
  html .mb-65 {
    margin-bottom: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html .mb-65 {
    margin-bottom: 2.25694rem;
  }
}
html .mb-70 {
  margin-bottom: 4.375rem;
}
@media (max-width: 991px) {
  html .mb-70 {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .mb-70 {
    margin-bottom: 2.43056rem;
  }
}
html .mb-75 {
  margin-bottom: 4.6875rem;
}
@media (max-width: 991px) {
  html .mb-75 {
    margin-bottom: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html .mb-75 {
    margin-bottom: 2.60417rem;
  }
}
html .mb-80 {
  margin-bottom: 5rem;
}
@media (max-width: 991px) {
  html .mb-80 {
    margin-bottom: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html .mb-80 {
    margin-bottom: 2.77778rem;
  }
}
html .mb-85 {
  margin-bottom: 5.3125rem;
}
@media (max-width: 991px) {
  html .mb-85 {
    margin-bottom: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html .mb-85 {
    margin-bottom: 2.95139rem;
  }
}
html .mb-90 {
  margin-bottom: 5.625rem;
}
@media (max-width: 991px) {
  html .mb-90 {
    margin-bottom: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html .mb-90 {
    margin-bottom: 3.125rem;
  }
}
html .mb-95 {
  margin-bottom: 5.9375rem;
}
@media (max-width: 991px) {
  html .mb-95 {
    margin-bottom: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html .mb-95 {
    margin-bottom: 3.29861rem;
  }
}
html .mb-100 {
  margin-bottom: 6.25rem;
}
@media (max-width: 991px) {
  html .mb-100 {
    margin-bottom: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html .mb-100 {
    margin-bottom: 3.47222rem;
  }
}
html .mb-105 {
  margin-bottom: 6.5625rem;
}
@media (max-width: 1200px) {
  html .mb-105 {
    margin-bottom: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html .mb-105 {
    margin-bottom: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html .mb-105 {
    margin-bottom: 1.82292rem;
  }
}
html .mb-110 {
  margin-bottom: 6.875rem;
}
@media (max-width: 1200px) {
  html .mb-110 {
    margin-bottom: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html .mb-110 {
    margin-bottom: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .mb-110 {
    margin-bottom: 1.90972rem;
  }
}
html .mb-115 {
  margin-bottom: 7.1875rem;
}
@media (max-width: 1200px) {
  html .mb-115 {
    margin-bottom: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html .mb-115 {
    margin-bottom: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html .mb-115 {
    margin-bottom: 1.99653rem;
  }
}
html .mb-120 {
  margin-bottom: 7.5rem;
}
@media (max-width: 1200px) {
  html .mb-120 {
    margin-bottom: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html .mb-120 {
    margin-bottom: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html .mb-120 {
    margin-bottom: 2.08333rem;
  }
}
html .mb-125 {
  margin-bottom: 7.8125rem;
}
@media (max-width: 1200px) {
  html .mb-125 {
    margin-bottom: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html .mb-125 {
    margin-bottom: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html .mb-125 {
    margin-bottom: 2.17014rem;
  }
}
html .mb-130 {
  margin-bottom: 8.125rem;
}
@media (max-width: 1200px) {
  html .mb-130 {
    margin-bottom: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html .mb-130 {
    margin-bottom: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html .mb-130 {
    margin-bottom: 2.25694rem;
  }
}
html .mb-135 {
  margin-bottom: 8.4375rem;
}
@media (max-width: 1200px) {
  html .mb-135 {
    margin-bottom: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html .mb-135 {
    margin-bottom: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html .mb-135 {
    margin-bottom: 2.34375rem;
  }
}
html .mb-140 {
  margin-bottom: 8.75rem;
}
@media (max-width: 1200px) {
  html .mb-140 {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 991px) {
  html .mb-140 {
    margin-bottom: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html .mb-140 {
    margin-bottom: 2.43056rem;
  }
}
html .mb-145 {
  margin-bottom: 9.0625rem;
}
@media (max-width: 1200px) {
  html .mb-145 {
    margin-bottom: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html .mb-145 {
    margin-bottom: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html .mb-145 {
    margin-bottom: 2.51736rem;
  }
}
html .mb-150 {
  margin-bottom: 9.375rem;
}
@media (max-width: 1200px) {
  html .mb-150 {
    margin-bottom: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html .mb-150 {
    margin-bottom: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html .mb-150 {
    margin-bottom: 2.60417rem;
  }
}
html .mb-155 {
  margin-bottom: 9.6875rem;
}
@media (max-width: 1200px) {
  html .mb-155 {
    margin-bottom: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html .mb-155 {
    margin-bottom: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html .mb-155 {
    margin-bottom: 2.69097rem;
  }
}
html .mb-160 {
  margin-bottom: 10rem;
}
@media (max-width: 1200px) {
  html .mb-160 {
    margin-bottom: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html .mb-160 {
    margin-bottom: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html .mb-160 {
    margin-bottom: 2.77778rem;
  }
}
html .mb-165 {
  margin-bottom: 10.3125rem;
}
@media (max-width: 1200px) {
  html .mb-165 {
    margin-bottom: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html .mb-165 {
    margin-bottom: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html .mb-165 {
    margin-bottom: 2.86458rem;
  }
}
html .mb-170 {
  margin-bottom: 10.625rem;
}
@media (max-width: 1200px) {
  html .mb-170 {
    margin-bottom: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html .mb-170 {
    margin-bottom: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html .mb-170 {
    margin-bottom: 2.95139rem;
  }
}
html .mb-175 {
  margin-bottom: 10.9375rem;
}
@media (max-width: 1200px) {
  html .mb-175 {
    margin-bottom: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html .mb-175 {
    margin-bottom: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html .mb-175 {
    margin-bottom: 3.03819rem;
  }
}
html .mb-180 {
  margin-bottom: 11.25rem;
}
@media (max-width: 1200px) {
  html .mb-180 {
    margin-bottom: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html .mb-180 {
    margin-bottom: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html .mb-180 {
    margin-bottom: 3.125rem;
  }
}
html .mb-185 {
  margin-bottom: 11.5625rem;
}
@media (max-width: 1200px) {
  html .mb-185 {
    margin-bottom: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html .mb-185 {
    margin-bottom: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html .mb-185 {
    margin-bottom: 3.21181rem;
  }
}
html .mb-190 {
  margin-bottom: 11.875rem;
}
@media (max-width: 1200px) {
  html .mb-190 {
    margin-bottom: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html .mb-190 {
    margin-bottom: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html .mb-190 {
    margin-bottom: 3.29861rem;
  }
}
html .mb-195 {
  margin-bottom: 12.1875rem;
}
@media (max-width: 1200px) {
  html .mb-195 {
    margin-bottom: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html .mb-195 {
    margin-bottom: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html .mb-195 {
    margin-bottom: 3.38542rem;
  }
}
html .mb-200 {
  margin-bottom: 12.5rem;
}
@media (max-width: 1200px) {
  html .mb-200 {
    margin-bottom: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html .mb-200 {
    margin-bottom: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html .mb-200 {
    margin-bottom: 3.47222rem;
  }
}
html .mb-205 {
  margin-bottom: 12.8125rem;
}
@media (max-width: 1200px) {
  html .mb-205 {
    margin-bottom: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html .mb-205 {
    margin-bottom: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html .mb-205 {
    margin-bottom: 3.55903rem;
  }
}
html .mb-210 {
  margin-bottom: 13.125rem;
}
@media (max-width: 1200px) {
  html .mb-210 {
    margin-bottom: 9.375rem;
  }
}
@media (max-width: 991px) {
  html .mb-210 {
    margin-bottom: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html .mb-210 {
    margin-bottom: 3.64583rem;
  }
}
html .mb-215 {
  margin-bottom: 13.4375rem;
}
@media (max-width: 1200px) {
  html .mb-215 {
    margin-bottom: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html .mb-215 {
    margin-bottom: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html .mb-215 {
    margin-bottom: 3.73264rem;
  }
}
html .mb-220 {
  margin-bottom: 13.75rem;
}
@media (max-width: 1200px) {
  html .mb-220 {
    margin-bottom: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html .mb-220 {
    margin-bottom: 6.25rem;
  }
}
@media (max-width: 767px) {
  html .mb-220 {
    margin-bottom: 3.81944rem;
  }
}
html .mb-225 {
  margin-bottom: 14.0625rem;
}
@media (max-width: 1200px) {
  html .mb-225 {
    margin-bottom: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html .mb-225 {
    margin-bottom: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html .mb-225 {
    margin-bottom: 3.90625rem;
  }
}
html .mb-230 {
  margin-bottom: 14.375rem;
}
@media (max-width: 1200px) {
  html .mb-230 {
    margin-bottom: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html .mb-230 {
    margin-bottom: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html .mb-230 {
    margin-bottom: 3.99306rem;
  }
}
html .mb-235 {
  margin-bottom: 14.6875rem;
}
@media (max-width: 1200px) {
  html .mb-235 {
    margin-bottom: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html .mb-235 {
    margin-bottom: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html .mb-235 {
    margin-bottom: 4.07986rem;
  }
}
html .mb-240 {
  margin-bottom: 15rem;
}
@media (max-width: 1200px) {
  html .mb-240 {
    margin-bottom: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html .mb-240 {
    margin-bottom: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html .mb-240 {
    margin-bottom: 4.16667rem;
  }
}
html .mb-245 {
  margin-bottom: 15.3125rem;
}
@media (max-width: 1200px) {
  html .mb-245 {
    margin-bottom: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html .mb-245 {
    margin-bottom: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html .mb-245 {
    margin-bottom: 4.25347rem;
  }
}
html .mb-250 {
  margin-bottom: 15.625rem;
}
@media (max-width: 1200px) {
  html .mb-250 {
    margin-bottom: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html .mb-250 {
    margin-bottom: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html .mb-250 {
    margin-bottom: 4.34028rem;
  }
}
html .mb-255 {
  margin-bottom: 15.9375rem;
}
@media (max-width: 1200px) {
  html .mb-255 {
    margin-bottom: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html .mb-255 {
    margin-bottom: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html .mb-255 {
    margin-bottom: 4.42708rem;
  }
}
html .mb-260 {
  margin-bottom: 16.25rem;
}
@media (max-width: 1200px) {
  html .mb-260 {
    margin-bottom: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html .mb-260 {
    margin-bottom: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html .mb-260 {
    margin-bottom: 4.51389rem;
  }
}
html .mb-265 {
  margin-bottom: 16.5625rem;
}
@media (max-width: 1200px) {
  html .mb-265 {
    margin-bottom: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html .mb-265 {
    margin-bottom: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html .mb-265 {
    margin-bottom: 4.60069rem;
  }
}
html .mb-270 {
  margin-bottom: 16.875rem;
}
@media (max-width: 1200px) {
  html .mb-270 {
    margin-bottom: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html .mb-270 {
    margin-bottom: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html .mb-270 {
    margin-bottom: 4.6875rem;
  }
}
html .mb-275 {
  margin-bottom: 17.1875rem;
}
@media (max-width: 1200px) {
  html .mb-275 {
    margin-bottom: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html .mb-275 {
    margin-bottom: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html .mb-275 {
    margin-bottom: 4.77431rem;
  }
}
html .mb-280 {
  margin-bottom: 17.5rem;
}
@media (max-width: 1200px) {
  html .mb-280 {
    margin-bottom: 12.5rem;
  }
}
@media (max-width: 991px) {
  html .mb-280 {
    margin-bottom: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html .mb-280 {
    margin-bottom: 4.86111rem;
  }
}
html .mb-285 {
  margin-bottom: 17.8125rem;
}
@media (max-width: 1200px) {
  html .mb-285 {
    margin-bottom: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html .mb-285 {
    margin-bottom: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html .mb-285 {
    margin-bottom: 4.94792rem;
  }
}
html .mb-290 {
  margin-bottom: 18.125rem;
}
@media (max-width: 1200px) {
  html .mb-290 {
    margin-bottom: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html .mb-290 {
    margin-bottom: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html .mb-290 {
    margin-bottom: 5.03472rem;
  }
}
html .mb-295 {
  margin-bottom: 18.4375rem;
}
@media (max-width: 1200px) {
  html .mb-295 {
    margin-bottom: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html .mb-295 {
    margin-bottom: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html .mb-295 {
    margin-bottom: 5.12153rem;
  }
}
html .mb-300 {
  margin-bottom: 18.75rem;
}
@media (max-width: 1200px) {
  html .mb-300 {
    margin-bottom: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html .mb-300 {
    margin-bottom: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html .mb-300 {
    margin-bottom: 5.20833rem;
  }
}
html .pt-5 {
  padding-top: 0.3125rem;
}
@media (max-width: 991px) {
  html .pt-5 {
    padding-top: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html .pt-5 {
    padding-top: 0.17361rem;
  }
}
html .pt-10 {
  padding-top: 0.625rem;
}
@media (max-width: 991px) {
  html .pt-10 {
    padding-top: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html .pt-10 {
    padding-top: 0.34722rem;
  }
}
html .pt-15 {
  padding-top: 0.9375rem;
}
@media (max-width: 991px) {
  html .pt-15 {
    padding-top: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html .pt-15 {
    padding-top: 0.52083rem;
  }
}
html .pt-20 {
  padding-top: 1.25rem;
}
@media (max-width: 991px) {
  html .pt-20 {
    padding-top: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html .pt-20 {
    padding-top: 0.69444rem;
  }
}
html .pt-25 {
  padding-top: 1.5625rem;
}
@media (max-width: 991px) {
  html .pt-25 {
    padding-top: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html .pt-25 {
    padding-top: 0.86806rem;
  }
}
html .pt-30 {
  padding-top: 1.875rem;
}
@media (max-width: 991px) {
  html .pt-30 {
    padding-top: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html .pt-30 {
    padding-top: 1.04167rem;
  }
}
html .pt-35 {
  padding-top: 2.1875rem;
}
@media (max-width: 991px) {
  html .pt-35 {
    padding-top: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html .pt-35 {
    padding-top: 1.21528rem;
  }
}
html .pt-40 {
  padding-top: 2.5rem;
}
@media (max-width: 991px) {
  html .pt-40 {
    padding-top: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html .pt-40 {
    padding-top: 1.38889rem;
  }
}
html .pt-45 {
  padding-top: 2.8125rem;
}
@media (max-width: 991px) {
  html .pt-45 {
    padding-top: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html .pt-45 {
    padding-top: 1.5625rem;
  }
}
html .pt-50 {
  padding-top: 3.125rem;
}
@media (max-width: 991px) {
  html .pt-50 {
    padding-top: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html .pt-50 {
    padding-top: 1.73611rem;
  }
}
html .pt-55 {
  padding-top: 3.4375rem;
}
@media (max-width: 991px) {
  html .pt-55 {
    padding-top: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html .pt-55 {
    padding-top: 1.90972rem;
  }
}
html .pt-60 {
  padding-top: 3.75rem;
}
@media (max-width: 991px) {
  html .pt-60 {
    padding-top: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html .pt-60 {
    padding-top: 2.08333rem;
  }
}
html .pt-65 {
  padding-top: 4.0625rem;
}
@media (max-width: 991px) {
  html .pt-65 {
    padding-top: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html .pt-65 {
    padding-top: 2.25694rem;
  }
}
html .pt-70 {
  padding-top: 4.375rem;
}
@media (max-width: 991px) {
  html .pt-70 {
    padding-top: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .pt-70 {
    padding-top: 2.43056rem;
  }
}
html .pt-75 {
  padding-top: 4.6875rem;
}
@media (max-width: 991px) {
  html .pt-75 {
    padding-top: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html .pt-75 {
    padding-top: 2.60417rem;
  }
}
html .pt-80 {
  padding-top: 5rem;
}
@media (max-width: 991px) {
  html .pt-80 {
    padding-top: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html .pt-80 {
    padding-top: 2.77778rem;
  }
}
html .pt-85 {
  padding-top: 5.3125rem;
}
@media (max-width: 991px) {
  html .pt-85 {
    padding-top: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html .pt-85 {
    padding-top: 2.95139rem;
  }
}
html .pt-90 {
  padding-top: 5.625rem;
}
@media (max-width: 991px) {
  html .pt-90 {
    padding-top: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html .pt-90 {
    padding-top: 3.125rem;
  }
}
html .pt-95 {
  padding-top: 5.9375rem;
}
@media (max-width: 991px) {
  html .pt-95 {
    padding-top: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html .pt-95 {
    padding-top: 3.29861rem;
  }
}
html .pt-100 {
  padding-top: 6.25rem;
}
@media (max-width: 991px) {
  html .pt-100 {
    padding-top: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html .pt-100 {
    padding-top: 3.47222rem;
  }
}
html .pt-105 {
  padding-top: 6.5625rem;
}
@media (max-width: 1200px) {
  html .pt-105 {
    padding-top: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html .pt-105 {
    padding-top: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html .pt-105 {
    padding-top: 1.82292rem;
  }
}
html .pt-110 {
  padding-top: 6.875rem;
}
@media (max-width: 1200px) {
  html .pt-110 {
    padding-top: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html .pt-110 {
    padding-top: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .pt-110 {
    padding-top: 1.90972rem;
  }
}
html .pt-115 {
  padding-top: 7.1875rem;
}
@media (max-width: 1200px) {
  html .pt-115 {
    padding-top: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html .pt-115 {
    padding-top: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html .pt-115 {
    padding-top: 1.99653rem;
  }
}
html .pt-120 {
  padding-top: 7.5rem;
}
@media (max-width: 1200px) {
  html .pt-120 {
    padding-top: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html .pt-120 {
    padding-top: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html .pt-120 {
    padding-top: 2.08333rem;
  }
}
html .pt-125 {
  padding-top: 7.8125rem;
}
@media (max-width: 1200px) {
  html .pt-125 {
    padding-top: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html .pt-125 {
    padding-top: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html .pt-125 {
    padding-top: 2.17014rem;
  }
}
html .pt-130 {
  padding-top: 8.125rem;
}
@media (max-width: 1200px) {
  html .pt-130 {
    padding-top: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html .pt-130 {
    padding-top: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html .pt-130 {
    padding-top: 2.25694rem;
  }
}
html .pt-135 {
  padding-top: 8.4375rem;
}
@media (max-width: 1200px) {
  html .pt-135 {
    padding-top: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html .pt-135 {
    padding-top: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html .pt-135 {
    padding-top: 2.34375rem;
  }
}
html .pt-140 {
  padding-top: 8.75rem;
}
@media (max-width: 1200px) {
  html .pt-140 {
    padding-top: 6.25rem;
  }
}
@media (max-width: 991px) {
  html .pt-140 {
    padding-top: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html .pt-140 {
    padding-top: 2.43056rem;
  }
}
html .pt-145 {
  padding-top: 9.0625rem;
}
@media (max-width: 1200px) {
  html .pt-145 {
    padding-top: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html .pt-145 {
    padding-top: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html .pt-145 {
    padding-top: 2.51736rem;
  }
}
html .pt-150 {
  padding-top: 9.375rem;
}
@media (max-width: 1200px) {
  html .pt-150 {
    padding-top: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html .pt-150 {
    padding-top: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html .pt-150 {
    padding-top: 2.60417rem;
  }
}
html .pt-155 {
  padding-top: 9.6875rem;
}
@media (max-width: 1200px) {
  html .pt-155 {
    padding-top: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html .pt-155 {
    padding-top: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html .pt-155 {
    padding-top: 2.69097rem;
  }
}
html .pt-160 {
  padding-top: 10rem;
}
@media (max-width: 1200px) {
  html .pt-160 {
    padding-top: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html .pt-160 {
    padding-top: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html .pt-160 {
    padding-top: 2.77778rem;
  }
}
html .pt-165 {
  padding-top: 10.3125rem;
}
@media (max-width: 1200px) {
  html .pt-165 {
    padding-top: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html .pt-165 {
    padding-top: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html .pt-165 {
    padding-top: 2.86458rem;
  }
}
html .pt-170 {
  padding-top: 10.625rem;
}
@media (max-width: 1200px) {
  html .pt-170 {
    padding-top: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html .pt-170 {
    padding-top: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html .pt-170 {
    padding-top: 2.95139rem;
  }
}
html .pt-175 {
  padding-top: 10.9375rem;
}
@media (max-width: 1200px) {
  html .pt-175 {
    padding-top: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html .pt-175 {
    padding-top: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html .pt-175 {
    padding-top: 3.03819rem;
  }
}
html .pt-180 {
  padding-top: 11.25rem;
}
@media (max-width: 1200px) {
  html .pt-180 {
    padding-top: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html .pt-180 {
    padding-top: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html .pt-180 {
    padding-top: 3.125rem;
  }
}
html .pt-185 {
  padding-top: 11.5625rem;
}
@media (max-width: 1200px) {
  html .pt-185 {
    padding-top: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html .pt-185 {
    padding-top: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html .pt-185 {
    padding-top: 3.21181rem;
  }
}
html .pt-190 {
  padding-top: 11.875rem;
}
@media (max-width: 1200px) {
  html .pt-190 {
    padding-top: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html .pt-190 {
    padding-top: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html .pt-190 {
    padding-top: 3.29861rem;
  }
}
html .pt-195 {
  padding-top: 12.1875rem;
}
@media (max-width: 1200px) {
  html .pt-195 {
    padding-top: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html .pt-195 {
    padding-top: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html .pt-195 {
    padding-top: 3.38542rem;
  }
}
html .pt-200 {
  padding-top: 12.5rem;
}
@media (max-width: 1200px) {
  html .pt-200 {
    padding-top: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html .pt-200 {
    padding-top: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html .pt-200 {
    padding-top: 3.47222rem;
  }
}
html .pt-205 {
  padding-top: 12.8125rem;
}
@media (max-width: 1200px) {
  html .pt-205 {
    padding-top: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html .pt-205 {
    padding-top: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html .pt-205 {
    padding-top: 3.55903rem;
  }
}
html .pt-210 {
  padding-top: 13.125rem;
}
@media (max-width: 1200px) {
  html .pt-210 {
    padding-top: 9.375rem;
  }
}
@media (max-width: 991px) {
  html .pt-210 {
    padding-top: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html .pt-210 {
    padding-top: 3.64583rem;
  }
}
html .pt-215 {
  padding-top: 13.4375rem;
}
@media (max-width: 1200px) {
  html .pt-215 {
    padding-top: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html .pt-215 {
    padding-top: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html .pt-215 {
    padding-top: 3.73264rem;
  }
}
html .pt-220 {
  padding-top: 13.75rem;
}
@media (max-width: 1200px) {
  html .pt-220 {
    padding-top: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html .pt-220 {
    padding-top: 6.25rem;
  }
}
@media (max-width: 767px) {
  html .pt-220 {
    padding-top: 3.81944rem;
  }
}
html .pt-225 {
  padding-top: 14.0625rem;
}
@media (max-width: 1200px) {
  html .pt-225 {
    padding-top: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html .pt-225 {
    padding-top: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html .pt-225 {
    padding-top: 3.90625rem;
  }
}
html .pt-230 {
  padding-top: 14.375rem;
}
@media (max-width: 1200px) {
  html .pt-230 {
    padding-top: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html .pt-230 {
    padding-top: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html .pt-230 {
    padding-top: 3.99306rem;
  }
}
html .pt-235 {
  padding-top: 14.6875rem;
}
@media (max-width: 1200px) {
  html .pt-235 {
    padding-top: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html .pt-235 {
    padding-top: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html .pt-235 {
    padding-top: 4.07986rem;
  }
}
html .pt-240 {
  padding-top: 15rem;
}
@media (max-width: 1200px) {
  html .pt-240 {
    padding-top: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html .pt-240 {
    padding-top: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html .pt-240 {
    padding-top: 4.16667rem;
  }
}
html .pt-245 {
  padding-top: 15.3125rem;
}
@media (max-width: 1200px) {
  html .pt-245 {
    padding-top: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html .pt-245 {
    padding-top: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html .pt-245 {
    padding-top: 4.25347rem;
  }
}
html .pt-250 {
  padding-top: 15.625rem;
}
@media (max-width: 1200px) {
  html .pt-250 {
    padding-top: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html .pt-250 {
    padding-top: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html .pt-250 {
    padding-top: 4.34028rem;
  }
}
html .pt-255 {
  padding-top: 15.9375rem;
}
@media (max-width: 1200px) {
  html .pt-255 {
    padding-top: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html .pt-255 {
    padding-top: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html .pt-255 {
    padding-top: 4.42708rem;
  }
}
html .pt-260 {
  padding-top: 16.25rem;
}
@media (max-width: 1200px) {
  html .pt-260 {
    padding-top: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html .pt-260 {
    padding-top: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html .pt-260 {
    padding-top: 4.51389rem;
  }
}
html .pt-265 {
  padding-top: 16.5625rem;
}
@media (max-width: 1200px) {
  html .pt-265 {
    padding-top: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html .pt-265 {
    padding-top: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html .pt-265 {
    padding-top: 4.60069rem;
  }
}
html .pt-270 {
  padding-top: 16.875rem;
}
@media (max-width: 1200px) {
  html .pt-270 {
    padding-top: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html .pt-270 {
    padding-top: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html .pt-270 {
    padding-top: 4.6875rem;
  }
}
html .pt-275 {
  padding-top: 17.1875rem;
}
@media (max-width: 1200px) {
  html .pt-275 {
    padding-top: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html .pt-275 {
    padding-top: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html .pt-275 {
    padding-top: 4.77431rem;
  }
}
html .pt-280 {
  padding-top: 17.5rem;
}
@media (max-width: 1200px) {
  html .pt-280 {
    padding-top: 12.5rem;
  }
}
@media (max-width: 991px) {
  html .pt-280 {
    padding-top: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html .pt-280 {
    padding-top: 4.86111rem;
  }
}
html .pt-285 {
  padding-top: 17.8125rem;
}
@media (max-width: 1200px) {
  html .pt-285 {
    padding-top: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html .pt-285 {
    padding-top: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html .pt-285 {
    padding-top: 4.94792rem;
  }
}
html .pt-290 {
  padding-top: 18.125rem;
}
@media (max-width: 1200px) {
  html .pt-290 {
    padding-top: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html .pt-290 {
    padding-top: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html .pt-290 {
    padding-top: 5.03472rem;
  }
}
html .pt-295 {
  padding-top: 18.4375rem;
}
@media (max-width: 1200px) {
  html .pt-295 {
    padding-top: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html .pt-295 {
    padding-top: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html .pt-295 {
    padding-top: 5.12153rem;
  }
}
html .pt-300 {
  padding-top: 18.75rem;
}
@media (max-width: 1200px) {
  html .pt-300 {
    padding-top: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html .pt-300 {
    padding-top: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html .pt-300 {
    padding-top: 5.20833rem;
  }
}
html .pb-5 {
  padding-bottom: 0.3125rem;
}
@media (max-width: 991px) {
  html .pb-5 {
    padding-bottom: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html .pb-5 {
    padding-bottom: 0.17361rem;
  }
}
html .pb-10 {
  padding-bottom: 0.625rem;
}
@media (max-width: 991px) {
  html .pb-10 {
    padding-bottom: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html .pb-10 {
    padding-bottom: 0.34722rem;
  }
}
html .pb-15 {
  padding-bottom: 0.9375rem;
}
@media (max-width: 991px) {
  html .pb-15 {
    padding-bottom: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html .pb-15 {
    padding-bottom: 0.52083rem;
  }
}
html .pb-20 {
  padding-bottom: 1.25rem;
}
@media (max-width: 991px) {
  html .pb-20 {
    padding-bottom: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html .pb-20 {
    padding-bottom: 0.69444rem;
  }
}
html .pb-25 {
  padding-bottom: 1.5625rem;
}
@media (max-width: 991px) {
  html .pb-25 {
    padding-bottom: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html .pb-25 {
    padding-bottom: 0.86806rem;
  }
}
html .pb-30 {
  padding-bottom: 1.875rem;
}
@media (max-width: 991px) {
  html .pb-30 {
    padding-bottom: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html .pb-30 {
    padding-bottom: 1.04167rem;
  }
}
html .pb-35 {
  padding-bottom: 2.1875rem;
}
@media (max-width: 991px) {
  html .pb-35 {
    padding-bottom: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html .pb-35 {
    padding-bottom: 1.21528rem;
  }
}
html .pb-40 {
  padding-bottom: 2.5rem;
}
@media (max-width: 991px) {
  html .pb-40 {
    padding-bottom: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html .pb-40 {
    padding-bottom: 1.38889rem;
  }
}
html .pb-45 {
  padding-bottom: 2.8125rem;
}
@media (max-width: 991px) {
  html .pb-45 {
    padding-bottom: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html .pb-45 {
    padding-bottom: 1.5625rem;
  }
}
html .pb-50 {
  padding-bottom: 3.125rem;
}
@media (max-width: 991px) {
  html .pb-50 {
    padding-bottom: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html .pb-50 {
    padding-bottom: 1.73611rem;
  }
}
html .pb-55 {
  padding-bottom: 3.4375rem;
}
@media (max-width: 991px) {
  html .pb-55 {
    padding-bottom: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html .pb-55 {
    padding-bottom: 1.90972rem;
  }
}
html .pb-60 {
  padding-bottom: 3.75rem;
}
@media (max-width: 991px) {
  html .pb-60 {
    padding-bottom: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html .pb-60 {
    padding-bottom: 2.08333rem;
  }
}
html .pb-65 {
  padding-bottom: 4.0625rem;
}
@media (max-width: 991px) {
  html .pb-65 {
    padding-bottom: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html .pb-65 {
    padding-bottom: 2.25694rem;
  }
}
html .pb-70 {
  padding-bottom: 4.375rem;
}
@media (max-width: 991px) {
  html .pb-70 {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .pb-70 {
    padding-bottom: 2.43056rem;
  }
}
html .pb-75 {
  padding-bottom: 4.6875rem;
}
@media (max-width: 991px) {
  html .pb-75 {
    padding-bottom: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html .pb-75 {
    padding-bottom: 2.60417rem;
  }
}
html .pb-80 {
  padding-bottom: 5rem;
}
@media (max-width: 991px) {
  html .pb-80 {
    padding-bottom: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html .pb-80 {
    padding-bottom: 2.77778rem;
  }
}
html .pb-85 {
  padding-bottom: 5.3125rem;
}
@media (max-width: 991px) {
  html .pb-85 {
    padding-bottom: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html .pb-85 {
    padding-bottom: 2.95139rem;
  }
}
html .pb-90 {
  padding-bottom: 5.625rem;
}
@media (max-width: 991px) {
  html .pb-90 {
    padding-bottom: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html .pb-90 {
    padding-bottom: 3.125rem;
  }
}
html .pb-95 {
  padding-bottom: 5.9375rem;
}
@media (max-width: 991px) {
  html .pb-95 {
    padding-bottom: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html .pb-95 {
    padding-bottom: 3.29861rem;
  }
}
html .pb-100 {
  padding-bottom: 6.25rem;
}
@media (max-width: 991px) {
  html .pb-100 {
    padding-bottom: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html .pb-100 {
    padding-bottom: 3.47222rem;
  }
}
html .pb-105 {
  padding-bottom: 6.5625rem;
}
@media (max-width: 1200px) {
  html .pb-105 {
    padding-bottom: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html .pb-105 {
    padding-bottom: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html .pb-105 {
    padding-bottom: 1.82292rem;
  }
}
html .pb-110 {
  padding-bottom: 6.875rem;
}
@media (max-width: 1200px) {
  html .pb-110 {
    padding-bottom: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html .pb-110 {
    padding-bottom: 3.125rem;
  }
}
@media (max-width: 767px) {
  html .pb-110 {
    padding-bottom: 1.90972rem;
  }
}
html .pb-115 {
  padding-bottom: 7.1875rem;
}
@media (max-width: 1200px) {
  html .pb-115 {
    padding-bottom: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html .pb-115 {
    padding-bottom: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html .pb-115 {
    padding-bottom: 1.99653rem;
  }
}
html .pb-120 {
  padding-bottom: 7.5rem;
}
@media (max-width: 1200px) {
  html .pb-120 {
    padding-bottom: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html .pb-120 {
    padding-bottom: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html .pb-120 {
    padding-bottom: 2.08333rem;
  }
}
html .pb-125 {
  padding-bottom: 7.8125rem;
}
@media (max-width: 1200px) {
  html .pb-125 {
    padding-bottom: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html .pb-125 {
    padding-bottom: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html .pb-125 {
    padding-bottom: 2.17014rem;
  }
}
html .pb-130 {
  padding-bottom: 8.125rem;
}
@media (max-width: 1200px) {
  html .pb-130 {
    padding-bottom: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html .pb-130 {
    padding-bottom: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html .pb-130 {
    padding-bottom: 2.25694rem;
  }
}
html .pb-135 {
  padding-bottom: 8.4375rem;
}
@media (max-width: 1200px) {
  html .pb-135 {
    padding-bottom: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html .pb-135 {
    padding-bottom: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html .pb-135 {
    padding-bottom: 2.34375rem;
  }
}
html .pb-140 {
  padding-bottom: 8.75rem;
}
@media (max-width: 1200px) {
  html .pb-140 {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 991px) {
  html .pb-140 {
    padding-bottom: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html .pb-140 {
    padding-bottom: 2.43056rem;
  }
}
html .pb-145 {
  padding-bottom: 9.0625rem;
}
@media (max-width: 1200px) {
  html .pb-145 {
    padding-bottom: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html .pb-145 {
    padding-bottom: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html .pb-145 {
    padding-bottom: 2.51736rem;
  }
}
html .pb-150 {
  padding-bottom: 9.375rem;
}
@media (max-width: 1200px) {
  html .pb-150 {
    padding-bottom: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html .pb-150 {
    padding-bottom: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html .pb-150 {
    padding-bottom: 2.60417rem;
  }
}
html .pb-155 {
  padding-bottom: 9.6875rem;
}
@media (max-width: 1200px) {
  html .pb-155 {
    padding-bottom: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html .pb-155 {
    padding-bottom: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html .pb-155 {
    padding-bottom: 2.69097rem;
  }
}
html .pb-160 {
  padding-bottom: 10rem;
}
@media (max-width: 1200px) {
  html .pb-160 {
    padding-bottom: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html .pb-160 {
    padding-bottom: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html .pb-160 {
    padding-bottom: 2.77778rem;
  }
}
html .pb-165 {
  padding-bottom: 10.3125rem;
}
@media (max-width: 1200px) {
  html .pb-165 {
    padding-bottom: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html .pb-165 {
    padding-bottom: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html .pb-165 {
    padding-bottom: 2.86458rem;
  }
}
html .pb-170 {
  padding-bottom: 10.625rem;
}
@media (max-width: 1200px) {
  html .pb-170 {
    padding-bottom: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html .pb-170 {
    padding-bottom: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html .pb-170 {
    padding-bottom: 2.95139rem;
  }
}
html .pb-175 {
  padding-bottom: 10.9375rem;
}
@media (max-width: 1200px) {
  html .pb-175 {
    padding-bottom: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html .pb-175 {
    padding-bottom: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html .pb-175 {
    padding-bottom: 3.03819rem;
  }
}
html .pb-180 {
  padding-bottom: 11.25rem;
}
@media (max-width: 1200px) {
  html .pb-180 {
    padding-bottom: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html .pb-180 {
    padding-bottom: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html .pb-180 {
    padding-bottom: 3.125rem;
  }
}
html .pb-185 {
  padding-bottom: 11.5625rem;
}
@media (max-width: 1200px) {
  html .pb-185 {
    padding-bottom: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html .pb-185 {
    padding-bottom: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html .pb-185 {
    padding-bottom: 3.21181rem;
  }
}
html .pb-190 {
  padding-bottom: 11.875rem;
}
@media (max-width: 1200px) {
  html .pb-190 {
    padding-bottom: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html .pb-190 {
    padding-bottom: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html .pb-190 {
    padding-bottom: 3.29861rem;
  }
}
html .pb-195 {
  padding-bottom: 12.1875rem;
}
@media (max-width: 1200px) {
  html .pb-195 {
    padding-bottom: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html .pb-195 {
    padding-bottom: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html .pb-195 {
    padding-bottom: 3.38542rem;
  }
}
html .pb-200 {
  padding-bottom: 12.5rem;
}
@media (max-width: 1200px) {
  html .pb-200 {
    padding-bottom: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html .pb-200 {
    padding-bottom: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html .pb-200 {
    padding-bottom: 3.47222rem;
  }
}
html .pb-205 {
  padding-bottom: 12.8125rem;
}
@media (max-width: 1200px) {
  html .pb-205 {
    padding-bottom: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html .pb-205 {
    padding-bottom: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html .pb-205 {
    padding-bottom: 3.55903rem;
  }
}
html .pb-210 {
  padding-bottom: 13.125rem;
}
@media (max-width: 1200px) {
  html .pb-210 {
    padding-bottom: 9.375rem;
  }
}
@media (max-width: 991px) {
  html .pb-210 {
    padding-bottom: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html .pb-210 {
    padding-bottom: 3.64583rem;
  }
}
html .pb-215 {
  padding-bottom: 13.4375rem;
}
@media (max-width: 1200px) {
  html .pb-215 {
    padding-bottom: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html .pb-215 {
    padding-bottom: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html .pb-215 {
    padding-bottom: 3.73264rem;
  }
}
html .pb-220 {
  padding-bottom: 13.75rem;
}
@media (max-width: 1200px) {
  html .pb-220 {
    padding-bottom: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html .pb-220 {
    padding-bottom: 6.25rem;
  }
}
@media (max-width: 767px) {
  html .pb-220 {
    padding-bottom: 3.81944rem;
  }
}
html .pb-225 {
  padding-bottom: 14.0625rem;
}
@media (max-width: 1200px) {
  html .pb-225 {
    padding-bottom: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html .pb-225 {
    padding-bottom: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html .pb-225 {
    padding-bottom: 3.90625rem;
  }
}
html .pb-230 {
  padding-bottom: 14.375rem;
}
@media (max-width: 1200px) {
  html .pb-230 {
    padding-bottom: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html .pb-230 {
    padding-bottom: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html .pb-230 {
    padding-bottom: 3.99306rem;
  }
}
html .pb-235 {
  padding-bottom: 14.6875rem;
}
@media (max-width: 1200px) {
  html .pb-235 {
    padding-bottom: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html .pb-235 {
    padding-bottom: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html .pb-235 {
    padding-bottom: 4.07986rem;
  }
}
html .pb-240 {
  padding-bottom: 15rem;
}
@media (max-width: 1200px) {
  html .pb-240 {
    padding-bottom: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html .pb-240 {
    padding-bottom: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html .pb-240 {
    padding-bottom: 4.16667rem;
  }
}
html .pb-245 {
  padding-bottom: 15.3125rem;
}
@media (max-width: 1200px) {
  html .pb-245 {
    padding-bottom: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html .pb-245 {
    padding-bottom: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html .pb-245 {
    padding-bottom: 4.25347rem;
  }
}
html .pb-250 {
  padding-bottom: 15.625rem;
}
@media (max-width: 1200px) {
  html .pb-250 {
    padding-bottom: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html .pb-250 {
    padding-bottom: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html .pb-250 {
    padding-bottom: 4.34028rem;
  }
}
html .pb-255 {
  padding-bottom: 15.9375rem;
}
@media (max-width: 1200px) {
  html .pb-255 {
    padding-bottom: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html .pb-255 {
    padding-bottom: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html .pb-255 {
    padding-bottom: 4.42708rem;
  }
}
html .pb-260 {
  padding-bottom: 16.25rem;
}
@media (max-width: 1200px) {
  html .pb-260 {
    padding-bottom: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html .pb-260 {
    padding-bottom: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html .pb-260 {
    padding-bottom: 4.51389rem;
  }
}
html .pb-265 {
  padding-bottom: 16.5625rem;
}
@media (max-width: 1200px) {
  html .pb-265 {
    padding-bottom: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html .pb-265 {
    padding-bottom: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html .pb-265 {
    padding-bottom: 4.60069rem;
  }
}
html .pb-270 {
  padding-bottom: 16.875rem;
}
@media (max-width: 1200px) {
  html .pb-270 {
    padding-bottom: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html .pb-270 {
    padding-bottom: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html .pb-270 {
    padding-bottom: 4.6875rem;
  }
}
html .pb-275 {
  padding-bottom: 17.1875rem;
}
@media (max-width: 1200px) {
  html .pb-275 {
    padding-bottom: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html .pb-275 {
    padding-bottom: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html .pb-275 {
    padding-bottom: 4.77431rem;
  }
}
html .pb-280 {
  padding-bottom: 17.5rem;
}
@media (max-width: 1200px) {
  html .pb-280 {
    padding-bottom: 12.5rem;
  }
}
@media (max-width: 991px) {
  html .pb-280 {
    padding-bottom: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html .pb-280 {
    padding-bottom: 4.86111rem;
  }
}
html .pb-285 {
  padding-bottom: 17.8125rem;
}
@media (max-width: 1200px) {
  html .pb-285 {
    padding-bottom: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html .pb-285 {
    padding-bottom: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html .pb-285 {
    padding-bottom: 4.94792rem;
  }
}
html .pb-290 {
  padding-bottom: 18.125rem;
}
@media (max-width: 1200px) {
  html .pb-290 {
    padding-bottom: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html .pb-290 {
    padding-bottom: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html .pb-290 {
    padding-bottom: 5.03472rem;
  }
}
html .pb-295 {
  padding-bottom: 18.4375rem;
}
@media (max-width: 1200px) {
  html .pb-295 {
    padding-bottom: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html .pb-295 {
    padding-bottom: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html .pb-295 {
    padding-bottom: 5.12153rem;
  }
}
html .pb-300 {
  padding-bottom: 18.75rem;
}
@media (max-width: 1200px) {
  html .pb-300 {
    padding-bottom: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html .pb-300 {
    padding-bottom: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html .pb-300 {
    padding-bottom: 5.20833rem;
  }
}
html:not([dir="rtl"]) .pl-5 {
  padding-left: 0.3125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-5 {
    padding-left: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-5 {
    padding-left: 0.17361rem;
  }
}
html:not([dir="rtl"]) .pl-10 {
  padding-left: 0.625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-10 {
    padding-left: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-10 {
    padding-left: 0.34722rem;
  }
}
html:not([dir="rtl"]) .pl-15 {
  padding-left: 0.9375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-15 {
    padding-left: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-15 {
    padding-left: 0.52083rem;
  }
}
html:not([dir="rtl"]) .pl-20 {
  padding-left: 1.25rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-20 {
    padding-left: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-20 {
    padding-left: 0.69444rem;
  }
}
html:not([dir="rtl"]) .pl-25 {
  padding-left: 1.5625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-25 {
    padding-left: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-25 {
    padding-left: 0.86806rem;
  }
}
html:not([dir="rtl"]) .pl-30 {
  padding-left: 1.875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-30 {
    padding-left: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-30 {
    padding-left: 1.04167rem;
  }
}
html:not([dir="rtl"]) .pl-35 {
  padding-left: 2.1875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-35 {
    padding-left: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-35 {
    padding-left: 1.21528rem;
  }
}
html:not([dir="rtl"]) .pl-40 {
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-40 {
    padding-left: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-40 {
    padding-left: 1.38889rem;
  }
}
html:not([dir="rtl"]) .pl-45 {
  padding-left: 2.8125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-45 {
    padding-left: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-45 {
    padding-left: 1.5625rem;
  }
}
html:not([dir="rtl"]) .pl-50 {
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-50 {
    padding-left: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-50 {
    padding-left: 1.73611rem;
  }
}
html:not([dir="rtl"]) .pl-55 {
  padding-left: 3.4375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-55 {
    padding-left: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-55 {
    padding-left: 1.90972rem;
  }
}
html:not([dir="rtl"]) .pl-60 {
  padding-left: 3.75rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-60 {
    padding-left: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-60 {
    padding-left: 2.08333rem;
  }
}
html:not([dir="rtl"]) .pl-65 {
  padding-left: 4.0625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-65 {
    padding-left: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-65 {
    padding-left: 2.25694rem;
  }
}
html:not([dir="rtl"]) .pl-70 {
  padding-left: 4.375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-70 {
    padding-left: 3.125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-70 {
    padding-left: 2.43056rem;
  }
}
html:not([dir="rtl"]) .pl-75 {
  padding-left: 4.6875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-75 {
    padding-left: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-75 {
    padding-left: 2.60417rem;
  }
}
html:not([dir="rtl"]) .pl-80 {
  padding-left: 5rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-80 {
    padding-left: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-80 {
    padding-left: 2.77778rem;
  }
}
html:not([dir="rtl"]) .pl-85 {
  padding-left: 5.3125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-85 {
    padding-left: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-85 {
    padding-left: 2.95139rem;
  }
}
html:not([dir="rtl"]) .pl-90 {
  padding-left: 5.625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-90 {
    padding-left: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-90 {
    padding-left: 3.125rem;
  }
}
html:not([dir="rtl"]) .pl-95 {
  padding-left: 5.9375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-95 {
    padding-left: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-95 {
    padding-left: 3.29861rem;
  }
}
html:not([dir="rtl"]) .pl-100 {
  padding-left: 6.25rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-100 {
    padding-left: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-100 {
    padding-left: 3.47222rem;
  }
}
html:not([dir="rtl"]) .pl-105 {
  padding-left: 6.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-105 {
    padding-left: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-105 {
    padding-left: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-105 {
    padding-left: 1.82292rem;
  }
}
html:not([dir="rtl"]) .pl-110 {
  padding-left: 6.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-110 {
    padding-left: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-110 {
    padding-left: 3.125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-110 {
    padding-left: 1.90972rem;
  }
}
html:not([dir="rtl"]) .pl-115 {
  padding-left: 7.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-115 {
    padding-left: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-115 {
    padding-left: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-115 {
    padding-left: 1.99653rem;
  }
}
html:not([dir="rtl"]) .pl-120 {
  padding-left: 7.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-120 {
    padding-left: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-120 {
    padding-left: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-120 {
    padding-left: 2.08333rem;
  }
}
html:not([dir="rtl"]) .pl-125 {
  padding-left: 7.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-125 {
    padding-left: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-125 {
    padding-left: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-125 {
    padding-left: 2.17014rem;
  }
}
html:not([dir="rtl"]) .pl-130 {
  padding-left: 8.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-130 {
    padding-left: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-130 {
    padding-left: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-130 {
    padding-left: 2.25694rem;
  }
}
html:not([dir="rtl"]) .pl-135 {
  padding-left: 8.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-135 {
    padding-left: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-135 {
    padding-left: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-135 {
    padding-left: 2.34375rem;
  }
}
html:not([dir="rtl"]) .pl-140 {
  padding-left: 8.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-140 {
    padding-left: 6.25rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-140 {
    padding-left: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-140 {
    padding-left: 2.43056rem;
  }
}
html:not([dir="rtl"]) .pl-145 {
  padding-left: 9.0625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-145 {
    padding-left: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-145 {
    padding-left: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-145 {
    padding-left: 2.51736rem;
  }
}
html:not([dir="rtl"]) .pl-150 {
  padding-left: 9.375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-150 {
    padding-left: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-150 {
    padding-left: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-150 {
    padding-left: 2.60417rem;
  }
}
html:not([dir="rtl"]) .pl-155 {
  padding-left: 9.6875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-155 {
    padding-left: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-155 {
    padding-left: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-155 {
    padding-left: 2.69097rem;
  }
}
html:not([dir="rtl"]) .pl-160 {
  padding-left: 10rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-160 {
    padding-left: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-160 {
    padding-left: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-160 {
    padding-left: 2.77778rem;
  }
}
html:not([dir="rtl"]) .pl-165 {
  padding-left: 10.3125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-165 {
    padding-left: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-165 {
    padding-left: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-165 {
    padding-left: 2.86458rem;
  }
}
html:not([dir="rtl"]) .pl-170 {
  padding-left: 10.625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-170 {
    padding-left: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-170 {
    padding-left: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-170 {
    padding-left: 2.95139rem;
  }
}
html:not([dir="rtl"]) .pl-175 {
  padding-left: 10.9375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-175 {
    padding-left: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-175 {
    padding-left: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-175 {
    padding-left: 3.03819rem;
  }
}
html:not([dir="rtl"]) .pl-180 {
  padding-left: 11.25rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-180 {
    padding-left: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-180 {
    padding-left: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-180 {
    padding-left: 3.125rem;
  }
}
html:not([dir="rtl"]) .pl-185 {
  padding-left: 11.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-185 {
    padding-left: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-185 {
    padding-left: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-185 {
    padding-left: 3.21181rem;
  }
}
html:not([dir="rtl"]) .pl-190 {
  padding-left: 11.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-190 {
    padding-left: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-190 {
    padding-left: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-190 {
    padding-left: 3.29861rem;
  }
}
html:not([dir="rtl"]) .pl-195 {
  padding-left: 12.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-195 {
    padding-left: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-195 {
    padding-left: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-195 {
    padding-left: 3.38542rem;
  }
}
html:not([dir="rtl"]) .pl-200 {
  padding-left: 12.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-200 {
    padding-left: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-200 {
    padding-left: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-200 {
    padding-left: 3.47222rem;
  }
}
html:not([dir="rtl"]) .pl-205 {
  padding-left: 12.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-205 {
    padding-left: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-205 {
    padding-left: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-205 {
    padding-left: 3.55903rem;
  }
}
html:not([dir="rtl"]) .pl-210 {
  padding-left: 13.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-210 {
    padding-left: 9.375rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-210 {
    padding-left: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-210 {
    padding-left: 3.64583rem;
  }
}
html:not([dir="rtl"]) .pl-215 {
  padding-left: 13.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-215 {
    padding-left: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-215 {
    padding-left: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-215 {
    padding-left: 3.73264rem;
  }
}
html:not([dir="rtl"]) .pl-220 {
  padding-left: 13.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-220 {
    padding-left: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-220 {
    padding-left: 6.25rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-220 {
    padding-left: 3.81944rem;
  }
}
html:not([dir="rtl"]) .pl-225 {
  padding-left: 14.0625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-225 {
    padding-left: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-225 {
    padding-left: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-225 {
    padding-left: 3.90625rem;
  }
}
html:not([dir="rtl"]) .pl-230 {
  padding-left: 14.375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-230 {
    padding-left: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-230 {
    padding-left: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-230 {
    padding-left: 3.99306rem;
  }
}
html:not([dir="rtl"]) .pl-235 {
  padding-left: 14.6875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-235 {
    padding-left: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-235 {
    padding-left: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-235 {
    padding-left: 4.07986rem;
  }
}
html:not([dir="rtl"]) .pl-240 {
  padding-left: 15rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-240 {
    padding-left: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-240 {
    padding-left: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-240 {
    padding-left: 4.16667rem;
  }
}
html:not([dir="rtl"]) .pl-245 {
  padding-left: 15.3125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-245 {
    padding-left: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-245 {
    padding-left: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-245 {
    padding-left: 4.25347rem;
  }
}
html:not([dir="rtl"]) .pl-250 {
  padding-left: 15.625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-250 {
    padding-left: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-250 {
    padding-left: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-250 {
    padding-left: 4.34028rem;
  }
}
html:not([dir="rtl"]) .pl-255 {
  padding-left: 15.9375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-255 {
    padding-left: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-255 {
    padding-left: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-255 {
    padding-left: 4.42708rem;
  }
}
html:not([dir="rtl"]) .pl-260 {
  padding-left: 16.25rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-260 {
    padding-left: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-260 {
    padding-left: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-260 {
    padding-left: 4.51389rem;
  }
}
html:not([dir="rtl"]) .pl-265 {
  padding-left: 16.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-265 {
    padding-left: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-265 {
    padding-left: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-265 {
    padding-left: 4.60069rem;
  }
}
html:not([dir="rtl"]) .pl-270 {
  padding-left: 16.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-270 {
    padding-left: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-270 {
    padding-left: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-270 {
    padding-left: 4.6875rem;
  }
}
html:not([dir="rtl"]) .pl-275 {
  padding-left: 17.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-275 {
    padding-left: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-275 {
    padding-left: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-275 {
    padding-left: 4.77431rem;
  }
}
html:not([dir="rtl"]) .pl-280 {
  padding-left: 17.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-280 {
    padding-left: 12.5rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-280 {
    padding-left: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-280 {
    padding-left: 4.86111rem;
  }
}
html:not([dir="rtl"]) .pl-285 {
  padding-left: 17.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-285 {
    padding-left: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-285 {
    padding-left: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-285 {
    padding-left: 4.94792rem;
  }
}
html:not([dir="rtl"]) .pl-290 {
  padding-left: 18.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-290 {
    padding-left: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-290 {
    padding-left: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-290 {
    padding-left: 5.03472rem;
  }
}
html:not([dir="rtl"]) .pl-295 {
  padding-left: 18.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-295 {
    padding-left: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-295 {
    padding-left: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-295 {
    padding-left: 5.12153rem;
  }
}
html:not([dir="rtl"]) .pl-300 {
  padding-left: 18.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pl-300 {
    padding-left: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pl-300 {
    padding-left: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pl-300 {
    padding-left: 5.20833rem;
  }
}
html:not([dir="rtl"]) .pr-5 {
  padding-right: 0.3125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-5 {
    padding-right: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-5 {
    padding-right: 0.17361rem;
  }
}
html:not([dir="rtl"]) .pr-10 {
  padding-right: 0.625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-10 {
    padding-right: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-10 {
    padding-right: 0.34722rem;
  }
}
html:not([dir="rtl"]) .pr-15 {
  padding-right: 0.9375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-15 {
    padding-right: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-15 {
    padding-right: 0.52083rem;
  }
}
html:not([dir="rtl"]) .pr-20 {
  padding-right: 1.25rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-20 {
    padding-right: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-20 {
    padding-right: 0.69444rem;
  }
}
html:not([dir="rtl"]) .pr-25 {
  padding-right: 1.5625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-25 {
    padding-right: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-25 {
    padding-right: 0.86806rem;
  }
}
html:not([dir="rtl"]) .pr-30 {
  padding-right: 1.875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-30 {
    padding-right: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-30 {
    padding-right: 1.04167rem;
  }
}
html:not([dir="rtl"]) .pr-35 {
  padding-right: 2.1875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-35 {
    padding-right: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-35 {
    padding-right: 1.21528rem;
  }
}
html:not([dir="rtl"]) .pr-40 {
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-40 {
    padding-right: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-40 {
    padding-right: 1.38889rem;
  }
}
html:not([dir="rtl"]) .pr-45 {
  padding-right: 2.8125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-45 {
    padding-right: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-45 {
    padding-right: 1.5625rem;
  }
}
html:not([dir="rtl"]) .pr-50 {
  padding-right: 3.125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-50 {
    padding-right: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-50 {
    padding-right: 1.73611rem;
  }
}
html:not([dir="rtl"]) .pr-55 {
  padding-right: 3.4375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-55 {
    padding-right: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-55 {
    padding-right: 1.90972rem;
  }
}
html:not([dir="rtl"]) .pr-60 {
  padding-right: 3.75rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-60 {
    padding-right: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-60 {
    padding-right: 2.08333rem;
  }
}
html:not([dir="rtl"]) .pr-65 {
  padding-right: 4.0625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-65 {
    padding-right: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-65 {
    padding-right: 2.25694rem;
  }
}
html:not([dir="rtl"]) .pr-70 {
  padding-right: 4.375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-70 {
    padding-right: 3.125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-70 {
    padding-right: 2.43056rem;
  }
}
html:not([dir="rtl"]) .pr-75 {
  padding-right: 4.6875rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-75 {
    padding-right: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-75 {
    padding-right: 2.60417rem;
  }
}
html:not([dir="rtl"]) .pr-80 {
  padding-right: 5rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-80 {
    padding-right: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-80 {
    padding-right: 2.77778rem;
  }
}
html:not([dir="rtl"]) .pr-85 {
  padding-right: 5.3125rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-85 {
    padding-right: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-85 {
    padding-right: 2.95139rem;
  }
}
html:not([dir="rtl"]) .pr-90 {
  padding-right: 5.625rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-90 {
    padding-right: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-90 {
    padding-right: 3.125rem;
  }
}
html:not([dir="rtl"]) .pr-95 {
  padding-right: 5.9375rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-95 {
    padding-right: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-95 {
    padding-right: 3.29861rem;
  }
}
html:not([dir="rtl"]) .pr-100 {
  padding-right: 6.25rem;
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-100 {
    padding-right: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-100 {
    padding-right: 3.47222rem;
  }
}
html:not([dir="rtl"]) .pr-105 {
  padding-right: 6.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-105 {
    padding-right: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-105 {
    padding-right: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-105 {
    padding-right: 1.82292rem;
  }
}
html:not([dir="rtl"]) .pr-110 {
  padding-right: 6.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-110 {
    padding-right: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-110 {
    padding-right: 3.125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-110 {
    padding-right: 1.90972rem;
  }
}
html:not([dir="rtl"]) .pr-115 {
  padding-right: 7.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-115 {
    padding-right: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-115 {
    padding-right: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-115 {
    padding-right: 1.99653rem;
  }
}
html:not([dir="rtl"]) .pr-120 {
  padding-right: 7.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-120 {
    padding-right: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-120 {
    padding-right: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-120 {
    padding-right: 2.08333rem;
  }
}
html:not([dir="rtl"]) .pr-125 {
  padding-right: 7.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-125 {
    padding-right: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-125 {
    padding-right: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-125 {
    padding-right: 2.17014rem;
  }
}
html:not([dir="rtl"]) .pr-130 {
  padding-right: 8.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-130 {
    padding-right: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-130 {
    padding-right: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-130 {
    padding-right: 2.25694rem;
  }
}
html:not([dir="rtl"]) .pr-135 {
  padding-right: 8.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-135 {
    padding-right: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-135 {
    padding-right: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-135 {
    padding-right: 2.34375rem;
  }
}
html:not([dir="rtl"]) .pr-140 {
  padding-right: 8.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-140 {
    padding-right: 6.25rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-140 {
    padding-right: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-140 {
    padding-right: 2.43056rem;
  }
}
html:not([dir="rtl"]) .pr-145 {
  padding-right: 9.0625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-145 {
    padding-right: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-145 {
    padding-right: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-145 {
    padding-right: 2.51736rem;
  }
}
html:not([dir="rtl"]) .pr-150 {
  padding-right: 9.375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-150 {
    padding-right: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-150 {
    padding-right: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-150 {
    padding-right: 2.60417rem;
  }
}
html:not([dir="rtl"]) .pr-155 {
  padding-right: 9.6875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-155 {
    padding-right: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-155 {
    padding-right: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-155 {
    padding-right: 2.69097rem;
  }
}
html:not([dir="rtl"]) .pr-160 {
  padding-right: 10rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-160 {
    padding-right: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-160 {
    padding-right: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-160 {
    padding-right: 2.77778rem;
  }
}
html:not([dir="rtl"]) .pr-165 {
  padding-right: 10.3125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-165 {
    padding-right: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-165 {
    padding-right: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-165 {
    padding-right: 2.86458rem;
  }
}
html:not([dir="rtl"]) .pr-170 {
  padding-right: 10.625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-170 {
    padding-right: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-170 {
    padding-right: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-170 {
    padding-right: 2.95139rem;
  }
}
html:not([dir="rtl"]) .pr-175 {
  padding-right: 10.9375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-175 {
    padding-right: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-175 {
    padding-right: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-175 {
    padding-right: 3.03819rem;
  }
}
html:not([dir="rtl"]) .pr-180 {
  padding-right: 11.25rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-180 {
    padding-right: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-180 {
    padding-right: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-180 {
    padding-right: 3.125rem;
  }
}
html:not([dir="rtl"]) .pr-185 {
  padding-right: 11.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-185 {
    padding-right: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-185 {
    padding-right: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-185 {
    padding-right: 3.21181rem;
  }
}
html:not([dir="rtl"]) .pr-190 {
  padding-right: 11.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-190 {
    padding-right: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-190 {
    padding-right: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-190 {
    padding-right: 3.29861rem;
  }
}
html:not([dir="rtl"]) .pr-195 {
  padding-right: 12.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-195 {
    padding-right: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-195 {
    padding-right: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-195 {
    padding-right: 3.38542rem;
  }
}
html:not([dir="rtl"]) .pr-200 {
  padding-right: 12.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-200 {
    padding-right: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-200 {
    padding-right: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-200 {
    padding-right: 3.47222rem;
  }
}
html:not([dir="rtl"]) .pr-205 {
  padding-right: 12.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-205 {
    padding-right: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-205 {
    padding-right: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-205 {
    padding-right: 3.55903rem;
  }
}
html:not([dir="rtl"]) .pr-210 {
  padding-right: 13.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-210 {
    padding-right: 9.375rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-210 {
    padding-right: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-210 {
    padding-right: 3.64583rem;
  }
}
html:not([dir="rtl"]) .pr-215 {
  padding-right: 13.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-215 {
    padding-right: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-215 {
    padding-right: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-215 {
    padding-right: 3.73264rem;
  }
}
html:not([dir="rtl"]) .pr-220 {
  padding-right: 13.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-220 {
    padding-right: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-220 {
    padding-right: 6.25rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-220 {
    padding-right: 3.81944rem;
  }
}
html:not([dir="rtl"]) .pr-225 {
  padding-right: 14.0625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-225 {
    padding-right: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-225 {
    padding-right: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-225 {
    padding-right: 3.90625rem;
  }
}
html:not([dir="rtl"]) .pr-230 {
  padding-right: 14.375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-230 {
    padding-right: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-230 {
    padding-right: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-230 {
    padding-right: 3.99306rem;
  }
}
html:not([dir="rtl"]) .pr-235 {
  padding-right: 14.6875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-235 {
    padding-right: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-235 {
    padding-right: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-235 {
    padding-right: 4.07986rem;
  }
}
html:not([dir="rtl"]) .pr-240 {
  padding-right: 15rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-240 {
    padding-right: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-240 {
    padding-right: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-240 {
    padding-right: 4.16667rem;
  }
}
html:not([dir="rtl"]) .pr-245 {
  padding-right: 15.3125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-245 {
    padding-right: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-245 {
    padding-right: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-245 {
    padding-right: 4.25347rem;
  }
}
html:not([dir="rtl"]) .pr-250 {
  padding-right: 15.625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-250 {
    padding-right: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-250 {
    padding-right: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-250 {
    padding-right: 4.34028rem;
  }
}
html:not([dir="rtl"]) .pr-255 {
  padding-right: 15.9375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-255 {
    padding-right: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-255 {
    padding-right: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-255 {
    padding-right: 4.42708rem;
  }
}
html:not([dir="rtl"]) .pr-260 {
  padding-right: 16.25rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-260 {
    padding-right: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-260 {
    padding-right: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-260 {
    padding-right: 4.51389rem;
  }
}
html:not([dir="rtl"]) .pr-265 {
  padding-right: 16.5625rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-265 {
    padding-right: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-265 {
    padding-right: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-265 {
    padding-right: 4.60069rem;
  }
}
html:not([dir="rtl"]) .pr-270 {
  padding-right: 16.875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-270 {
    padding-right: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-270 {
    padding-right: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-270 {
    padding-right: 4.6875rem;
  }
}
html:not([dir="rtl"]) .pr-275 {
  padding-right: 17.1875rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-275 {
    padding-right: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-275 {
    padding-right: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-275 {
    padding-right: 4.77431rem;
  }
}
html:not([dir="rtl"]) .pr-280 {
  padding-right: 17.5rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-280 {
    padding-right: 12.5rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-280 {
    padding-right: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-280 {
    padding-right: 4.86111rem;
  }
}
html:not([dir="rtl"]) .pr-285 {
  padding-right: 17.8125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-285 {
    padding-right: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-285 {
    padding-right: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-285 {
    padding-right: 4.94792rem;
  }
}
html:not([dir="rtl"]) .pr-290 {
  padding-right: 18.125rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-290 {
    padding-right: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-290 {
    padding-right: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-290 {
    padding-right: 5.03472rem;
  }
}
html:not([dir="rtl"]) .pr-295 {
  padding-right: 18.4375rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-295 {
    padding-right: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-295 {
    padding-right: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-295 {
    padding-right: 5.12153rem;
  }
}
html:not([dir="rtl"]) .pr-300 {
  padding-right: 18.75rem;
}
@media (max-width: 1200px) {
  html:not([dir="rtl"]) .pr-300 {
    padding-right: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html:not([dir="rtl"]) .pr-300 {
    padding-right: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html:not([dir="rtl"]) .pr-300 {
    padding-right: 5.20833rem;
  }
}
html[dir="rtl"] .pl-5 {
  padding-right: 0.3125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-5 {
    padding-right: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-5 {
    padding-right: 0.17361rem;
  }
}
html[dir="rtl"] .pl-10 {
  padding-right: 0.625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-10 {
    padding-right: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-10 {
    padding-right: 0.34722rem;
  }
}
html[dir="rtl"] .pl-15 {
  padding-right: 0.9375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-15 {
    padding-right: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-15 {
    padding-right: 0.52083rem;
  }
}
html[dir="rtl"] .pl-20 {
  padding-right: 1.25rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-20 {
    padding-right: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-20 {
    padding-right: 0.69444rem;
  }
}
html[dir="rtl"] .pl-25 {
  padding-right: 1.5625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-25 {
    padding-right: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-25 {
    padding-right: 0.86806rem;
  }
}
html[dir="rtl"] .pl-30 {
  padding-right: 1.875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-30 {
    padding-right: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-30 {
    padding-right: 1.04167rem;
  }
}
html[dir="rtl"] .pl-35 {
  padding-right: 2.1875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-35 {
    padding-right: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-35 {
    padding-right: 1.21528rem;
  }
}
html[dir="rtl"] .pl-40 {
  padding-right: 2.5rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-40 {
    padding-right: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-40 {
    padding-right: 1.38889rem;
  }
}
html[dir="rtl"] .pl-45 {
  padding-right: 2.8125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-45 {
    padding-right: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-45 {
    padding-right: 1.5625rem;
  }
}
html[dir="rtl"] .pl-50 {
  padding-right: 3.125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-50 {
    padding-right: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-50 {
    padding-right: 1.73611rem;
  }
}
html[dir="rtl"] .pl-55 {
  padding-right: 3.4375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-55 {
    padding-right: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-55 {
    padding-right: 1.90972rem;
  }
}
html[dir="rtl"] .pl-60 {
  padding-right: 3.75rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-60 {
    padding-right: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-60 {
    padding-right: 2.08333rem;
  }
}
html[dir="rtl"] .pl-65 {
  padding-right: 4.0625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-65 {
    padding-right: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-65 {
    padding-right: 2.25694rem;
  }
}
html[dir="rtl"] .pl-70 {
  padding-right: 4.375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-70 {
    padding-right: 3.125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-70 {
    padding-right: 2.43056rem;
  }
}
html[dir="rtl"] .pl-75 {
  padding-right: 4.6875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-75 {
    padding-right: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-75 {
    padding-right: 2.60417rem;
  }
}
html[dir="rtl"] .pl-80 {
  padding-right: 5rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-80 {
    padding-right: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-80 {
    padding-right: 2.77778rem;
  }
}
html[dir="rtl"] .pl-85 {
  padding-right: 5.3125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-85 {
    padding-right: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-85 {
    padding-right: 2.95139rem;
  }
}
html[dir="rtl"] .pl-90 {
  padding-right: 5.625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-90 {
    padding-right: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-90 {
    padding-right: 3.125rem;
  }
}
html[dir="rtl"] .pl-95 {
  padding-right: 5.9375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-95 {
    padding-right: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-95 {
    padding-right: 3.29861rem;
  }
}
html[dir="rtl"] .pl-100 {
  padding-right: 6.25rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-100 {
    padding-right: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-100 {
    padding-right: 3.47222rem;
  }
}
html[dir="rtl"] .pl-105 {
  padding-right: 6.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-105 {
    padding-right: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-105 {
    padding-right: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-105 {
    padding-right: 1.82292rem;
  }
}
html[dir="rtl"] .pl-110 {
  padding-right: 6.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-110 {
    padding-right: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-110 {
    padding-right: 3.125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-110 {
    padding-right: 1.90972rem;
  }
}
html[dir="rtl"] .pl-115 {
  padding-right: 7.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-115 {
    padding-right: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-115 {
    padding-right: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-115 {
    padding-right: 1.99653rem;
  }
}
html[dir="rtl"] .pl-120 {
  padding-right: 7.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-120 {
    padding-right: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-120 {
    padding-right: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-120 {
    padding-right: 2.08333rem;
  }
}
html[dir="rtl"] .pl-125 {
  padding-right: 7.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-125 {
    padding-right: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-125 {
    padding-right: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-125 {
    padding-right: 2.17014rem;
  }
}
html[dir="rtl"] .pl-130 {
  padding-right: 8.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-130 {
    padding-right: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-130 {
    padding-right: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-130 {
    padding-right: 2.25694rem;
  }
}
html[dir="rtl"] .pl-135 {
  padding-right: 8.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-135 {
    padding-right: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-135 {
    padding-right: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-135 {
    padding-right: 2.34375rem;
  }
}
html[dir="rtl"] .pl-140 {
  padding-right: 8.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-140 {
    padding-right: 6.25rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-140 {
    padding-right: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-140 {
    padding-right: 2.43056rem;
  }
}
html[dir="rtl"] .pl-145 {
  padding-right: 9.0625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-145 {
    padding-right: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-145 {
    padding-right: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-145 {
    padding-right: 2.51736rem;
  }
}
html[dir="rtl"] .pl-150 {
  padding-right: 9.375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-150 {
    padding-right: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-150 {
    padding-right: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-150 {
    padding-right: 2.60417rem;
  }
}
html[dir="rtl"] .pl-155 {
  padding-right: 9.6875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-155 {
    padding-right: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-155 {
    padding-right: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-155 {
    padding-right: 2.69097rem;
  }
}
html[dir="rtl"] .pl-160 {
  padding-right: 10rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-160 {
    padding-right: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-160 {
    padding-right: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-160 {
    padding-right: 2.77778rem;
  }
}
html[dir="rtl"] .pl-165 {
  padding-right: 10.3125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-165 {
    padding-right: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-165 {
    padding-right: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-165 {
    padding-right: 2.86458rem;
  }
}
html[dir="rtl"] .pl-170 {
  padding-right: 10.625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-170 {
    padding-right: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-170 {
    padding-right: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-170 {
    padding-right: 2.95139rem;
  }
}
html[dir="rtl"] .pl-175 {
  padding-right: 10.9375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-175 {
    padding-right: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-175 {
    padding-right: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-175 {
    padding-right: 3.03819rem;
  }
}
html[dir="rtl"] .pl-180 {
  padding-right: 11.25rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-180 {
    padding-right: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-180 {
    padding-right: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-180 {
    padding-right: 3.125rem;
  }
}
html[dir="rtl"] .pl-185 {
  padding-right: 11.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-185 {
    padding-right: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-185 {
    padding-right: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-185 {
    padding-right: 3.21181rem;
  }
}
html[dir="rtl"] .pl-190 {
  padding-right: 11.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-190 {
    padding-right: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-190 {
    padding-right: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-190 {
    padding-right: 3.29861rem;
  }
}
html[dir="rtl"] .pl-195 {
  padding-right: 12.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-195 {
    padding-right: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-195 {
    padding-right: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-195 {
    padding-right: 3.38542rem;
  }
}
html[dir="rtl"] .pl-200 {
  padding-right: 12.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-200 {
    padding-right: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-200 {
    padding-right: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-200 {
    padding-right: 3.47222rem;
  }
}
html[dir="rtl"] .pl-205 {
  padding-right: 12.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-205 {
    padding-right: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-205 {
    padding-right: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-205 {
    padding-right: 3.55903rem;
  }
}
html[dir="rtl"] .pl-210 {
  padding-right: 13.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-210 {
    padding-right: 9.375rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-210 {
    padding-right: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-210 {
    padding-right: 3.64583rem;
  }
}
html[dir="rtl"] .pl-215 {
  padding-right: 13.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-215 {
    padding-right: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-215 {
    padding-right: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-215 {
    padding-right: 3.73264rem;
  }
}
html[dir="rtl"] .pl-220 {
  padding-right: 13.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-220 {
    padding-right: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-220 {
    padding-right: 6.25rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-220 {
    padding-right: 3.81944rem;
  }
}
html[dir="rtl"] .pl-225 {
  padding-right: 14.0625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-225 {
    padding-right: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-225 {
    padding-right: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-225 {
    padding-right: 3.90625rem;
  }
}
html[dir="rtl"] .pl-230 {
  padding-right: 14.375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-230 {
    padding-right: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-230 {
    padding-right: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-230 {
    padding-right: 3.99306rem;
  }
}
html[dir="rtl"] .pl-235 {
  padding-right: 14.6875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-235 {
    padding-right: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-235 {
    padding-right: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-235 {
    padding-right: 4.07986rem;
  }
}
html[dir="rtl"] .pl-240 {
  padding-right: 15rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-240 {
    padding-right: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-240 {
    padding-right: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-240 {
    padding-right: 4.16667rem;
  }
}
html[dir="rtl"] .pl-245 {
  padding-right: 15.3125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-245 {
    padding-right: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-245 {
    padding-right: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-245 {
    padding-right: 4.25347rem;
  }
}
html[dir="rtl"] .pl-250 {
  padding-right: 15.625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-250 {
    padding-right: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-250 {
    padding-right: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-250 {
    padding-right: 4.34028rem;
  }
}
html[dir="rtl"] .pl-255 {
  padding-right: 15.9375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-255 {
    padding-right: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-255 {
    padding-right: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-255 {
    padding-right: 4.42708rem;
  }
}
html[dir="rtl"] .pl-260 {
  padding-right: 16.25rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-260 {
    padding-right: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-260 {
    padding-right: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-260 {
    padding-right: 4.51389rem;
  }
}
html[dir="rtl"] .pl-265 {
  padding-right: 16.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-265 {
    padding-right: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-265 {
    padding-right: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-265 {
    padding-right: 4.60069rem;
  }
}
html[dir="rtl"] .pl-270 {
  padding-right: 16.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-270 {
    padding-right: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-270 {
    padding-right: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-270 {
    padding-right: 4.6875rem;
  }
}
html[dir="rtl"] .pl-275 {
  padding-right: 17.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-275 {
    padding-right: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-275 {
    padding-right: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-275 {
    padding-right: 4.77431rem;
  }
}
html[dir="rtl"] .pl-280 {
  padding-right: 17.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-280 {
    padding-right: 12.5rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-280 {
    padding-right: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-280 {
    padding-right: 4.86111rem;
  }
}
html[dir="rtl"] .pl-285 {
  padding-right: 17.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-285 {
    padding-right: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-285 {
    padding-right: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-285 {
    padding-right: 4.94792rem;
  }
}
html[dir="rtl"] .pl-290 {
  padding-right: 18.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-290 {
    padding-right: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-290 {
    padding-right: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-290 {
    padding-right: 5.03472rem;
  }
}
html[dir="rtl"] .pl-295 {
  padding-right: 18.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-295 {
    padding-right: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-295 {
    padding-right: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-295 {
    padding-right: 5.12153rem;
  }
}
html[dir="rtl"] .pl-300 {
  padding-right: 18.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pl-300 {
    padding-right: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pl-300 {
    padding-right: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pl-300 {
    padding-right: 5.20833rem;
  }
}
html[dir="rtl"] .pr-5 {
  padding-left: 0.3125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-5 {
    padding-left: 0.22321rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-5 {
    padding-left: 0.17361rem;
  }
}
html[dir="rtl"] .pr-10 {
  padding-left: 0.625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-10 {
    padding-left: 0.44643rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-10 {
    padding-left: 0.34722rem;
  }
}
html[dir="rtl"] .pr-15 {
  padding-left: 0.9375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-15 {
    padding-left: 0.66964rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-15 {
    padding-left: 0.52083rem;
  }
}
html[dir="rtl"] .pr-20 {
  padding-left: 1.25rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-20 {
    padding-left: 0.89286rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-20 {
    padding-left: 0.69444rem;
  }
}
html[dir="rtl"] .pr-25 {
  padding-left: 1.5625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-25 {
    padding-left: 1.11607rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-25 {
    padding-left: 0.86806rem;
  }
}
html[dir="rtl"] .pr-30 {
  padding-left: 1.875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-30 {
    padding-left: 1.33929rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-30 {
    padding-left: 1.04167rem;
  }
}
html[dir="rtl"] .pr-35 {
  padding-left: 2.1875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-35 {
    padding-left: 1.5625rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-35 {
    padding-left: 1.21528rem;
  }
}
html[dir="rtl"] .pr-40 {
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-40 {
    padding-left: 1.78571rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-40 {
    padding-left: 1.38889rem;
  }
}
html[dir="rtl"] .pr-45 {
  padding-left: 2.8125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-45 {
    padding-left: 2.00893rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-45 {
    padding-left: 1.5625rem;
  }
}
html[dir="rtl"] .pr-50 {
  padding-left: 3.125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-50 {
    padding-left: 2.23214rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-50 {
    padding-left: 1.73611rem;
  }
}
html[dir="rtl"] .pr-55 {
  padding-left: 3.4375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-55 {
    padding-left: 2.45536rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-55 {
    padding-left: 1.90972rem;
  }
}
html[dir="rtl"] .pr-60 {
  padding-left: 3.75rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-60 {
    padding-left: 2.67857rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-60 {
    padding-left: 2.08333rem;
  }
}
html[dir="rtl"] .pr-65 {
  padding-left: 4.0625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-65 {
    padding-left: 2.90179rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-65 {
    padding-left: 2.25694rem;
  }
}
html[dir="rtl"] .pr-70 {
  padding-left: 4.375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-70 {
    padding-left: 3.125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-70 {
    padding-left: 2.43056rem;
  }
}
html[dir="rtl"] .pr-75 {
  padding-left: 4.6875rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-75 {
    padding-left: 3.34821rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-75 {
    padding-left: 2.60417rem;
  }
}
html[dir="rtl"] .pr-80 {
  padding-left: 5rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-80 {
    padding-left: 3.57143rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-80 {
    padding-left: 2.77778rem;
  }
}
html[dir="rtl"] .pr-85 {
  padding-left: 5.3125rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-85 {
    padding-left: 3.79464rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-85 {
    padding-left: 2.95139rem;
  }
}
html[dir="rtl"] .pr-90 {
  padding-left: 5.625rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-90 {
    padding-left: 4.01786rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-90 {
    padding-left: 3.125rem;
  }
}
html[dir="rtl"] .pr-95 {
  padding-left: 5.9375rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-95 {
    padding-left: 4.24107rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-95 {
    padding-left: 3.29861rem;
  }
}
html[dir="rtl"] .pr-100 {
  padding-left: 6.25rem;
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-100 {
    padding-left: 4.46429rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-100 {
    padding-left: 3.47222rem;
  }
}
html[dir="rtl"] .pr-105 {
  padding-left: 6.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-105 {
    padding-left: 4.6875rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-105 {
    padding-left: 2.98295rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-105 {
    padding-left: 1.82292rem;
  }
}
html[dir="rtl"] .pr-110 {
  padding-left: 6.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-110 {
    padding-left: 4.91071rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-110 {
    padding-left: 3.125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-110 {
    padding-left: 1.90972rem;
  }
}
html[dir="rtl"] .pr-115 {
  padding-left: 7.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-115 {
    padding-left: 5.13393rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-115 {
    padding-left: 3.26705rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-115 {
    padding-left: 1.99653rem;
  }
}
html[dir="rtl"] .pr-120 {
  padding-left: 7.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-120 {
    padding-left: 5.35714rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-120 {
    padding-left: 3.40909rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-120 {
    padding-left: 2.08333rem;
  }
}
html[dir="rtl"] .pr-125 {
  padding-left: 7.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-125 {
    padding-left: 5.58036rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-125 {
    padding-left: 3.55114rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-125 {
    padding-left: 2.17014rem;
  }
}
html[dir="rtl"] .pr-130 {
  padding-left: 8.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-130 {
    padding-left: 5.80357rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-130 {
    padding-left: 3.69318rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-130 {
    padding-left: 2.25694rem;
  }
}
html[dir="rtl"] .pr-135 {
  padding-left: 8.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-135 {
    padding-left: 6.02679rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-135 {
    padding-left: 3.83523rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-135 {
    padding-left: 2.34375rem;
  }
}
html[dir="rtl"] .pr-140 {
  padding-left: 8.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-140 {
    padding-left: 6.25rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-140 {
    padding-left: 3.97727rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-140 {
    padding-left: 2.43056rem;
  }
}
html[dir="rtl"] .pr-145 {
  padding-left: 9.0625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-145 {
    padding-left: 6.47321rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-145 {
    padding-left: 4.11932rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-145 {
    padding-left: 2.51736rem;
  }
}
html[dir="rtl"] .pr-150 {
  padding-left: 9.375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-150 {
    padding-left: 6.69643rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-150 {
    padding-left: 4.26136rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-150 {
    padding-left: 2.60417rem;
  }
}
html[dir="rtl"] .pr-155 {
  padding-left: 9.6875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-155 {
    padding-left: 6.91964rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-155 {
    padding-left: 4.40341rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-155 {
    padding-left: 2.69097rem;
  }
}
html[dir="rtl"] .pr-160 {
  padding-left: 10rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-160 {
    padding-left: 7.14286rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-160 {
    padding-left: 4.54545rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-160 {
    padding-left: 2.77778rem;
  }
}
html[dir="rtl"] .pr-165 {
  padding-left: 10.3125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-165 {
    padding-left: 7.36607rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-165 {
    padding-left: 4.6875rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-165 {
    padding-left: 2.86458rem;
  }
}
html[dir="rtl"] .pr-170 {
  padding-left: 10.625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-170 {
    padding-left: 7.58929rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-170 {
    padding-left: 4.82955rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-170 {
    padding-left: 2.95139rem;
  }
}
html[dir="rtl"] .pr-175 {
  padding-left: 10.9375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-175 {
    padding-left: 7.8125rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-175 {
    padding-left: 4.97159rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-175 {
    padding-left: 3.03819rem;
  }
}
html[dir="rtl"] .pr-180 {
  padding-left: 11.25rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-180 {
    padding-left: 8.03571rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-180 {
    padding-left: 5.11364rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-180 {
    padding-left: 3.125rem;
  }
}
html[dir="rtl"] .pr-185 {
  padding-left: 11.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-185 {
    padding-left: 8.25893rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-185 {
    padding-left: 5.25568rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-185 {
    padding-left: 3.21181rem;
  }
}
html[dir="rtl"] .pr-190 {
  padding-left: 11.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-190 {
    padding-left: 8.48214rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-190 {
    padding-left: 5.39773rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-190 {
    padding-left: 3.29861rem;
  }
}
html[dir="rtl"] .pr-195 {
  padding-left: 12.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-195 {
    padding-left: 8.70536rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-195 {
    padding-left: 5.53977rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-195 {
    padding-left: 3.38542rem;
  }
}
html[dir="rtl"] .pr-200 {
  padding-left: 12.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-200 {
    padding-left: 8.92857rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-200 {
    padding-left: 5.68182rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-200 {
    padding-left: 3.47222rem;
  }
}
html[dir="rtl"] .pr-205 {
  padding-left: 12.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-205 {
    padding-left: 9.15179rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-205 {
    padding-left: 5.82386rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-205 {
    padding-left: 3.55903rem;
  }
}
html[dir="rtl"] .pr-210 {
  padding-left: 13.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-210 {
    padding-left: 9.375rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-210 {
    padding-left: 5.96591rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-210 {
    padding-left: 3.64583rem;
  }
}
html[dir="rtl"] .pr-215 {
  padding-left: 13.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-215 {
    padding-left: 9.59821rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-215 {
    padding-left: 6.10795rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-215 {
    padding-left: 3.73264rem;
  }
}
html[dir="rtl"] .pr-220 {
  padding-left: 13.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-220 {
    padding-left: 9.82143rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-220 {
    padding-left: 6.25rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-220 {
    padding-left: 3.81944rem;
  }
}
html[dir="rtl"] .pr-225 {
  padding-left: 14.0625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-225 {
    padding-left: 10.04464rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-225 {
    padding-left: 6.39205rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-225 {
    padding-left: 3.90625rem;
  }
}
html[dir="rtl"] .pr-230 {
  padding-left: 14.375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-230 {
    padding-left: 10.26786rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-230 {
    padding-left: 6.53409rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-230 {
    padding-left: 3.99306rem;
  }
}
html[dir="rtl"] .pr-235 {
  padding-left: 14.6875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-235 {
    padding-left: 10.49107rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-235 {
    padding-left: 6.67614rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-235 {
    padding-left: 4.07986rem;
  }
}
html[dir="rtl"] .pr-240 {
  padding-left: 15rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-240 {
    padding-left: 10.71429rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-240 {
    padding-left: 6.81818rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-240 {
    padding-left: 4.16667rem;
  }
}
html[dir="rtl"] .pr-245 {
  padding-left: 15.3125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-245 {
    padding-left: 10.9375rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-245 {
    padding-left: 6.96023rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-245 {
    padding-left: 4.25347rem;
  }
}
html[dir="rtl"] .pr-250 {
  padding-left: 15.625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-250 {
    padding-left: 11.16071rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-250 {
    padding-left: 7.10227rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-250 {
    padding-left: 4.34028rem;
  }
}
html[dir="rtl"] .pr-255 {
  padding-left: 15.9375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-255 {
    padding-left: 11.38393rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-255 {
    padding-left: 7.24432rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-255 {
    padding-left: 4.42708rem;
  }
}
html[dir="rtl"] .pr-260 {
  padding-left: 16.25rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-260 {
    padding-left: 11.60714rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-260 {
    padding-left: 7.38636rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-260 {
    padding-left: 4.51389rem;
  }
}
html[dir="rtl"] .pr-265 {
  padding-left: 16.5625rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-265 {
    padding-left: 11.83036rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-265 {
    padding-left: 7.52841rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-265 {
    padding-left: 4.60069rem;
  }
}
html[dir="rtl"] .pr-270 {
  padding-left: 16.875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-270 {
    padding-left: 12.05357rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-270 {
    padding-left: 7.67045rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-270 {
    padding-left: 4.6875rem;
  }
}
html[dir="rtl"] .pr-275 {
  padding-left: 17.1875rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-275 {
    padding-left: 12.27679rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-275 {
    padding-left: 7.8125rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-275 {
    padding-left: 4.77431rem;
  }
}
html[dir="rtl"] .pr-280 {
  padding-left: 17.5rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-280 {
    padding-left: 12.5rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-280 {
    padding-left: 7.95455rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-280 {
    padding-left: 4.86111rem;
  }
}
html[dir="rtl"] .pr-285 {
  padding-left: 17.8125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-285 {
    padding-left: 12.72321rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-285 {
    padding-left: 8.09659rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-285 {
    padding-left: 4.94792rem;
  }
}
html[dir="rtl"] .pr-290 {
  padding-left: 18.125rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-290 {
    padding-left: 12.94643rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-290 {
    padding-left: 8.23864rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-290 {
    padding-left: 5.03472rem;
  }
}
html[dir="rtl"] .pr-295 {
  padding-left: 18.4375rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-295 {
    padding-left: 13.16964rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-295 {
    padding-left: 8.38068rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-295 {
    padding-left: 5.12153rem;
  }
}
html[dir="rtl"] .pr-300 {
  padding-left: 18.75rem;
}
@media (max-width: 1200px) {
  html[dir="rtl"] .pr-300 {
    padding-left: 13.39286rem;
  }
}
@media (max-width: 991px) {
  html[dir="rtl"] .pr-300 {
    padding-left: 8.52273rem;
  }
}
@media (max-width: 767px) {
  html[dir="rtl"] .pr-300 {
    padding-left: 5.20833rem;
  }
}
@media (max-width: 767px) {
  html .section-block-dark.pb-140 {
    padding-bottom: 3.75rem;
  }
}
@media (max-width: 767px) {
  html .section-block-dark .mb-150 {
    margin-bottom: 3.75rem;
  }
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
  margin: 0;
  position: relative;
  font-family: UniversLTStd;
  font-size: 1rem;
  transition: 0.3s ease all;
}
body.page-partsGenericPage {
  background-color: #262626;
}
body,
footer,
main {
  overflow-x: hidden;
}
img {
  max-width: 100%;
  transition: 0.3s ease all;
}
a {
  transition: 0.3s ease all;
  color: inherit;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
h1 {
  font-size: 4rem;
  font-family: UniversLTStd-Bold;
  line-height: 78px;
}
@media (max-height: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  h1 {
    font-size: 3rem;
    line-height: normal;
  }
}
@media (max-width: 1279px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  h1 {
    font-size: 3.375rem;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  h1 {
    font-size: 3rem;
  }
}
@media (max-width: 991px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  h1 {
    font-size: 1.75rem;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .product-details
  .product-title
  h2,
.product-details
  .product-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.product-details .product-title h1,
h2 {
  font-size: 3rem;
  font-family: UniversLTStd-Bold;
  line-height: 60px;
}
@media (max-width: 1279px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .product-details
    .product-title
    h2,
  .product-details
    .product-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .product-details .product-title h1,
  h2 {
    font-size: 2.375rem;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .product-details
    .product-title
    h2,
  .product-details
    .product-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .product-details .product-title h1,
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .product-details
    .product-title
    h2,
  .product-details
    .product-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .product-details .product-title h1,
  h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 575px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .product-details
    .product-title
    h2,
  .product-details
    .product-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .product-details .product-title h1,
  h2 {
    font-size: 1.25rem;
  }
}
h3 {
  font-size: 2.25rem;
  font-family: UniversLTStd-Bold;
  line-height: 46px;
}
@media (max-width: 1279px) {
  h3 {
    font-size: 2rem;
    line-height: normal;
  }
}
@media (max-width: 1179px) {
  h3 {
    font-size: 1.75rem;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 1.375rem;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 1.125rem;
  }
}
h4 {
  font-size: 1.5rem;
  font-family: UniversLTStd-Bold;
  line-height: 32px;
}
@media (max-width: 1279px) {
  h4 {
    font-size: 1.375rem;
    line-height: normal;
  }
}
@media (max-width: 1199px) {
  h4 {
    font-size: 1.25rem;
  }
}
@media (max-width: 991px) {
  h4 {
    font-size: 1.125rem;
  }
}
@media (max-width: 575px) {
  h4 {
    font-size: 1rem;
  }
}
h5 {
  font-size: 1.25rem;
  font-family: UniversLTStd-Bold;
  line-height: 26px;
}
@media (max-width: 1199px) {
  h5 {
    font-size: 1.125rem;
    line-height: normal;
  }
}
@media (max-width: 991px) {
  h5 {
    font-size: 1rem;
  }
}
@media (max-width: 575px) {
  h5 {
    font-size: 0.9375rem;
  }
}
.text-block-with-icon h5,
h6 {
  font-size: 0.9375rem;
  font-family: UniversLTStd-Bold;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .text-block-with-icon h5,
  h6 {
    font-size: 0.875rem;
    line-height: normal;
  }
}
.section-title ul,
form .form-group label,
p {
  font-size: 0.9375rem;
  font-family: UniversLTStd;
  line-height: 22px;
}
@media (max-width: 1024px) {
  .section-title ul,
  form .form-group label,
  p {
    font-size: 0.875rem;
    line-height: normal;
  }
}
.section-title ul strong,
form .form-group label strong,
p strong {
  font-family: UniversLTStd-Bold;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .title-icon
  h2,
.title-icon
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.title-icon h1,
.title-icon h2,
.title-icon h3,
.title-icon h4,
.title-icon h5,
.title-icon h6 {
  position: relative;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .title-icon
  h2:after,
.title-icon
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2:after,
.title-icon h1:after,
.title-icon h2:after,
.title-icon h3:after,
.title-icon h4:after,
.title-icon h5:after,
.title-icon h6:after {
  content: "\e906";
  font-family: icomoon;
  color: #1a1a1a;
  font-size: 12px;
  margin-left: 10px;
}
.spinner-border {
  vertical-align: middle;
}
.container-fluid {
  padding: 0 48px;
}
@media (max-width: 1200px) {
  .container-fluid {
    padding: 0 15px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1170px;
    padding: 0;
  }
}
.container,
.container-fluid {
  transition: 0.3s ease all;
}
.container-left-half,
.container-right-half {
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
  .container-left-half,
  .container-right-half {
    width: 375px;
  }
}
@media (min-width: 992px) {
  .container-left-half,
  .container-right-half {
    width: 485px;
  }
}
@media (min-width: 1200px) {
  .container-left-half,
  .container-right-half {
    width: 585px;
  }
}
.container-left-half {
  margin-right: 0;
  margin-left: auto;
}
.container-right-half {
  margin-right: auto;
  margin-left: 0;
}
.alert {
  padding: 14px 18px 14px 64px;
  position: relative;
  line-height: normal;
  border-radius: 6px;
  font-family: UniversLTStd;
}
.alert-danger strong,
.alert-info strong,
.alert-success strong,
.alert-warning strong {
  font-size: 0.9375rem;
  font-family: UniversLTStd-Bold;
  line-height: 15px;
  display: block;
}
.alert-danger strong + span,
.alert-info strong + span,
.alert-success strong + span,
.alert-warning strong + span {
  margin-top: 10px;
  display: inline-block;
}
.alert-danger .close,
.alert-info .close,
.alert-success .close,
.alert-warning .close {
  font-size: 17px;
  padding: 0;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  transition: 0.3s ease all;
  outline: 0;
}
.alert-danger .close:hover,
.alert-info .close:hover,
.alert-success .close:hover,
.alert-warning .close:hover {
  opacity: 1;
  color: inherit;
}
.alert-danger .alert-icon,
.alert-info .alert-icon,
.alert-success .alert-icon,
.alert-warning .alert-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.alert-danger .alert-icon i,
.alert-info .alert-icon i,
.alert-success .alert-icon i,
.alert-warning .alert-icon i {
  font-size: 30px;
}
.alert-danger.alert-medium,
.alert-info.alert-medium,
.alert-success.alert-medium,
.alert-warning.alert-medium {
  padding: 14px 18px 14px 54px;
}
.alert-danger.alert-medium .alert-icon i,
.alert-info.alert-medium .alert-icon i,
.alert-success.alert-medium .alert-icon i,
.alert-warning.alert-medium .alert-icon i {
  font-size: 20px;
}
.alert-danger.alert-medium strong + span,
.alert-info.alert-medium strong + span,
.alert-success.alert-medium strong + span,
.alert-warning.alert-medium strong + span {
  display: none;
}
.alert-success {
  color: #00b517;
  background-color: #e5f7e7;
  border-color: #e5f7e7;
}
.alert-info {
  color: #007bff;
  background-color: #f1f8ff;
  border-color: #f1f8ff;
}
.alert-warning {
  color: #ff9017;
  background-color: #fff3e7;
  border-color: #fff3e7;
}
.alert-danger {
  color: #fa3434;
  background-color: #feeaea;
  border-color: #feeaea;
}
.text-white {
  color: #fff;
}
.text-black {
  color: #000;
}
.text-black90 {
  color: #1a1a1a;
}
.text-yellow {
  color: #f86520;
}
.text-grey {
  color: grey;
}
.bg-lightBlue {
  background: #f1f8ff !important;
}
.bg-lightWhite {
  background: #f2f8ff !important;
}
.bg-lightWhite1 {
  background: #f2f2f2 !important;
}
.bg-lightBlack {
  background: #333 !important;
}
.bg-lightBlack1 {
  background: #1a1a1a !important;
}
.bg-yellow {
  background: #f86520 !important;
}
.bg-black70 {
  background: #404040 !important;
}
.bg-black80 {
  background: #333 !important;
}
.bg-black85 {
  background: #262626 !important;
}
.bg-black90 {
  background: #1a1a1a !important;
}
.bg-black92 {
  background: #181818 !important;
}
.bg-black95 {
  background: #0d0d0d !important;
}
.bg-black {
  background: #000 !important;
}
.bg-gray70 {
  background: #4d4d4d !important;
}
.bg-gray60 {
  background: #666 !important;
}
.bg-gray50 {
  background: grey !important;
}
.bg-gray40 {
  background: #999 !important;
}
.bg-grey35 {
  background: #d9d9d9 !important;
}
.bg-gray30 {
  background: #b3b3b3 !important;
}
.bg-gray {
  background: #4d4d4d !important;
}
.bg-white {
  background: #fff !important;
}
.bg-white5 {
  background: #f2f2f2 !important;
}
.bg-white10 {
  background: #e6e6e6 !important;
}
.bg-white15 {
  background: #bfbfbf !important;
}
.bg-white20 {
  background: #ccc !important;
}
.bg-yellow120 {
  background: #987707 !important;
}
.bg-yellow110 {
  background: #cca41b !important;
}
.bg-yellow {
  background: #f86520 !important;
}
.bg-yellow90 {
  background: #fed23c !important;
}
.bg-yellow80 {
  background: #fedd6d !important;
}
.bg-yellow75 {
  background: rgba(255, 132, 10, 0.75) !important;
}
.border-solid-1x {
  border: 1px solid #e4e4e4;
}
.border-solid-1x-yellow {
  border: 1px solid #f86520;
}
.border-solid-2x {
  border: 2px solid #e4e4e4;
}
.border-solid-2x-yellow {
  border: 2px solid #f86520;
}
.border-dashed-1x {
  border: 1px dashed #e4e4e4;
}
.border-dashed-1x-yellow {
  border: 1px dashed #f86520;
}
.border-dashed-2x {
  border: 2px dashed #e4e4e4;
}
.border-dashed-2x-yellow {
  border: 2px dashed #f86520;
}
.border-bottom-yellow {
  border-bottom: 1px solid #f86520;
}
.border-top-yellow {
  border-top: 1px solid #f86520;
}
.border-left-yellow {
  border-left: 1px solid #f86520;
}
.border-right-yellow {
  border-right: 1px solid #f86520;
}
.gradient-top {
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.4) 100%
  );
}
.gradient-bottom {
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.4) 0,
    rgba(0, 0, 0, 0) 100%
  );
}
.gradient-black-top {
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.4) 100%,
    rgba(255, 136, 27, 0.2) 100%
  );
}
.gradient-black-bottom {
  background-image: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.4) 0,
    rgba(255, 255, 255, 0) 100%
  );
}
.gradient-yellow-top {
  background-image: linear-gradient(
    0deg,
    rgba(255, 132, 10, 0) 0,
    rgba(255, 132, 10, 0.4) 100%
  );
}
.gradient-yellow-bottom {
  background-image: linear-gradient(
    0deg,
    rgba(255, 132, 10, 0.4) 0,
    rgba(255, 132, 10, 0) 100%
  );
}
.gradient-black-grey {
  background-image: linear-gradient(184deg, #262626 19%, #b3b3b3 0);
}
.gradient-black80-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(51, 51, 51, 0.1) 0,
    #333 75%
  ) !important;
}
.line-solid-1x {
  border-bottom: 1px solid #1a1a1a;
}
.line-solid-1x-yellow {
  border-bottom: 1px solid #f86520;
}
.line-solid-2x {
  border-bottom: 2px solid #1a1a1a;
}
.line-solid-2x-yellow {
  border-bottom: 2px solid #f86520;
}
.line-dashed-1x {
  border-bottom: 1px dashed #1a1a1a;
}
.line-dashed-1x-yellow {
  border-bottom: 1px solid #f86520;
}
.line-dashed-2x {
  border-bottom: 2px dashed #1a1a1a;
}
.line-dashed-2x-yellow {
  border-bottom: 2px dashed #f86520;
}
.noborder-radius {
  border-radius: 0 !important;
}
.font-sm-13 h6 {
  font-size: 13px;
  line-height: 18px;
}
.font-sm-11 h6 {
  font-size: 11px;
  line-height: 18px;
}
.font-sm-9 h6 {
  font-size: 9px;
  line-height: 18px;
}
.text-font-20 form .form-group label,
.text-font-20 p,
form .form-group .text-font-20 label {
  font-size: 20px;
  font-family: "Open Sans";
  line-height: 30px;
}
.text-font-15 form .form-group label,
.text-font-15 p,
form .form-group .text-font-15 label {
  font-size: 15px;
  font-family: "Open Sans";
  line-height: 22px;
}
.text-font-13 form .form-group label,
.text-font-13 p,
form .form-group .text-font-13 label {
  font-size: 13px;
  line-height: 18px;
}
.btn-wrapper a {
  margin-right: 30px;
  text-decoration: none;
}
.btn-wrapper a i {
  margin-left: 12px;
  font-size: 12px;
  position: relative;
  top: 1px;
}
.btn-wrapper a:last-child {
  margin-right: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  html[dir="ltr"]
  .section-title
  h2::first-letter,
html[dir="ltr"]
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2::first-letter,
html[dir="ltr"] .section-title h1::first-letter,
html[dir="ltr"] .section-title h2::first-letter,
html[dir="ltr"] .section-title h3::first-letter,
html[dir="ltr"] .section-title h4::first-letter,
html[dir="ltr"] .section-title h5::first-letter,
html[dir="ltr"] .section-title h6::first-letter {
  text-transform: capitalize;
}
.section-title h3 {
  margin-bottom: 26px;
}
@media (max-width: 991px) {
  .section-title h3 {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 767px) {
  .section-title h3 {
    margin-bottom: 0.625rem;
  }
}
.section-title form .form-group label,
.section-title p,
form .form-group .section-title label {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title form .form-group label,
  .section-title p,
  form .form-group .section-title label {
    margin-bottom: 1.25rem;
  }
}
.section-title form .form-group label a,
.section-title p a,
form .form-group .section-title label a {
  border-bottom: 1px dashed #f86520;
  color: #fff;
  text-decoration: none;
}
.section-title form .form-group label a:hover,
.section-title p a:hover,
form .form-group .section-title label a:hover {
  color: #f86520;
}
@media (max-width: 991px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .section-title
    h2
    br,
  .section-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2
    br,
  .section-title h1 br,
  .section-title h2 br,
  .section-title h3 br,
  .section-title h4 br,
  .section-title h5 br,
  .section-title h6 br {
    display: none;
  }
}
.section-title.small-col form .form-group label,
.section-title.small-col p,
form .form-group .section-title.small-col label {
  max-width: 90%;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-title.title-yellow
  h2,
.section-title.title-yellow
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-title.title-yellow h1,
.section-title.title-yellow h2,
.section-title.title-yellow h3,
.section-title.title-yellow h4,
.section-title.title-yellow h5,
.section-title.title-yellow h6 {
  color: #f86520;
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .section-title.title-yellow
    h2,
  .section-title.title-yellow
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .section-title.title-yellow h1,
  .section-title.title-yellow h2,
  .section-title.title-yellow h3,
  .section-title.title-yellow h4,
  .section-title.title-yellow h5,
  .section-title.title-yellow h6 {
    margin-bottom: 1.25rem;
  }
}
.section-title.title-yellow form .form-group label,
.section-title.title-yellow p,
form .form-group .section-title.title-yellow label {
  color: #fff;
}
.section-title.title-yellow form .form-group label + br,
.section-title.title-yellow p + br,
form .form-group .section-title.title-yellow label + br {
  display: none;
}
.section-title.title-yellow form .form-group label,
.section-title.title-yellow p,
.section-title.title-yellow ul,
form .form-group .section-title.title-yellow label {
  margin-bottom: 0.9375rem;
}
.section-title.title-yellow form .form-group label:last-child,
.section-title.title-yellow p:last-child,
.section-title.title-yellow ul:last-child,
form .form-group .section-title.title-yellow label:last-child {
  margin-bottom: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-title.text-white
  h2,
.section-title.text-white
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-title.text-white h1,
.section-title.text-white h2,
.section-title.text-white h3,
.section-title.text-white h4,
.section-title.text-white h5,
.section-title.text-white h6 {
  margin-bottom: 28px;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .section-title.text-white
    h2,
  .section-title.text-white
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .section-title.text-white h1,
  .section-title.text-white h2,
  .section-title.text-white h3,
  .section-title.text-white h4,
  .section-title.text-white h5,
  .section-title.text-white h6 {
    margin-bottom: 1.25rem;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-title.title-black
  h2,
.section-title.title-black
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-title.title-black h1,
.section-title.title-black h2,
.section-title.title-black h3,
.section-title.title-black h4,
.section-title.title-black h5,
.section-title.title-black h6 {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .section-title.title-black
    h2,
  .section-title.title-black
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .section-title.title-black h1,
  .section-title.title-black h2,
  .section-title.title-black h3,
  .section-title.title-black h4,
  .section-title.title-black h5,
  .section-title.title-black h6 {
    margin-bottom: 1.25rem;
  }
}
.section-title.title-black form .form-group label,
.section-title.title-black p,
form .form-group .section-title.title-black label {
  margin-bottom: 0;
}
.section-title.title-black form .form-group label a,
.section-title.title-black p a,
form .form-group .section-title.title-black label a {
  color: #000;
  border-bottom: 1px dashed #000;
}
.section-title.title-black form .form-group label a:hover,
.section-title.title-black p a:hover,
form .form-group .section-title.title-black label a:hover {
  color: #f86520;
  border-bottom: 1px dashed #f86520;
}
.section-title.title-black form .form-group label + label,
.section-title.title-black form .form-group label + p,
.section-title.title-black form .form-group p + label,
.section-title.title-black p + p,
form .form-group .section-title.title-black label + label,
form .form-group .section-title.title-black label + p,
form .form-group .section-title.title-black p + label {
  margin-top: 15px;
}
.section-title.has-btn form .form-group label,
.section-title.has-btn p,
form .form-group .section-title.has-btn label {
  margin-bottom: 0;
}
.section-title ul {
  margin: 0 0 1.875rem 0;
  padding: 0;
  list-style: none;
}
.section-title ul li {
  position: relative;
  line-height: normal;
  padding-left: 0.9375rem;
  margin-bottom: 0.9375rem;
  color: #fff;
}
.section-title ul li:before {
  content: "";
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  line-height: 1;
  display: block;
  height: 1px;
  background: #fff;
  width: 7px;
  top: 11px;
}
.section-title ul li:after {
  content: "";
  transform: rotate(-45deg);
  border: solid #fff;
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 2px;
  position: absolute;
  left: 2px;
  top: 9px;
  width: 0;
  height: 0;
}
.infograph-light .section-title form .form-group label a,
.infograph-light .section-title p a,
form .form-group .infograph-light .section-title label a {
  color: #000;
}
.social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-media ul li {
  display: inline-block;
  margin-right: 2.125rem;
}
@media (max-width: 767px) {
  .social-media ul li {
    margin-right: 0.9375rem;
  }
}
.social-media ul li:last-child {
  margin-right: 0;
}
.social-media ul li a {
  font-size: 1.875rem;
  line-height: normal;
  color: grey;
  text-decoration: none;
}
.social-media ul li a:hover {
  opacity: 0.8;
}
.box-wrapper {
  width: 88px;
  height: 50px;
  border-radius: 4px;
}
.banner-shape {
  position: absolute;
  width: 100%;
  height: 68px;
  left: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .banner-shape {
    height: 34px;
  }
}
.banner-shape::after,
.banner-shape::before {
  content: "";
  position: absolute;
  top: 0;
  border-top: 0;
  width: 0;
  height: 0;
}
.banner-shape::before {
  left: 0;
  border-bottom: 68px solid transparent;
  border-left: 65vw solid #fff;
}
@media (max-width: 991px) {
  .banner-shape::before {
    border-bottom: 34px solid transparent;
  }
}
.banner-shape::after {
  right: 0;
  border-bottom: 30px solid transparent;
  border-right: 35vw solid #fff;
}
@media (max-width: 991px) {
  .banner-shape::after {
    border-bottom: 15px solid transparent;
  }
}
.banner-shape.shape-top {
  top: -1px;
}
.banner-shape.shape-top-rev {
  top: -1px;
  transform: scaleX(-1);
}
.banner-shape.shape-bottom {
  bottom: -1px;
  transform: scaleY(-1);
}
.banner-shape.shape-bottom-rev {
  bottom: -1px;
  transform: scale(-1);
}
.banner-shape.shape-black::before {
  border-left: 65vw solid #000;
}
.banner-shape.shape-black::after {
  border-right: 35vw solid #000;
}
.banner-shape.shape-black-equal::before {
  border-bottom: 48px solid transparent;
  border-left: 50vw solid #000;
}
@media (max-width: 991px) {
  .banner-shape.shape-black-equal::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black-equal::after {
  border-bottom: 48px solid transparent;
  border-right: 50vw solid #000;
}
@media (max-width: 991px) {
  .banner-shape.shape-black-equal::after {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black85::before {
  border-left: 65vw solid #262626;
}
.banner-shape.shape-black85::after {
  border-right: 35vw solid #262626;
}
.banner-shape.shape-black85-up::before {
  right: 0;
  left: auto;
  border-left: 35vw solid #262626;
  border-bottom: 68px solid transparent;
}
@media (max-width: 991px) {
  .banner-shape.shape-black85-up::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black85-up::after {
  left: 0;
  right: auto;
  border-right: 65vw solid #262626;
  border-bottom: 68px solid transparent;
}
@media (max-width: 991px) {
  .banner-shape.shape-black85-up::after {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black80-up::before {
  right: 0;
  left: auto;
  border-left: 35vw solid #333;
  border-bottom: 68px solid transparent;
}
@media (max-width: 991px) {
  .banner-shape.shape-black80-up::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black80-up::after {
  left: 0;
  right: auto;
  border-right: 65vw solid #333;
  border-bottom: 68px solid transparent;
}
@media (max-width: 991px) {
  .banner-shape.shape-black80-up::after {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-black80::before {
  border-left: 65vw solid #333;
}
.banner-shape.shape-black80::after {
  border-right: 35vw solid #333;
}
.banner-shape.shape-white::before {
  border-left: 65vw solid #fff;
}
.banner-shape.shape-white::after {
  border-right: 35vw solid #fff;
}
.banner-shape.shape-white5::before {
  border-left: 65vw solid #f2f2f2;
}
.banner-shape.shape-white5::after {
  border-right: 35vw solid #f2f2f2;
}
.banner-shape.shape-white10::before {
  border-left: 65vw solid #e6e6e6;
}
.banner-shape.shape-white10::after {
  border-right: 35vw solid #e6e6e6;
}
.banner-shape.shape-white15::before {
  border-left: 65vw solid #bfbfbf;
}
.banner-shape.shape-white15::after {
  border-right: 35vw solid #bfbfbf;
}
.banner-shape.shape-grey30::before {
  border-left: 65vw solid #b3b3b3;
}
.banner-shape.shape-grey30::after {
  border-right: 35vw solid #b3b3b3;
}
.banner-shape.shape-grey35::before {
  border-left: 65vw solid #d9d9d9;
}
.banner-shape.shape-grey35::after {
  border-right: 35vw solid #d9d9d9;
}
.banner-shape.shape-grey35-equal::before {
  border-bottom: 48px solid transparent;
  border-left: 50vw solid #d9d9d9;
}
@media (max-width: 991px) {
  .banner-shape.shape-grey35-equal::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-grey35-equal::after {
  border-bottom: 48px solid transparent;
  border-right: 50vw solid #d9d9d9;
}
@media (max-width: 991px) {
  .banner-shape.shape-grey35-equal::after {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-grey::before {
  border-left: 65vw solid #4d4d4d;
}
.banner-shape.shape-grey::after {
  border-right: 35vw solid #4d4d4d;
}
.banner-shape.shape-grey-equal::before {
  border-bottom: 48px solid transparent;
  border-left: 50vw solid #4d4d4d;
}
@media (max-width: 991px) {
  .banner-shape.shape-grey-equal::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-grey-equal::after {
  border-bottom: 48px solid transparent;
  border-right: 50vw solid #4d4d4d;
}
@media (max-width: 991px) {
  .banner-shape.shape-grey-equal::after {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-yellow::before {
  border-left: 65vw solid #f86520;
}
.banner-shape.shape-yellow::after {
  border-right: 35vw solid #f86520;
}
.banner-shape.shape-yellow-equal::before {
  border-bottom: 48px solid transparent;
  border-left: 50vw solid #f86520;
}
@media (max-width: 991px) {
  .banner-shape.shape-yellow-equal::before {
    border-bottom: 24px solid transparent;
  }
}
.banner-shape.shape-yellow-equal::after {
  border-bottom: 48px solid transparent;
  border-right: 50vw solid #f86520;
}
@media (max-width: 991px) {
  .banner-shape.shape-yellow-equal::after {
    border-bottom: 24px solid transparent;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, #000 100%);
}
.overlay-about {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(2, 2, 2, 0.66) 18%, #333 50%);
}
.overlay-black80 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 18%, #333 100%);
}
.overlay-timeline {
  background-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0,
    rgba(0, 0, 0, 0.33) 100%
  );
}
.bg-cover {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
}
.bg-cover.bg-position-center {
  background-position: center !important;
}
.bg-cover.bg-position-bottom {
  background-position: bottom center !important;
}
.bg-contain {
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
}
.bg-contain.bg-position-center {
  background-position: center !important;
}
.bg-contain.bg-position-bottom {
  background-position: bottom center !important;
}
main .overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9) 0,
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}
.tags .badge {
  padding: 9px 10px;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 12px;
  font-family: UniversLTStd-Bold;
  color: #1a1a1a;
  background: #f86520;
}
@media (max-width: 1024px) {
  .breadcrumb-wrapper {
    margin-top: 1.25rem;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper {
    margin-top: 0;
  }
}
.breadcrumb-wrapper .breadcrumb {
  background-color: transparent;
  border-radius: 0;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .breadcrumb-wrapper .breadcrumb {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.breadcrumb-wrapper .breadcrumb li {
  font-size: 0.8125rem;
  font-family: UniversLTStd-Bold;
  color: #fff;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .breadcrumb li {
    font-size: 0.75rem;
  }
}
.breadcrumb-wrapper .breadcrumb li.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
  font-family: inherit;
}
.breadcrumb-wrapper .breadcrumb li a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb-wrapper .breadcrumb li a:hover {
  color: #f86520;
}
.breadcrumb-wrapper .breadcrumb.text-black li {
  color: #1a1a1a;
}
.breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before {
  color: #1a1a1a;
}
@media (min-width: 768px) {
  .container .container .breadcrumb-wrapper .breadcrumb {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.bg-black .breadcrumb-wrapper .breadcrumb.text-black,
.bg-black70 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-black80 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-black85 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-black90 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-black95 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray30 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray35 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray40 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray50 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray60 .breadcrumb-wrapper .breadcrumb.text-black,
.bg-gray70 .breadcrumb-wrapper .breadcrumb.text-black {
  color: #fff;
}
.bg-black .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-black70 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-black80 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-black85 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-black90 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-black95 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray30 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray35 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray40 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray50 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray60 .breadcrumb-wrapper .breadcrumb.text-black li,
.bg-gray70 .breadcrumb-wrapper .breadcrumb.text-black li {
  color: #fff;
}
.bg-black
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-black70
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-black80
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-black85
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-black90
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-black95
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray30
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray35
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray40
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray50
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray60
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before,
.bg-gray70
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before {
  color: #fff;
}
.cta-block-content h6 {
  margin-bottom: 20px;
}
.cta-block-content h2 {
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .cta-block-content h2 br {
    display: none;
  }
}
.cta-block-content form .form-group label,
.cta-block-content p,
form .form-group .cta-block-content label {
  margin-bottom: 25px;
}
.two-col-text-image-section {
  position: relative;
}
@media (min-width: 768px) {
  .two-col-text-image-section .col-image-wrapper {
    position: static;
  }
  .two-col-text-image-section .col-image-wrapper .block-image {
    width: 50vw;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    height: 100%;
  }
  .two-col-text-image-section .col-image-wrapper .block-image img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
.disclaimer-text {
  position: relative;
  z-index: 2;
  font-size: 0.6rem;
  font-style: italic;
}
.disclaimer-text a {
  color: #f86520;
}
.disclaimer-text a:hover {
  color: #f86520;
}
.section-title .two-col-content form .form-group label,
.section-title .two-col-content p,
form .form-group .section-title .two-col-content label {
  margin-bottom: 0;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .section-title .two-col-content form .form-group label,
  .section-title .two-col-content p,
  form .form-group .section-title .two-col-content label {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .section-title .two-col-content form .form-group label,
  .section-title .two-col-content p,
  form .form-group .section-title .two-col-content label {
    padding-bottom: 15px;
  }
}
.title-light {
  color: grey;
}
.two-col-content {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 767px) {
  .two-col-content {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.two-col-content form .form-group label,
.two-col-content p,
.two-col-content ul,
form .form-group .two-col-content label {
  -webkit-column-break-inside: avoid;
}
.two-col-content ul {
  margin: 0;
  padding: 0 0 1.875rem 0;
  list-style: none;
}
.two-col-content ul li {
  position: relative;
  line-height: normal;
  padding-left: 0.9375rem;
  margin-bottom: 0.9375rem;
}
.two-col-content ul li::before {
  content: "-";
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
}
.two-col-content.simple-content form .form-group label,
.two-col-content.simple-content p,
form .form-group .two-col-content.simple-content label {
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 767px) {
  .two-col-content.simple-content form .form-group label,
  .two-col-content.simple-content p,
  form .form-group .two-col-content.simple-content label {
    padding-right: 1.875rem;
  }
}
.two-col-content.simple-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.two-col-content.simple-content ul li {
  position: relative;
  line-height: normal;
  padding-left: 2.1875rem;
  letter-spacing: -0.5px;
}
.two-col-content.simple-content ul li::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 8px;
  width: 5px;
  height: 5px;
  display: inline-block;
  background: #000;
  border-radius: 50px;
}
.two-col-content form .form-group label:last-child,
.two-col-content p:last-child,
form .form-group .two-col-content label:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
.search-form {
  max-width: 470px;
}
.search-form.w-100 {
  max-width: none;
}
.search-form .theme-btn {
  text-align: center !important;
}
.search-form .form-group label {
  margin-bottom: 0.3125rem;
}
@media (max-width: 767px) {
  .search-form .input-group input {
    margin-right: 0.625rem;
  }
}
.pagination-nav {
  margin-top: 3.75rem;
}
@media (max-width: 767px) {
  .pagination-nav {
    margin-top: 0;
  }
}
.pagination-nav .pagination li {
  margin-right: 3px;
  position: relative;
}
.pagination-nav .pagination li.arrow-next a.page-link,
.pagination-nav .pagination li.arrow-prev a.page-link {
  min-width: 34px;
  height: 34px;
}
.pagination-nav .pagination li a.page-link {
  border: none;
  border-radius: 0 !important;
  background-color: #e6e6e6;
  color: #1a1a1a;
  line-height: normal;
  font-size: 0.9375rem;
  margin: 0;
  padding: 8px;
  min-width: 36px;
  text-align: center;
  outline: 0 !important;
  box-shadow: none !important;
}
.pagination-nav .pagination li a.page-link span {
  line-height: normal;
}
.pagination-nav .pagination li a.page-link span i {
  line-height: normal;
  font-size: 0.8125rem;
}
.pagination-nav .pagination li.active a.page-link,
.pagination-nav .pagination li.mixitup-control-active a.page-link,
.pagination-nav .pagination li:hover a.page-link {
  background-color: #000;
  color: #fff;
}
.pagination-nav .pagination li.active:first-child a::before,
.pagination-nav .pagination li.mixitup-control-active:first-child a::before,
.pagination-nav .pagination li:hover:first-child a::before {
  border-right: 12px solid #000;
}
.pagination-nav .pagination li.active:last-child a::before,
.pagination-nav .pagination li.mixitup-control-active:last-child a::before,
.pagination-nav .pagination li:hover:last-child a::before {
  border-left: 12px solid #000;
}
.pagination-nav .pagination li:first-child {
  min-width: 50px;
}
@media (max-width: 767px) {
  .pagination-nav .pagination li:first-child {
    margin-right: 0.3125rem;
  }
}
.pagination-nav .pagination li:first-child a {
  position: relative;
}
.pagination-nav .pagination li:first-child a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 19px solid transparent;
  border-right: 12px solid #e6e6e6;
  position: absolute;
  left: -12px;
  top: 0;
  transition: 0.3s ease all;
}
.pagination-nav .pagination li:last-child {
  min-width: 50px;
  margin-left: 1.5rem;
  margin-right: 0;
}
@media (max-width: 767px) {
  .pagination-nav .pagination li:last-child {
    margin-left: 0.3125rem;
  }
}
.pagination-nav .pagination li:last-child a {
  position: relative;
  margin-right: -1px;
}
.pagination-nav .pagination li:last-child a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 12px solid #e6e6e6;
  position: absolute;
  right: -12px;
  top: 0;
  transition: 0.3s ease all;
}
.pagination-nav .pagination li.arrow-next {
  margin-right: 0 !important;
}
.pagination-nav .pagination li.disabled {
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 767px) {
  .pagination-nav .pagination {
    transform: scale(0.7);
  }
}
.pagination-nav .pagination.simple-pagination li:nth-last-child(2) {
  margin-right: 0;
}
.report-tag {
  margin-right: 0.5rem;
  line-height: normal;
}
.report-tag span {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #1a1a1a;
  display: inline-block;
  margin-right: 2px;
  vertical-align: middle;
}
.block-information .alert {
  background: #f86520;
  border-color: #f86520;
  color: #1a1a1a;
  border-radius: 0;
  padding: 35px 63px;
}
@media (max-width: 767px) {
  .block-information .alert {
    padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  }
}
.block-information .alert .alert-icon {
  left: 25px;
}
@media (max-width: 767px) {
  .block-information .alert .alert-icon {
    left: 0.75rem;
  }
}
.shape-top-single {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  left: 0;
}
.shape-top-single::before {
  content: "";
  position: absolute;
  top: 0;
  border-top: 0;
  width: 0;
  height: 0;
  border-bottom: 100px solid transparent;
  border-right: 100vw solid #fff;
}
@media (max-width: 991px) {
  .shape-top-single::before {
    border-bottom: 50px solid transparent;
  }
}
.shape-bottom-single {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  left: 0;
}
.shape-bottom-single::after,
.shape-bottom-single::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  bottom: 0;
}
.shape-bottom-single::before {
  left: 0;
  border-top: 48px solid transparent;
  border-right: 35vw solid #f86520;
}
@media (max-width: 991px) {
  .shape-bottom-single::before {
    border-top: 24px solid transparent;
  }
}
.shape-bottom-single::after {
  right: 0;
  border-top: 48px solid transparent;
  border-left: 65vw solid #f86520;
}
@media (max-width: 991px) {
  .shape-bottom-single::after {
    border-top: 24px solid transparent;
  }
}
.cta-banner-block.yellow {
  background: #f86520;
  color: #000;
}
.cta-banner-block.yellow .btn-black {
  opacity: 1 !important;
}
.cta-banner-block.yellow .btn-black:hover {
  background: rgba(26, 26, 26, 0.9);
}
.cta-banner-block.dark {
  background: #404040;
  color: #fff;
}
.cta-banner-block.dark .btn-black {
  background: #f86520;
  opacity: 1 !important;
}
.cta-banner-block.dark .btn-black span {
  color: #000;
}
.cta-banner-block.dark .btn-black:hover {
  background: rgba(255, 132, 10, 0.9);
}
.cta-banner-block.bg-black90 {
  color: #fff;
}
.cta-banner-block.bg-black90 .btn-black {
  background: #000;
}
.cta-banner-block.bg-black {
  color: #fff;
}
.cta-banner-block.bg-black .btn-black {
  background: #f86520;
}
.cta-banner-block.bg-black .btn-black span {
  color: #000;
}
@media (max-width: 767px) {
  .cta-banner-block .cta-block-image {
    margin-bottom: 1.875rem;
  }
}
.cta-banner-block .cta-block-content h6 {
  text-transform: uppercase;
}
.cta-banner-block .cta-block-content h2 {
  text-transform: capitalize;
}
.filter-select {
  display: flex;
  align-items: center;
  font-family: UniversLTStd-Bold;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .filter-select {
    font-size: 0.9375rem;
  }
}
.filter-select label {
  margin-bottom: 0;
}
.filter-select:not(.filter-sort) .select-custom .edd-body {
  min-width: 200px;
}
.filter-select .select-custom {
  display: inherit;
}
.filter-select .select-custom .edd-head {
  outline: 0;
}
.filter-select .select-custom .edd-head .edd-value {
  font-size: 1.5rem;
  height: auto;
  line-height: normal;
  padding: 0 25px 0 0;
  margin-left: 8px;
  position: relative;
}
@media (max-width: 767px) {
  .filter-select .select-custom .edd-head .edd-value {
    font-size: 0.9375rem;
    padding: 0 15px 0 0;
  }
}
.filter-select .select-custom .edd-head .edd-value::after {
  content: "";
  width: calc(100% - 35px);
  height: 1px;
  position: absolute;
  bottom: 4px;
  left: 0;
  background: #1a1a1a;
}
.filter-select .select-custom .edd-head .edd-arrow {
  width: auto;
  height: auto;
  top: calc(50% - 10px);
  right: 0;
  transform-origin: 0 12px;
}
.filter-select .select-custom .edd-head .edd-arrow::before {
  content: none;
}
.filter-select .select-custom .edd-head .edd-arrow::after {
  content: "\e906";
  font-family: icomoon;
}
@media (max-width: 767px) {
  .filter-select .select-custom .edd-head .edd-arrow::after {
    font-size: 0.75rem;
  }
}
.filter-select .select-custom .edd-head .edd-select {
  visibility: hidden;
}
.filter-select.filter-sort {
  font-size: 0.9375rem;
}
.filter-select.filter-sort .select-custom .edd-head .edd-value {
  font-size: 0.9375rem;
  padding: 0 20px 0 0;
}
.filter-select.filter-sort .select-custom .edd-head .edd-value::after {
  content: none;
}
.filter-select.filter-sort .select-custom .edd-head .edd-arrow {
  width: auto;
  top: calc(50% - 12px);
}
.filter-select.filter-sort .select-custom .edd-head .edd-arrow::after {
  font-size: 0.75rem;
}
.has-half-shape {
  overflow: visible !important;
}
.has-half-shape .shape-half-only {
  overflow: hidden;
  width: 50vw;
  display: block;
  height: 80px;
  position: absolute;
  top: -68px;
  z-index: 1;
}
@media (max-width: 991px) {
  .has-half-shape .shape-half-only {
    height: 40px;
    top: -34px;
  }
}
.has-half-shape .shape-half-only::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 70px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 65vw solid #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .has-half-shape .shape-half-only::before {
    border-top: 35px solid transparent;
  }
}
@media (max-width: 767px) {
  .two-col-white-grey {
    padding-bottom: 0 !important;
  }
}
.two-col-white-grey .shape-half-only {
  height: 50px;
  position: absolute;
  top: -45px;
  right: 0;
  width: calc(50% - 101px);
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .two-col-white-grey .shape-half-only {
    top: -26px;
    height: 25px;
  }
}
@media (max-width: 767px) {
  .two-col-white-grey .shape-half-only {
    display: none;
  }
}
.two-col-white-grey .shape-half-only::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 47px solid transparent;
  border-bottom: 0 solid transparent;
  border-right: 50vw solid #fff;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  .two-col-white-grey .shape-half-only::before {
    border-top: 26px solid transparent;
  }
}
.two-col-white-grey .column-block {
  position: static;
}
@media (max-width: 767px) {
  .two-col-white-grey .column-block {
    padding-right: 15px !important;
  }
}
@media (max-width: 767px) {
  .two-col-white-grey .column-block:last-child {
    position: relative;
    padding-top: 1.875rem;
    padding-bottom: 1.875rem;
  }
}
.two-col-white-grey .column-block:last-child::before {
  content: "";
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: calc(50% - 101px);
}
@media (max-width: 767px) {
  .two-col-white-grey .column-block:last-child::before {
    width: 100vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
.two-col-white-grey .column-block:last-child * {
  position: relative;
}
.two-column-section {
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .two-column-section {
    padding-bottom: 0 !important;
  }
}
.two-column-section .column-block {
  position: static;
}
.two-column-section .column-block .branch-wrapper {
  position: relative;
  z-index: 2;
}
@media (max-width: 991px) and (min-width: 768px) {
  .two-column-section .column-block {
    padding-right: 1.875rem;
  }
}
@media (max-width: 767px) {
  .two-column-section .column-block {
    position: relative;
    padding-bottom: 1.875rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .two-column-section .column-block:last-child {
    padding-right: 0;
    padding-left: 1.875rem;
  }
}
@media (max-width: 767px) {
  .two-column-section .column-block:last-child {
    position: relative;
    padding: 1.875rem 0;
  }
}
.two-column-section .column-block:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: #e6e6e6;
  height: 100%;
  width: 50vw;
  z-index: 1;
}
@media (max-width: 767px) {
  .two-column-section .column-block:last-child:before {
    width: 100vw;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  .two-column-section .content-wrapper {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .content-wrapper {
    max-width: 80%;
  }
}
@media (max-width: 767px) {
  .content-wrapper {
    margin-top: 1.875rem;
  }
}
@media (max-width: 767px) {
  .column-block .content-wrapper {
    margin-top: 0.3125rem;
  }
}
.slider-content {
  width: 100%;
  margin-top: 1.25rem;
}
.range-slider {
  display: block;
  position: relative;
  height: 36px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.range-slider .slider-touch-left,
.range-slider .slider-touch-right {
  box-sizing: border-box;
  display: block;
  position: absolute;
  height: 36px;
  width: 36px;
  padding: 4px;
  z-index: 2;
}
.range-slider .slider-touch-left span,
.range-slider .slider-touch-right span {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 50%;
}
.range-slider .slider-line {
  box-sizing: border-box;
  position: absolute;
  width: calc(100% - 36px);
  left: 18px;
  top: 16px;
  height: 4px;
  border-radius: 4px;
  background: #e6e6e6;
  z-index: 0;
  overflow: hidden;
}
.range-slider .slider-line span {
  display: block;
  height: 100%;
  width: 0%;
  background: #1a1a1a;
}
@media (max-width: 767px) {
  .range-value .number-group {
    margin-top: 1.25rem !important;
  }
}
.range-value .number-input {
  background: 0 0;
  border: 0;
  color: #1a1a1a;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 0.9375rem;
  -moz-appearance: none;
}
.range-value .number-input:focus {
  outline: 0;
}
.range-value .input-group {
  height: 40px;
  border: 1px solid #fff;
}
.range-value .input-group-append {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.range-value .input-group-append .input-group-text {
  color: #1a1a1a;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-family: UniversLTStd-Bold;
  background: 0 0;
  border: none;
}
.two-col-card {
  -moz-column-count: 2;
  column-count: 2;
  -moz-column-gap: 30px;
  column-gap: 30px;
}
@media (max-width: 991px) {
  .two-col-card {
    -moz-column-count: 1;
    column-count: 1;
  }
}
.two-col-card .card {
  page-break-inside: avoid;
  -moz-column-break-inside: avoid;
  break-inside: avoid-column;
}
.hero-slider-nav .slick-track:after,
.hero-slider-nav .slick-track:before {
  width: 100%;
}
.slick-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4.375rem;
}
@media (max-width: 767px) {
  .slick-controls {
    margin-top: 1.875rem;
  }
}
.slick-controls .slide-count {
  font-family: UniversLTStd-Bold;
  font-size: 0.8125rem;
  color: #1a1a1a;
  text-transform: uppercase;
}
.slick-controls .slide-nav {
  display: inherit;
}
.slick-controls .slide-nav .slick-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid #1a1a1a;
  text-align: center;
  position: relative;
  background: #000;
  color: #fff;
  transition: 0.3s ease all;
}
.slick-controls .slide-nav .slick-arrow.slick-prev-btn {
  margin-right: 1.125rem;
}
.slick-controls .slide-nav .slick-arrow.slick-disabled {
  background: 0 0;
  color: rgba(0, 0, 0, 0.3);
}
.slick-controls .slide-nav .slick-arrow i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.clip-top-right {
  -webkit-clip-path: polygon(
    65% 0,
    100% 35px,
    100% 100%,
    50% 100%,
    0 100%,
    0 45px
  );
  clip-path: polygon(65% 0, 100% 35px, 100% 100%, 50% 100%, 0 100%, 0 45px);
  margin-top: -45px;
  z-index: 3;
  position: relative;
  margin-bottom: -1px;
}
@media (max-width: 1200px) {
  .clip-top-right {
    -webkit-clip-path: polygon(
      65% 0,
      100% 15px,
      100% 100%,
      50% 100%,
      0 100%,
      0 25px
    );
    clip-path: polygon(65% 0, 100% 15px, 100% 100%, 50% 100%, 0 100%, 0 25px);
    margin-top: -2.1875rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-top-right {
    margin-top: 0 !important;
  }
}
.clip-top-left {
  -webkit-clip-path: polygon(
    35% 0,
    100% 45px,
    100% 100%,
    50% 100%,
    0 100%,
    0 35px
  );
  clip-path: polygon(35% 0, 100% 45px, 100% 100%, 50% 100%, 0 100%, 0 35px);
  margin-top: -55px;
  margin-bottom: -1px;
  z-index: 3;
  position: relative;
}
@media (max-width: 1200px) {
  .clip-top-left {
    -webkit-clip-path: polygon(
      35% 0,
      100% 25px,
      100% 100%,
      50% 100%,
      0 100%,
      0 15px
    );
    clip-path: polygon(35% 0, 100% 25px, 100% 100%, 50% 100%, 0 100%, 0 15px);
    margin-top: -2.1875rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-top-left {
    margin-top: 0 !important;
  }
}
.clip-top-center {
  -webkit-clip-path: polygon(50% 0, 100% 50px, 100% 100%, 0 100%, 0 50px);
  clip-path: polygon(50% 0, 100% 50px, 100% 100%, 0 100%, 0 50px);
  z-index: 4;
  margin-top: -5rem;
  position: relative;
  margin-bottom: -1px;
}
@media (max-width: 1200px) {
  .clip-top-center {
    -webkit-clip-path: polygon(50% 0, 100% 25px, 100% 100%, 0 100%, 0 25px);
    clip-path: polygon(50% 0, 100% 25px, 100% 100%, 0 100%, 0 25px);
    margin-top: -2.1875rem;
  }
}
@media (max-width: 767px) {
  .clip-top-center {
    -webkit-clip-path: polygon(50% 0, 100% 15px, 100% 100%, 0 100%, 0 15px);
    clip-path: polygon(50% 0, 100% 15px, 100% 100%, 0 100%, 0 15px);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-top-center {
    margin-top: 0 !important;
  }
}
.clip-bottom-center {
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 40px),
    50% 100%,
    0 calc(100% - 40px),
    0 0
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 40px),
    50% 100%,
    0 calc(100% - 40px),
    0 0
  );
  z-index: 4;
  margin-top: -1px;
  margin-bottom: -5rem;
  position: relative;
}
@media (max-width: 1200px) {
  .clip-bottom-center {
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 20px),
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      50% 100%,
      0 calc(100% - 20px),
      0 0
    );
    margin-bottom: -2.1875rem;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-bottom-center {
    margin-bottom: 0 !important;
  }
}
.clip-bottom-left {
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 50px),
    35% 100%,
    0 calc(100% - 40px),
    0 0
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 50px),
    35% 100%,
    0 calc(100% - 40px),
    0 0
  );
  margin-bottom: -55px;
  margin-top: -1px;
  z-index: 3;
  position: relative;
}
@media (max-width: 1200px) {
  .clip-bottom-left {
    margin-bottom: -35px;
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 30px),
      35% 100%,
      0 calc(100% - 20px),
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 30px),
      35% 100%,
      0 calc(100% - 20px),
      0 0
    );
  }
}
@media (max-width: 767px) {
  .clip-bottom-left {
    margin-bottom: -30px;
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      35% 100%,
      0 calc(100% - 10px),
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      35% 100%,
      0 calc(100% - 10px),
      0 0
    );
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-bottom-left {
    margin-bottom: 0 !important;
  }
}
.clip-bottom-right {
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 40px),
    65% 100%,
    0 calc(100% - 50px),
    0 0
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 40px),
    65% 100%,
    0 calc(100% - 50px),
    0 0
  );
  margin-bottom: -55px;
  z-index: 3;
  position: relative;
}
@media (max-width: 1200px) {
  .clip-bottom-right {
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      65% 100%,
      0 calc(100% - 32px),
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 20px),
      65% 100%,
      0 calc(100% - 32px),
      0 0
    );
    margin-bottom: -50px;
  }
}
@media (max-width: 767px) {
  .clip-bottom-right {
    -webkit-clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 10px),
      65% 100%,
      0 calc(100% - 25px),
      0 0
    );
    clip-path: polygon(
      0 0,
      100% 0,
      100% calc(100% - 10px),
      65% 100%,
      0 calc(100% - 25px),
      0 0
    );
    margin-bottom: -25px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-bottom-right {
    margin-bottom: 0 !important;
  }
}
.clip-slanted {
  -webkit-clip-path: polygon(0 0, 100% 96px, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 96px, 100% 100%, 0 100%);
  margin-bottom: -65px;
}
@media (max-width: 1200px) {
  .clip-slanted {
    -webkit-clip-path: polygon(0 0, 100% 45px, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 45px, 100% 100%, 0 100%);
    margin-bottom: -35px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-slanted {
    margin-bottom: 0 !important;
  }
  .clip-slanted.pb-25 {
    padding-bottom: 0 !important;
  }
}
.clip-slanted-bottom {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 50px));
  margin-bottom: -50px;
  position: relative;
  z-index: 4;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-slanted-bottom {
    margin-bottom: 0 !important;
  }
}
.clip-top-bottom {
  -webkit-clip-path: polygon(
    35% 0,
    100% 50px,
    100% calc(100% - 30px),
    65% 100%,
    0 calc(100% - 50px),
    0 30px
  );
  clip-path: polygon(
    35% 0,
    100% 50px,
    100% calc(100% - 30px),
    65% 100%,
    0 calc(100% - 50px),
    0 30px
  );
  margin-top: -75px;
  margin-bottom: -55px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .clip-top-bottom {
    margin-bottom: -35px;
    -webkit-clip-path: polygon(
      35% 0,
      100% 25px,
      100% calc(100% - 15px),
      65% 100%,
      0 calc(100% - 25px),
      0 15px
    );
    clip-path: polygon(
      35% 0,
      100% 25px,
      100% calc(100% - 15px),
      65% 100%,
      0 calc(100% - 25px),
      0 15px
    );
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-top-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.clip-top-bottom-rev {
  -webkit-clip-path: polygon(
    65% 0,
    100% 35px,
    100% calc(100% - 50px),
    35% 100%,
    0 calc(100% - 25px),
    0 60px
  );
  clip-path: polygon(
    65% 0,
    100% 35px,
    100% calc(100% - 50px),
    35% 100%,
    0 calc(100% - 25px),
    0 60px
  );
  margin-top: -75px;
  margin-bottom: -75px;
  z-index: 2;
}
@media (max-width: 1200px) {
  .clip-top-bottom-rev {
    margin-top: -35px;
    margin-bottom: -35px;
    -webkit-clip-path: polygon(
      65% 0,
      100% 16px,
      100% calc(100% - 25px),
      35% 100%,
      0 calc(100% - 12px),
      0 30px
    );
    clip-path: polygon(
      65% 0,
      100% 16px,
      100% calc(100% - 25px),
      35% 100%,
      0 calc(100% - 12px),
      0 30px
    );
  }
}
@media (max-width: 767px) {
  .clip-top-bottom-rev {
    -webkit-clip-path: polygon(
      65% 0,
      100% 10px,
      100% calc(100% - 15px),
      35% 100%,
      0 calc(100% - 6px),
      0 15px
    );
    clip-path: polygon(
      65% 0,
      100% 10px,
      100% calc(100% - 15px),
      35% 100%,
      0 calc(100% - 6px),
      0 15px
    );
    margin-top: -30px;
    margin-bottom: -30px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .clip-top-bottom-rev {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
}
.clip-top-bottom + .clip-top-center,
.clip-top-bottom + .clip-top-left,
.clip-top-bottom + .clip-top-right {
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 0;
}
.clip-bottom-center + .clip-top-bottom-rev,
.clip-bottom-center + .clip-top-center,
.clip-bottom-center + .clip-top-left,
.clip-bottom-center + .clip-top-right,
.clip-bottom-left + .clip-top-bottom-rev,
.clip-bottom-left + .clip-top-center,
.clip-bottom-left + .clip-top-left,
.clip-bottom-left + .clip-top-right,
.clip-bottom-right + .clip-top-bottom-rev,
.clip-bottom-right + .clip-top-center,
.clip-bottom-right + .clip-top-left,
.clip-bottom-right + .clip-top-right {
  -webkit-clip-path: none;
  clip-path: none;
  z-index: 0;
}
.clip-bottom-center + .service-section {
  padding-top: 8.75rem;
}
@media (max-width: 991px) {
  .clip-bottom-center + .service-section {
    padding-top: 4.375rem;
  }
}
.clip-slanted-bottom {
  z-index: 3;
}
.clip-slanted-bottom + .clip-bottom-left {
  z-index: 2;
}
.search-result-section + .pagination-nav .pagination li:nth-last-child(2) {
  margin-right: 0 !important;
}
.search-result-section + .pagination-nav .pagination li.disable {
  opacity: 0.6;
  pointer-events: none;
}
.section-block-light {
  background: #fff;
}
.section-block-light .breadcrumb-wrapper .breadcrumb.text-black {
  color: #000;
}
.section-block-light .breadcrumb-wrapper .breadcrumb.text-black li {
  color: #000;
}
.section-block-light
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before {
  color: #000;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-block-light
  .section-title
  h2,
.section-block-light
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-block-light .section-title form .form-group label,
.section-block-light .section-title h1,
.section-block-light .section-title h2,
.section-block-light .section-title h3,
.section-block-light .section-title h4,
.section-block-light .section-title h5,
.section-block-light .section-title h6,
.section-block-light .section-title p,
form .form-group .section-block-light .section-title label {
  color: #000;
}
.section-block-light .section-title form .form-group label a,
.section-block-light .section-title p a,
form .form-group .section-block-light .section-title label a {
  color: #000;
}
.section-block-light .section-title form .form-group label a:hover,
.section-block-light .section-title p a:hover,
form .form-group .section-block-light .section-title label a:hover {
  color: #f86520;
}
.section-block-light.accordion-container h3 {
  font-size: 1.5rem;
  line-height: normal;
}
.section-block-light.accordion-container .btn-wrapper .btn-normal {
  color: #000;
  background: #f86520;
  outline: 0;
  border: none;
  padding: 13px 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.3s ease all;
}
.section-block-light.accordion-container .btn-wrapper .btn-normal::after {
  content: none;
}
.section-block-light.accordion-container .btn-wrapper .btn-normal:hover {
  background: rgba(255, 132, 10, 0.8);
}
.section-block-light .accordion-block .card {
  background: #000;
}
.section-block-dark {
  background: #262626;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-block-dark
  .section-title
  h2,
.section-block-dark
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-block-dark .section-title form .form-group label,
.section-block-dark .section-title h1,
.section-block-dark .section-title h2,
.section-block-dark .section-title h3,
.section-block-dark .section-title h4,
.section-block-dark .section-title h5,
.section-block-dark .section-title h6,
.section-block-dark .section-title p,
form .form-group .section-block-dark .section-title label {
  color: #fff;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .section-block-dark.section-accordian
  .section-title
  h2,
.section-block-dark.section-accordian
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.section-block-dark.section-accordian .section-title h1,
.section-block-dark.section-accordian .section-title h2,
.section-block-dark.section-accordian .section-title h3,
.section-block-dark.section-accordian .section-title h4,
.section-block-dark.section-accordian .section-title h5,
.section-block-dark.section-accordian .section-title h6 {
  color: #f86520;
}
.section-block-dark .accordion-block .card {
  background: rgba(0, 0, 0, 0.5);
}
.section-block-dark .breadcrumb-wrapper .breadcrumb.text-black {
  color: #fff;
}
.section-block-dark .breadcrumb-wrapper .breadcrumb.text-black li {
  color: #fff;
}
.section-block-dark
  .breadcrumb-wrapper
  .breadcrumb.text-black
  li.breadcrumb-item
  + .breadcrumb-item::before {
  color: #fff;
}
.section-block-dark + .clip-slanted {
  background: #333;
}
.section-block-dark .simple-text-block {
  color: #fff !important;
}
.section-block-dark.two-column-section .column-block:last-child::before {
  background: #f86520;
  z-index: 1;
}
.section-block-dark.two-column-section
  .column-block:last-child
  .content-wrapper {
  position: relative;
  z-index: 1;
}
.section-block-dark.two-column-section
  .column-block.gray-bg:last-child::before {
  background: #4c4c4c;
}
.section-block-dark.two-column-section
  .column-block.gray-bg:last-child
  .quote-slider
  blockquote
  form
  .form-group
  label,
.section-block-dark.two-column-section
  .column-block.gray-bg:last-child
  .quote-slider
  blockquote
  p,
form
  .form-group
  .section-block-dark.two-column-section
  .column-block.gray-bg:last-child
  .quote-slider
  blockquote
  label {
  color: #fff;
}
.section-block-dark.two-column-section
  .column-block.gray-bg:last-child
  .quote-slider
  .quote-by {
  color: #fff;
}
.section-block-dark.two-column-section
  .column-block.gray-bg:last-child
  .quote-slider
  .quote-slider-wrapper
  .slick-dots
  li {
  background: #fff;
}
.section-block-dark.service-solution-section
  .btn-wrapper
  .btn-normal.btn-black {
  color: #fff;
}
.section-block-dark.service-solution-section
  .btn-wrapper
  .btn-normal.btn-black::after {
  color: #fff;
}
.section-block-dark .post-share {
  color: #fff;
}
.section-block-dark .post-share .social-links {
  margin-left: 1.5rem;
}
.section-block-dark .post-share .social-links a {
  color: inherit;
  font-size: 1.5rem;
  margin-right: 1.125rem;
  text-decoration: none;
}
.section-block-dark .post-share .social-links a:hover {
  color: #f86520;
}
.section-block-dark .post-share .social-links a:last-child {
  margin-right: 0;
}
.section-block-dark .article-body {
  color: #fff;
}
.filter-block-row {
  position: relative;
  z-index: 1;
}
.cover-image-wrapper {
  height: 210px !important;
  overflow: hidden !important;
  max-height: 210px !important;
  min-height: 210px !important;
}
.cover-image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
  -o-object-position: center !important;
  object-position: center !important;
}
.compat-object-fit {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.compat-object-fit img {
  display: none !important;
}
@media (max-width: 1024px) {
  section.cta-banner-block {
    padding: 4.375rem 0 2.5rem;
  }
}
.section-with-logo {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .section-with-logo .section-title {
    padding-right: 1.875rem;
  }
  .section-with-logo .has-section-color {
    position: static;
  }
  .section-with-logo .has-section-color::before {
    content: "";
    background: #0079c3;
    width: 50vw;
    height: 100%;
    position: absolute;
    left: calc(50% + 30px);
    top: 0;
  }
  .section-with-logo .has-section-color .block-image {
    width: 50vw;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    height: 100%;
  }
  .section-with-logo .has-section-color .block-image img {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
  }
}
@media (max-width: 767px) {
  .section-with-logo .has-section-color {
    order: -1;
    margin-bottom: 30px;
    margin-top: 15px;
  }
}
#presence-map svg .cls-5 {
  fill: #ffe9ae;
}
.simple-page a {
  text-decoration: underline;
}
.simple-page a:hover {
  color: #f86520;
}
.post-share {
  display: flex;
  color: #1a1a1a;
  align-items: center;
}
.post-share form .form-group label,
.post-share p,
form .form-group .post-share label {
  font-size: 0.8125rem;
  margin-bottom: 0;
  font-family: UniversLTStd-Bold;
  text-transform: uppercase;
}
.post-share .social-links {
  margin-left: 1.5rem;
}
.post-share .social-links a {
  color: inherit;
  font-size: 1.5rem;
  margin-right: 1.125rem;
  text-decoration: none;
}
.post-share .social-links a:hover {
  color: rgba(26, 26, 26, 0.8);
}
.post-share .social-links a:last-child {
  margin-right: 0;
}
.no-spaces > section {
  padding-top: 0;
  padding-bottom: 0;
}
.column-block .quote-slider {
  position: relative;
  z-index: 2;
}
.theme-btn {
  font-size: 15px;
  font-family: UniversLTStd-Bold;
  color: #000;
  background: #f86520;
  outline: 0;
  border: none;
  padding: 13px 20px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 6px;
  transition: 0.3s ease all;
}
.theme-btn:not(.btn-rounded) {
  min-width: 142px;
}
@media (max-width: 767px) {
  .theme-btn {
    font-size: 0.8125rem;
  }
}
.theme-btn:hover {
  opacity: 0.8;
}
.theme-btn span.has-icon {
  font-size: 20px;
}
.theme-btn span.has-icon + span {
  margin-left: 20px;
}
.theme-btn span + span.has-icon {
  margin-left: 20px;
}
.theme-btn.btn-black {
  background: #1a1a1a;
  color: #fff;
}
.theme-btn.btn-black span {
  color: #fff;
}
.theme-btn.btn-sm:not(.btn-rounded) {
  min-width: 48px;
}
.theme-btn.btn-md:not(.btn-rounded) {
  min-width: 102px;
}
.theme-btn.btn-xl {
  min-width: 170px;
}
.theme-btn.btn-xxl {
  min-width: 190px;
}
.theme-btn.btn-1x {
  min-width: 225px;
}
.theme-btn.btn-2x {
  min-width: 280px;
}
.theme-btn.btn-full {
  min-width: 100%;
  width: 100%;
}
.theme-btn.btn-medium {
  min-width: 132px;
  padding: 7px 25px;
  font-size: 15px;
  text-align: center;
}
.theme-btn.btn-medium span.has-icon {
  font-size: 15px;
}
.theme-btn.btn-medium span.has-icon + span {
  margin-left: 12px;
}
.theme-btn.btn-medium span + span.has-icon {
  margin-left: 12px;
}
.theme-btn.btn-medium.btn-sm {
  min-width: 36px;
}
.theme-btn.btn-medium.btn-md {
  min-width: 74px;
}
.theme-btn.btn-small {
  min-width: 96px;
  padding: 6px 12px;
  font-size: 13px;
}
.theme-btn.btn-small span.has-icon {
  font-size: 13px;
}
.theme-btn.btn-small span.has-icon + span {
  margin-left: 12px;
}
.theme-btn.btn-small span + span.has-icon {
  margin-left: 12px;
}
.theme-btn.btn-small.btn-sm {
  min-width: 30px;
}
.theme-btn.btn-small.btn-md {
  min-width: 68px;
}
.theme-btn.btn-rounded {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  padding: 0;
  text-align: center;
  font-size: 20px;
}
.theme-btn.btn-rounded span {
  vertical-align: middle;
}
.theme-btn.btn-rounded.btn-md {
  width: 38px;
  height: 38px;
  font-size: 15px;
}
.theme-btn.btn-rounded.btn-sm {
  width: 30px;
  height: 30px;
  font-size: 13px;
}
@media all and (-ms-high-contrast: none) {
  .theme-btn,
  ::-ms-backdrop {
    padding-top: 15px;
    padding-bottom: 11px;
  }
}
.btn-normal {
  position: relative;
  padding-right: 25px;
  font-size: 13px;
  font-family: UniversLTStd-Bold;
  color: #f86520;
}
.btn-normal::after {
  content: "\e908";
  font-family: icomoon;
  font-size: 13px;
  margin-left: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
  margin-top: 0.09375rem;
}
.btn-normal:hover {
  opacity: 0.9;
  color: #f86520;
}
.btn-normal.btn-black {
  color: #1a1a1a;
}
.btn-normal.btn-black:hover {
  color: #1a1a1a;
}
.btn-normal.btn-black::after {
  color: #1a1a1a;
}
.btn-underline {
  border-bottom: 1px solid #1a1a1a;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
}
.btn-underline:hover {
  text-decoration: none;
  border-bottom: 1px solid #f86520;
  color: #f86520;
}
.form-control.is-invalid {
  background-image: none;
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #fa3434;
  padding-right: inherit;
}
.form-control.is-valid {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 61.2 (89653) - https://sketch.com --%3E%3Ctitle%3E🔶 Left Icon%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='3.-Alerts/Medium/English/Success' transform='translate(-13.000000, -10.000000)' fill='%2300B517'%3E%3Cg id='Success'%3E%3Cg id='4.-Icons-/-Check-%231' transform='translate(12.000000, 9.000000)'%3E%3Cpath d='M7.5,12.75 L4.5,9.75 L5.5575,8.6925 L7.5,10.6275 L12.4425,5.685 L13.5,6.75 L7.5,12.75 L7.5,12.75 Z M9,1.5 C4.86,1.5 1.5,4.86 1.5,9 C1.5,13.14 4.86,16.5 9,16.5 C13.14,16.5 16.5,13.14 16.5,9 C16.5,4.86 13.14,1.5 9,1.5 L9,1.5 Z' id='🔹-Icon-Color'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #00b517;
  background-position: center right calc(0.375em + 5px);
}
.was-validated .form-control:invalid {
  background-image: none;
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #fa3434;
  padding-right: inherit;
}
.was-validated .form-control:valid {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='16px' height='16px' viewBox='0 0 16 16' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 61.2 (89653) - https://sketch.com --%3E%3Ctitle%3E🔶 Left Icon%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Symbols' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='3.-Alerts/Medium/English/Success' transform='translate(-13.000000, -10.000000)' fill='%2300B517'%3E%3Cg id='Success'%3E%3Cg id='4.-Icons-/-Check-%231' transform='translate(12.000000, 9.000000)'%3E%3Cpath d='M7.5,12.75 L4.5,9.75 L5.5575,8.6925 L7.5,10.6275 L12.4425,5.685 L13.5,6.75 L7.5,12.75 L7.5,12.75 Z M9,1.5 C4.86,1.5 1.5,4.86 1.5,9 C1.5,13.14 4.86,16.5 9,16.5 C13.14,16.5 16.5,13.14 16.5,9 C16.5,4.86 13.14,1.5 9,1.5 L9,1.5 Z' id='🔹-Icon-Color'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  outline: 0 !important;
  box-shadow: none !important;
  border-color: #00b517;
  background-position: center right calc(0.375em + 5px);
}
form .form-group {
  position: relative;
}
form .form-group label {
  margin-bottom: 10px;
}
form .form-group label + label {
  float: right;
}
form .form-group input {
  border: 1px solid #999;
  outline: 0;
  box-shadow: none;
  height: 36px;
  padding: 0 12px;
  color: #1a1a1a;
  font-size: 15px;
  font-family: UniversLTStd;
  border-radius: 6px !important;
}
form .form-group input:focus {
  outline: 0;
  border: 1px solid #007bff;
  box-shadow: none;
}
form .form-group input::-webkit-input-placeholder {
  color: rgba(26, 26, 26, 0.4);
}
form .form-group input::-moz-placeholder {
  color: rgba(26, 26, 26, 0.4);
}
form .form-group input:-ms-input-placeholder {
  color: rgba(26, 26, 26, 0.4);
}
form .form-group input + label {
  margin-bottom: 0;
  margin-top: 10px;
}
form .form-group textarea {
  min-height: 100px;
  width: 100%;
  border: 1px solid #999;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-family: UniversLTStd;
}
form .form-group textarea::-webkit-input-placeholder {
  color: #1a1a1a;
  opacity: 0.4;
}
form .form-group textarea::-moz-placeholder {
  color: #1a1a1a;
  opacity: 0.4;
}
form .form-group textarea:-ms-input-placeholder {
  color: #1a1a1a;
  opacity: 0.4;
}
form .form-group textarea:focus {
  outline: 0;
  border: 1px solid #007bff;
  box-shadow: none;
}
form .form-group .input-group .input-group-append,
form .form-group .input-group .input-group-prepend {
  position: absolute;
  top: 0;
  height: 36px;
  width: 42px;
  z-index: 4;
}
form .form-group .input-group .input-group-append .input-group-text,
form .form-group .input-group .input-group-prepend .input-group-text {
  background-color: transparent;
  border: none;
  padding: 0 12px;
}
form .form-group .input-group .input-group-prepend {
  left: 0;
}
form .form-group .input-group .input-group-prepend + input {
  padding-left: 38px;
}
form
  .form-group
  .input-group
  .input-group-prepend
  + .input-group-append
  + input {
  padding-left: 38px;
}
form .form-group .input-group .input-group-append {
  right: 0;
}
form
  .form-group
  .input-group
  .input-group-append
  + .input-group-prepend
  + input {
  padding-right: 38px;
}
form .form-group .input-group .input-group-append + input {
  padding-right: 38px;
}
form .form-group .input-group input + .input-group-append .input-group-text {
  background-color: transparent;
  border: 1px solid #999;
  padding: 0 12px;
}
.custom-select {
  padding: 0 12px;
  border: 1px solid #999;
  height: 36px;
  outline: 0;
  border-radius: 6px;
  font-size: 15px;
  font-family: UniversLTStd;
}
.custom-select:focus {
  outline: 0;
  box-shadow: none;
  border: 1px solid #999;
}
.custom-switch {
  padding: 0;
}
.custom-switch .custom-checkbox-switch {
  padding-left: 0;
}
.custom-switch .custom-checkbox-switch input {
  display: none;
}
.custom-switch .custom-checkbox-switch .custom-control-label {
  outline: 0;
  width: 48px;
  height: 24px;
}
.custom-switch .custom-checkbox-switch .custom-control-label::before {
  width: 48px;
  pointer-events: all;
  border-radius: 50px;
  height: 24px;
  border-color: #e4e4e4;
  background-color: #e4e4e4;
  left: 0;
  top: 0;
}
.custom-switch .custom-checkbox-switch .custom-control-label::after {
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  left: 5px;
  transform: none !important;
  background-color: #fff;
  box-shadow: -1px 1px 5px -1px #bfbfbf;
  transition: left 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;
}
.custom-switch
  .custom-checkbox-switch
  .custom-control-input:checked
  ~ .custom-control-label::before {
  border-color: #f86520;
  background-color: #f86520;
}
.custom-switch
  .custom-checkbox-switch
  .custom-control-input:checked
  ~ .custom-control-label::after {
  left: calc(100% - 20px);
}
.custom-switch
  .custom-checkbox-switch
  .custom-control-input:disabled
  ~ .custom-control-label::after {
  background-color: #969696;
}
.custom-checkbox {
  padding-left: 0;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox input[type="checkbox"] + label {
  position: relative;
  transition: 0.3s ease all;
  padding-left: 1.875rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: normal;
}
.custom-checkbox input[type="checkbox"] + label::before {
  content: "";
  background: 0 0;
  border-radius: 0;
  border: 1px solid #000;
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: 0.2s ease all;
}
.custom-checkbox input[type="checkbox"] + label::after {
  content: "";
  position: absolute;
  font-size: 18px;
  top: 1px;
  left: 6px;
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  color: #fff;
  width: 5px;
  height: 12px;
  display: inline-block;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transition: 0.2s ease all;
}
.custom-checkbox input[type="checkbox"]:disabled + label::before {
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
}
.custom-checkbox input[type="checkbox"]:checked + label::before {
  opacity: 1;
  background: #000;
  border: 1px solid #000;
}
.custom-checkbox input[type="checkbox"]:checked + label::after {
  opacity: 1;
}
.custom-checkbox input[type="radio"] {
  display: none;
}
.custom-checkbox input[type="radio"] + label {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #e6e6e6;
  position: relative;
  transition: 0.2s ease all;
  background: 0 0;
  padding: 0;
}
.custom-checkbox input[type="radio"] + label::before {
  content: "";
  background: #fff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0.3);
  transition: 0.2s ease all;
}
.custom-checkbox input[type="radio"]:disabled + label {
  background: #f2f2f2;
  border-color: #f2f2f2;
}
.custom-checkbox input[type="radio"]:checked + label {
  border: 1px solid #f86520;
  background: #f86520;
}
.custom-checkbox input[type="radio"]:checked + label::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
html:not[lang="ar"] .filters .custom-checkbox input[type="checkbox"] + label {
  text-transform: lowercase;
}
html:not[lang="ar"]
  .filters
  .custom-checkbox
  input[type="checkbox"]
  + label:first-letter {
  text-transform: uppercase;
}
.sidebar .custom-checkbox input[type="checkbox"] + label::before {
  border: 1px solid #000;
}
.form-wrapper a {
  color: inherit;
  text-decoration: underline;
}
.form-wrapper a:hover {
  text-decoration: none;
}
.form-wrapper .form-group {
  margin-bottom: 0;
}
.form-wrapper .form-group p,
.form-wrapper form .form-group label,
form .form-wrapper .form-group label {
  margin: 0;
}
.form-wrapper .form-group .form-control,
.form-wrapper .form-group .select-custom {
  border-radius: 0 !important;
  margin-bottom: 1.375rem;
}
.form-wrapper .form-group .edd-body {
  margin-top: 0;
}
.form-wrapper .form-group .edd-root {
  vertical-align: top;
}
.form-wrapper .edd-value {
  height: 50px;
  font-size: 0.875rem;
  border: 1px solid #4d4d4d;
  background: #333;
  color: #fff;
  padding: 0 0.9375rem;
}
.form-wrapper .edd-arrow {
  color: #fff;
  top: calc(50% - 6px);
  right: 13px;
}
.form-wrapper .edd-arrow:before {
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.form-wrapper .edd-option {
  font-size: 0.875rem;
}
.form-wrapper .form-control {
  height: 50px;
  font-size: 0.875rem;
  border: 1px solid #4d4d4d;
  background: #333;
  color: #fff;
}
.form-wrapper .form-control::-webkit-input-placeholder {
  color: grey;
}
.form-wrapper .form-control:-ms-input-placeholder {
  color: grey;
}
.form-wrapper .form-control::-webkit-input-placeholder {
  color: grey;
}
.form-wrapper .form-control::-moz-placeholder {
  color: grey;
}
.form-wrapper .form-control:-ms-input-placeholder {
  color: grey;
}
.form-wrapper .form-control::-ms-input-placeholder {
  color: grey;
}
.form-wrapper .form-control::placeholder {
  color: grey;
}
.form-wrapper .form-control:focus {
  outline: 0;
  box-shadow: none;
}
.form-wrapper .iti.iti--allow-dropdown {
  width: 100%;
  margin-bottom: 1.375rem;
}
.form-wrapper .iti.iti--allow-dropdown .iti__flag-container {
  border-right: 1px solid #4d4d4d;
  z-index: 1;
}
.form-wrapper .iti .iti__country-list li span {
  color: #000;
  font-size: 0.875rem;
}
.form-wrapper .iti .iti__arrow {
  border-top: 4px solid #fff;
}
.form-wrapper .iti .iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #fff;
}
.custom-checkbox {
  padding-left: 0;
}
.custom-checkbox input[type="checkbox"] {
  display: none;
}
.custom-checkbox input[type="checkbox"] + label {
  position: relative;
  transition: 0.3s ease all;
  padding-left: 1.875rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: normal;
}
.custom-checkbox input[type="checkbox"] + label::before {
  content: "";
  background: 0 0;
  border-radius: 0;
  border: 1px solid #fff;
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: 0.2s ease all;
}
.custom-checkbox input[type="checkbox"] + label::after {
  content: "";
  position: absolute;
  font-size: 18px;
  top: 3px;
  left: 6px;
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  color: #fff;
  width: 5px;
  height: 12px;
  display: inline-block;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transition: 0.2s ease all;
}
.custom-checkbox input[type="checkbox"]:disabled + label::before {
  background: #fff;
  border: 1px solid #fff;
}
.custom-checkbox input[type="checkbox"]:checked + label::before {
  opacity: 1;
  background: #f86520;
  border: 1px solid #f86520;
}
.custom-checkbox input[type="checkbox"]:checked + label::after {
  opacity: 1;
  border: 2px solid #000;
  border-top: 0;
  border-left: 0;
}
.custom-checkbox input[type="radio"] {
  display: none;
}
.custom-checkbox input[type="radio"] + label {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #fff;
  position: relative;
  transition: 0.2s ease all;
  background: 0 0;
  padding: 0;
}
.custom-checkbox input[type="radio"] + label::before {
  content: "";
  background: #fff;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(0.3);
  transition: 0.2s ease all;
}
.custom-checkbox input[type="radio"]:disabled + label {
  background: #fff;
  border-color: #fff;
}
.custom-checkbox input[type="radio"]:checked + label {
  border: 1px solid #f86520;
  background: #f86520;
}
.custom-checkbox input[type="radio"]:checked + label::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .hamburger,
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .search-btn-wrapper {
  background: rgba(0, 0, 0, 0.2);
}
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .hamburger:hover,
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .search-btn-wrapper:hover {
  background: #f86520;
}
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .hamburger
  i,
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .search-btn-wrapper
  i {
  color: #000;
}
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .hamburger
  .line,
.page-product:not(.megamenu-active)
  header:not(.nav-up)
  #navWrapper
  .action-wrapper
  .search-btn-wrapper
  .line {
  background-color: #000;
}
.page-product header #navWrapper #mainNav .navbar-nav li a {
  color: #1a1a1a;
}
.page-product
  header
  #navWrapper
  #mainNav
  .navbar-nav.right-nav
  li
  > a:not(.search-btn-wrapper) {
  color: #1a1a1a;
}
.page-product
  header
  #navWrapper
  #mainNav
  .navbar-nav.right-nav
  li.dropdown
  > a:after {
  color: #1a1a1a;
}
.page-product header.nav-scrolled #navWrapper #mainNav .navbar-nav li a {
  color: #fff;
}
.page-product header.nav-scrolled #navWrapper #mainNav .navbar-nav li a:hover {
  color: #f86520;
}
.page-product header .full-screen-menu {
  background: rgba(0, 0, 0, 0.9);
}
header {
  padding: 0 0 45px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: 0 0;
  transition: 0.3s ease all;
}
@media (max-width: 1279px) {
  header {
    padding-bottom: 0.9375rem;
  }
}
header.nav-scrolled,
header.nav-up {
  background: rgba(0, 0, 0, 0.75);
  padding: 0 0 24px;
}
@media (max-width: 991px) {
  header.nav-scrolled,
  header.nav-up {
    padding-bottom: 15px;
  }
}
header.nav-scrolled {
  transform: translateY(-100%);
}
header.nav-up {
  transform: none;
}
header.header-white #navWrapper #mainNav .navbar-nav li a {
  color: #1a1a1a;
}
header.header-white #navWrapper #mainNav .navbar-nav li a.nav-btn {
  color: #000 !important;
}
header.header-white.nav-scrolled #navWrapper #mainNav .navbar-nav li a {
  color: #fff;
}
header.header-white.nav-scrolled #navWrapper #mainNav .navbar-nav li a.nav-btn {
  color: #000 !important;
}
header #navWrapper {
  padding: 0;
}
header #navWrapper .navbar-brand {
  padding: 0;
  margin: 0 42px 0 0;
  z-index: 1;
}
@media (max-width: 1439px) {
  header #navWrapper .navbar-brand {
    margin: 0 30px 0 0;
  }
}
@media (max-width: 1279px) {
  header #navWrapper .navbar-brand {
    margin: 0 15px 0 0;
  }
  header #navWrapper .navbar-brand img {
    height: 40px;
    width: auto;
  }
}
@media (max-width: 1199px) {
  header #navWrapper .navbar-brand {
    margin-right: auto;
  }
}
header #navWrapper #mainNav .navbar-nav li {
  display: flex;
  align-items: center;
  margin-right: 36px;
}
@media (max-width: 1439px) {
  header #navWrapper #mainNav .navbar-nav li {
    margin-right: 18px;
  }
}
header #navWrapper #mainNav .navbar-nav li a {
  font-size: 15px;
  font-family: UniversLTStd-Bold;
  line-height: 22px;
  color: #fff;
  text-transform: capitalize;
  padding: 0;
  text-decoration: none;
}
header #navWrapper #mainNav .navbar-nav li a:hover {
  color: #f86520;
}
@media (max-width: 1279px) {
  header #navWrapper #mainNav .navbar-nav li a {
    font-size: 14px;
  }
}
header #navWrapper #mainNav .navbar-nav li a.nav-btn {
  background: #f86520;
  color: #000 !important;
  transition: 0.3s ease all;
  padding: 5px 15px 3px;
  border-radius: 16px;
  font-size: 11px;
  text-transform: uppercase;
  display: inline-block;
}
header #navWrapper #mainNav .navbar-nav li a.nav-btn:hover {
  opacity: 0.8;
}
header #navWrapper #mainNav .navbar-nav li:last-child {
  margin-right: 0;
}
header #navWrapper .action-wrapper {
  display: flex;
  position: relative;
  transition: all 0.3s;
  z-index: 1;
  margin-left: 0.75rem;
}
header #navWrapper .action-wrapper .search-btn-wrapper {
  font-size: 20px;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  text-align: center;
  vertical-align: middle;
  line-height: 50px;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  header #navWrapper .action-wrapper .search-btn-wrapper {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
header #navWrapper .action-wrapper .hamburger {
  font-size: 20px;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}
@media (max-width: 1279px) {
  header #navWrapper .action-wrapper .hamburger {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 0.9375rem;
  }
}
header #navWrapper .action-wrapper .hamburger > span {
  display: block;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
header #navWrapper .action-wrapper .hamburger > span .line {
  width: 24px;
  height: 1px;
  background-color: #ecf0f1;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
}
header #navWrapper .action-wrapper .hamburger:hover .line {
  background-color: #000;
}
header #navWrapper .action-wrapper .hamburger.is-active {
  background: #f86520;
}
header #navWrapper .action-wrapper .hamburger.is-active .line {
  background-color: #000;
}
header #navWrapper .action-wrapper .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
header #navWrapper .action-wrapper .hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
header #navWrapper .action-wrapper .hamburger.is-active .line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header #navWrapper .action-wrapper a {
  margin-left: 1.125rem;
  text-decoration: none !important;
}
@media (max-width: 1279px) {
  header #navWrapper .action-wrapper a {
    margin-left: 0;
  }
}
header #navWrapper .action-wrapper a:hover {
  background: #f86520;
  color: #000;
}
.extra-nav {
  text-align: right;
  background: #000;
  padding-top: 4px;
  padding-bottom: 4px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 6;
}
@media (max-width: 1279px) {
  .extra-nav {
    margin-bottom: 15px;
  }
}
@media (max-width: 991px) {
  .extra-nav {
    padding: 0;
    margin-bottom: 15px;
  }
}
.extra-nav .right-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
.extra-nav .right-nav > li {
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1279px) {
  .extra-nav .right-nav > li {
    margin-left: 10px;
  }
}
.extra-nav .right-nav > li:not(.dropdown) img {
  position: relative;
  margin: -3px 5px 0 0;
}
@media (max-width: 767px) {
  .extra-nav .right-nav > li:not(.dropdown) .nav-link span {
    display: none;
  }
}
.extra-nav .right-nav > li > .nav-link {
  display: block;
  padding-left: 22px;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-family: UniversLTStd-Bold;
  transition: all 0.3s;
  color: #f86520;
}
@media (max-width: 1279px) {
  .extra-nav .right-nav > li > .nav-link {
    padding-right: 0;
  }
}
.extra-nav .right-nav > li > .nav-link > span {
  color: #f86520;
}
@media (max-width: 767px) {
  .extra-nav .right-nav > li > .nav-link {
    padding-left: 10px;
  }
}
.extra-nav .right-nav > li > .nav-link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.extra-nav .right-nav .dropdown-menu {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px;
  border-radius: 0;
}
.extra-nav .right-nav .dropdown-menu a {
  margin-bottom: 15px;
  color: #1a1a1a;
  padding: 0;
}
.extra-nav .right-nav .dropdown-menu a:hover {
  background: 0 0;
  color: #f86520;
}
.extra-nav .right-nav .dropdown-menu a:last-child {
  margin-bottom: 0;
}
.extra-nav .right-nav .dropdown-menu .dropdown-item {
  font-family: UniversLTStd;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7) !important;
}
.extra-nav .right-nav .dropdown-menu .dropdown-item img {
  position: relative;
  top: -1px;
  margin-right: 4px;
}
.extra-nav .right-nav .dropdown-menu .dropdown-item:hover {
  color: #f86520 !important;
}
.extra-nav .dropdown > a {
  padding-right: 1.25rem !important;
}
.extra-nav .dropdown > a:after {
  content: "\e906";
  font-family: icomoon;
  border: none;
  font-size: 11px;
  color: #f86520;
  margin: 0;
  vertical-align: middle;
  line-height: normal;
  position: absolute !important;
  top: 10px;
  right: 0 !important;
}
.extra-nav .dropdown > a img {
  position: relative;
  top: -2px;
  margin-right: 5px;
}
body.is-menu-active {
  overflow: hidden;
  height: 100%;
}
@media (max-width: 1279px) {
  body.is-menu-active header.nav-scrolled #navWrapper #mainNav {
    border-top: 60px solid transparent;
  }
}
body.megamenu-active {
  overflow: hidden;
  height: 100%;
}
body.megamenu-active main {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body.megamenu-active main {
    opacity: 0;
  }
}
body.megamenu-active #mainNav ul:first-child {
  opacity: 0;
  visibility: hidden;
}
body.megamenu-active #mainNav ul:nth-child(2) {
  position: relative;
  z-index: 1;
  padding-right: 75px;
  margin-top: 10px;
}
body.megamenu-active .full-screen-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.full-screen-menu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-100%);
  transition: 0.3s ease all;
  border: 125px solid transparent;
  border-left: 0;
  border-right: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  font-family: UniversLTStd-Bold;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .full-screen-menu {
    background: #000;
  }
}
@media (max-width: 991px) {
  .full-screen-menu {
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 100px solid transparent;
    border-bottom: 30px solid transparent;
  }
}
.full-screen-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.full-screen-menu ul li.filters {
  margin: 0;
}
.full-screen-menu ul li a {
  color: #fff;
  text-decoration: none;
  display: block;
}
@media (max-width: 1439px) {
  .full-screen-menu ul li a {
    font-size: 1.125rem;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu ul li a {
    font-size: 1rem;
  }
}
.full-screen-menu ul li a:hover {
  color: #f86520;
}
@media (max-width: 1439px) {
  .full-screen-menu ul li {
    padding: 0.3125rem 0;
  }
}
.full-screen-menu .mega-menu {
  position: relative;
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu::before {
    content: "";
    position: absolute;
    height: 200vh;
    top: 0;
    right: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    pointer-events: none;
  }
}
.full-screen-menu .mega-menu > li {
  padding: 0.9375rem 0;
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li {
    padding: 0.625rem 0;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu > li {
    padding: 0.375rem 0;
  }
}
.full-screen-menu .mega-menu > li > a {
  font-size: 1.25rem;
  line-height: 1.25rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu > li > a {
    font-size: 1rem;
  }
}
.full-screen-menu .mega-menu > li > .sub-menu .sub-menu-item li a {
  font-size: 0.9375rem;
  padding-top: 0.625rem;
  padding-bottom: 0.1875rem;
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li > .sub-menu .sub-menu-item li a {
    padding-top: 0.25rem;
    padding-bottom: 0;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu > li > .sub-menu .sub-menu-item li a {
    font-size: 0.875rem;
  }
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li.first-level.industries > .sub-menu {
    padding-top: 0.625rem;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu > li.first-level.industries > .sub-menu {
    padding-top: 0;
  }
}
@media (max-width: 1439px) {
  .full-screen-menu
    .mega-menu
    > li.first-level.discover-mantrac
    .second-level.has-submenu
    > div.sub-menu,
  .full-screen-menu
    .mega-menu
    > li.first-level.industries
    .second-level.has-submenu
    > div.sub-menu {
    padding-top: 0.8125rem;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu
    .mega-menu
    > li.first-level.discover-mantrac
    .second-level.has-submenu
    > div.sub-menu,
  .full-screen-menu
    .mega-menu
    > li.first-level.industries
    .second-level.has-submenu
    > div.sub-menu {
    padding-top: 0;
  }
}
.full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu:before {
  content: none;
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    padding-left: 3.125rem;
  }
}
@media (min-width: 1440px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    padding-left: 6.25rem;
    min-width: 650px;
  }
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    width: 600px;
  }
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .full-screen-menu
    .mega-menu
    > li.parts.has-submenu
    > div.sub-menu
    .sub-menu-item {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 100%;
    flex-wrap: wrap;
  }
  .full-screen-menu
    .mega-menu
    > li.parts.has-submenu
    > div.sub-menu
    .sub-menu-item
    li {
    width: 50%;
    padding-right: 30px;
  }
  .full-screen-menu
    .mega-menu
    > li.parts.has-submenu
    > div.sub-menu
    .sub-menu-item
    li.third-level {
    width: 100%;
  }
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    padding-top: 0.375rem;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu > li.parts.has-submenu > div.sub-menu {
    padding-top: 0;
  }
}
.full-screen-menu
  .mega-menu
  > li.industry-solutions
  .sub-menu
  .sub-menu-item
  li
  a {
  font-size: 0.8125rem;
  padding-bottom: 0.125rem;
}
@media (max-width: 1439px) {
  .full-screen-menu
    .mega-menu
    > li.industry-solutions
    .sub-menu
    .sub-menu-item
    li
    a {
    padding-top: 0;
  }
}
@media (max-width: 1199px) {
  .full-screen-menu
    .mega-menu
    > li.industry-solutions
    .sub-menu
    .sub-menu-item
    li
    a {
    padding-bottom: 0;
  }
}
@media (max-width: 1439px) {
  .full-screen-menu
    .mega-menu
    > li.industry-solutions
    .sub-menu
    .sub-menu-item
    li {
    padding: 0.1875rem 0;
  }
}
.full-screen-menu
  .mega-menu
  > li.industry-solutions
  .sub-menu
  .sub-menu-item
  li
  li.industries {
  margin-bottom: 8px;
}
.full-screen-menu
  .mega-menu
  > li.industry-solutions
  .sub-menu
  .sub-menu-item
  li
  li:not(.industries)
  a {
  font-family: UniversLTStd;
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu > li.industry-solutions .sub-menu {
    padding-top: 0.875rem;
  }
}
.full-screen-menu
  .mega-menu
  > li.discover-mantrac
  .sub-menu
  .sub-menu-item
  li.last-child
  > div.sub-menu
  ul,
.full-screen-menu
  .mega-menu
  > li.industry-solutions
  .sub-menu
  .sub-menu-item
  li.last-child
  > div.sub-menu
  ul,
.full-screen-menu
  .mega-menu
  > li.services
  .sub-menu
  .sub-menu-item
  li.last-child
  > div.sub-menu
  ul {
  -moz-column-count: 1;
  column-count: 1;
  display: block;
}
.full-screen-menu .mega-menu > li.services .second-level.last-child li {
  opacity: 0.8;
}
.full-screen-menu
  .mega-menu
  > li.services
  .second-level.last-child
  .component-rebuild-centre,
.full-screen-menu .mega-menu > li.services .second-level.last-child .repair {
  padding-top: 0.875rem;
  opacity: 1;
}
.full-screen-menu
  .mega-menu
  > li.services
  .second-level.last-child
  .component-rebuild-centre:first-child,
.full-screen-menu
  .mega-menu
  > li.services
  .second-level.last-child
  .repair:first-child {
  padding-top: 0 !important;
}
@media (max-width: 767px) {
  .full-screen-menu
    .mega-menu
    > li.services
    .second-level.last-child
    .component-rebuild-centre,
  .full-screen-menu .mega-menu > li.services .second-level.last-child .repair {
    padding-top: 0;
  }
}
.full-screen-menu
  .mega-menu
  > li.services
  .second-level.last-child
  .maintenance {
  opacity: 1;
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu {
    position: relative;
  }
}
.full-screen-menu .mega-menu li.has-submenu > a {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu > a span {
    display: none !important;
    width: calc(100% - 40px);
  }
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu > a::after {
    content: "\e908";
    font-family: icomoon;
    font-size: 10px;
    margin-left: 8px;
    color: #fff;
    position: relative;
    top: 1px;
  }
}
@media all and (min-width: 992px) and (-ms-high-contrast: none),
  (min-width: 992px) and (-ms-high-contrast: active) {
  .full-screen-menu .mega-menu li.has-submenu > a::after {
    top: -1px;
  }
}
.full-screen-menu .mega-menu li.has-submenu > a:hover span::before {
  opacity: 1;
  right: 90%;
}
.full-screen-menu .mega-menu li.has-submenu > a:hover span::after {
  width: 90%;
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu > .sub-menu-toggler {
    display: none;
  }
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu .sub-menu-toggler {
    flex-grow: 1;
    order: 1;
    position: relative;
    top: 1px;
  }
  .full-screen-menu .mega-menu li.has-submenu .sub-menu-toggler::after {
    content: "";
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    transition: 0.3s ease all;
  }
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu .sub-menu-toggler {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin-left: auto;
    position: absolute;
    right: 0;
    top: 5px;
  }
  .full-screen-menu .mega-menu li.has-submenu .sub-menu-toggler::after {
    content: "\e903";
    font-family: icomoon;
    font-size: 10px;
    margin-left: 8px;
    color: #fff;
  }
  .full-screen-menu
    .mega-menu
    li.has-submenu
    .sub-menu-toggler.toggle-active::after {
    content: "\e902";
  }
}
.full-screen-menu .mega-menu li.has-submenu > div.sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
  width: 400px;
  height: 100vh;
  padding: 0.375rem 0 0 6.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0s ease;
}
@media (max-width: 1439px) {
  .full-screen-menu .mega-menu li.has-submenu > div.sub-menu {
    padding-left: 3.125rem;
    width: 350px;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu li.has-submenu > div.sub-menu {
    padding-top: 0;
    padding-left: 1.875rem;
    width: 300px;
  }
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu > div.sub-menu {
    position: relative;
    left: 0;
    width: 100%;
    opacity: 1;
    visibility: visible;
    display: none;
    height: 100%;
    padding-left: 0.9375rem;
    padding-right: 0;
  }
  .full-screen-menu .mega-menu li.has-submenu > div.sub-menu.show-menu {
    display: block;
  }
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu > div.sub-menu::before {
    content: "";
    position: absolute;
    height: 200vh;
    top: 0;
    right: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    pointer-events: none;
  }
}
.full-screen-menu .mega-menu li.has-submenu.active > div.sub-menu,
.full-screen-menu .mega-menu li.has-submenu:hover > div.sub-menu {
  left: 100%;
  opacity: 1;
  visibility: visible;
  transition-delay: 0.5ms;
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu.active > div.sub-menu,
  .full-screen-menu .mega-menu li.has-submenu:hover > div.sub-menu {
    left: 0;
  }
}
.full-screen-menu .mega-menu li.has-submenu.active > div.sub-menu *,
.full-screen-menu .mega-menu li.has-submenu:hover > div.sub-menu * {
  transition-delay: 0s;
}
.full-screen-menu .mega-menu li.has-submenu.last-child a span {
  left: 15px;
}
.full-screen-menu .mega-menu li.has-submenu.last-child a span:after {
  right: 15px;
}
.full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
  padding-top: 16px;
  transition-delay: 0s;
  width: calc(100% + 330px);
}
.full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu:before {
  content: none !important;
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
    left: 100%;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 1366px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
    width: calc(100% + 150px);
  }
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
    padding-top: 5px;
  }
}
@media (max-width: 1199px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
    width: calc(100% + 150px);
    padding-top: 8px;
  }
}
@media (max-width: 991px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu {
    opacity: 1;
    visibility: visible;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu ul {
    display: flex;
    align-items: center;
    justify-content: left;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu ul li {
    width: calc(50% - 30px);
  }
}
@media (min-width: 992px) {
  .full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu ul {
    width: calc(100% - 60px);
  }
}
.full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu ul li {
  margin: 0;
  padding: 0;
  display: block;
}
.full-screen-menu .mega-menu li.has-submenu.last-child > div.sub-menu ul li a {
  font-size: 0.8125rem;
  line-height: 18px;
  display: block;
  padding-top: 0.125rem;
  padding-bottom: 0.9375rem;
  position: relative;
}
@media (max-width: 1439px) {
  .full-screen-menu
    .mega-menu
    li.has-submenu.last-child
    > div.sub-menu
    ul
    li
    a {
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 1279px) {
  .full-screen-menu
    .mega-menu
    li.has-submenu.last-child
    > div.sub-menu
    ul
    li
    a {
    padding-bottom: 0.3125rem;
    font-size: 0.75rem;
  }
}
.full-screen-menu
  .mega-menu
  li.has-submenu.last-child.new-attachments
  > div.sub-menu
  ul
  li
  a {
  font-size: 0.75rem;
  line-height: 0.9375rem;
  padding-top: 0;
  padding-bottom: 0.5rem;
}
@media (max-width: 1439px) {
  .full-screen-menu
    .mega-menu
    li.has-submenu.last-child.new-attachments
    > div.sub-menu
    ul
    li
    a {
    padding-bottom: 0.375rem;
  }
}
.full-screen-menu
  .mega-menu
  li.has-submenu.last-child.new-power-systems
  > div.sub-menu
  ul {
  -moz-column-count: 1;
  column-count: 1;
}
.full-screen-menu .mega-menu li.active > a,
.full-screen-menu .mega-menu li.is-current-parent > a {
  color: #f86520;
}
.full-screen-menu .mega-menu li.active > a span.sub-menu-toggler::after,
.full-screen-menu
  .mega-menu
  li.is-current-parent
  > a
  span.sub-menu-toggler::after {
  width: 90%;
}
.full-screen-menu .mega-menu .sub-menu-item li.third-level {
  width: 100%;
}
.full-screen-menu .mega-menu .sub-menu-item li a {
  font-size: 0.9375rem;
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu .sub-menu-item li a {
    font-size: 0.875rem;
  }
}
@media (max-width: 767px) {
  .full-screen-menu .mega-menu .sub-menu-item li a {
    font-size: 0.8125rem;
  }
}
.full-screen-menu .mega-menu li.second-level.financing {
  padding-bottom: 1.125rem;
}
.full-screen-menu .mega-menu li.second-level.solution-spotlight {
  padding-top: 1.125rem !important;
}
@media (max-width: 1279px) {
  .full-screen-menu .mega-menu li.second-level {
    padding: 0.1875rem 0;
  }
  .full-screen-menu .mega-menu li.second-level.solution-spotlight {
    padding-top: 0.5rem !important;
  }
}
@media (min-width: 992px) {
  .menu-wrapper {
    display: flex;
    align-items: center;
  }
}
.menu-wrapper .mega-menu {
  width: 300px;
  position: relative;
}
@media (max-width: 1024px) {
  .menu-wrapper .mega-menu {
    width: 220px;
  }
}
@media (max-width: 991px) {
  .menu-wrapper .mega-menu {
    width: 100%;
  }
}
@media (max-width: 1199px) and (min-width: 768px) and (min-height: 768px) {
  .menu-wrapper .mega-menu {
    margin-bottom: 6.25rem;
  }
}
.menu-wrapper .menu-testimonials {
  flex-grow: 1;
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease all;
  transition-delay: 0.3s;
}
.is-menu-hover .menu-testimonials {
  opacity: 0;
  visibility: hidden;
  transition-delay: 0s;
}
.menu-testimonials {
  color: #969696;
  max-width: 55%;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 991px) {
  .menu-testimonials {
    display: none !important;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .menu-testimonials {
    padding-left: 5%;
  }
}
.menu-testimonials .blockquote {
  position: relative;
  padding-left: 4.0625rem;
  padding-right: 4.0625rem;
}
.menu-testimonials .blockquote::before {
  content: "";
  background-image: url(../images/quote-shape.png);
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 7px;
  left: 0;
}
.menu-testimonials .blockquote blockquote {
  margin-bottom: 3.125rem;
  position: relative;
}
.menu-testimonials .blockquote blockquote::after {
  content: "";
  background-image: url(../images/quote-shape.png);
  width: 40px;
  height: 40px;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  transform: scaleX(-1);
  bottom: -10px;
  left: 100%;
}
.menu-testimonials .blockquote blockquote form .form-group label,
.menu-testimonials .blockquote blockquote p,
form .form-group .menu-testimonials .blockquote blockquote label {
  line-height: 32px;
  font-size: 1.25rem;
  color: #969696;
}
@media (max-width: 767px) {
  .menu-testimonials .blockquote blockquote form .form-group label,
  .menu-testimonials .blockquote blockquote p,
  form .form-group .menu-testimonials .blockquote blockquote label {
    line-height: normal;
    font-size: 1.25rem;
  }
}
.menu-testimonials .blockquote .quote-by {
  display: flex;
  align-items: center;
}
.menu-testimonials .blockquote .quote-by .image-block img {
  height: 72px;
}
.menu-testimonials .blockquote .quote-by .image-block + .quote-info {
  padding-left: 1.375rem;
}
.menu-testimonials .blockquote .quote-by .quote-info h6 {
  margin-bottom: 0.3125rem;
  color: #f86520;
}
.menu-testimonials .blockquote .quote-by .quote-info form .form-group label,
.menu-testimonials .blockquote .quote-by .quote-info p,
form .form-group .menu-testimonials .blockquote .quote-by .quote-info label {
  font-size: 0.8125rem;
  margin-bottom: 0;
}
.menu-testimonials .slick-dots {
  position: static;
  margin-top: 35px;
  text-align: left;
  padding-left: 4.0625rem;
}
.menu-testimonials .slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #fff;
  opacity: 0.5;
  margin-right: 8px;
  margin-left: 0;
  padding: 0;
}
.menu-testimonials .slick-dots li:last-child {
  margin-right: 0;
}
.menu-testimonials .slick-dots li.slick-active {
  opacity: 1;
}
.menu-testimonials .slick-dots li button {
  display: none;
}
.contact-nav {
  position: relative;
  padding-right: 36px;
}
@media (min-width: 768px) {
  .contact-nav #hotlineLink {
    margin-right: -15px;
  }
}
.contact-nav .icon-arrow {
  width: 32px;
  height: 32px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
}
.contact-nav .icon-arrow:after {
  content: "\e906";
  font-family: icomoon;
  border: none;
  font-size: 11px;
  color: #f86520;
  margin: 0;
  vertical-align: middle;
  line-height: normal;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  .contact-nav.active .contact-nav-hover {
    pointer-events: all;
    opacity: 1;
  }
}
@media (min-width: 768px) {
  .contact-nav:hover .contact-nav-hover {
    pointer-events: all;
    opacity: 1;
  }
}
.contact-nav-hover {
  min-width: 200px;
  width: 100%;
  text-align: left;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 3px 5px 3px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.contact-nav-hover a {
  color: #f86520;
  text-transform: uppercase;
  font-size: 0.6875rem;
  font-family: UniversLTStd-Bold;
  transition: all 0.3s;
}
.contact-nav-hover a:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .contact-nav-hover a span {
    display: inline-block !important;
  }
}
footer .top-footer-link {
  padding: 45px 0;
  background: #000;
}
@media (max-width: 767px) {
  footer .top-footer-link {
    padding: 20px 0;
  }
}
footer .footer-menu-link ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-menu-link ul li {
  display: inline-block;
  margin-right: 3.5625rem;
}
@media (max-width: 1200px) {
  footer .footer-menu-link ul li {
    margin-right: 0.9375rem;
  }
}
footer .footer-menu-link ul li:last-child {
  margin-right: 0;
}
footer .footer-menu-link ul li a {
  font-size: 15px;
  font-family: UniversLTStd-Bold;
  color: grey;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  footer .footer-menu-link ul li a {
    font-size: 0.8125rem;
  }
}
footer .footer-bottom {
  background: #1a1a1a;
  padding: 2.625rem 0;
}
@media (max-width: 767px) {
  footer .footer-bottom {
    padding: 1.25rem 0;
  }
}
footer .footer-bottom .copyright-text {
  margin-top: 1.75rem;
  margin-bottom: 1.375rem;
}
@media (max-width: 767px) {
  footer .footer-bottom .copyright-text {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
}
footer .footer-bottom .copyright-text form .form-group label,
footer .footer-bottom .copyright-text p,
form .form-group footer .footer-bottom .copyright-text label {
  font-size: 0.8125rem;
  font-family: UniversLTStd;
  color: grey;
  margin-bottom: 0;
}
footer .footer-bottom .bottom-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-bottom .bottom-menu ul li {
  display: inline-block;
  margin-right: 1.875rem;
}
@media (max-width: 1200px) {
  footer .footer-bottom .bottom-menu ul li {
    margin-right: 15px;
  }
}
@media (max-width: 480px) {
  footer .footer-bottom .bottom-menu ul li {
    margin-right: 5px;
  }
}
footer .footer-bottom .bottom-menu ul li:last-child {
  margin-right: 0;
}
footer .footer-bottom .bottom-menu ul li a {
  font-size: 0.8125rem;
  font-family: UniversLTStd;
  color: grey;
}
.heroSlider .banner-shape {
  z-index: 2;
  pointer-events: none;
}
.heroSlider .hero-slider-wrapper {
  height: calc(100vh + 72px);
  position: relative;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .heroSlider .hero-slider-wrapper {
    height: 0;
    min-height: calc(100vh + 120px);
  }
}
@media (max-height: 767px) {
  .heroSlider .hero-slider-wrapper {
    height: calc(100vh + 25px);
  }
}
@media (max-width: 767px) {
  .heroSlider .hero-slider-wrapper {
    height: 0;
    min-height: 100vh;
  }
}
.heroSlider .hero-slider-wrapper .hero-slider {
  height: 100%;
}
.heroSlider .hero-slider-wrapper .hero-slider .slick-list,
.heroSlider .hero-slider-wrapper .hero-slider .slick-track {
  height: 100%;
}
.heroSlider .hero-slider-wrapper .hero-slider .hero-slider-banner {
  height: 100%;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: top center !important;
}
.heroSlider .hero-slider-wrapper .hero-slider .hero-slider-banner::before {
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  width: 100%;
  height: 100%;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content {
  position: absolute;
  top: calc(50% - 35px);
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  padding: 0 15px;
}
@media (min-width: 1281px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content {
    max-width: 42%;
  }
}
@media (max-width: 1280px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content {
    max-width: 100%;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2 {
  margin-bottom: 23px;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2
  br {
  display: none;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  form
  .form-group
  label,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  p,
form
  .form-group
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  label {
  margin-bottom: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .btn-wrapper {
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .btn-wrapper {
    margin-top: 0.625rem;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .btn-wrapper
  .theme-btn {
  min-width: 180px;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .btn-wrapper
    .theme-btn {
    max-width: 160px;
    margin-right: 0.625rem;
    min-width: 140px;
    font-size: 0.6875rem;
  }
}
.heroSlider .hero-slider-wrapper .hero-content-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 145px;
  color: #fff;
  z-index: 1;
}
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
  .heroSlider .hero-slider-wrapper .hero-content-item {
    display: none;
  }
}
@media (max-width: 767px) {
  .heroSlider .hero-slider-wrapper .hero-content-item {
    min-height: 100px;
    display: none;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .slick-list {
  margin: 0 -15px;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .slick-list
  .slick-track {
  width: auto !important;
  transform: none !important;
  display: flex !important;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .slick-list
  .slick-track
  .slick-slide.slick-cloned {
  display: none !important;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .slick-arrow {
  display: none !important;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item {
  padding: 0 15px;
  outline: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item
  .hero-slider-nav-item-inside {
  min-height: 145px;
  background: rgba(255, 132, 10, 0.1);
  border-top: 2px solid rgba(255, 132, 10, 0.1);
  padding: 8px 18px;
  text-transform: uppercase;
  outline: 0;
  transition: 0.3s ease all;
  position: relative;
  cursor: pointer;
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-content-item
    .hero-slider-nav
    .hero-slider-nav-item {
    min-height: 100px;
  }
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item
  .slick-progress {
  position: absolute;
  top: -2px;
  width: 0;
  height: 2px;
  background: #f86520;
  left: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item.slick-current
  .hero-slider-nav-item-inside {
  background: rgba(255, 132, 10, 0.3);
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item.slick-current
  .slick-progress {
  width: 100%;
  transition: 5s ease all;
}
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item
  form
  .form-group
  label,
.heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item
  p,
form
  .form-group
  .heroSlider
  .hero-slider-wrapper
  .hero-content-item
  .hero-slider-nav
  .hero-slider-nav-item
  label {
  font-size: 0.8125rem;
}
.heroSlider.clip-bottom-right {
  z-index: 4;
}
.heroBanner {
  position: relative;
}
.heroBanner
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2
  sup,
.heroBanner h1 sup,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .heroBanner
  h2
  sup {
  top: -25px;
  font-size: 30px;
  left: 5px;
}
.heroBanner:not(.bg-white)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.heroBanner.small {
  height: 570px;
}
.heroBanner.small .banner-content {
  position: absolute;
  left: 0;
  bottom: 123px;
  width: 100%;
  max-width: 55%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .heroBanner.small .banner-content {
    max-width: 100%;
  }
}
.heroBanner.small
  .banner-content
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.heroBanner.small .banner-content h1,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .heroBanner.small
  .banner-content
  h2 {
  margin-bottom: 23px;
}
.heroBanner.small .banner-content h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.heroBanner.small .banner-content form .form-group label,
.heroBanner.small .banner-content p,
form .form-group .heroBanner.small .banner-content label {
  max-width: 75%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .heroBanner.small .banner-content form .form-group label,
  .heroBanner.small .banner-content p,
  form .form-group .heroBanner.small .banner-content label {
    max-width: 100%;
  }
}
.heroBanner.banner-small-width.medium {
  min-height: 616px;
  height: 0;
  padding: 8.875rem 0;
}
.heroBanner.banner-small-width .banner-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 15px;
  max-width: 40%;
}
@media (max-width: 767px) {
  .heroBanner.banner-small-width .banner-content {
    bottom: 0;
    max-width: 100%;
  }
}
.heroBanner.banner-small-width .banner-content form .form-group label,
.heroBanner.banner-small-width .banner-content p,
form .form-group .heroBanner.banner-small-width .banner-content label {
  max-width: 82%;
}
@media (max-width: 767px) {
  .heroBanner.banner-small-width .banner-content form .form-group label,
  .heroBanner.banner-small-width .banner-content p,
  form .form-group .heroBanner.banner-small-width .banner-content label {
    max-width: 100%;
  }
}
.heroBanner.banner-full-width.medium {
  min-height: 616px;
  height: 0;
  padding: 8.875rem 0;
}
.heroBanner.banner-full-width .banner-content {
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .heroBanner.banner-full-width .banner-content {
    bottom: 0;
  }
}
.heroBanner.banner-full-width .banner-content form .form-group label,
.heroBanner.banner-full-width .banner-content p,
form .form-group .heroBanner.banner-full-width .banner-content label {
  max-width: 82%;
}
@media (max-width: 767px) {
  .heroBanner.banner-full-width .banner-content form .form-group label,
  .heroBanner.banner-full-width .banner-content p,
  form .form-group .heroBanner.banner-full-width .banner-content label {
    max-width: 100%;
  }
}
.heroBanner.banner-half-width.medium {
  min-height: 616px;
  height: 0;
  padding: 8.875rem 0 4.375rem;
}
.heroBanner.banner-half-width .banner-content {
  max-width: 60%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .heroBanner.banner-half-width .banner-content {
    bottom: 0;
    max-width: 100%;
  }
}
.heroBanner.banner-half-width .banner-content form .form-group label,
.heroBanner.banner-half-width .banner-content p,
form .form-group .heroBanner.banner-half-width .banner-content label {
  max-width: 100%;
}
.heroBanner.medium {
  min-height: 684px;
  height: 0;
  padding: 8.875rem 0;
}
.heroBanner.medium .single-image {
  margin-top: 1.5625rem;
}
.heroBanner.medium .product-details .tags {
  margin-bottom: 1.5625rem;
}
.heroBanner.medium .product-details .tags .badge {
  font-size: 0.6875rem;
  padding: 9px 20px;
}
.heroBanner.medium .product-details .product-title h6 {
  margin-bottom: 0.9375rem;
}
.heroBanner.medium .product-details .proudct-info {
  margin-top: 1.875rem;
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  .heroBanner.medium .product-details .proudct-info {
    margin-top: 0.9375rem;
  }
}
.heroBanner.medium .product-details .proudct-info form .form-group label,
.heroBanner.medium .product-details .proudct-info p,
form .form-group .heroBanner.medium .product-details .proudct-info label {
  font-family: UniversLTStd-Bold;
}
.heroBanner.medium
  .product-details
  .proudct-info
  form
  .form-group
  label:not(:only-child),
.heroBanner.medium .product-details .proudct-info p:not(:only-child),
form
  .form-group
  .heroBanner.medium
  .product-details
  .proudct-info
  label:not(:only-child) {
  display: table-row;
}
.heroBanner.medium
  .product-details
  .proudct-info
  form
  .form-group
  label:only-child
  span,
.heroBanner.medium .product-details .proudct-info p:only-child span,
form
  .form-group
  .heroBanner.medium
  .product-details
  .proudct-info
  label:only-child
  span {
  display: inline-block;
}
.heroBanner.medium
  .product-details
  .proudct-info
  form
  .form-group
  label:only-child
  span:last-child,
.heroBanner.medium .product-details .proudct-info p:only-child span:last-child,
form
  .form-group
  .heroBanner.medium
  .product-details
  .proudct-info
  label:only-child
  span:last-child {
  margin-left: 0.625rem;
}
.heroBanner.medium .product-details .proudct-info form .form-group label span,
.heroBanner.medium .product-details .proudct-info p span,
form .form-group .heroBanner.medium .product-details .proudct-info label span {
  text-align: left;
  display: table-cell;
  padding-bottom: 0.625rem;
}
.heroBanner.medium
  .product-details
  .proudct-info
  form
  .form-group
  label
  span:first-child,
.heroBanner.medium .product-details .proudct-info p span:first-child,
form
  .form-group
  .heroBanner.medium
  .product-details
  .proudct-info
  label
  span:first-child {
  padding-right: 10px;
}
.heroBanner.medium
  .product-details
  .proudct-info
  form
  .form-group
  label
  span:last-child,
.heroBanner.medium .product-details .proudct-info p span:last-child,
form
  .form-group
  .heroBanner.medium
  .product-details
  .proudct-info
  label
  span:last-child {
  text-align: right;
  font-family: UniversLTStd;
  padding-left: 0.625rem;
}
.heroBanner.medium .product-details .btn-wrapper {
  margin-top: 1.5625rem;
}
.heroBanner.medium .product-details .btn-wrapper .theme-btn {
  font-size: 13px;
  margin-right: 15px;
}
.heroBanner.medium .tabs-items {
  border: none;
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .heroBanner.medium .tabs-items {
    margin-top: 0.625rem;
  }
}
.heroBanner.medium .tabs-items li {
  margin-bottom: 0;
}
.heroBanner.medium .tabs-items li a {
  font-size: 0.8125rem;
  font-family: UniversLTStd-Bold;
  color: #666;
  padding: 9px 10px;
  min-width: 68px;
  text-align: center;
  line-height: normal;
  border: 1px solid grey;
  border-radius: 0;
  background: 0 0;
}
.heroBanner.medium .tabs-items li a.active {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
.heroBanner.medium .tabs-items li:first-child a {
  border-radius: 6px 0 0 6px;
}
.heroBanner.medium .tabs-items li:last-child a {
  border-radius: 0 6px 6px 0;
}
.heroBanner.large {
  height: 768px;
}
.heroBanner.large .banner-content {
  position: absolute;
  left: 0;
  bottom: 123px;
  width: 100%;
  max-width: 55%;
  padding: 0 15px;
}
@media (max-width: 767px) {
  .heroBanner.large .banner-content {
    max-width: 100%;
  }
}
.heroBanner.large
  .banner-content
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.heroBanner.large .banner-content h1,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .heroBanner.large
  .banner-content
  h2 {
  margin-bottom: 23px;
}
.heroBanner.large .banner-content h6 {
  margin-bottom: 15px;
  text-transform: uppercase;
}
.heroBanner.large .banner-content form .form-group label,
.heroBanner.large .banner-content p,
form .form-group .heroBanner.large .banner-content label {
  max-width: 75%;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .heroBanner.large .banner-content form .form-group label,
  .heroBanner.large .banner-content p,
  form .form-group .heroBanner.large .banner-content label {
    max-width: 100%;
  }
}
.heroBanner.hero-details {
  display: table;
  width: 100%;
}
@media (max-width: 767px) {
  .heroBanner.hero-details {
    height: 100%;
    padding-bottom: 50px;
  }
  .heroBanner.hero-details .product-details {
    margin-top: 1.25rem;
  }
  .heroBanner.hero-details .product-details .btn-wrapper {
    display: block !important;
  }
  .heroBanner.hero-details .product-details .btn-wrapper a {
    min-width: 100%;
  }
  .heroBanner.hero-details .product-details .btn-wrapper a + a {
    margin-top: 0.9375rem;
  }
}
.page-banner {
  background: #000;
  min-height: 280px;
  height: 0;
  padding: 2.5rem 0;
}
.page-banner.large {
  min-height: 412px;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .page-banner
  .section-title
  h2,
.page-banner
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.page-banner .section-title h1 {
  font-size: 3rem;
  line-height: 60px;
  margin-bottom: 0;
}
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .page-banner
  .section-title
  h2
  br,
.page-banner
  .section-title
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2
  br,
.page-banner .section-title h1 br {
  display: none;
}
@media (max-width: 1024px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .page-banner
    .section-title
    h2,
  .page-banner
    .section-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .page-banner .section-title h1 {
    font-size: 2rem;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .page-banner
    .section-title
    h2,
  .page-banner
    .section-title
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .page-banner .section-title h1 {
    font-size: 1.875rem;
    line-height: normal;
  }
}
.hero-banner-detail {
  min-height: 684px;
  height: 0;
  padding: 8.875rem 0;
  position: relative;
  background: #fff;
}
.hero-banner-detail.product-banner {
  height: auto;
  min-height: auto;
}
.hero-banner-detail.product-banner > .container {
  min-height: 100%;
}
@media (max-width: 767px) {
  .hero-banner-detail {
    min-height: 100%;
    height: 100%;
    padding: 6.25rem 0 60px;
  }
}
@media (max-height: 767px) {
  .hero-banner-detail {
    padding-bottom: 60px;
  }
}
.hero-banner-detail .single-image {
  margin-top: 1.5625rem;
}
@media (max-height: 767px) {
  .hero-banner-detail .single-image {
    margin-top: 0;
  }
  .hero-banner-detail .single-image img {
    max-height: 350px;
  }
}
@media (max-width: 767px) {
  .hero-banner-detail .product-details {
    margin-top: 1.875rem;
  }
}
@media (max-height: 767px) {
  .hero-banner-detail
    .product-details
    .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    h2,
  .hero-banner-detail .product-details h1,
  .heroSlider
    .hero-slider-wrapper
    .hero-slider
    .hero-slider-banner
    .slider-content
    .hero-banner-detail
    .product-details
    h2 {
    font-size: 2rem;
  }
}
.hero-banner-detail .product-details .tags {
  margin-bottom: 1.5625rem;
}
.hero-banner-detail .product-details .tags .badge {
  font-size: 0.6875rem;
  padding: 9px 20px;
}
.hero-banner-detail .product-details .product-title h6 {
  margin-bottom: 0.9375rem;
}
.hero-banner-detail .product-details .proudct-info {
  margin-top: 1.875rem;
  display: table;
  width: 100%;
}
.hero-banner-detail .product-details .proudct-info form .form-group label,
.hero-banner-detail .product-details .proudct-info p,
form .form-group .hero-banner-detail .product-details .proudct-info label {
  font-family: UniversLTStd-Bold;
}
.hero-banner-detail
  .product-details
  .proudct-info
  form
  .form-group
  label:not(:only-child),
.hero-banner-detail .product-details .proudct-info p:not(:only-child),
form
  .form-group
  .hero-banner-detail
  .product-details
  .proudct-info
  label:not(:only-child) {
  display: table-row;
}
.hero-banner-detail
  .product-details
  .proudct-info
  form
  .form-group
  label:only-child
  span,
.hero-banner-detail .product-details .proudct-info p:only-child span,
form
  .form-group
  .hero-banner-detail
  .product-details
  .proudct-info
  label:only-child
  span {
  display: inline-block;
}
.hero-banner-detail
  .product-details
  .proudct-info
  form
  .form-group
  label:only-child
  span:last-child,
.hero-banner-detail .product-details .proudct-info p:only-child span:last-child,
form
  .form-group
  .hero-banner-detail
  .product-details
  .proudct-info
  label:only-child
  span:last-child {
  margin-left: 0.625rem;
}
.hero-banner-detail .product-details .proudct-info form .form-group label span,
.hero-banner-detail .product-details .proudct-info p span,
form .form-group .hero-banner-detail .product-details .proudct-info label span {
  text-align: left;
  display: table-cell;
  padding-bottom: 0.625rem;
}
.hero-banner-detail
  .product-details
  .proudct-info
  form
  .form-group
  label
  span:last-child,
.hero-banner-detail .product-details .proudct-info p span:last-child,
form
  .form-group
  .hero-banner-detail
  .product-details
  .proudct-info
  label
  span:last-child {
  text-align: right;
  font-family: UniversLTStd;
  padding-left: 0.625rem;
}
.hero-banner-detail .product-details .btn-wrapper {
  margin-top: 1.5625rem;
}
@media (max-width: 767px) {
  .hero-banner-detail .product-details .btn-wrapper {
    display: block !important;
    margin-top: 0.625rem;
  }
}
.hero-banner-detail .product-details .btn-wrapper .theme-btn {
  font-size: 13px;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .hero-banner-detail .product-details .btn-wrapper .theme-btn {
    min-width: 100% !important;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.hero-banner-detail .tabs-items {
  border: none;
  margin-top: 1.875rem;
}
@media (max-width: 767px) {
  .hero-banner-detail .tabs-items {
    margin-top: 0.625rem;
  }
}
.hero-banner-detail .tabs-items li {
  margin-bottom: 0;
}
.hero-banner-detail .tabs-items li a {
  font-size: 0.8125rem;
  font-family: UniversLTStd-Bold;
  color: #666;
  padding: 9px 10px;
  min-width: 68px;
  text-align: center;
  line-height: normal;
  border: 1px solid grey;
  border-radius: 0;
  background: 0 0;
}
.hero-banner-detail .tabs-items li a.active {
  border: 1px solid #000;
  background: #000;
  color: #fff;
}
.hero-banner-detail .tabs-items li:first-child a {
  border-radius: 6px 0 0 6px;
}
.hero-banner-detail .tabs-items li:last-child a {
  border-radius: 0 6px 6px 0;
}
.hero-banner-detail.clip-bottom-center {
  margin-bottom: -3.125rem;
}
@media (max-width: 1200px) {
  .hero-banner-detail.clip-bottom-center {
    margin-bottom: -2.5rem;
  }
}
.hero-section {
  min-height: 376px;
  width: 100%;
  position: relative;
  padding: 6.25rem 0;
  background-color: #262626;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.hero-section::after {
  content: "";
  min-height: inherit;
  font-size: 0;
}
@media (max-width: 991px) {
  .hero-section {
    min-height: 230px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .hero-section .h-100 {
    height: auto !important;
  }
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}
.hero-section.dark-overlay:before {
  background: rgba(0, 0, 0, 0.4);
}
.hero-section.overlay-yellow:before {
  background: rgba(0, 0, 0, 0.1);
}
.hero-section .hero-content {
  margin-top: 2.1875rem;
}
.hero-section .hero-content h6 {
  margin-bottom: 0.9375rem;
  text-transform: uppercase;
}
.hero-section
  .hero-content
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2,
.hero-section .hero-content h1,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .hero-section
  .hero-content
  h2 {
  margin-bottom: 1.25rem;
  max-width: 34.375rem;
}
.hero-section
  .hero-content
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2
  sup,
.hero-section .hero-content h1 sup,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .hero-section
  .hero-content
  h2
  sup {
  top: -25px;
  font-size: 1.875rem;
  left: 5px;
}
.hero-section .hero-content form .form-group label,
.hero-section .hero-content p,
form .form-group .hero-section .hero-content label {
  max-width: 31.25rem;
}
.hero-section
  .hero-content
  .heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  h2
  br,
.hero-section .hero-content form .form-group label br,
.hero-section .hero-content h1 br,
.hero-section .hero-content p br,
.heroSlider
  .hero-slider-wrapper
  .hero-slider
  .hero-slider-banner
  .slider-content
  .hero-section
  .hero-content
  h2
  br,
form .form-group .hero-section .hero-content label br {
  display: none;
}
.hero-section.clip-bottom-center {
  margin-bottom: -3.4375rem;
}
@media (max-width: 1200px) {
  .hero-section.clip-bottom-center {
    margin-bottom: -2.5rem;
  }
}
.hero-section.clip-bottom-left,
.hero-section.clip-bottom-right {
  z-index: 4;
}
.news-herobanner .hero-content .tags {
  margin-top: 1.875rem;
}
.news-herobanner .hero-content .tags a.badge {
  min-width: 120px;
  margin-right: 0.75rem;
}
.news-herobanner .hero-content .tags a.badge:last-child {
  margin-right: 0;
}
.position-relative.dark-overlay .slider-item:before {
  background: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  section.bg-black85.pt-80
    + .bg-black92.pt-180.pb-180.two-col-text-image-section {
    padding-top: 2.5rem;
  }
}
section.bg-black85 + .section-block-dark {
  background: #181818;
}
@media (max-width: 767px) {
  section.bg-black92.pt-180.pb-180.two-col-text-image-section {
    padding-bottom: 2.1875rem;
    padding-top: 0;
  }
}
.features-description {
  font-size: 0.9375rem;
}
.features-description ul {
  padding-top: 12px;
  padding-left: 25px;
}
@media (min-width: 768px) {
  .features-description ul {
    -moz-column-count: 2;
    column-count: 2;
    -moz-column-gap: 45px;
    column-gap: 45px;
  }
}
.features-description ul li {
  margin-bottom: 12px;
}
.country-field {
  display: none;
}
html[data-country="en-ch"] .country-field {
  display: block;
}
/*# sourceMappingURL=main.min.css.map */
