@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0);
    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);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    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);
    -webkit-transform: translate3d(0, -30px, 0);
    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);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    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% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    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 {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 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 {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    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% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 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;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

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

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

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

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

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

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    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;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    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% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    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 {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    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 {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    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 {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    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 {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    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 {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

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

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

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    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;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    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;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    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;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    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 {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

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

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    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: 800ms;
  animation-duration: 800ms;
}

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

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

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

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
@keyframes coccoc-alo-circle-img-anim {
  0% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}
@font-face {
  font-family: "Roboto-Regular";
  src: url(/assets/src/assets/fonts/Roboto-Regular.woff2) format("woff2"), url(/assets/src/assets/fonts/Roboto-Regular.ttf) format("truetype"), url(/assets/src/assets/fonts/Roboto-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url(/assets/src/assets/fonts/Roboto-Medium.woff2) format("woff2"), url(/assets/src/assets/fonts/Roboto-Medium.ttf) format("truetype"), url(/assets/src/assets/fonts/Roboto-Medium.woff) format("woff");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url(/assets/src/assets/fonts/Roboto-Bold.woff2) format("woff2"), url(/assets/src/assets/fonts/Roboto-Bold.ttf) format("truetype"), url(/assets/src/assets/fonts/Roboto-Bold.woff) format("woff");
  font-display: swap;
  font-weight: 700;
}
.block__content__text--sub {
  color: #5b5b5b;
}
.block__content__text.cms ul {
  padding-left: 0;
  list-style: none;
  margin-top: 30px;
}
@media (max-width: 767.98px) {
  .block__content__text.cms ul {
    margin-top: 24px;
  }
}
.block__content__text.cms ul li {
  position: relative;
  color: #5b5b5b;
  padding-left: 30px;
}
.block__content__text.cms ul li:not(:last-child) {
  margin-bottom: 15px;
}
.block__content__text.cms ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20data-name%3D%22check_circle-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%205554%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%202a8%208%200%201%200%208%208%208%208%200%200%200-8-8zM8.4%2014l-4-4%201.128-1.128L8.4%2011.736l6.072-6.072L15.6%206.8z%22%20data-name%3D%22Path%205555%22%20fill%3D%22%23f49712%22%2F%3E%3C%2Fsvg%3E) no-repeat center/20px auto;
}

@media (max-width: 575.98px) {
  .onShowDesktop {
    display: none;
  }
}

@media (min-width: 576px) {
  .onShowMobile {
    display: none;
  }
}

.m-slider:not(.slick-initialized) > .m-slider_image:nth-child(n+2) {
  display: none;
}

.mt-150 {
  margin-top: 150px;
}
@media (max-width: 991px) {
  .mt-150 {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .mt-150 {
    margin-top: 40px;
  }
}

@media (min-width: 1200px) {
  .fs20 {
    font-size: 20px;
  }
}

main.wrapper {
  overflow: hidden;
}

.t-evaluateAndComments {
  padding: 3.3854166667vw 0;
}
.t-evaluateAndComments_generalRating, .t-evaluateAndComments_evaluateForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-evaluateAndComments_generalRating {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}
.t-evaluateAndComments_generalRating_stars {
  margin: 8px 0;
  display: flex;
}
.t-evaluateAndComments_generalRating_stars .a-icon {
  margin: 0 4px;
}
.t-evaluateAndComments_evaluateForm {
  margin-top: 16px;
}
.t-evaluateAndComments_evaluateForm > div {
  width: 100%;
}
.t-evaluateAndComments form {
  width: 100%;
  margin: 16px 0;
}

@media (min-width: 576px) {
  .t-evaluateModal .modal-dialog {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
}
.t-evaluateModal .modal-content {
  background-color: #ffffff;
}
.t-evaluateModal_form {
  display: flex;
  flex-wrap: wrap;
  margin: 8px -8px;
}
.t-evaluateModal_field {
  position: relative;
  flex-basis: 50%;
  padding: 8px;
}
@media (max-width: 767px) {
  .t-evaluateModal_field {
    flex-basis: 100%;
  }
}
.t-evaluateModal_field > label {
  width: 100%;
  font-weight: 600;
}
.t-evaluateModal_field.fullWidth {
  flex-basis: 100%;
}
.t-evaluateModal_ratingForm {
  margin-top: 16px;
}
.t-evaluateModal_ratingForm_wrapper {
  display: flex;
  max-width: 15%;
  margin-top: 8px;
  margin-right: auto;
}
.t-evaluateModal_ratingForm_star {
  flex-basis: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.t-evaluateModal_ratingForm_star .icon {
  cursor: pointer;
}
.t-evaluateModal_submit {
  max-width: 250px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
.t-evaluateModal_submit button {
  width: 100%;
}

.t-commentList {
  margin-top: 16px;
}
.t-commentList_commentCard_ratingStars, .t-commentList_commentCard_content, .t-commentList_commentCard_avatar, .t-commentList_commentCard_info, .t-commentList_commentCard_infoWrapper, .t-commentList_replyCard_ratingStars, .t-commentList_replyCard_content, .t-commentList_replyCard_avatar, .t-commentList_replyCard_info, .t-commentList_replyCard_infoWrapper {
  display: flex;
}
.t-commentList_commentCard:not(:first-child), .t-commentList_replyCard:not(:first-child) {
  margin-top: 8px;
}
.t-commentList_commentCard_infoWrapper, .t-commentList_replyCard_infoWrapper {
  justify-content: space-between;
}
.t-commentList_commentCard_avatar, .t-commentList_replyCard_avatar {
  width: 25px;
  height: 25px;
  background-color: #e6e6e6;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}
.t-commentList_commentCard_name, .t-commentList_replyCard_name {
  margin-left: 8px;
}
.t-commentList_commentCard_contentWrapper, .t-commentList_replyCard_contentWrapper {
  margin: 8px 0 8px 40px;
  background-color: #e6e6e6;
  border-radius: 6px;
}
.t-commentList_commentCard_ratingStars, .t-commentList_replyCard_ratingStars {
  justify-content: flex-start;
  align-items: center;
}
.t-commentList_commentCard_replyBtn, .t-commentList_replyCard_replyBtn {
  width: fit-content;
  margin-left: auto;
}
.t-commentList_commentCard_replyBtn button, .t-commentList_replyCard_replyBtn button {
  outline: none;
  border: 0;
  background-color: transparent;
  color: #f58d00;
}
.t-commentList_commentCard_replyForm, .t-commentList_replyCard_replyForm {
  margin-left: 40px;
}
.t-commentList_commentCard_replyForm, .t-commentList_replyCard_replyForm {
  display: none;
}
.t-commentList_commentCard_replyForm.opened, .t-commentList_replyCard_replyForm.opened {
  display: block;
}
.t-commentList_commentCard_replyForm form, .t-commentList_replyCard_replyForm form {
  width: 100%;
}
.t-commentList_commentCard_replyForm form textarea, .t-commentList_replyCard_replyForm form textarea {
  width: 100%;
  padding: 10px;
  outline: 0;
  resize: none;
  border-radius: 6px;
}
.t-commentList_commentCard_replyForm_wrapBtn, .t-commentList_replyCard_replyForm_wrapBtn {
  display: flex;
  width: fit-content;
  margin-left: auto;
}
.t-commentList_commentCard_replyForm_submit, .t-commentList_commentCard_replyForm_cancel, .t-commentList_replyCard_replyForm_submit, .t-commentList_replyCard_replyForm_cancel {
  width: fit-content;
}
.t-commentList_commentCard_replyForm_cancel, .t-commentList_replyCard_replyForm_cancel {
  margin-left: 8px;
}
.t-commentList_commentCard_contentWrapper {
  padding: 8px;
}
.t-commentList_replyCard {
  margin-left: 40px;
}
.t-commentList_replyCard_contentWrapper {
  padding: 16px;
}
.t-commentList_seeMore {
  max-width: 250px;
  margin: auto;
}
.t-commentList_seeMore button {
  width: 100%;
}

.t-thanksModal .modal-body {
  padding: 32px;
}
.t-thanksModal_body_check {
  text-align: center;
}
.t-thanksModal_body_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: fit-content;
  cursor: pointer;
}

.hovered .icon,
.selected .icon {
  filter: invert(96%) sepia(44%) saturate(4321%) hue-rotate(322deg) brightness(98%) contrast(105%);
}

.a-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.a-icon-bigger {
  width: 36px;
  height: 36px;
}
.a-icon-smaller {
  width: 20px;
  height: 20px;
}
.a-icon-40x40 {
  width: 40px;
  height: 40px;
}
.a-icon-14x14 {
  width: 14px;
  height: 14px;
}

.a-text {
  margin: 0;
}
.a-text-white {
  color: #ffffff;
}
.a-text-black {
  color: #000000;
}
.a-text-charlestonGreen {
  color: #212529;
}
.a-text-gamboge {
  color: #f49712;
}
.a-text-davyGrey {
  color: #5b5b5b;
}
.a-text-yankeesBlue {
  color: #222b45;
}
.a-text-lightGray {
  color: #d3d3d3;
}
.a-text-crayola {
  color: #147dfa;
}
.a-text-pastelGray {
  color: #cbcbcb;
}
.a-text-candyApple {
  color: #f60609;
}
.a-text-prussianBlue {
  color: #002855;
}
.a-text-tangerine {
  color: #f58d00;
}
.a-text-pumpkin {
  color: #f47a12;
}
.a-text-whiteSmoke {
  color: #f4f4f4;
}
.a-text-sonicSilver {
  color: #707070;
}
.a-text-platinum {
  color: #e6e6e6;
}
.a-text-cadet {
  color: #5c6771;
}
.a-text-gainsboro {
  color: #D9D9D9;
}
.a-text-arsenic {
  color: #434343;
}
.a-text-eerieBlack {
  color: #1F1F1F;
}
.a-text-taupeGray {
  color: #8C8C8C;
}
.a-text-100 {
  font-weight: 100;
}
.a-text-200 {
  font-weight: 200;
}
.a-text-300 {
  font-weight: 300;
}
.a-text-400 {
  font-weight: normal;
}
.a-text-500 {
  font-family: "Roboto-Medium";
  font-weight: 500;
}
.a-text-600 {
  font-weight: 600;
}
.a-text-700 {
  font-weight: bold;
  font-family: "Roboto-Bold";
}
.a-text-800 {
  font-weight: 800;
}
.a-text-900 {
  font-weight: 900;
}
.a-text-uppercase {
  text-transform: uppercase;
}
.a-text-capitalize {
  text-transform: capitalize;
}
.a-text-underline {
  text-decoration: underline;
}
.a-text-italic {
  font-style: italic;
}
.a-text-center {
  text-align: center;
}
.a-text-justify {
  text-align: justify;
}
.a-text-24x36 {
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 991px) {
  .a-text-24x36 {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .a-text-24x36 {
    font-size: 16px;
    line-height: 20px;
  }
}
.a-text-18x24 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .a-text-18x24 {
    font-size: 16px;
    line-height: 20px;
  }
}
.a-text-20x32 {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .a-text-20x32 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .a-text-20x32 {
    font-size: 14px;
    line-height: 20px;
  }
}
.a-text-14x20 {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .a-text-14x20 {
    font-size: 12px;
    line-height: 20px;
  }
}
.a-text-12x20 {
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .a-text-12x20 {
    font-size: 10px;
    line-height: 17px;
  }
}
.a-text-ls-0015 {
  letter-spacing: 0.0015em;
}

.a-button {
  -webkit-appearance: none !important;
  text-decoration: none !important;
  margin: 0;
  border: none;
  height: 50px;
  background-color: #f49712;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 0.8rem 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  position: relative;
}
@media (max-width: 767.98px) {
  .a-button {
    height: 40px;
    padding: 5px 45px;
    font-size: 14px;
  }
}
.a-button:before, .a-button:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 25px;
  transition: 0.2s ease;
  border-color: #ffffff;
}
.a-button::before {
  top: 0;
  right: 0;
  transform: translate3d(-40px, 7px, 0px) scale(0);
  border-top: 4px solid;
  border-right: 4px solid;
}
.a-button:after {
  bottom: 0;
  left: 0;
  transform: translate3d(40px, -7px, 0px) scale(0);
  border-bottom: 4px solid;
  border-left: 4px solid;
}
.a-button:hover {
  background-color: #fafafa;
  color: #f49712;
}
.a-button:hover:before, .a-button:hover:after {
  transform: translate3d(0, 0, 0) scale(1);
  border-color: #f49712;
}
.a-button:focus {
  outline: none;
}
.a-button-bigger {
  height: 60px;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .a-button-bigger {
    height: 50px;
  }
}
.a-button-sm {
  height: 44px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 12px;
}
.a-button-dark {
  background-color: #212529;
}
.a-button-dark:hover {
  background-color: #5b5b5b;
}
.a-button-white {
  background-color: #ffffff;
  color: #f49712;
}
.a-button-white:hover {
  color: #212529;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.a-button-uppercase {
  text-transform: uppercase;
}
.a-button-bold {
  font-weight: bold;
}
.a-button-outline {
  background-color: transparent;
  border: 1px solid #f49712;
  color: #212529;
}
.a-button-outline:hover {
  background-color: #f49712;
  color: #ffffff;
}

.group-btn.center {
  display: flex;
  justify-content: center;
}

.a-label {
  font-size: 14px;
  color: #ffffff;
  padding: 5px 20px;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #f49712;
}
@media (max-width: 767.98px) {
  .a-label {
    font-size: 10px;
    padding: 3px 15px;
  }
}

.a-input {
  width: 100%;
  height: 50px;
  padding: 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  color: #212529;
  outline: 0;
  transition: 0.4s ease;
  border-radius: 0;
}
.a-input:focus {
  border-bottom: solid 1px #147dfa;
}
.a-input-error {
  color: #f60609;
  border-bottom: 1px solid #f60609;
}
.a-input-disabled {
  pointer-events: none;
  color: #cbcbcb;
}
.a-input-disabled[type=text] + label.floating-label {
  display: none;
}
.a-input-border {
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  padding: 12px 30px;
}
.a-input-border:focus {
  border: solid 1px #147dfa;
}
.a-input-border[type=text] + label {
  display: none;
}
.a-input-transparent {
  background-color: transparent;
  border: 1px solid #ffffff !important;
}
.a-input-nofloat {
  padding: 12px 14px;
  color: #ffffff;
}
.a-input-nofloat::placeholder {
  color: #ffffff;
}

.input-group {
  position: relative;
}
.input-group label.floating-label {
  color: #333333;
  transition: 0.2s ease;
  position: absolute;
  top: 20px;
  left: 0;
  pointer-events: none;
}
.input-group label.floating-label.has-value {
  pointer-events: all;
  top: -4px;
  color: #cbcbcb;
  font-size: 14px;
}
.input-group label.floating-label span.required {
  color: #f60609;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -12px;
}
.input-group input:focus ~ label.floating-label,
.input-group input.has-value ~ label.floating-label {
  pointer-events: all;
  top: -4px;
  color: #cbcbcb;
  font-size: 14px;
}
.input-group textarea:focus ~ label.floating-label,
.input-group textarea.has-value ~ label.floating-label {
  pointer-events: all;
  top: -18px;
  color: #cbcbcb;
  font-size: 14px;
}

.floating-select:focus ~ .label-select,
.floating-select.has-value ~ .label-select {
  pointer-events: all;
  top: -6px;
  color: #cbcbcb;
  font-size: 14px;
}

.a-textarea {
  width: 100%;
  padding: 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  color: #212529;
  outline: 0;
  transition: 0.2s ease;
  resize: none;
  border-radius: 0;
}
.a-textarea:focus {
  border-bottom: solid 1px #147dfa;
}
.a-textarea-error {
  color: #f60609;
  border-bottom: 1px solid #f60609;
}
.a-textarea-disabled {
  pointer-events: none;
  color: #cbcbcb;
}
.a-textarea-disabled[type=text] + label.floating-label {
  display: none;
}
.a-textarea-border {
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  padding: 12px 30px;
}
.a-textarea-border:focus {
  border: solid 1px #147dfa;
}
.a-textarea-border[type=text] + label {
  display: none;
}
.a-textarea-transparent {
  background-color: transparent;
  border: 1px solid #ffffff !important;
}
.a-textarea-nofloat {
  padding: 12px 14px;
  color: #ffffff;
}
.a-textarea-nofloat::placeholder {
  color: #ffffff;
}

.isTextarea label.floating-label {
  top: 0;
}
.isTextarea label.floating-label.field-active {
  top: -18px;
}

.modal.centered .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0;
}
@media (min-width: 576px) {
  .modal.modalConstructDetail .modal-dialog, .modal.modalVideoThumb .modal-dialog, .modal.modalDrawingThumb .modal-dialog, .modal.modalInfoThumb .modal-dialog {
    max-width: 1350px;
  }
}
.modal.modalConstructDetail .modal-header, .modal.modalVideoThumb .modal-header, .modal.modalDrawingThumb .modal-header, .modal.modalInfoThumb .modal-header {
  border: none;
}
@media (min-width: 992px) {
  .modal.modalConstructDetail .modal-body, .modal.modalVideoThumb .modal-body, .modal.modalDrawingThumb .modal-body, .modal.modalInfoThumb .modal-body {
    padding: 50px;
  }
}
.modal.modalIntroHome {
  padding-right: 0 !important;
}
@media (max-width: 575.98px) {
  .modal.modalIntroHome {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
}
.modal.modalIntroHome .modal-body {
  padding: 36px;
}
@media (max-width: 767.98px) {
  .modal.modalIntroHome .modal-body {
    padding: 36px 10px 10px;
  }
}
@media (min-width: 576px) {
  .modal.modalIntroHome .modal-dialog {
    max-width: 472px;
  }
}
@media (min-width: 576px) {
  .modal.modalIntroHome .modal-dialog {
    margin: 4.75rem auto;
  }
}
@media (max-width: 575.98px) {
  .modal.modalIntroHome .modal-dialog {
    margin: 0 2.5rem;
  }
}
@media (min-width: 1200px) {
  .modal.modalIntroHome .modal-dialog {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
  }
}
.modal.modalVideoThumb .modal-header, .modal.modalInfoThumb .modal-header {
  margin-bottom: 90px;
  border: none;
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .modal-header, .modal.modalInfoThumb .modal-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text, .modal.modalInfoThumb .block__content__text {
    padding-top: 0;
  }
}
.modal.modalVideoThumb .block__content__text h2, .modal.modalInfoThumb .block__content__text h2 {
  font-family: "Roboto-Bold";
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .block__content__text h2, .modal.modalInfoThumb .block__content__text h2 {
    margin-bottom: 0;
  }
}
.modal.modalVideoThumb .block__content__text--medium h4, .modal.modalInfoThumb .block__content__text--medium h4 {
  color: #222b45;
  font-family: "Roboto-Medium";
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text--medium h4, .modal.modalInfoThumb .block__content__text--medium h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.modal.modalVideoThumb .block--bottom, .modal.modalInfoThumb .block--bottom {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block--bottom, .modal.modalInfoThumb .block--bottom {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body {
    padding-bottom: 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal.modalDrawingThumb .modal-body {
    padding-bottom: 65px !important;
    padding-top: 25px !important;
  }
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
  opacity: 0;
  transition: 0.2s;
  min-height: 520px;
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
    min-height: 510px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
    min-height: 245px;
  }
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider.open {
  opacity: 1;
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .a-img:after {
  padding-top: 67.5%;
}
.modal.modalDrawingThumb .modal-body .sliderThumb {
  opacity: 0;
  transition: 0.2s;
}
@media (max-width: 1199.98px) {
  .modal.modalDrawingThumb .modal-body .sliderThumb {
    min-height: 230px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalDrawingThumb .modal-body .sliderThumb {
    min-height: 90px;
  }
}
.modal.modalDrawingThumb .modal-body .sliderThumb.open {
  opacity: 1;
}
.modal.modalDrawingThumb .modal-body .block__content__text {
  padding-top: 0;
  padding-bottom: 0;
}
.modal.modalDrawingThumb .modal-body .block__content__text h2 {
  margin-bottom: 20px;
  font-family: "Roboto-Bold";
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .block__content__text h2 {
    line-height: 48px;
  }
}
.modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
    margin-top: 120px !important;
  }
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 84px;
  }
}
.modal.modalDrawingThumb .modal-body .o-cardDrawing {
  border: none;
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .o-cardDrawing {
    padding-top: 20px;
  }
}
.modal.modalDrawingThumb .modal-body .o-cardDrawing .block__action {
  justify-content: flex-start;
}
.modal.modalDrawingThumb .modal-body .infoConstructPanel {
  background-color: transparent;
}
.modal.modalDrawingThumb .modal-body .infoConstructPanel .m-iconText {
  margin-bottom: 20px;
  color: #212529;
}
.modal.modalDrawingThumb .modal-header {
  margin-bottom: 90px;
  border: none;
}
@media (max-width: 991.98px) {
  .modal.modalDrawingThumb .modal-header {
    margin-bottom: 30px;
  }
}
.modal.modalVideoThumb .modal-body {
  padding: 50px 50px 90px;
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .modal-body {
    padding: 14px 18px 70px;
  }
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text--sub {
    font-size: 20px;
  }
}
.modal.modalVideoThumb .block__item.isFlex {
  display: flex;
}
.modal.modalVideoThumb .block__item.isFlex .m-video {
  width: 160px;
  margin-right: 20px;
}
@media (max-width: 570px) {
  .modal.modalVideoThumb .block__item.isFlex .m-video {
    width: 120px;
    margin-right: 10px;
  }
}
.modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video {
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 40px solid #ffffff;
}
@media (max-width: 1199.98px) {
  .modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video {
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid #ffffff;
  }
}
.modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video span {
  display: none;
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__item.isFlex .a-link {
    font-size: 16px;
    max-width: 180px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .modal-dialog {
    max-width: 991px;
  }
}
.modal.modalInfoThumb .group-btn {
  margin-top: 65px;
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .group-btn {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .group-btn {
    margin-top: 25px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .modal-body {
    padding: 30px;
  }
}
.modal.modalInfoThumb .block__content__text--sub p {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .modal.modalInfoThumb .block__content__text--sub p {
    font-size: 16px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .block__content__text h2 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text h2 {
    font-size: 22px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1.5625vw;
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul {
    margin-top: 24px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li {
  position: relative;
  color: #5b5b5b;
  padding-left: 30px;
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20data-name%3D%22check_circle-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%205554%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%202a8%208%200%201%200%208%208%208%208%200%200%200-8-8zM8.4%2014l-4-4%201.128-1.128L8.4%2011.736l6.072-6.072L15.6%206.8z%22%20data-name%3D%22Path%205555%22%20fill%3D%22%23f49712%22%2F%3E%3C%2Fsvg%3E) no-repeat center/20px auto;
}
@media (min-width: 992px) {
  .modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul {
    margin-bottom: 40px;
  }
}
.modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul li {
  font-size: 16px;
  margin-bottom: 13px;
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul li {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .modal.modalContext .modal-dialog {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
  }
}
.modal.modalContext .modal-title {
  font-size: 28px;
  color: #f49712;
  font-family: "Roboto-Medium";
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .modal.modalContext .modal-title {
    font-size: 20px;
  }
}
.modal.modalContext .modal-title.d-flex {
  justify-content: space-between;
}
.modal.modalContext .modal-title.d-flex .close {
  width: 18px;
  height: 18px;
}
.modal.modalContext .modal-title.d-flex .close span:before, .modal.modalContext .modal-title.d-flex .close span:after {
  height: 2px;
  background-color: #f49712;
}
.modal.modalContext .modal-header {
  border: none;
}
.modal.modalContext .modal-body p {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .modal.modalContext .modal-body p {
    font-size: 14px;
  }
}
.modal.modalContext .modal-body .a-button {
  width: 100%;
}
@media (max-width: 1919px) {
  .modal.modalImage.modal-dialog {
    max-width: 505px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal.modalImage.modal-dialog {
    max-width: 400px !important;
  }
}
.modal.modalImage .modal-content .a-img:after {
  padding-top: 150.39593%;
}
.modal button.close {
  width: 36px;
  height: 36px;
  padding: 0 !important;
}
.modal button.close span {
  color: transparent;
}
.modal button.close span[aria-hidden=true] {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.modal button.close span[aria-hidden=true]::before, .modal button.close span[aria-hidden=true]::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: #000;
}
.modal button.close span[aria-hidden=true]::before {
  transform: rotate(45deg);
}
.modal button.close span[aria-hidden=true]::after {
  transform: rotate(-45deg);
}
.modal .slick-slider {
  margin-left: -5px;
  margin-right: -5px;
}
.modal .slick-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}
.modal .slick-slider .slick-list .slick-track .slick-slide {
  padding: 0 5px;
}
.modal .slick-slider .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #f49712;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  top: calc(50% - 25px);
  position: absolute;
  right: 10px;
  left: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .modal .slick-slider .slick-arrow {
    display: none !important;
  }
}
.modal .slick-slider .slick-arrow:before {
  display: none;
}
.modal .slick-slider .slick-arrow:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 19px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: 0.2s ease;
}
.modal .slick-slider .slick-arrow.slick-prev {
  left: 20px;
}
.modal .slick-slider .slick-arrow.slick-prev:after {
  left: 22px;
  transform: rotate(135deg);
}
.modal .slick-slider .slick-arrow.slick-next {
  right: 20px;
}
.modal .slick-slider .slick-arrow.slick-next:after {
  left: 18px;
  transform: rotate(-45deg);
}
.modal .sliderThumb {
  margin-top: 20px;
}
.modal .sliderContent .a-img-quadrate-stand {
  max-width: 600px;
  margin: auto;
}

.modal.fade:not(.show) {
  visibility: hidden;
}

.t-maintenance .tabpane {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .t-maintenance .tabpane {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  .t-maintenance .tabpane {
    margin-top: 32px;
  }
}
.t-maintenance__contentCard {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard {
    flex-direction: column;
  }
}
.t-maintenance__contentCard__slider {
  position: relative;
  max-width: 634px;
  width: 100%;
}
.t-maintenance__contentCard__slider__inner {
  width: 100%;
}
.t-maintenance__contentCard__slider__inner .slick-track {
  transition: transform 0.25s ease-in-out;
}
@media (max-width: 1199.98px) {
  .t-maintenance__contentCard__slider {
    max-width: 400px;
  }
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard__slider {
    max-width: 100%;
  }
}
.t-maintenance__contentCard__navFor {
  padding-left: 67px;
  flex-basis: auto;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard__navFor {
    padding-left: 0;
    padding-top: 48px;
  }
}
.t-maintenance__contentCard__navFor__content {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 1199.98px) {
  .t-maintenance__contentCard__navFor__content {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .t-maintenance__contentCard__navFor__content {
    font-size: 14px;
    line-height: 18px;
  }
}
.t-maintenance .handleSlider {
  position: absolute;
  bottom: 80px;
  left: 10px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
}
.t-maintenance .handleSlider .a-slideControl {
  background-color: #ffffff;
  border-width: 2px;
}
@media (max-width: 1199.98px) {
  .t-maintenance .handleSlider .a-slideControl {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.t-maintenance .handleSlider .a-slideControl::before {
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.t-maintenance .handleSlider .a-slideControl:hover:before {
  border-color: #f49712;
}

.breadcrumb-item {
  list-style: none;
  color: #5b5b5b;
  font-size: 14px;
}
.breadcrumb-item:first-child a {
  font-size: 16px;
  color: #212529;
  font-family: "Roboto-Medium";
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 1.5rem !important;
  content: "" !important;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205398%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10.02%206L8.61%207.41%2013.19%2012l-4.58%204.59L10.02%2018l6-6z%22%20data-name%3D%22Path%205399%22%20fill%3D%22%237f7f7f%22%2F%3E%3C%2Fsvg%3E) no-repeat center/24px auto;
}
.breadcrumb-item a {
  color: #5b5b5b;
  font-size: 14px;
  text-decoration: none !important;
}
.breadcrumb-item a:hover {
  color: #5b5b5b;
}

.a-button {
  -webkit-appearance: none !important;
  text-decoration: none !important;
  margin: 0;
  border: none;
  height: 50px;
  background-color: #f49712;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 0.8rem 3.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease;
  position: relative;
}
@media (max-width: 767.98px) {
  .a-button {
    height: 40px;
    padding: 5px 45px;
    font-size: 14px;
  }
}
.a-button:before, .a-button:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 25px;
  transition: 0.2s ease;
  border-color: #ffffff;
}
.a-button::before {
  top: 0;
  right: 0;
  transform: translate3d(-40px, 7px, 0px) scale(0);
  border-top: 4px solid;
  border-right: 4px solid;
}
.a-button:after {
  bottom: 0;
  left: 0;
  transform: translate3d(40px, -7px, 0px) scale(0);
  border-bottom: 4px solid;
  border-left: 4px solid;
}
.a-button:hover {
  background-color: #fafafa;
  color: #f49712;
}
.a-button:hover:before, .a-button:hover:after {
  transform: translate3d(0, 0, 0) scale(1);
  border-color: #f49712;
}
.a-button:focus {
  outline: none;
}
.a-button-bigger {
  height: 60px;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .a-button-bigger {
    height: 50px;
  }
}
.a-button-sm {
  height: 44px;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 12px;
}
.a-button-dark {
  background-color: #212529;
}
.a-button-dark:hover {
  background-color: #5b5b5b;
}
.a-button-white {
  background-color: #ffffff;
  color: #f49712;
}
.a-button-white:hover {
  color: #212529;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}
.a-button-uppercase {
  text-transform: uppercase;
}
.a-button-bold {
  font-weight: bold;
}
.a-button-outline {
  background-color: transparent;
  border: 1px solid #f49712;
  color: #212529;
}
.a-button-outline:hover {
  background-color: #f49712;
  color: #ffffff;
}

.group-btn.center {
  display: flex;
  justify-content: center;
}

.a-heading {
  font-family: "Roboto-Bold";
  color: #212529;
  font-size: 32px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .a-heading {
    font-size: 20px;
  }
}
.a-heading-bigSlider {
  font-size: 48px;
}
@media (max-width: 767.98px) {
  .a-heading-bigSlider {
    font-size: 22px;
  }
}
.a-heading-20x30 {
  font-size: 20px;
  line-height: 30px;
}
.a-heading-24x40 {
  font-size: 24px;
  line-height: 40px;
}
@media (max-width: 1199px) {
  .a-heading-24x40 {
    font-size: 18px;
    line-height: 24px;
  }
}
.a-heading-28x40 {
  font-size: 28px;
  line-height: 40px;
}
@media (max-width: 1199px) {
  .a-heading-28x40 {
    font-size: 18px;
    line-height: 24px;
  }
}
.a-heading-40x60 {
  font-size: 40px;
  line-height: 60px;
}
@media (max-width: 1199px) {
  .a-heading-40x60 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  .a-heading-40x60 {
    font-size: 24px;
    line-height: 32px;
  }
}
.a-heading-white {
  color: #ffffff;
}
.a-heading-uppercase {
  text-transform: uppercase;
}
.a-heading-charlestonGreen {
  color: #212529;
}
.a-heading-gamboge {
  color: #f49712;
}
.a-heading-700 {
  font-weight: 700;
}
.a-heading-500 {
  font-weight: 500;
}
.a-heading-weightbold {
  font-weight: bold;
}
.a-heading-weightmedium {
  font-family: "Roboto-Medium";
}
.a-heading-left {
  text-align: left;
}
.a-heading-center {
  text-align: center;
}
.a-heading h1,
.a-heading h2,
.a-heading h3,
.a-heading h4,
.a-heading h5 {
  margin-bottom: 0;
}

.a-icon {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.a-icon-bigger {
  width: 36px;
  height: 36px;
}
.a-icon-smaller {
  width: 20px;
  height: 20px;
}
.a-icon-40x40 {
  width: 40px;
  height: 40px;
}
.a-icon-14x14 {
  width: 14px;
  height: 14px;
}

.a-img {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: 0.4s ease;
}
.a-img:after {
  display: block;
  padding-top: 100%;
  content: "";
}
.a-img img {
  display: none;
}
.a-img-half-stretch:after {
  padding-top: 50%;
}
.a-img-4x6:after {
  padding-top: 150%;
}
.a-img-half-stand:after {
  padding-top: 200%;
}
.a-img-quadrate-stretch:after {
  padding-top: 75%;
}
.a-img-quadrate-stand:after {
  padding-top: 133.3333333333%;
}
.a-img-quadrate-low-stretch:after {
  padding-top: 66.6666666667%;
}
.a-img-quadrate-low-stand:after {
  padding-top: 150%;
}
.a-img-stand-rectangle:after {
  padding-top: 177.7777777778%;
}
.a-img-stretch-rectangle:after {
  padding-top: 56.25%;
}
.a-img-logo-header:after {
  padding-top: 32%;
}
.a-img-slide-item:after {
  padding-top: 112.3959296947%;
}
.a-img-about-thumb:after {
  padding-top: 56.347826087%;
}
.a-img-325x413:after {
  padding-top: 127.0769230769%;
}
.a-img-1920x768:after {
  padding-top: 40%;
}
.a-img-1920x546:after {
  padding-top: 28.4375%;
}
.a-img-575x430:after {
  padding-top: 74.7826086957%;
}
.a-img-733x406:after {
  padding-top: 55.5252387449%;
}
.a-img-533x626:after {
  padding-top: 117.4484052533%;
}
.a-img-451x577:after {
  padding-top: 127.9379157428%;
}
.a-img-785x450:after {
  padding-top: 57.3248407643%;
}
.a-img-320x100:after {
  padding-top: 31.25%;
}
.a-img-1440x768:after {
  padding-top: 53.3333333333%;
}
.a-img-1440x456:after {
  padding-top: 31.6666666667%;
}
.a-img-contain {
  background-size: contain;
}
.a-img-246x341:after {
  padding-top: 138.6178861789%;
}
.a-img-1366x768:after {
  padding-top: 177.8645833333%;
}
.a-img-maintenance-thumb:after {
  padding-top: 66.7192429022%;
}

.a-imageRatio {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  display: block;
  overflow: hidden;
}
.a-imageRatio img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}
.a-imageRatio-half-stretch {
  padding-bottom: 50%;
}
.a-imageRatio-half-stand {
  padding-bottom: 200%;
}
.a-imageRatio-quadrate-stretch {
  padding-bottom: 75%;
}
.a-imageRatio-quadrate-stand {
  padding-bottom: 133.3333333333%;
}
.a-imageRatio-quadrate-low-stretch {
  padding-bottom: 66.6666666667%;
}
.a-imageRatio-quadrate-low-stand {
  padding-bottom: 150%;
}
.a-imageRatio-stand-rectangle {
  padding-bottom: 177.7777777778%;
}
.a-imageRatio-stretch-rectangle {
  padding-bottom: 56.25%;
}
.a-imageRatio-logo-header {
  padding-bottom: 32%;
}
.a-imageRatio-slide-item {
  padding-bottom: 112.3959296947%;
}
.a-imageRatio-about-thumb {
  padding-bottom: 56.347826087%;
}
.a-imageRatio-1440x768 {
  padding-bottom: 53.3333333333%;
}
@media (max-width: 767px) {
  .a-imageRatio-1440x768 {
    padding-bottom: 90.333333%;
  }
}
.a-imageRatio-320x100 {
  padding-bottom: 31.25%;
}
.a-imageRatio-578x483 {
  padding-bottom: 83.5640138408%;
}
.a-imageRatio-720x456 {
  padding-bottom: 63.3333333333%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .a-imageRatio-720x456 {
    padding-bottom: 80.333333%;
  }
}
.a-imageRatio-374x605 {
  padding-bottom: 161.7647058824%;
}
.a-imageRatio-1008x494 {
  padding-bottom: 49.0079365079%;
}
.a-imageRatio-1440x456 {
  padding-bottom: 31.6666666667%;
}
@media (max-width: 991px) {
  .a-imageRatio-1440x456 {
    padding-bottom: 119.743961%;
  }
}
@media (max-width: 575px) {
  .a-imageRatio-1440x456 {
    padding-bottom: 178.7439613527%;
  }
}
.a-imageRatio-203x272 {
  padding-bottom: 133.9901477833%;
}
.a-imageRatio-320x502 {
  padding-bottom: 156.875%;
}
@media (max-width: 991px) {
  .a-imageRatio-320x502 {
    padding-bottom: 116.875%;
  }
}
.a-imageRatio-1920x546 {
  padding-bottom: 28.4375%;
}
.a-imageRatio-1920x768 {
  padding-bottom: 40%;
}
.a-imageRatio-451x577 {
  padding-bottom: 127.9379157428%;
}
.a-imageRatio-785x450 {
  padding-bottom: 57.3248407643%;
}
.a-imageRatio-533x626 {
  padding-bottom: 117.4484052533%;
}
.a-imageRatio-1420x692 {
  padding-bottom: 40.8450704225%;
}
.a-imageRatio-325x169 {
  padding-bottom: 52%;
}
.a-imageRatio-325x234 {
  padding-bottom: 72%;
}
.a-imageRatio-327x436 {
  padding-bottom: 133.3333333333%;
}
.a-imageRatio-1366x768 {
  padding-bottom: 56.2225475842%;
}

.a-input {
  width: 100%;
  height: 50px;
  padding: 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  color: #212529;
  outline: 0;
  transition: 0.4s ease;
  border-radius: 0;
}
.a-input:focus {
  border-bottom: solid 1px #147dfa;
}
.a-input-error {
  color: #f60609;
  border-bottom: 1px solid #f60609;
}
.a-input-disabled {
  pointer-events: none;
  color: #cbcbcb;
}
.a-input-disabled[type=text] + label.floating-label {
  display: none;
}
.a-input-border {
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  padding: 12px 30px;
}
.a-input-border:focus {
  border: solid 1px #147dfa;
}
.a-input-border[type=text] + label {
  display: none;
}
.a-input-transparent {
  background-color: transparent;
  border: 1px solid #ffffff !important;
}
.a-input-nofloat {
  padding: 12px 14px;
  color: #ffffff;
}
.a-input-nofloat::placeholder {
  color: #ffffff;
}

.input-group {
  position: relative;
}
.input-group label.floating-label {
  color: #333333;
  transition: 0.2s ease;
  position: absolute;
  top: 20px;
  left: 0;
  pointer-events: none;
}
.input-group label.floating-label.has-value {
  pointer-events: all;
  top: -4px;
  color: #cbcbcb;
  font-size: 14px;
}
.input-group label.floating-label span.required {
  color: #f60609;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -12px;
}
.input-group input:focus ~ label.floating-label,
.input-group input.has-value ~ label.floating-label {
  pointer-events: all;
  top: -4px;
  color: #cbcbcb;
  font-size: 14px;
}
.input-group textarea:focus ~ label.floating-label,
.input-group textarea.has-value ~ label.floating-label {
  pointer-events: all;
  top: -18px;
  color: #cbcbcb;
  font-size: 14px;
}

.floating-select:focus ~ .label-select,
.floating-select.has-value ~ .label-select {
  pointer-events: all;
  top: -6px;
  color: #cbcbcb;
  font-size: 14px;
}

.a-label {
  font-size: 14px;
  color: #ffffff;
  padding: 5px 20px;
  position: absolute;
  top: 20px;
  left: 0;
  background-color: #f49712;
}
@media (max-width: 767.98px) {
  .a-label {
    font-size: 10px;
    padding: 3px 15px;
  }
}

.a-link {
  display: inline-block;
  font-size: 20px;
  transition: 0.4s ease;
  color: #212529;
}
.a-link:hover {
  color: #f49712;
}
.a-link-non-underline {
  text-decoration: none !important;
}
.a-link-yankeesBlue {
  color: #222b45;
}
.a-link-white {
  color: #ffffff;
}
.a-link-bigger {
  font-size: 28px;
}
@media (max-width: 991.98px) {
  .a-link-bigger {
    font-size: 24px;
  }
}
.a-link-smaller {
  font-size: 14px;
}
@media (min-width: 992px) {
  .a-link-smaller {
    font-size: 18px;
  }
}
.a-link-font-medium {
  font-family: "Roboto-Medium";
}
.a-link-font-bold {
  font-family: "Roboto-Bold";
}
.a-link-no-underline:hover {
  text-decoration: none;
}

.a-menuItem {
  list-style: none;
}
.a-menuItem ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.a-menuItem ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}
.a-menuItem .a-menuLink {
  display: inline-block;
  padding: 5px;
  font-family: "Roboto-Medium";
  font-size: 20px;
  color: #212529;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s ease;
}
.a-menuItem .a-menuLink:hover {
  color: #f49712 !important;
}
.a-menuItem .a-menuLink-isActive {
  color: #f49712 !important;
}
.a-menuItem .a-menuLink-hasChild {
  position: relative;
}
@media (max-width: 1199.98px) {
  .a-menuItem .a-menuLink-hasChild {
    display: none !important;
  }
}
.a-menuItem .a-menuLink-hasChild:hover:before {
  border-top: 0.3em solid #f49712;
}
.a-menuItem .a-menuLink-hasChild:before {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  position: absolute;
  right: -10px;
  top: 17px;
  border-top: 0.3em solid #cbcbcb;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .a-menuItem .accordion {
    display: none !important;
  }
}
.a-menuItem .accordion .isToggle {
  display: inline-block;
  position: relative;
}
.a-menuItem .accordion .isToggle:before {
  content: "";
  position: absolute;
  top: 6px;
  right: -25px;
  width: 20px;
  height: 20px;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.002%22%20height%3D%2220.002%22%3E%3Cpath%20fill%3D%22%23fff%22%20d%3D%22M7%2010l4.5%204.5L16%2010z%22%20data-name%3D%22Path%205251%22%20transform%3D%22translate%28-1.001%20-1.666%29%22%2F%3E%3Cpath%20fill%3D%22none%22%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%205252%22%2F%3E%3C%2Fsvg%3E) no-repeat center/20px auto;
}
@media (max-width: 767.98px) {
  .a-menuItem .accordion .isToggle:before {
    top: 1px;
  }
}
.a-menuItem .accordion .card {
  background-color: transparent;
  border: none;
}
.a-menuItem .accordion .card-header {
  color: #ffffff;
  padding: 5px;
  border: none;
  font-size: 16px;
  position: relative;
}
@media (max-width: 767.98px) {
  .a-menuItem .accordion .card-header {
    font-size: 14px;
  }
}
.a-menuItem .accordion .card-header.wrapAccor {
  font-size: 20px;
  font-family: "Roboto-Medium";
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .a-menuItem .accordion .card-header.wrapAccor {
    font-size: 16px;
  }
}
.a-menuItem .accordion .card-body {
  color: #ffffff;
  padding: 0.2rem 1.2rem;
  opacity: 0.8;
}
.a-menuItem .accordion .card-body li {
  margin-right: 0;
}
.a-menuItem .accordion .card .collapse .card-header::before {
  top: 5px;
}
.a-menuItem .accordion ul {
  list-style-position: inside;
}
.a-menuItem .accordion ul li {
  white-space: nowrap;
}

.a-paginationItem-active .page-link {
  color: #ffffff !important;
  background-color: #f49712;
  border-color: #f49712;
}
.a-paginationItem-next .page-link {
  position: relative;
}
.a-paginationItem-next .page-link::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-bottom: 2px solid #7f7f7f;
  border-right: 2px solid #7f7f7f;
  top: 10px;
  left: 8px;
  z-index: 1;
  transform: rotate(-45deg);
}
.a-paginationItem-prev .page-link {
  position: relative;
}
.a-paginationItem-prev .page-link::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  border-bottom: 2px solid #7f7f7f;
  border-right: 2px solid #7f7f7f;
  top: 10px;
  right: 9px;
  z-index: 1;
  transform: rotate(135deg);
}
.a-paginationItem .page-link {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  margin: 0 2.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Roboto-Medium";
  color: #7f7f7f;
  outline: 0 !important;
  box-shadow: none !important;
  border: 1px solid #d3d3d3;
  transition: 0.2s ease;
}
@media (min-width: 992px) {
  .a-paginationItem .page-link:hover {
    color: #ffffff;
    background-color: #f49712;
    border-color: #f49712;
  }
  .a-paginationItem .page-link:hover:before {
    border-color: #ffffff;
  }
}

.a-scrollThumb {
  position: absolute;
  top: 0;
  left: -70px;
  width: 31px;
  height: 100%;
}
.a-scrollThumb .inner {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.a-scrollThumb .inner .line {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #f4f4f4;
  top: 0;
  z-index: 1;
  left: 50%;
}
.a-scrollThumb .inner .arrow {
  position: absolute;
  height: 14px;
  top: 30px;
  left: calc(50% - 5px);
  z-index: 5;
}
.a-scrollThumb .inner .arrow:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #f49712;
  top: 0;
}
@media (max-width: 767.98px) {
  .a-scrollThumb .inner .arrow:before {
    top: -7px;
  }
}
.a-scrollThumb .inner .arrow:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #f49712;
  top: 8px;
}
@media (max-width: 767.98px) {
  .a-scrollThumb .inner .arrow:after {
    top: 0;
  }
}
.a-scrollThumb .inner .isScroll {
  position: absolute;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 31px;
  height: 54px;
  font-weight: bold;
  font-size: 20px;
  color: #f49712;
  text-align: center;
  border: 2px solid #f49712;
  box-shadow: 0 3px 10px rgba(244, 151, 18, 0.5);
  z-index: 3;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .a-scrollThumb .inner .isScroll {
    left: 4px;
    width: 26px;
    height: 45px;
    font-size: 14px;
  }
}

.a-slideControl {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  left: auto;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f49712;
  position: relative;
  cursor: pointer;
  transition: 0.4s ease;
}
.a-slideControl:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  top: 20px;
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.a-slideControl:hover {
  background-color: rgba(244, 151, 18, 0.7);
}
.a-slideControl-disabled {
  pointer-events: none;
}
.a-slideControl-prev:before {
  transform: rotate(135deg);
  left: 21px;
}
.a-slideControl-next:before {
  transform: rotate(-45deg);
  left: 19px;
}
.a-slideControl-filled.a-slideControl-charlestonGreen {
  background-color: #212529;
}
.a-slideControl-filled.a-slideControl-charlestonGreen:hover {
  background-color: rgba(33, 37, 41, 0.8);
}
.a-slideControl-filled.a-slideControl-lightGray {
  background-color: #d3d3d3;
}
.a-slideControl-filled.a-slideControl-lightGray:before {
  border-bottom: 1px solid #7f7f7f;
  border-right: 1px solid #7f7f7f;
}
.a-slideControl-filled.a-slideControl-lightGray:hover {
  background-color: rgba(211, 211, 211, 0.8);
}
.a-slideControl-outlined {
  background: transparent;
  border: 1px solid #f49712;
}
.a-slideControl-outlined:before {
  border-bottom: 1px solid #f49712;
  border-right: 1px solid #f49712;
}
.a-slideControl-outlined:hover {
  background: #f49712;
}
.a-slideControl-outlined:hover:before {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.a-slideControl-outlined.a-slideControl-charlestonGreen {
  border: 1px solid #212529;
}
.a-slideControl-outlined.a-slideControl-charlestonGreen:before {
  border-bottom: 1px solid #212529;
  border-right: 1px solid #212529;
}
.a-slideControl-outlined.a-slideControl-charlestonGreen:hover {
  background-color: #212529;
}
.a-slideControl-outlined.a-slideControl-charlestonGreen:hover:before {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.a-slideControl-outlined.a-slideControl-lightGray {
  border: 1px solid #d3d3d3;
}
.a-slideControl-outlined.a-slideControl-lightGray:before {
  border-bottom: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.a-slideControl-outlined.a-slideControl-lightGray:hover {
  background-color: #d3d3d3;
}
.a-slideControl-outlined.a-slideControl-lightGray:hover:before {
  border-bottom: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}

.a-tabItem {
  outline: 0;
  border: none;
  box-shadow: none;
  text-align: center;
  text-decoration: none !important;
}
.a-tabItem:focus {
  outline: 0;
  border: none;
  box-shadow: none;
}
.a-tabItem-underlined {
  position: relative;
  display: inline-block;
  padding: 11px 40px 13px;
  font-size: 20px;
  color: #5b5b5b;
  text-decoration: none !important;
  transition: 0.4s ease;
  background-color: transparent;
}
@media (max-width: 1199.98px) {
  .a-tabItem-underlined {
    padding: 10px 20px 12px;
  }
}
.a-tabItem-underlined:before {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: #f49712;
  transition: 0.4s ease;
  transform: scale(0);
}
@media (min-width: 992px) {
  .a-tabItem-underlined:hover {
    color: #f49712;
  }
  .a-tabItem-underlined:hover:before {
    transform: scale(1);
  }
}
.a-tabItem-underlined.active {
  color: #f49712;
}
.a-tabItem-underlined.active:before {
  transform: scale(1);
}
.a-tabItem-filled {
  display: block;
  padding: 10px;
  font-family: "Roboto-Medium";
  font-size: 14px;
  color: #5b5b5b;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.4s ease;
}
.a-tabItem-filled.active, .a-tabItem-filled:hover {
  color: #ffffff;
  background-color: #212529;
}
.a-tabItem-active.a-tabItem-underlined {
  color: #f49712;
}
.a-tabItem-active.a-tabItem-underlined:before {
  transform: scale(1);
}
.a-tabItem-active.a-tabItem-filled {
  color: #ffffff;
  background-color: #212529;
}
.a-tabItem-active.a-tabItem-fillOrange {
  color: #ffffff !important;
  background-color: #f49712 !important;
}

.a-text {
  margin: 0;
}
.a-text-white {
  color: #ffffff;
}
.a-text-black {
  color: #000000;
}
.a-text-charlestonGreen {
  color: #212529;
}
.a-text-gamboge {
  color: #f49712;
}
.a-text-davyGrey {
  color: #5b5b5b;
}
.a-text-yankeesBlue {
  color: #222b45;
}
.a-text-lightGray {
  color: #d3d3d3;
}
.a-text-crayola {
  color: #147dfa;
}
.a-text-pastelGray {
  color: #cbcbcb;
}
.a-text-candyApple {
  color: #f60609;
}
.a-text-prussianBlue {
  color: #002855;
}
.a-text-tangerine {
  color: #f58d00;
}
.a-text-pumpkin {
  color: #f47a12;
}
.a-text-whiteSmoke {
  color: #f4f4f4;
}
.a-text-sonicSilver {
  color: #707070;
}
.a-text-platinum {
  color: #e6e6e6;
}
.a-text-cadet {
  color: #5c6771;
}
.a-text-gainsboro {
  color: #D9D9D9;
}
.a-text-arsenic {
  color: #434343;
}
.a-text-eerieBlack {
  color: #1F1F1F;
}
.a-text-taupeGray {
  color: #8C8C8C;
}
.a-text-100 {
  font-weight: 100;
}
.a-text-200 {
  font-weight: 200;
}
.a-text-300 {
  font-weight: 300;
}
.a-text-400 {
  font-weight: normal;
}
.a-text-500 {
  font-family: "Roboto-Medium";
  font-weight: 500;
}
.a-text-600 {
  font-weight: 600;
}
.a-text-700 {
  font-weight: bold;
  font-family: "Roboto-Bold";
}
.a-text-800 {
  font-weight: 800;
}
.a-text-900 {
  font-weight: 900;
}
.a-text-uppercase {
  text-transform: uppercase;
}
.a-text-capitalize {
  text-transform: capitalize;
}
.a-text-underline {
  text-decoration: underline;
}
.a-text-italic {
  font-style: italic;
}
.a-text-center {
  text-align: center;
}
.a-text-justify {
  text-align: justify;
}
.a-text-24x36 {
  font-size: 24px;
  line-height: 36px;
}
@media (max-width: 991px) {
  .a-text-24x36 {
    font-size: 20px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .a-text-24x36 {
    font-size: 16px;
    line-height: 20px;
  }
}
.a-text-18x24 {
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .a-text-18x24 {
    font-size: 16px;
    line-height: 20px;
  }
}
.a-text-20x32 {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 991px) {
  .a-text-20x32 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .a-text-20x32 {
    font-size: 14px;
    line-height: 20px;
  }
}
.a-text-14x20 {
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .a-text-14x20 {
    font-size: 12px;
    line-height: 20px;
  }
}
.a-text-12x20 {
  font-size: 12px;
  line-height: 20px;
}
@media (max-width: 767px) {
  .a-text-12x20 {
    font-size: 10px;
    line-height: 17px;
  }
}
.a-text-ls-0015 {
  letter-spacing: 0.0015em;
}

.a-textarea {
  width: 100%;
  padding: 0;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  color: #212529;
  outline: 0;
  transition: 0.2s ease;
  resize: none;
  border-radius: 0;
}
.a-textarea:focus {
  border-bottom: solid 1px #147dfa;
}
.a-textarea-error {
  color: #f60609;
  border-bottom: 1px solid #f60609;
}
.a-textarea-disabled {
  pointer-events: none;
  color: #cbcbcb;
}
.a-textarea-disabled[type=text] + label.floating-label {
  display: none;
}
.a-textarea-border {
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  padding: 12px 30px;
}
.a-textarea-border:focus {
  border: solid 1px #147dfa;
}
.a-textarea-border[type=text] + label {
  display: none;
}
.a-textarea-transparent {
  background-color: transparent;
  border: 1px solid #ffffff !important;
}
.a-textarea-nofloat {
  padding: 12px 14px;
  color: #ffffff;
}
.a-textarea-nofloat::placeholder {
  color: #ffffff;
}

.isTextarea label.floating-label {
  top: 0;
}
.isTextarea label.floating-label.field-active {
  top: -18px;
}

.m-banner {
  position: relative;
}
@media (max-width: 1199.98px) {
  .m-banner.bannerForm {
    padding-bottom: 18px;
    background-image: url(/assets/src/assets/images/banner.png);
  }
}
@media (max-width: 767.98px) {
  .m-banner.bannerForm .a-img,
.m-banner.bannerForm .overlay-dark {
    display: none;
  }
}
.m-banner.bannerForm .container {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: none;
}
@media (max-width: 767.98px) {
  .m-banner.bannerForm .container {
    position: relative;
    padding-right: 0;
    padding-left: 0;
  }
}
.m-banner_formContent {
  height: 100%;
  display: flex;
  align-items: center;
}
.m-banner_formContent .row {
  width: 100%;
}
@media (max-width: 767.98px) {
  .m-banner_formContent .row {
    margin-right: auto;
    margin-left: auto;
  }
}
.m-banner_formContent .multiFieldForm {
  background-color: #fff;
  padding: 20px 40px;
  margin: auto;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.4);
}
@media (max-width: 767.98px) {
  .m-banner_formContent .multiFieldForm {
    padding: 15px;
  }
}
.m-banner_formContent .multiFieldForm .form-header {
  color: #333333;
}
@media (max-width: 767.98px) {
  .m-banner_formContent .multiFieldForm .form-body {
    margin-top: 10px;
  }
}
.m-banner_formContent .multiFieldForm .group-btn .a-button {
  width: 100%;
}
@media (min-width: 1200px) {
  .m-banner_formContent .content .banner-title {
    font-size: 34px !important;
  }
}
.m-banner .a-img::after {
  padding-top: 16.9270833333%;
}
@media (min-width: 1200px) and (max-width: 1800px) {
  .m-banner .a-img::after {
    padding-top: 24.927083%;
  }
}
@media (max-width: 1199.98px) {
  .m-banner .a-img::after {
    padding-top: 36.92708%;
  }
}
@media (max-width: 767.98px) {
  .m-banner .a-img::after {
    padding-top: 60.92708%;
  }
}
.m-banner .overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: -6.02px 7.99px 92px rgba(0, 0, 0, 0.15);
}
.m-banner .overlay-dark .title-page {
  max-width: 875px;
}
.m-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 767.98px) {
  .m-banner .container {
    top: 50%;
  }
}
.m-banner .container .content {
  max-width: 650px;
}
.m-banner .container .content ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.m-banner .container .content ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}
.m-banner .container .content .tagBanner {
  margin-bottom: 30px;
  display: block;
  color: #f49712;
  font-size: 18px;
  font-family: "Roboto-Medium";
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .m-banner .container .content .tagBanner {
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .m-banner .container .content .tagBanner {
    font-size: 12px;
  }
}
.m-banner .container .content .footerBanner {
  font-size: 42px;
  font-family: "Roboto-Bold";
  color: #f49712;
  display: block;
  text-transform: uppercase;
  margin-top: 100px;
}
@media (max-width: 1199.98px) {
  .m-banner .container .content .footerBanner {
    margin-top: 70px;
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .m-banner .container .content .footerBanner {
    font-size: 22px;
  }
}
.m-banner .container .content .footerBanner a {
  color: #f49712;
  text-decoration: none;
}
.m-banner .container .content .banner-title {
  font-family: "Roboto-Medium";
}
@media (min-width: 1200px) {
  .m-banner .container .content .banner-title {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .m-banner .container .content .banner-title {
    font-size: 1.2rem;
  }
}
.m-banner .container .content p,
.m-banner .container .content .sub-title {
  font-size: 14px;
  opacity: 0.8;
  max-height: 90px;
  overflow: auto;
  color: #fff;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .m-banner .container .content p,
.m-banner .container .content .sub-title {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .m-banner .container .content p,
.m-banner .container .content .sub-title {
    max-height: 84px;
  }
}

.m-benefitCard .imgPanel {
  cursor: pointer;
  overflow: hidden;
}
.m-benefitCard .imgPanel:hover .a-img {
  transform: scale(1.2);
}
.m-benefitCard .imgPanel .a-img {
  transition: 0.4s ease;
}
.m-benefitCard .textPanel {
  padding: 20px 22px;
}
@media (max-width: 767.98px) {
  .m-benefitCard .textPanel {
    padding: 10px;
  }
}
.m-benefitCard .textPanel .title {
  font-size: 20px;
  font-family: "Roboto-Medium";
  color: #222b45;
  padding-bottom: 10px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .m-benefitCard .textPanel .title {
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.m-benefitCard .textPanel .sub {
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .m-benefitCard .textPanel .sub {
    font-size: 14px;
  }
}

.m-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0.75rem 0;
  margin-bottom: 0 !important;
  list-style: none;
  border-radius: 0.25rem;
}

.m-cardProduct {
  transition: 0.4s ease;
  position: relative;
}
@media (max-width: 991.98px) {
  .m-cardProduct:not(.m-cardProduct-no-effect) {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}
.m-cardProduct:not(.m-cardProduct-no-effect)::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background-color: #f49712;
  transition: 0.4s ease;
  transform: scale(0);
}
@media (max-width: 991.98px) {
  .m-cardProduct:not(.m-cardProduct-no-effect)::before {
    transform: scale(1);
  }
}
@media (min-width: 992px) {
  .m-cardProduct:not(.m-cardProduct-no-effect):hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .m-cardProduct:not(.m-cardProduct-no-effect):hover::before {
    transform: scale(1);
  }
  .m-cardProduct:not(.m-cardProduct-no-effect):hover .imgPanel .a-imageRatio {
    transform: scale(1.2);
  }
}
.m-cardProduct:not(.m-cardProduct-no-effect) .textPanel {
  padding: 20px 15px;
  background-color: #fafafa;
}
@media (max-width: 767.98px) {
  .m-cardProduct:not(.m-cardProduct-no-effect) .textPanel {
    padding: 15px;
  }
}
.m-cardProduct:not(.m-cardProduct-no-effect) .textPanel .a-link:hover {
  color: #f49712;
}
.m-cardProduct:not(.m-cardProduct-no-effect) .textPanel .a-link h2,
.m-cardProduct:not(.m-cardProduct-no-effect) .textPanel .a-link h3 {
  margin-bottom: 0;
}
.m-cardProduct.isFlex {
  display: flex;
}
.m-cardProduct.isFlex:not(:last-child) {
  margin-bottom: 20px;
}
.m-cardProduct.isFlex .imgPanel {
  width: 325px;
  width: 100%;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .m-cardProduct.isFlex .imgPanel {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.m-cardProduct.isFlex .category-tag {
  padding: 0;
  padding-bottom: 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .m-cardProduct.isFlex .category-tag {
    font-size: 12px;
  }
  .m-cardProduct.isFlex .category-tag span.time {
    font-size: 10px;
  }
}
@media (max-width: 767.98px) {
  .m-cardProduct.isFlex .category-tag {
    padding-bottom: 0;
  }
}
.m-cardProduct.isFlex .textPanel {
  width: 100%;
}
@media (min-width: 992px) {
  .m-cardProduct.isFlex .textPanel {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
  }
}
.m-cardProduct.isFlex .textPanel .text__bigger {
  margin-bottom: 10px;
  font-size: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .m-cardProduct.isFlex .textPanel .text__bigger {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .m-cardProduct.isFlex .textPanel .text__bigger {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .m-cardProduct.isFlex .textPanel .text__bigger {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.25;
  }
}
.m-cardProduct.isFlex .textPanel .text__smaller {
  font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .m-cardProduct.isFlex .textPanel .text__smaller {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .m-cardProduct.isFlex .textPanel .text__smaller {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .m-cardProduct.isFlex .textPanel .text__smaller {
    font-size: 12px;
  }
}
.m-cardProduct .imgPanel {
  position: relative;
  overflow: hidden;
}
.m-cardProduct .imgPanel .tagOrange {
  position: absolute;
  top: 20px;
  left: 0;
  padding: 5px 20px;
  font-family: "Roboto-Medium";
  font-size: 14px;
  color: #ffffff;
  background-color: #f49712;
}
.m-cardProduct .imgPanel .a-imageRatio {
  transition: 0.4s ease;
}
.m-cardProduct .textPanel {
  padding: 15px 0;
}
.m-cardProduct .textPanel .a-link {
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  outline: 0;
}
@media (max-width: 767.98px) {
  .m-cardProduct .textPanel .a-link {
    font-size: 16px;
    margin-bottom: 5px;
  }
}
.m-cardProduct .textPanel .a-link h2,
.m-cardProduct .textPanel .a-link h3 {
  font-size: inherit;
  margin-bottom: 0;
}
.m-cardProduct .textPanel ul {
  padding-left: 0;
}
.m-cardProduct .textPanel ul li {
  display: flex;
  align-items: center;
}
.m-cardProduct .textPanel ul li:not(:last-child) {
  margin-bottom: 10px;
}
.m-cardProduct .textPanel ul li .m-iconText {
  font-size: 14px;
}
.m-cardProduct .textPanel ul li i.icon {
  margin-right: 8px;
}

.m-clientSay {
  position: relative;
  padding: 7.5520833333vw 1.8229166667vw 2.6041666667vw;
  transition: 0.4s ease;
}
@media (max-width: 991.98px) {
  .m-clientSay {
    padding: 75px 25px 25px;
  }
}
.m-clientSay::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background-color: #f49712;
  transition: 0.4s ease;
  transform: scale(0);
}
.m-clientSay.swiped:after {
  content: "";
  position: absolute;
  top: 34%;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent url(/assets/src/assets/images/swipe.gif) no-repeat center/50px auto;
}
@media (max-width: 991.98px) {
  .m-clientSay {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .m-clientSay::before {
    transform: scale(1);
  }
}
@media (min-width: 992px) {
  .m-clientSay:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .m-clientSay:hover::before {
    transform: scale(1);
  }
}
.m-clientSay__info {
  position: relative;
  padding-right: 8px;
  font-size: 18px;
  color: #5b5b5b;
}
@media (max-width: 991.98px) {
  .m-clientSay__info {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .m-clientSay__info {
    font-size: 14px;
  }
}
.m-clientSay__info__wrapper {
  max-height: 185px;
  overflow: auto;
}
.m-clientSay__info__wrapper::-webkit-scrollbar {
  position: absolute;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.m-clientSay__info__wrapper::-webkit-scrollbar-thumb {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.m-clientSay__info__wrapper::-webkit-scrollbar:vertical {
  width: 7px;
  -webkit-overflow-scrolling: auto;
}
.m-clientSay__info__wrapper:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
.m-clientSay .inner {
  position: relative;
}
.m-clientSay .inner .a-icon {
  position: absolute;
  top: -100px;
  right: calc(50% - 15px);
}
@media (max-width: 991.98px) {
  .m-clientSay .inner .a-icon {
    top: -40px;
  }
}
@media (min-width: 992px) {
  .m-clientSay .inner .a-icon {
    width: 40px;
    height: 40px;
  }
}
.m-clientSay .inner .imgPanel {
  margin: 130px 0 20px;
}
@media (max-width: 991.98px) {
  .m-clientSay .inner .imgPanel {
    margin: 25px 0;
  }
}
@media (max-width: 767.98px) {
  .m-clientSay .inner .imgPanel {
    margin: 20px 0 5px;
  }
}
.m-clientSay .inner .textPanel .text__medium {
  font-family: "Roboto-Medium";
  font-size: 18px;
}
@media (min-width: 992px) {
  .m-clientSay .inner .textPanel .text__medium {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .m-clientSay .inner .textPanel .text__medium {
    font-size: 12px;
    line-height: 1.17;
    margin-bottom: 3px;
    margin-top: 8px;
  }
}
.m-clientSay .inner .textPanel span {
  font-size: 18px;
  color: #5b5b5b;
  display: block;
}
@media (max-width: 991.98px) {
  .m-clientSay .inner .textPanel span {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .m-clientSay .inner .textPanel span {
    font-size: 10px;
    line-height: 1.4;
  }
}

.m-floatingSelect {
  position: relative;
}
.m-floatingSelect select.floating-select {
  -webkit-appearance: none;
  padding: 0;
  font-size: 16px;
  outline: 0;
  width: 100%;
  transition: 0.2s ease;
  display: block;
  height: 50px;
  padding-right: 35px;
  text-overflow: ellipsis;
  border: none;
  white-space: nowrap;
  color: #333333;
  background: #ffffff url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205398%22%20fill%3D%22none%22%20transform%3D%22rotate%2890%2012%2012%29%22%2F%3E%3Cpath%20d%3D%22M1.41%200L0%201.41%204.58%206%200%2010.59%201.41%2012l6-6z%22%20data-name%3D%22Path%205399%22%20transform%3D%22rotate%2890%204.695%2013.305%29%22%20fill%3D%22%23212529%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  border-bottom: 1px solid #d3d3d3;
  border-radius: 0;
}
.m-floatingSelect .label-select {
  color: #333333;
  transition: 0.2s ease;
  position: absolute;
  top: 20px;
  left: 0;
  pointer-events: none;
}
.m-floatingSelect .label-select.field-active {
  pointer-events: all;
  top: -4px;
  color: #cbcbcb;
  font-size: 14px;
}
.m-floatingSelect .label-select span.required {
  color: #f60609;
  font-size: 12px;
  position: absolute;
  top: 0;
  right: -12px;
}

.m-iconButton {
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  cursor: pointer;
  border: none;
  outline: 0;
}
.m-iconButton-bigger {
  width: 73px;
  height: 73px;
}
.m-iconButton-bigger i.icon {
  width: 36px;
  height: 36px;
}
.m-iconButton-outlined {
  border: 1px solid;
}
.m-iconButton-round {
  border-radius: 100%;
}
.m-iconButton-lightGrey.m-iconButton-outlined {
  border-color: #d3d3d3;
}
.m-iconButton-lightGrey.m-iconButton-filled {
  background-color: #d3d3d3;
}
.m-iconButton-charlestonGreen.m-iconButton-outlined {
  border-color: #212529;
}
.m-iconButton-charlestonGreen.m-iconButton-filled {
  background-color: #212529;
}
.m-iconButton-gamboge.m-iconButton-outlined {
  border-color: #f49712;
}
.m-iconButton-gamboge.m-iconButton-filled {
  background-color: #f49712;
}
.m-iconButton-effect {
  transition: 0.4s ease;
}
.m-iconButton-effect.m-iconButton-lightGrey.m-iconButton-outlined:hover {
  border-color: rgba(211, 211, 211, 0.7);
}
.m-iconButton-effect.m-iconButton-lightGrey.m-iconButton-filled:hover {
  background-color: rgba(211, 211, 211, 0.7);
}
.m-iconButton-effect.m-iconButton-charlestonGreen.m-iconButton-outlined:hover {
  border-color: rgba(33, 37, 41, 0.7);
}
.m-iconButton-effect.m-iconButton-charlestonGreen.m-iconButton-filled:hover {
  background-color: rgba(33, 37, 41, 0.7);
}
.m-iconButton-effect.m-iconButton-gamboge.m-iconButton-outlined:hover {
  border-color: rgba(244, 151, 18, 0.7);
}
.m-iconButton-effect.m-iconButton-gamboge.m-iconButton-filled:hover {
  background-color: rgba(244, 151, 18, 0.7);
}

.m-iconText {
  font-size: 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  color: #5b5b5b;
}
.m-iconText-white {
  color: #ffffff;
}
.m-iconText-white a {
  color: #ffffff !important;
  text-decoration: none !important;
}
.m-iconText-white a:hover {
  color: #f49712 !important;
}
.m-iconText-text-line-clamp span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.m-iconText i.a-icon {
  min-width: 20px;
  margin-right: 5px;
}
.m-iconText a {
  text-decoration: none !important;
  color: #5b5b5b;
}
.m-iconText a:hover {
  color: #f49712;
}

.wrap {
  padding: 20px 0;
  background: #212529;
}

.m-interactPanel {
  position: fixed;
  top: 40%;
  right: 30px;
  z-index: 11;
}
@media (max-width: 1199.98px) {
  .m-interactPanel {
    top: 15%;
  }
}
@media (max-width: 991.98px) {
  .m-interactPanel {
    top: auto;
    right: 10px;
    bottom: 20%;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .m-interactPanel {
    top: 20% !important;
    right: 2px !important;
  }
}
@media (max-width: 767.98px) {
  .m-interactPanel {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    display: flex;
  }
}
.m-interactPanel .inner-item {
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .m-interactPanel .inner-item:hover:before {
    transform: translate(0);
    opacity: 1;
    visibility: visible;
  }
  .m-interactPanel .inner-item:hover .text {
    transform: scale(1);
  }
  .m-interactPanel .inner-item:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: -30px;
    width: 225px;
    background-color: #f49712;
    z-index: -1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
  }
}
@media (max-width: 767.98px) {
  .m-interactPanel .inner-item {
    margin-bottom: 0;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    display: flex;
    align-items: center;
    background-color: #f49712;
  }
}
@media (min-width: 768px) {
  .m-interactPanel .inner-item .text {
    position: absolute;
    top: 12px;
    left: -111px;
    color: #ffffff;
    transition: 0.2s ease;
    transform: scale(0);
  }
}
@media (max-width: 767.98px) {
  .m-interactPanel .inner-item .text {
    display: block;
    color: #fff;
    font-size: 12px;
    font-family: "Roboto-Medium";
    margin-left: -7px;
  }
}
.m-interactPanel .inner-item a {
  text-decoration: none;
}
.m-interactPanel .inner-item a.m-iconButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #f49712;
  border-radius: 25px;
  transition: 0.4s ease;
}
.m-interactPanel .inner-item a.m-iconButton:hover {
  background-color: rgba(244, 151, 18, 0.8);
}
@media (max-width: 767.98px) {
  .m-interactPanel .inner-item a.m-iconButton {
    width: 40px;
    height: 40px;
  }
  .m-interactPanel .inner-item a.m-iconButton i.icon {
    width: 20px;
    height: 20px;
  }
}

.m-languageSelection .dropdown-toggle {
  display: flex;
  align-items: center;
  font-size: 14px;
  width: 75px;
  padding: 0;
  background: transparent !important;
  outline: 0;
  border: none;
  box-shadow: none !important;
  font-family: "Roboto-Medium";
}
.m-languageSelection .dropdown-toggle img {
  margin-right: 8px;
  width: 22px;
  height: 14.7px;
}
.m-languageSelection .dropdown-menu {
  min-width: 6rem;
}
.m-languageSelection .dropdown-menu.show {
  position: absolute;
  top: 0px;
  left: 0px;
  margin: 0px;
  right: auto;
  bottom: auto;
  transform: translate(0px, 22.22222222px);
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-languageSelection .dropdown-menu.show {
    transform: translate(-21px, 23px);
  }
}
@media (max-width: 1199.98px) {
  .m-languageSelection .dropdown-menu.show {
    transform: translate3d(0px, 23px, 0px);
  }
}
@media (max-width: 767.98px) {
  .m-languageSelection .dropdown-menu.show {
    transform: translate3d(-21px, 23px, 0px);
  }
}
.m-languageSelection .dropdown-item {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.25rem 1rem;
}
.m-languageSelection .dropdown-item img {
  position: absolute;
  top: 8px;
  right: 15%;
  width: 22px;
  height: 14.7px;
}

.wrap {
  padding: 30px 40px;
  background: #212529;
}

.header__menu {
  margin-right: 42px;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  list-style: none;
}
.header__menu li {
  position: relative;
}
.header__menu li:not(:last-child) {
  margin-right: 50px;
}
@media (min-width: 1200px) {
  .header__menu li:hover .header__menu__child {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }
}
.header__menu__child {
  visibility: hidden;
  opacity: 0;
  transform: translateX(-40px);
}
.header__slogan {
  color: #f49712;
}
.header__slogan__text {
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  font-weight: 600;
  background: linear-gradient(135deg, #f4961270, #f49712, #f4961270);
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}

@-webkit-keyframes shimmer {
  0% {
    background-position: 200% 0;
    /* Start the gradient off-screen to the left */
  }
  100% {
    background-position: -200% 0;
    /* Move the gradient across and off-screen to the right */
  }
}
.header__menu__child {
  position: absolute;
  top: 60px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  padding: 20px 40px;
  background: #ffffff;
  z-index: 10;
  width: 1280px;
  left: calc(100% - 320px);
  max-height: 560px;
  overflow: auto;
  transition: 0.2s ease;
}
.header__menu__child.single {
  width: 700px;
  left: calc(100% - 320px);
}
.header__menu__child.single .wrapChild .typeItem {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 1400px) and (max-width: 1700px) {
  .header__menu__child:not(.single) {
    left: calc(100% - 409px);
    width: 1230px;
  }
}
@media (min-width: 1300px) and (max-width: 1400px) {
  .header__menu__child:not(.single) {
    left: calc(100% - 640px);
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .header__menu__child:not(.single) {
    width: 800px;
    left: -188%;
    max-height: 450px;
  }
}
@media (max-width: 1199.98px) {
  .header__menu__child {
    padding: 14px;
  }
}
.header__menu__child h3 {
  font-size: 20px;
  color: #212529 !important;
  margin-bottom: 30px;
  font-family: "Roboto-Bold";
}
.header__menu__child .listChildMenu {
  width: 100%;
}
.header__menu__child ul {
  list-style: none;
  padding-left: 30px;
}
@media (max-width: 1199.98px) {
  .header__menu__child ul.menuChildMobile {
    padding-left: 0;
  }
}
.header__menu__child ul.menuChildMobile li a {
  color: #212529;
}
.header__menu__child ul li {
  margin-right: 0 !important;
}
.header__menu__child .d-flex .a-img {
  width: 95px;
  height: 150px;
}
.header__menu__child .d-flex .childTitle {
  color: #f49712;
  font-family: "Roboto-Medium";
  font-size: 18px;
  text-decoration: none;
}
.header__menu__child .wrapChild {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.header__menu__child .wrapChild .typeItem {
  flex: 0 0 50%;
  max-width: 50%;
}
.header__menu__child .wrapChild .typeItem:not(:last-child) {
  margin-bottom: 50px;
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .header__menu__child .wrapChild .typeItem {
    flex: 100%;
    max-width: 100%;
  }
}
.header__menu__child.basic {
  width: auto;
  left: calc(100% - 200px);
}
.header__menu__child.basic ul {
  width: 100%;
  padding: 0;
}
.header__menu__child.basic ul li {
  padding: 4px 0;
}
.header__menu__child.basic ul li a {
  white-space: nowrap;
}

.m-newsCard {
  position: relative;
  display: block;
}
.m-newsCard:hover .a-img {
  transform: scale(1.2);
}
.m-newsCard:hover .m-newsCard_thumbnail::before {
  opacity: 0.2;
}
.m-newsCard_thumbnail {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.m-newsCard_thumbnail:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transition: 0.4s ease;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.07), rgba(0, 0, 0, 0.6));
}
.m-newsCard_content {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  max-width: 250px;
}
.m-newsCard_date {
  font-size: 16px;
  color: #f58d00;
}
@media (max-width: 1199px) {
  .m-newsCard_date {
    font-size: 12px;
  }
}
.m-newsCard_title {
  margin-top: 2px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media (max-width: 1199px) {
  .m-newsCard_title {
    font-size: 16px;
  }
}
.m-newsCard_detail {
  margin-top: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: 0.4s ease;
  display: inline-block;
  position: relative;
  padding-right: 17px;
}
@media (max-width: 1199px) {
  .m-newsCard_detail {
    font-size: 14px;
    margin-top: 16px;
  }
}
.m-newsCard_detail::before {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 7px;
  height: 7px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.m-newsCard_detail:hover {
  text-decoration: none;
  color: #f58d00;
}
.m-newsCard_detail:hover::before {
  border-color: #f58d00;
}

.m-pagination {
  padding: 14px 0;
  display: flex;
}
.m-pagination-start {
  justify-content: flex-start;
}
.m-pagination-center {
  justify-content: center;
}
.m-pagination-end {
  justify-content: flex-end;
}

.m-productCompare {
  max-width: 210px;
}
.m-productCompare.choosing .wrapInner {
  border: 1px solid #f49712;
}
@media (max-width: 767.98px) {
  .m-productCompare.choosing .wrapInner {
    background-color: #f49712;
  }
}
.m-productCompare.choosing .wrapInner .tagType {
  color: #ffffff;
  background-color: #f49712;
}
.m-productCompare:not(.choosing) .imgPanel .a-img {
  filter: grayscale(100%);
}
.m-productCompare:not(.choosing) .imgPanel .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205315%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M12%202a10%2010%200%201%200%2010%2010A10%2010%200%200%200%2012%202zm-2%2015l-5-5%201.41-1.41L10%2014.17l7.59-7.59L19%208z%22%20data-name%3D%22Path%205316%22%20fill%3D%22%235b5b5b%22%2F%3E%3C%2Fsvg%3E) !important;
}
.m-productCompare .wrapInner {
  border: 1px solid #d3d3d3;
}
@media (max-width: 767.98px) {
  .m-productCompare .wrapInner {
    background-color: #d3d3d3;
  }
}
.m-productCompare .wrapInner .tagType {
  color: #212529;
  background-color: #d3d3d3;
  font-size: 14px;
  font-family: "Roboto-Medium";
  padding: 5px 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .m-productCompare .wrapInner .tagType {
    padding: 5px 10px;
  }
}
.m-productCompare .wrapInner .imgPanel {
  position: relative;
  padding: 20px;
}
@media (min-width: 768px) {
  .m-productCompare .wrapInner .imgPanel {
    padding: 25px 50px;
  }
}
.m-productCompare .wrapInner .imgPanel .a-img {
  height: 150px;
}
.m-productCompare .wrapInner .imgPanel .a-img:after {
  padding-top: 136.3636363636%;
}
.m-productCompare .wrapInner .imgPanel .a-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.m-productCompare .typeName {
  font-size: 18px;
  font-family: "Roboto-Medium";
  margin-top: 25px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .m-productCompare .typeName {
    margin-top: 0;
  }
}
@media (max-width: 991.98px) {
  .m-productCompare .typeName {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .m-productCompare .tablet-show {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .m-productCompare .tablet-hide {
    display: none !important;
  }
}

.s-hidden {
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  background-color: white !important;
  background: #ffffff url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205398%22%20fill%3D%22none%22%20transform%3D%22rotate%2890%2012%2012%29%22%2F%3E%3Cpath%20d%3D%22M1.41%200L0%201.41%204.58%206%200%2010.59%201.41%2012l6-6z%22%20data-name%3D%22Path%205399%22%20transform%3D%22rotate%2890%204.695%2013.305%29%22%20fill%3D%22%23212529%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  border-bottom: 1px solid;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  border-color: #d3d3d3 !important;
  border-bottom: 1px solid;
  -webkit-appearance: none;
  width: 100%;
  height: 50px;
  padding: 14px;
  padding-right: 20px;
  text-align: left;
  color: #212529 !important;
}

.styledSelect {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 40px 10px 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 0;
  padding: 0 0;
  list-style: none;
  border: 1px solid #ccc;
  background-color: white;
  max-height: 350px;
  overflow: auto;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.options li {
  padding: 0 6px;
  margin: 0 0;
  padding: 0 10px;
  padding: 0.3rem 0.75rem;
  cursor: pointer;
}
.options li:hover, .options li.choosing {
  color: #ffffff;
  background-color: #f49712;
}

.m-pulldown {
  position: relative;
  width: 100%;
}
.m-pulldown ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.m-pulldown ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.2);
}
.m-pulldown__select {
  -webkit-appearance: none;
  position: relative;
  width: 100%;
  height: 50px;
  padding: 14px;
  padding-right: 20px;
  text-align: left;
  overflow: hidden;
  color: #212529 !important;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: white !important;
  background: #ffffff url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205398%22%20fill%3D%22none%22%20transform%3D%22rotate%2890%2012%2012%29%22%2F%3E%3Cpath%20d%3D%22M1.41%200L0%201.41%204.58%206%200%2010.59%201.41%2012l6-6z%22%20data-name%3D%22Path%205399%22%20transform%3D%22rotate%2890%204.695%2013.305%29%22%20fill%3D%22%23212529%22%2F%3E%3C%2Fsvg%3E);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  border-bottom: 1px solid;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  border-color: #d3d3d3 !important;
}
.m-pulldown__select:after {
  content: none;
}
.m-pulldown__select:hover, .m-pulldown__select:focus {
  color: #c0392b;
  background-color: white;
  border-bottom-color: #dcdcdc;
}
.m-pulldown__select:focus {
  outline: 0 !important;
  box-shadow: none !important;
}
.m-pulldown .dropdown-menu.show {
  width: 100%;
  border-radius: 0;
  border: 1px solid #d3d3d3;
  padding: 0;
  max-height: 200px;
  overflow: auto;
}
.m-pulldown .dropdown-menu.show .dropdown-item {
  height: 34px;
}
.m-pulldown .dropdown-menu.show .dropdown-item:hover {
  color: #fff;
  background-color: #f49712;
}
.m-pulldown .dropdown-menu {
  background-clip: border-box;
}
.m-pulldown__dropList {
  position: absolute;
  top: 54px;
  left: 0;
  z-index: 90;
  width: 100%;
  padding: 0;
  color: #212529;
  pointer-events: none;
  visibility: hidden;
  background: #ffffff;
  border: 1px solid #d3d3d3;
  transition: 0.1s ease;
}
.m-pulldown__content {
  max-height: 200px;
  overflow: auto;
}
.m-pulldown__item {
  padding: 0.3rem 0.75rem;
  cursor: pointer;
}
.m-pulldown__item:hover, .m-pulldown__item.choosing {
  color: #ffffff;
  background-color: #f49712;
}
.m-pulldown label input {
  position: absolute;
  z-index: -1;
}

.m-scrollSection {
  position: relative;
}
.m-scrollSection-lineArrow .accordion .card {
  overflow: visible;
}
@media (max-width: 767.98px) {
  .m-scrollSection-lineArrow .accordion .card:not(:last-child) {
    padding-bottom: 20px !important;
  }
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible {
  position: relative;
  text-align: left;
  width: 100%;
}
@media (max-width: 767.98px) {
  .m-scrollSection-lineArrow .accordion .card-header .collapsible {
    padding-bottom: 15px !important;
  }
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible:hover:before {
  background-color: #f49712;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible:hover:after {
  border-color: #f49712;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible.open {
  color: #f49712;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible.open:before {
  background-color: #f49712;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible.open:after {
  border-color: #f49712;
  transform: rotate(135deg);
  top: 10px;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible:before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #d3d3d3;
}
.m-scrollSection-lineArrow .accordion .card-header .collapsible:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 10px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #5b5b5b;
  border-left: 2px solid #5b5b5b;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}
.m-scrollSection .accordion .card {
  background-color: transparent;
  border: none;
}
.m-scrollSection .accordion .card:not(:last-child) {
  padding-bottom: 35px;
}
@media (max-width: 767.98px) {
  .m-scrollSection .accordion .card:not(:last-child) {
    padding-bottom: 10px;
  }
}
.m-scrollSection .accordion .card:first-child .collapsible {
  padding-top: 0;
}
.m-scrollSection .accordion .card-header {
  background-color: transparent;
  border: none;
  padding: 0;
}
.m-scrollSection .accordion .card-header .collapsible {
  display: block;
  text-align: left;
  padding: 0;
  padding-bottom: 15px;
  font-size: 20px;
  color: #222b45;
  font-family: "Roboto-Medium";
  text-decoration: none;
  transition: 0.2s ease;
  background-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
@media (max-width: 767.98px) {
  .m-scrollSection .accordion .card-header .collapsible {
    padding-bottom: 8px;
    font-size: 16px;
    line-height: 21px;
  }
}
.m-scrollSection .accordion .card-header .collapsible.open {
  color: #f49712;
}
@media (min-width: 992px) {
  .m-scrollSection .accordion .card-header .collapsible:hover {
    color: #f49712;
  }
}
.m-scrollSection .accordion .card-body {
  padding: 0;
  margin-bottom: 0;
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .m-scrollSection .accordion .card-body p {
    font-size: 14px;
  }
}
.m-scrollSection .accordion .card-body p span {
  color: #5b5b5b !important;
}

.m-serviceCard {
  padding: 60px 50px;
  text-align: center;
  transition: 0.4s;
  position: relative;
}
@media (max-width: 1199.98px) {
  .m-serviceCard {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1200px) {
  .m-serviceCard:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .m-serviceCard:hover::before {
    transform: scale(1);
  }
}
.m-serviceCard:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background-color: #f49712;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .m-serviceCard:before {
    transform: scale(0);
  }
}
.m-serviceCard .imgPanel {
  margin-bottom: 1.875vw;
}
@media (max-width: 767.98px) {
  .m-serviceCard .imgPanel {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) {
  .m-serviceCard .imgPanel .a-icon-bigger {
    width: 60px;
    height: 60px;
  }
}
.m-serviceCard .textPanel p {
  margin-bottom: 0;
  color: #5b5b5b;
}
.m-serviceCard .textPanel p.title {
  color: #212529;
  font-size: 20px;
  font-family: "Roboto-Medium";
  line-height: 1.5;
  margin-bottom: 10px;
}
.m-serviceCard .textPanel .simplebar-content-wrapper {
  overflow: auto !important;
  scrollbar-width: thin;
}

.m-slider {
  position: relative;
}
.m-slider .handleIdxSlider {
  position: absolute;
  bottom: -55px;
  left: -22px;
  width: auto;
  font-size: 20px;
  color: #5b5b5b;
}
@media (max-width: 1199.98px) {
  .m-slider .handleIdxSlider {
    right: 15px;
    bottom: 45px;
    left: auto;
  }
}
@media (max-width: 767.98px) {
  .m-slider .handleIdxSlider {
    bottom: 25px;
  }
}
.m-slider .handleIdxSlider span.current {
  font-size: 80px !important;
  color: #f49712;
}
@media (max-width: 1199.98px) {
  .m-slider .handleIdxSlider span.current {
    font-size: 40px !important;
  }
}
.m-slider .handleSlider {
  position: absolute;
  bottom: -30px;
  right: 10px;
}
.m-slider .handleSlider .a-slideControl {
  background-color: #ffffff;
}
@media (max-width: 1199.98px) {
  .m-slider .handleSlider .a-slideControl {
    margin-right: 5px;
    margin-left: 5px;
  }
}
@media (max-width: 1199.98px) {
  .m-slider .handleSlider .a-slideControl-outlined:before {
    border-color: #f49712;
  }
}

.wrap-slide {
  flex: 0 0 69%;
  max-width: 69%;
  margin-left: 31%;
  position: relative;
}

.banner-home {
  position: relative;
  display: flex;
  padding-bottom: 10px;
}
.banner-home .textPanel {
  position: absolute;
  top: calc(50% - 240px);
  left: -35%;
  z-index: 3;
  width: 695px;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .banner-home .textPanel {
    top: calc(50% - 190px);
  }
}
@media (max-width: 1199.98px) {
  .banner-home .textPanel {
    top: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: 690px;
  }
}
.banner-home .textPanel .inner {
  height: 100%;
  overflow: hidden;
}
.banner-home .textPanel .inner .inner-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 50px 90px;
  background: #fafafa;
  border-left: 3px solid #f49712;
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .banner-home .textPanel .inner .inner-item {
    padding: 30px 50px;
  }
  .banner-home .textPanel .inner .inner-item h1 {
    font-size: 30px;
    line-height: 40px !important;
  }
  .banner-home .textPanel .inner .inner-item .text__medium {
    font-size: 16px;
  }
}
@media (max-width: 1199.98px) {
  .banner-home .textPanel .inner .inner-item {
    background: rgba(250, 250, 250, 0.5);
  }
}
@media (max-width: 767.98px) {
  .banner-home .textPanel .inner .inner-item {
    padding: 20px;
  }
}
.banner-home .textPanel .inner .inner-item .text {
  max-width: 480px;
}
.banner-home .textPanel .inner .inner-item .text .text__smaller {
  margin-bottom: 15px;
  font-family: "Roboto-Medium";
  color: #f49712;
}
@media (max-width: 1199.98px) {
  .banner-home .textPanel .inner .inner-item .text .text__smaller {
    margin-bottom: 8px;
  }
}
.banner-home .textPanel .inner .inner-item .text h1 {
  margin-bottom: 20px;
  font-family: "Roboto-Medium";
  line-height: 65px;
  color: #212529;
}
@media (max-width: 1199.98px) {
  .banner-home .textPanel .inner .inner-item .text h1 {
    margin-bottom: 0;
    font-size: 25px;
    line-height: 40px;
  }
}
@media (max-width: 991.98px) {
  .banner-home .textPanel .inner .inner-item .text h1 {
    font-size: 20px;
    line-height: 33px;
  }
}
@media (max-width: 991.98px) {
  .banner-home .textPanel .inner .inner-item .text .text__medium {
    font-size: 14px;
  }
}
.banner-home .imgPanel {
  position: relative;
  flex: 0 0 69%;
  max-width: 69%;
  margin-left: 31%;
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
    background: #fafafa;
  }
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel > div {
    position: relative;
  }
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel > div .handleSlider {
    position: absolute;
    bottom: -30px;
    right: 10px;
  }
}
.banner-home .imgPanel > div .handleSlider .a-slideControl {
  background-color: #ffffff;
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel > div .handleSlider .a-slideControl {
    margin-left: 5px;
  }
}
.banner-home .imgPanel > div .handleSlider .a-slideControl-outlined:before {
  border-color: #f49712;
}
.banner-home .imgPanel .handleIdxSlider {
  position: absolute;
  bottom: -55px;
  left: -22px;
  width: auto;
  font-size: 20px;
  color: #5b5b5b;
  display: block;
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel .handleIdxSlider {
    right: 15px;
    bottom: 45px;
    left: auto;
  }
}
@media (max-width: 767.98px) {
  .banner-home .imgPanel .handleIdxSlider {
    bottom: 25px;
  }
}
.banner-home .imgPanel .handleIdxSlider span.current {
  font-size: 80px !important;
  color: #f49712;
}
@media (max-width: 1199.98px) {
  .banner-home .imgPanel .handleIdxSlider span.current {
    font-size: 40px !important;
  }
}
.banner-home .imgPanel .handleIdxSlider.md-show {
  display: none;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .banner-home .imgPanel .handleIdxSlider.md-show {
    display: inline-block;
    position: absolute;
    left: 10px;
    bottom: -22px;
    z-index: 1;
    right: auto;
    border-radius: 20px;
  }
}
.banner-home .imgPanel .handleIdxSlider.sm-show {
  display: none;
}
@media (max-width: 767.98px) {
  .banner-home .imgPanel .handleIdxSlider.sm-show {
    display: block;
  }
}
.banner-home .imgPanel .slick-list {
  padding-bottom: 0 !important;
}
.banner-home .imgPanel .a-img {
  width: 100%;
}
.banner-home .imgPanel .a-img::after {
  padding-top: 56.25%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-home .imgPanel .a-img::after {
    padding-top: 35.29344%;
  }
}

.sliderThumb .slick-slide {
  position: relative;
  outline: 0;
}
.sliderThumb .slick-slide:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.75);
  transition: 0.2s ease;
}
.sliderThumb .slick-slide:after {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  border: 1px solid #f49712;
  transition: 0.2s ease;
  transform: scale(0);
}
.sliderThumb .slick-center:before {
  background-color: transparent !important;
}
.sliderThumb .slick-center:after {
  transform: scale(1);
}

.m-staticBanner {
  position: relative;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-staticBanner_background .a-imageRatio-1420x692 {
    padding-bottom: 50.56338%;
  }
}
@media (max-width: 991px) {
  .m-staticBanner_background .a-imageRatio-1420x692 {
    padding-bottom: 72.56338%;
  }
}
@media (max-width: 767px) {
  .m-staticBanner_background .a-imageRatio-1420x692 {
    padding-bottom: 120.56338%;
  }
}
.m-staticBanner_content {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.65);
  max-width: 816px;
  padding: 40px 50px 40px 110px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-staticBanner_content {
    max-width: 700px;
  }
}
@media (max-width: 1199px) {
  .m-staticBanner_content {
    padding: 40px 26px;
    top: 50%;
    max-width: 656px;
  }
}
@media (max-width: 767px) {
  .m-staticBanner_content {
    padding: 20px 15px;
  }
}
.m-staticBanner_content h1 {
  font-weight: 700;
  color: #fff;
  margin: 0;
  font-size: 28px;
  text-transform: uppercase;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-staticBanner_content h1 {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .m-staticBanner_content h1 {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .m-staticBanner_content h1 {
    font-size: 14px;
  }
}
.m-staticBanner_content h1 strong {
  font-weight: 900;
  color: #fff;
  display: block;
  margin: 0;
  margin-top: 10px;
  font-size: 76px;
  text-transform: uppercase;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-staticBanner_content h1 strong {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .m-staticBanner_content h1 strong {
    font-size: 46px;
  }
}
@media (max-width: 767px) {
  .m-staticBanner_content h1 strong {
    font-size: 38px;
  }
}
.m-staticBanner_content p {
  color: #fff;
  margin: 0;
  margin-top: 20px;
  font-size: 22px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .m-staticBanner_content p {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .m-staticBanner_content p {
    font-size: 17px;
  }
}
@media (max-width: 767px) {
  .m-staticBanner_content p {
    margin-top: 16px;
    font-size: 14px;
  }
}

.m-suggestSearch .react-autosuggest__container {
  position: relative;
}
.m-suggestSearch .react-autosuggest__input {
  width: 100%;
  height: 50px;
  padding: 12px 30px;
  font-weight: 300;
  font-size: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  color: #5b5b5b;
  font-family: "Roboto-Medium";
}
.m-suggestSearch .react-autosuggest__input--focused {
  outline: 0 !important;
}
.m-suggestSearch .react-autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.m-suggestSearch .react-autosuggest__suggestions-container {
  display: none;
}
.m-suggestSearch .react-autosuggest__suggestions-container--open {
  display: block;
  position: absolute;
  top: 70px;
  width: 100%;
  border-radius: 2px;
  background-color: #ffffff;
  font-weight: 300;
  font-size: 16px;
  z-index: 11;
  font-family: "Roboto-Medium";
}
.m-suggestSearch .react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.m-suggestSearch .react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 20px;
}
.m-suggestSearch .react-autosuggest__suggestion--highlighted {
  background-color: #d3d3d3;
}

.m-supportCard .imgPanel {
  overflow: hidden;
}
.m-supportCard .imgPanel:hover .a-imageRatio img {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .m-supportCard .imgPanel .a-imageRatio {
    padding-bottom: 73.8636363636%;
  }
}
.m-supportCard .layer {
  background-color: #212529;
  padding: 18px 30px;
}
@media (max-width: 767.98px) {
  .m-supportCard .layer {
    padding: 10px 5px;
  }
}

.m-tabsBar {
  margin: 20px auto 40px;
}
@media (max-width: 767.98px) {
  .m-tabsBar {
    margin: 20px auto;
  }
}
.m-tabsBar-underlined {
  position: relative;
}
.m-tabsBar-underlined::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background-color: #dbdbdb;
}
.m-tabsBar-inline {
  display: flex;
  justify-content: center;
}
.m-tabsBar-inline::before {
  display: none;
}
.m-tabsBar-inline .tabs-desc {
  border-bottom: 1px solid #dbdbdb !important;
}
.m-tabsBar-narrowTab {
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.m-tabsBar-narrowTab ul.tabs-desc {
  max-width: 100%;
  justify-content: flex-start;
}
.m-tabsBar-narrowTab ul.tabs-desc > li .a-tabItem {
  padding: 11px 16px 13px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .m-tabsBar-filled ul.tabs-desc {
    border: 1px solid #dbdbdb;
    border-radius: 20px;
  }
}
@media (min-width: 992px) {
  .m-tabsBar-filled ul.tabs-desc:before {
    position: absolute;
    top: -1px;
    right: 0;
    bottom: -2px;
    left: -1px;
    z-index: -1;
    content: "";
    border: 1px solid #dbdbdb;
    border-radius: 25px;
  }
}
.m-tabsBar-filled ul.tabs-desc li .a-tabItem-filled {
  width: 100%;
}
@media (max-width: 1199.98px) {
  .m-tabsBar-filled ul.tabs-desc li .a-tabItem-filled {
    font-size: 12px;
  }
}
.m-tabsBar-fillOrange ul.tabs-desc li .a-tabItem {
  display: inline-block;
  padding: 12px 20px;
  background-color: #ffffff;
  color: #f49712;
  font-size: 16px;
  text-transform: uppercase;
  border: 1px solid #f49712;
  line-height: 19px;
}
@media (min-width: 992px) {
  .m-tabsBar-fillOrange ul.tabs-desc li .a-tabItem {
    padding: 20px 50px;
    min-width: 335px;
  }
}
@media (max-width: 767px) {
  .m-tabsBar-fillOrange ul.tabs-desc li .a-tabItem {
    font-size: 14px;
  }
}
.m-tabsBar-fillOrange ul.tabs-desc li .a-tabItem.active {
  background-color: #f49712;
  color: #ffffff;
}
.m-tabsBar-doubleTab ul.tabs-desc {
  max-width: 670px;
  margin: auto;
}
.m-tabsBar-doubleTab ul.tabs-desc li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 0;
}
.m-tabsBar-doubleTab ul.tabs-desc li .a-tabItem {
  width: 100%;
}
.m-tabsBar .tabs-desc {
  position: relative;
  border: none;
}
@media (min-width: 768px) {
  .m-tabsBar .tabs-desc {
    justify-content: center;
  }
}
@media (max-width: 991.98px) {
  .m-tabsBar .tabs-desc {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
.m-tabsBar .tabs-desc .a-tabItem-underlined {
  font-family: "Roboto-Bold";
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .m-tabsBar .tabs-desc .a-tabItem-underlined {
    padding: 10px 14px;
    font-size: 14px;
  }
}

.m-video {
  width: 100%;
  position: relative;
}
.m-video-thumbnail:after, .m-video-modal:after {
  padding-top: 56.3636363636%;
}
.m-video-thumbnail .play_thumb_video, .m-video-modal .play_thumb_video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 50px solid #ffffff;
  transform: translate3d(-50%, -50%, 0);
  cursor: pointer;
  transition: 0.4s ease;
}
.m-video-thumbnail .play_thumb_video:hover, .m-video-modal .play_thumb_video:hover {
  border-left-color: #f49712;
}
.m-video-thumbnail .play_thumb_video:hover span:before, .m-video-modal .play_thumb_video:hover span:before {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 33px solid #ffffff;
}
.m-video-thumbnail .play_thumb_video span, .m-video-modal .play_thumb_video span {
  position: relative;
}
.m-video-thumbnail .play_thumb_video span:before, .m-video-modal .play_thumb_video span:before {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  transform: translate3d(-50%, -50%, 0);
  border-top: 0 solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 0 solid #f49712;
  transition: 0.2s ease;
}
.m-video-slider .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 110px;
  height: 110px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  transition: 0.4s ease;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 991.98px) {
  .m-video-slider .btn-play {
    width: 36px;
    height: 36px;
  }
}
.m-video-slider .btn-play > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #7f7f7f;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  transform: translate3d(-50%, -50%, 0);
}
@media (max-width: 991.98px) {
  .m-video-slider .btn-play > span {
    border-width: 7px 0 7px 12px;
  }
}
.m-video .videobox {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.m-video .videobox.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.m-video iframe,
.m-video object {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  transform: translateZ(0);
  object-fit: fill;
}

.o-article {
  position: relative;
}
.o-article-flex {
  display: flex;
}
.o-article-flex:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .o-article-flex:not(:last-child) {
    margin-bottom: 15px;
  }
}
.o-article-flex .imgPanel {
  width: 100%;
}
@media (min-width: 992px) {
  .o-article-flex .imgPanel {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.o-article-flex .imgPanel .a-imageRatio {
  padding-bottom: 74.1538461538%;
}
.o-article-flex .textPanel {
  width: 100%;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .o-article-flex .textPanel {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 20px;
  }
}
@media (max-width: 767.98px) {
  .o-article-flex .textPanel {
    padding-left: 10px;
  }
}
.o-article-flex .textPanel .category-tag {
  padding: 0 !important;
  padding-bottom: 10px !important;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-article-flex .textPanel .category-tag {
    font-size: 12px;
    padding-bottom: 0 !important;
  }
  .o-article-flex .textPanel .category-tag span.time {
    font-size: 10px;
  }
}
@media (max-width: 767.98px) {
  .o-article-flex .textPanel .category-tag {
    padding-bottom: 5px !important;
    line-height: 0.9;
  }
}
.o-article-flex .textPanel .a-link {
  margin-bottom: 10px !important;
  font-size: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-article-flex .textPanel .a-link {
    font-size: 14px;
  }
}
@media (max-width: 1199.98px) {
  .o-article-flex .textPanel .a-link {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 991.98px) {
  .o-article-flex .textPanel .a-link {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .o-article-flex .textPanel .a-link {
    margin-bottom: 3px !important;
    font-size: 14px !important;
  }
}
.o-article-flex .textPanel .a-link h2,
.o-article-flex .textPanel .a-link h3 {
  font-size: inherit;
  margin-bottom: 0;
}
.o-article-flex .textPanel .text__smaller {
  font-size: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-article-flex .textPanel .text__smaller {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .o-article-flex .textPanel .text__smaller {
    -webkit-line-clamp: 3;
  }
}
.o-article-block .imgPanel .a-imageRatio {
  padding-bottom: 77.2%;
}
@media (max-width: 1199.98px) {
  .o-article-block .imgPanel .a-imageRatio {
    padding-bottom: 78.75%;
  }
}
.o-article-absolute .textPanel {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 30px 64px;
}
@media (max-width: 767px) {
  .o-article-absolute .textPanel {
    padding: 20px 15px;
  }
}
.o-article-absolute .textPanel a {
  color: #ffffff;
}
.o-article-absolute .textPanel a:hover {
  color: #f49712;
}
.o-article-absolute .textPanel .text__smaller {
  color: #ffffff !important;
}
.o-article-absolute .imgPanel::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  background: linear-gradient(180deg, transparent, transparent 58.85%, rgba(0, 0, 0, 0.6) 83.85%, rgba(0, 0, 0, 0.8));
}
.o-article .imgPanel {
  position: relative;
  overflow: hidden;
}
.o-article .imgPanel:hover .a-imageRatio img {
  transform: scale(1.2);
}
.o-article .textPanel .a-link {
  font-family: "Roboto-Medium";
  margin-bottom: 15px;
  line-height: 1.5;
}
@media (max-width: 1199.98px) {
  .o-article .textPanel .a-link {
    margin-bottom: 4px;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .o-article .textPanel .a-link {
    font-size: 18px;
  }
}
.o-article .textPanel .text__smaller {
  color: #5b5b5b;
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.5;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-article .textPanel .text__smaller {
    font-size: 12px;
  }
}
@media (max-width: 991.98px) {
  .o-article .textPanel .text__smaller {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .o-article .textPanel .text__smaller {
    font-size: 12px;
  }
}

.o-cardDrawing {
  border: solid 1px #d3d3d3;
}
.o-cardDrawing .textPanel {
  padding: 20px;
}
@media (max-width: 991.98px) {
  .o-cardDrawing .textPanel {
    padding: 10px;
  }
}
.o-cardDrawing .textPanel .a-link {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.o-cardDrawing .block__action {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 20px;
}
@media (max-width: 991.98px) {
  .o-cardDrawing .block__action {
    padding: 0 10px 20px;
  }
}
.o-cardDrawing .block__action .act-download {
  padding-left: 25px;
  cursor: pointer;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M19%209h-4V3H9v6H5l7%207zM5%2018v2h14v-2z%22%20data-name%3D%22Path%205523%22%20fill%3D%22%23f58d00%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205524%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E) no-repeat 0/24px auto;
}
.o-cardDrawing .block__action .act-download span {
  font-family: "Roboto-Medium";
  font-size: 18px;
  color: #002855;
  transition: 0.2s ease;
}
.o-cardDrawing .block__action .act-download span:hover {
  color: #f49712;
}

@media (min-width: 1200px) {
  .o-cardSlide {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: calc(50% - 240px);
    left: -35%;
    z-index: 3;
    width: 695px;
  }
}
@media (min-width: 1600px) and (max-width: 1700px) {
  .o-cardSlide {
    left: -40%;
    width: 620px;
    top: calc(50% - 193px);
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .o-cardSlide {
    top: calc(50% - 162px);
    width: 510px;
    left: -40%;
  }
}
@media (max-width: 991.98px) {
  .o-cardSlide {
    width: 100%;
  }
}
.o-cardSlide .inner {
  height: 100%;
  overflow: hidden;
}
.o-cardSlide .inner .inner-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 50px 90px;
  background: #fafafa;
}
@media (min-width: 1200px) {
  .o-cardSlide .inner .inner-item {
    border-left: 3px solid #f49712;
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
  .o-cardSlide .inner .inner-item {
    padding: 30px 50px;
  }
  .o-cardSlide .inner .inner-item .text__medium {
    font-size: 16px !important;
  }
}
@media (max-width: 767.98px) {
  .o-cardSlide .inner .inner-item {
    padding: 20px;
  }
}
.o-cardSlide .inner .inner-item .text {
  max-width: 505px;
}
.o-cardSlide .inner .inner-item .text__smaller {
  margin-bottom: 15px;
  color: #f49712;
  font-size: 14px;
}
@media (max-width: 991.98px) {
  .o-cardSlide .inner .inner-item .text__smaller {
    font-size: 10px;
    line-height: 18px;
    margin-bottom: 5px;
  }
}
.o-cardSlide .inner .inner-item .text__medium {
  font-size: 20px;
  color: #5b5b5b;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.o-cardSlide .inner .inner-item .text p {
  font-size: 20px;
  color: #5b5b5b;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.o-cardSlide .inner .inner-item .text .a-heading-bigSlider {
  margin-bottom: 20px;
  color: #212529;
  text-transform: capitalize;
  line-height: 42px;
  height: 80px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 1920px) {
  .o-cardSlide .inner .inner-item .text .a-heading-bigSlider {
    font-size: 40px;
  }
}
@media (max-width: 1499.98px) {
  .o-cardSlide .inner .inner-item .text .a-heading-bigSlider {
    margin-bottom: 7px;
    font-size: 28px;
  }
}
@media (min-width: 1500px) {
  .o-cardSlide .inner .inner-item .text .a-heading-bigSlider {
    line-height: 72px;
    height: 144px;
  }
}
@media (max-width: 991.98px) {
  .o-cardSlide .inner .inner-item .text .text__medium {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media (min-width: 992px) {
  .o-cardSlide .inner .inner-item .group-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .o-cardSlide .inner .inner-item .group-btn button.a-button {
    height: 40px;
    font-size: 12px;
    padding: 0.8rem 1.75rem;
    margin-bottom: 15px;
  }
}
.o-cardSlide .inner .inner-item .group-btn .handleSlider .a-slideControl {
  margin: 0 5px;
}

.o-cardVideo {
  transition: 0.2s;
}
.o-cardVideo:hover {
  box-shadow: 0 3px 10px rgba(33, 37, 41, 0.2);
}
.o-cardVideo .block__content__text {
  border: 1px solid #d3d3d3;
  border-top: none;
  font-family: "Roboto-Medium";
}
@media (min-width: 992px) {
  .o-cardVideo .block__content__text {
    padding: 20px;
  }
}

.o-footer {
  padding: 100px 0;
  background-color: #212529;
}
@media (max-width: 991.98px) {
  .o-footer {
    padding: 60px 0;
  }
}
.o-footer .col-lg-3 {
  position: relative;
}
@media (min-width: 768px) {
  .o-footer .col-lg-3:first-child .wrap-link {
    max-width: 270px;
  }
}
.o-footer .col-lg-3:first-child .wrap-link .f-link {
  margin-bottom: 2px;
}
.o-footer .col-lg-3:nth-child(3) .wrap-link.isAbsolute .f-link {
  max-width: 260px;
}
@media (max-width: 767.98px) {
  .o-footer .col-lg-3:nth-child(2) .wrap-link ul.list-style-none, .o-footer .col-lg-3:nth-child(3) .wrap-link ul.list-style-none {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
  }
}
@media (max-width: 767.98px) {
  .o-footer .col-lg-3:nth-child(2) .wrap-link ul.list-style-none li, .o-footer .col-lg-3:nth-child(3) .wrap-link ul.list-style-none li {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 767.98px) {
  .o-footer .col-lg-3:last-child {
    display: flex;
    flex-wrap: wrap;
  }
  .o-footer .col-lg-3:last-child .block-flex {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .o-footer .col-lg-3:last-child .block-flex:nth-child(2) {
    margin-top: 31px;
  }
}
@media (max-width: 1199.98px) {
  .o-footer .col-lg-3:last-child .block-flex:nth-child(2) {
    margin-bottom: 10px;
  }
}
.o-footer .col-lg-3:last-child .block-flex:nth-child(2) .d-flex {
  align-items: center;
  margin-bottom: 10px;
}
.o-footer .col-lg-3:last-child .block-flex:nth-child(2) .d-flex .f-link {
  margin-bottom: 0;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .o-footer .col-lg-3:last-child .wrap-link.isAbsolute .d-flex {
    display: block !important;
  }
  .o-footer .col-lg-3:last-child .wrap-link.isAbsolute .d-flex .a-img {
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .o-footer .col-lg-3:last-child .wrap-link.isAbsolute:not(.f-willShow) {
    display: flex;
    width: 100%;
  }
  .o-footer .col-lg-3:last-child .wrap-link.isAbsolute:not(.f-willShow) .d-flex,
.o-footer .col-lg-3:last-child .wrap-link.isAbsolute:not(.f-willShow) .f-willShow {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.o-footer a {
  text-decoration: none;
}
.o-footer a:hover {
  opacity: 1;
  color: #f49712;
}
.o-footer .d-flex .f-link {
  margin-right: 14px;
}
.o-footer .f-link {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffffff;
  opacity: 0.8;
  transition: 0.4s ease;
  font-size: 16px;
  line-height: 2;
}
@media (max-width: 767.98px) {
  .o-footer .f-link {
    font-size: 12px;
  }
}
.o-footer .f-link span.font-weight-bold {
  font-family: "Roboto-Bold";
}
.o-footer .f-link_child {
  display: flex;
  flex-direction: column;
  margin-left: 14px;
}
@media (max-width: 767px) {
  .o-footer .f-link_child {
    margin-top: -5px;
  }
}
.o-footer .f-link.child {
  margin-bottom: 6px;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .o-footer .f-link.child {
    margin-bottom: 3px;
  }
}
.o-footer .f-title {
  font-family: "Roboto-Medium";
  font-size: 18px;
  color: #ffffff;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .o-footer .f-title {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .o-footer .f-title.isText > div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 991.98px) {
  .o-footer .f-title.isText {
    margin-bottom: 10px !important;
  }
  .o-footer .f-title.isText > div {
    height: auto !important;
  }
}
@media (max-width: 767.98px) {
  .o-footer .wrap-link {
    margin-bottom: 25px;
  }
}
@media (min-width: 992px) {
  .o-footer .wrap-link.isAbsolute {
    position: absolute;
    right: 0;
    bottom: unset;
    left: 15px;
  }
}
.o-footer .wrap-link.isAbsolute .d-flex {
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  .o-footer .wrap-link.isAbsolute .d-flex {
    display: block !important;
  }
}
.o-footer .wrap-link.isAbsolute .d-flex .a-img {
  margin-right: 15px;
}
@media (min-width: 1400px) {
  .o-footer .wrap-link.isAbsolute .d-flex .a-img {
    margin-right: 64px;
  }
}
@media (max-width: 767.98px) {
  .o-footer .wrap-link.isAbsolute .d-flex .a-img {
    margin-bottom: 25px;
  }
}
.o-footer .wrap-link.isAbsolute .a-img {
  width: 110px;
}
.o-footer .wrap-link.isAbsolute .a-img.stretch {
  width: 100%;
  max-width: 210px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .o-footer .wrap-link.isAbsolute .a-img.stretch {
    max-width: 132px;
  }
}
.o-footer .wrap-link.isAbsolute .a-img.stretch::after {
  padding-top: 38.0952380952%;
}
.o-footer .social-direct li:not(:last-child) {
  margin-right: 15px;
}
.o-footer .social-direct li a.nav-link {
  padding: 0;
}
.o-footer .logoFooter {
  max-width: 150px;
}
@media (max-width: 767.98px) {
  .o-footer .logoFooter {
    max-width: 143px;
  }
}
@media (max-width: 767.98px) {
  .o-footer .f-willHide {
    display: none;
  }
}
@media (min-width: 768px) {
  .o-footer .f-willShow {
    display: none;
  }
}

.copyright-bar {
  padding: 6px;
  background: #333333;
}
@media (min-width: 767px) and (max-width: 1200px) {
  .copyright-bar {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}
.copyright-bar p {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.8;
}

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

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-15 {
  margin-right: 15px;
}

.o-groupBranch {
  display: flex;
  flex-wrap: wrap;
  max-width: 575px;
  padding: 15px 0;
  margin: auto;
  justify-content: center;
}
@media (min-width: 768px) {
  .o-groupBranch {
    padding: 30px 0;
  }
}
.o-groupBranch .b-item {
  cursor: pointer;
  display: inline-block;
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .o-groupBranch .b-item:nth-child(1), .o-groupBranch .b-item:nth-child(2), .o-groupBranch .b-item:nth-child(3), .o-groupBranch .b-item:nth-child(4), .o-groupBranch .b-item:nth-child(5), .o-groupBranch .b-item:nth-child(6) {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .o-groupBranch .b-item:nth-child(1), .o-groupBranch .b-item:nth-child(2), .o-groupBranch .b-item:nth-child(3), .o-groupBranch .b-item:nth-child(4) {
    margin-bottom: 2.6041666667vw;
  }
}
.o-groupBranch .b-item:hover .img.imgOrg, .o-groupBranch .b-item.active .img.imgOrg {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
}
.o-groupBranch .b-item:hover .img.imgHover, .o-groupBranch .b-item.active .img.imgHover {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: 81px;
}
@media (max-width: 767.98px) {
  .o-groupBranch .b-item:hover .img.imgHover, .o-groupBranch .b-item.active .img.imgHover {
    width: 43px;
  }
}
.o-groupBranch .b-item .img {
  height: 81px;
  margin: auto;
  border-radius: 100%;
}
@media (max-width: 767.98px) {
  .o-groupBranch .b-item .img {
    height: 43px;
  }
}
.o-groupBranch .b-item .img.imgOrg {
  opacity: 1;
  visibility: visible;
  height: auto;
  width: 81px;
}
@media (max-width: 767.98px) {
  .o-groupBranch .b-item .img.imgOrg {
    width: 43px;
  }
}
.o-groupBranch .b-item .img.imgHover {
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
}
.o-groupBranch .b-item span {
  display: block;
  margin-top: 25px;
  font-family: "Roboto-Medium";
  font-size: 20px;
  color: #5b5b5b;
  text-decoration: none;
  transition: 0.2s ease;
}
@media (max-width: 767.98px) {
  .o-groupBranch .b-item span {
    margin-top: 10px;
    font-size: 14px;
  }
}
.o-groupBranch .b-item span:hover {
  color: #212529;
  text-decoration: none;
}
.o-groupBranch-activeAll {
  max-width: 944px;
}

@media (min-width: 1200px) {
  .o-header .wrap-sticky-header.fixed .header__main {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 0;
    box-shadow: 0 4px 5px #0000001a;
  }
  .o-header .wrap-sticky-header.fixed .header__logo img {
    width: 145px;
    height: 46px;
  }
  .o-header .wrap-sticky-header.fixed .searchBarHeader.expand .bg-search,
.o-header .wrap-sticky-header.fixed .dropSubMenu.expand .drop-container,
.o-header .wrap-sticky-header.fixed .searchField .layer {
    top: 62px;
  }
}
@media (max-width: 1199.98px) {
  .o-header .wrap-sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 22;
  }
  .o-header .wrap-sticky-header.expandMenu .header__main {
    transform: translateX(0);
  }
  .o-header .wrap-sticky-header.expandMenu .bg-cover {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
  }
}
.o-header .wrap-sticky-header .bg-cover {
  position: fixed;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: crosshair;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.2s ease;
}
@media (max-width: 1199.98px) {
  .o-header .wrap-sticky-header .bg-cover {
    top: 94px;
  }
}
@media (max-width: 991.98px) {
  .o-header .wrap-sticky-header .bg-cover {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .o-header .wrap-sticky-header .bg-cover {
    top: 50px;
  }
}
.o-header .header__top {
  padding: 5px 0;
  background-color: #212529;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .o-header .header__top {
    padding: 15px 0;
    background-color: #fff;
  }
}
@media (max-width: 767.98px) {
  .o-header .header__top {
    padding: 13px 0;
  }
}
.o-header .header__top__left ul li:first-child {
  margin-right: 20px;
}
.o-header .header__top__left ul li a {
  display: flex;
  align-items: center;
}
.o-header .header__top__left ul li a i.icon {
  margin-right: 5px;
}
.o-header .header__top__left h1 {
  line-height: 0;
}
.o-header .header__top__right {
  display: flex;
}
@media (max-width: 1199.98px) {
  .o-header .header__top__right {
    align-items: center;
  }
}
.o-header .header__top__right ul {
  margin-right: 20px;
}
.o-header .header__top__right ul li:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 1199.98px) {
  .o-header .header__top__right .m-languageSelection .dropdown-toggle {
    color: #212529;
  }
}
.o-header .header__top .btn-toggle-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .o-header .header__top .btn-toggle-menu .a-icon-bigger {
    width: 24px;
    height: 24px;
  }
}
.o-header .header__top .m-iconText a {
  font-size: 12px;
  transition: 0.4s ease;
}
.o-header .header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.o-header .header__main {
  padding: 11px 0 12px;
  background: #ffffff;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .o-header .header__main {
    top: 94px;
  }
}
@media (max-width: 991.98px) {
  .o-header .header__main {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .o-header .header__main {
    top: 50px;
  }
}
@media (max-width: 1199.98px) {
  .o-header .header__main {
    position: fixed;
    left: 0;
    z-index: 70;
    padding: 45px;
    background-color: #212529;
    transition: 0.2s ease-in-out;
    transform: translateX(-100%);
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 94px);
  }
}
@media (max-width: 991.98px) {
  .o-header .header__main {
    padding: 10px 20px;
    height: calc(100% - 83px);
  }
}
@media (max-width: 767.98px) {
  .o-header .header__main {
    right: 0;
    height: calc(100% - 39px);
  }
}
.o-header .header__main__right {
  position: relative;
}
@media (min-width: 1200px) {
  .o-header .header__main__right {
    display: flex;
    align-items: center;
  }
}
.o-header .header__logo {
  display: inline-block;
  padding: 8px 0;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .o-header .header__logo {
    padding: 0;
  }
}
.o-header .header__logo img {
  width: 220px;
  height: 80px;
}
@media (max-width: 767.98px) {
  .o-header .header__logo img {
    width: 71px;
    height: 23px;
  }
}
.o-header .header__menu {
  margin-right: 42px;
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .o-header .header__menu {
    display: block;
    margin-top: 30px;
    margin-right: 0;
  }
}
.o-header .header__menu li.a-menuItem:not(:last-child) {
  margin-right: 35px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .o-header .header__menu li.a-menuItem:not(:last-child) {
    margin-right: 25px;
  }
}
@media (max-width: 1199.98px) {
  .o-header .header__menu li.a-menuItem:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .o-header .header__menu li.a-menuItem:not(:last-child) {
    margin-bottom: 10px;
  }
}
.o-header .header__menu li.a-menuItem > a:not(.a-link-smaller) {
  display: block;
  padding: 5px;
  color: #212529;
  text-decoration: none;
  transition: 0.4s ease;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .o-header .header__menu li.a-menuItem > a:not(.a-link-smaller) {
    color: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .o-header .header__menu li.a-menuItem > a:not(.a-link-smaller) {
    font-size: 16px;
  }
}
.o-header .header__menu li.a-menuItem > a:not(.a-link-smaller):hover {
  color: #f49712;
}
@media (min-width: 1200px) {
  .o-header .header--flex {
    display: flex;
    justify-content: space-between;
  }
}

.searchBarHeader {
  position: relative;
}
.searchBarHeader.expand .m-iconButton::before {
  transform: scale(1);
}
.searchBarHeader.expand .bg-search {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
.searchBarHeader .m-iconButton {
  position: relative;
}
.searchBarHeader .m-iconButton::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: "";
  border: 2px solid #d3d3d3;
  border-radius: 100%;
  transition: 0.4s ease;
  transform: scale(0);
}
.searchBarHeader .m-iconButton:hover::before {
  transform: scale(1);
}
.searchBarHeader .searchBox {
  position: relative;
  width: 24px;
  height: 24px;
}
.searchBarHeader .bg-search {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.4s ease;
}

.searchField {
  height: 100%;
}
.searchField.finding {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.searchField.finding .layer {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1200px) {
  .searchField {
    position: absolute;
    top: 10px;
    right: 40px;
    width: 0;
    padding: 0 20px;
    visibility: hidden;
    opacity: 0;
  }
  .searchField .layer {
    position: fixed;
    top: 100px;
    bottom: 0;
    left: 0;
    z-index: 12;
    width: 100%;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 0.2s ease;
  }
}
@media (max-width: 1199.98px) {
  .searchField {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.searchField .m-suggestSearch {
  position: relative;
}
.searchField .m-suggestSearch .react-autosuggest__container input.react-autosuggest__input {
  border-radius: 0;
}
@media (max-width: 1199.98px) {
  .searchField .m-suggestSearch .react-autosuggest__container input.react-autosuggest__input {
    border-radius: 0;
    font-size: 16px;
    padding: 13px 55px 13px 15px;
  }
}
.searchField .m-suggestSearch .mobile-show {
  position: absolute;
  top: 0;
  right: 0;
}
.searchField .autosuggest__input {
  width: 100%;
  height: 50px;
  padding: 12px 30px;
  font-weight: 300;
  font-size: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  color: #5b5b5b;
  font-family: "Roboto-Medium";
}
.searchField .autosuggest__input:focus {
  outline: 0 !important;
}
.searchField .autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.searchField .autocomplete-items {
  position: absolute;
  border: 1px solid #d3d3d3;
  border-bottom: none;
  border-top: none;
  padding-top: 20px;
  padding-bottom: 15px;
  z-index: 99;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #ffffff;
}
.searchField .autocomplete-items div {
  padding: 15px 30px;
  cursor: pointer;
}
.searchField .autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.searchField .autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.dropSubMenu {
  position: relative;
  width: 50px;
  height: 50px;
  display: none;
}
@media (min-width: 1200px) {
  .dropSubMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
  }
  .dropSubMenu:hover::before {
    transform: scale(1);
  }
}
.dropSubMenu::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: "";
  border: 2px solid #d3d3d3;
  border-radius: 100%;
  transition: 0.4s ease;
  transform: scale(0);
}
.dropSubMenu.expand::before {
  transform: scale(1);
}
.dropSubMenu.expand .dropBox::before {
  top: 12px;
  transform: rotate(225deg);
}
.dropSubMenu.expand .dropBox::after {
  bottom: 10px;
  transform: rotate(-225deg);
}
.dropSubMenu.expand .dropBox span {
  transform: scale(0);
}
.dropSubMenu.expand .drop-container {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .dropSubMenu.expand .drop-container {
    top: 94px;
  }
}
@media (max-width: 767.98px) {
  .dropSubMenu.expand .drop-container {
    top: 85px;
  }
}
.dropSubMenu .dropBox {
  position: relative;
  width: 24px;
  height: 24px;
}
.dropSubMenu .dropBox::before, .dropSubMenu .dropBox::after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #212529;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .dropSubMenu .dropBox::before, .dropSubMenu .dropBox::after {
    background-color: #ffffff;
  }
}
.dropSubMenu .dropBox::before {
  top: 4px;
}
.dropSubMenu .dropBox::after {
  bottom: 4px;
}
.dropSubMenu .dropBox span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #212529;
  transition: 0.4s ease;
  transform: scale(1);
}
@media (max-width: 1199.98px) {
  .dropSubMenu .dropBox span {
    background-color: #ffffff;
  }
}
.dropSubMenu .drop-container {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.4s ease;
}
.dropSubMenu .drop-container .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.dropSubMenu .drop-container .wrapper .subMenu {
  list-style: none;
}
.dropSubMenu .drop-container .wrapper .subMenu li:not(:last-child) {
  margin-bottom: 30px;
}
.dropSubMenu .drop-container .wrapper .subMenu li a {
  display: block;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .dropSubMenu .drop-container .wrapper .subMenu li a {
    font-size: 20px;
  }
}
.dropSubMenu .drop-container .wrapper .subMenu li a:hover {
  color: #f49712;
}

.close-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 8px 10px;
}
.close-menu .closeNav {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.close-menu .closeNav::before, .close-menu .closeNav::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #ffffff;
}
.close-menu .closeNav::before {
  transform: rotate(45deg);
}
.close-menu .closeNav::after {
  transform: rotate(-45deg);
}

@media (max-width: 1199.98px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .mobile-show {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .container-max {
    max-width: 1390px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-max {
    max-width: 1360px !important;
  }
}

@media (max-width: 1400px) {
  .container-noPadding {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 1400px) {
  .container-lp {
    max-width: 1440px !important;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .container-lp-full {
    max-width: 1470px !important;
  }
}

@media (min-width: 1400px) {
  .container-full {
    max-width: 1920px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-full {
    max-width: 1360px !important;
  }
}

.o-headingSection {
  padding: 8px 15px;
}
@media (max-width: 767.98px) {
  .o-headingSection {
    padding: 8px 5px;
  }
}
@media (min-width: 992px) {
  .o-headingSection {
    padding: 18px 30px;
    font-size: 18px;
  }
}
.o-headingSection-left {
  padding-left: 0;
  padding-right: 0;
}

.o-introductionCard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -12px;
  margin-right: -12px;
}
@media (min-width: 768px) {
  .o-introductionCard-reverse .o-introductionCard_item:nth-child(1) {
    order: 2;
  }
  .o-introductionCard-reverse .o-introductionCard_item:nth-child(2) {
    order: 1;
  }
}
.o-introductionCard_item {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .o-introductionCard_item:nth-child(1) {
    flex: 0 0 calc(5/12*100%);
  }
  .o-introductionCard_item:nth-child(2) {
    flex: 0 0 calc(7/12*100%);
  }
}
.o-introductionCard_image {
  max-width: 571px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .o-introductionCard_image {
    margin-top: 32px;
    max-width: 385px;
  }
}
@media (max-width: 767px) {
  .o-introductionCard_content_title {
    text-align: center;
  }
}
.o-introductionCard_content_desc {
  margin-top: 12px;
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: #292929;
}
.o-introductionCard_content_desc p {
  margin: 0;
}
@media (max-width: 1199px) {
  .o-introductionCard_content_desc {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  .o-introductionCard_content_desc {
    text-align: center;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .o-introductionCard_content_desc.pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .o-introductionCard_content_desc.mobile {
    display: none;
  }
}

.o-introModal_image {
  display: block;
}
.o-introModal_close {
  position: absolute;
  top: 7px;
  right: 7px;
}
.o-introModal_close button.close {
  outline: 0;
  width: 21px !important;
  height: 21px !important;
  float: unset;
}
.o-introModal_close button.close span:before,
.o-introModal_close button.close span:after {
  height: 3px !important;
}

@media (min-width: 1200px) {
  .o-landingpageHeader .wrap-sticky-header.fixed .header__main {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    padding: 0;
    box-shadow: 0 4px 5px #0000001a;
  }
  .o-landingpageHeader .wrap-sticky-header.fixed .header__logo img {
    width: 145px;
    height: 46px;
  }
  .o-landingpageHeader .wrap-sticky-header.fixed .searchBarHeader.expand .bg-search,
.o-landingpageHeader .wrap-sticky-header.fixed .dropSubMenu.expand .drop-container,
.o-landingpageHeader .wrap-sticky-header.fixed .searchField .layer {
    top: 62px;
  }
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .wrap-sticky-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 22;
  }
  .o-landingpageHeader .wrap-sticky-header.expandMenu .header__main {
    transform: translateX(0);
  }
  .o-landingpageHeader .wrap-sticky-header.expandMenu .bg-cover {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
  }
}
.o-landingpageHeader .wrap-sticky-header .bg-cover {
  position: fixed;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
  cursor: crosshair;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.2s ease;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .wrap-sticky-header .bg-cover {
    top: 94px;
  }
}
@media (max-width: 991.98px) {
  .o-landingpageHeader .wrap-sticky-header .bg-cover {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .wrap-sticky-header .bg-cover {
    top: 50px;
  }
}
.o-landingpageHeader .header__top {
  padding: 5px 0;
  background-color: #212529;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__top {
    padding: 15px 0;
    background-color: #fff;
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__top {
    padding: 13px 0;
  }
}
.o-landingpageHeader .header__top__left ul li:first-child {
  margin-right: 20px;
}
.o-landingpageHeader .header__top__left ul li a {
  display: flex;
  align-items: center;
}
.o-landingpageHeader .header__top__left ul li a i.icon {
  margin-right: 5px;
}
.o-landingpageHeader .header__top__left h1 {
  line-height: 0;
}
.o-landingpageHeader .header__top__right {
  display: flex;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__top__right {
    align-items: center;
  }
}
.o-landingpageHeader .header__top__right ul {
  margin-right: 20px;
}
.o-landingpageHeader .header__top__right ul li:not(:last-child) {
  margin-right: 15px;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__top__right .m-languageSelection .dropdown-toggle {
    color: #212529;
  }
}
.o-landingpageHeader .header__top .btn-toggle-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__top .btn-toggle-menu .a-icon-bigger {
    width: 24px;
    height: 24px;
  }
}
.o-landingpageHeader .header__top .m-iconText a {
  font-size: 12px;
  transition: 0.4s ease;
}
.o-landingpageHeader .header__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.o-landingpageHeader .header__main {
  padding: 11px 0 12px;
  background: #ffffff;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__main {
    top: 94px;
  }
}
@media (max-width: 991.98px) {
  .o-landingpageHeader .header__main {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__main {
    top: 50px;
  }
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__main {
    position: fixed;
    left: 0;
    z-index: 70;
    padding: 45px;
    background-color: #212529;
    transition: 0.2s ease-in-out;
    transform: translateX(-100%);
    overflow-y: auto;
    overflow-x: hidden;
    height: calc(100% - 94px);
  }
}
@media (max-width: 991.98px) {
  .o-landingpageHeader .header__main {
    padding: 10px 20px;
    height: calc(100% - 83px);
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__main {
    right: 0;
    height: calc(100% - 39px);
  }
}
.o-landingpageHeader .header__main__right {
  position: relative;
}
@media (min-width: 1200px) {
  .o-landingpageHeader .header__main__right {
    display: flex;
    align-items: center;
  }
}
.o-landingpageHeader .header__logo {
  display: inline-block;
  padding: 8px 0;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__logo {
    padding: 0;
  }
}
.o-landingpageHeader .header__logo img {
  width: 148px;
  height: 48px;
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__logo img {
    width: 71px;
    height: 23px;
  }
}
.o-landingpageHeader .header__menu {
  margin-right: 42px;
  font-size: 20px;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__menu {
    display: block;
    margin-top: 30px;
    margin-right: 0;
  }
}
.o-landingpageHeader .header__menu li.a-menuItem:not(:last-child) {
  margin-right: 35px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .o-landingpageHeader .header__menu li.a-menuItem:not(:last-child) {
    margin-right: 25px;
  }
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__menu li.a-menuItem:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__menu li.a-menuItem:not(:last-child) {
    margin-bottom: 10px;
  }
}
.o-landingpageHeader .header__menu li.a-menuItem > a:not(.a-link-smaller) {
  display: block;
  padding: 5px;
  color: #212529;
  text-decoration: none;
  transition: 0.4s ease;
  text-transform: capitalize;
}
@media (max-width: 1199.98px) {
  .o-landingpageHeader .header__menu li.a-menuItem > a:not(.a-link-smaller) {
    color: #ffffff;
  }
}
@media (max-width: 767.98px) {
  .o-landingpageHeader .header__menu li.a-menuItem > a:not(.a-link-smaller) {
    font-size: 16px;
  }
}
.o-landingpageHeader .header__menu li.a-menuItem > a:not(.a-link-smaller):hover {
  color: #f49712;
}
@media (min-width: 1200px) {
  .o-landingpageHeader .header--flex {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .o-landingpageHeader .header__top {
    display: none;
  }
}

.searchBarHeader {
  position: relative;
}
.searchBarHeader.expand .m-iconButton::before {
  transform: scale(1);
}
.searchBarHeader.expand .bg-search {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
.searchBarHeader .m-iconButton {
  position: relative;
}
.searchBarHeader .m-iconButton::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: "";
  border: 2px solid #d3d3d3;
  border-radius: 100%;
  transition: 0.4s ease;
  transform: scale(0);
}
.searchBarHeader .m-iconButton:hover::before {
  transform: scale(1);
}
.searchBarHeader .searchBox {
  position: relative;
  width: 24px;
  height: 24px;
}
.searchBarHeader .bg-search {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.4s ease;
}

.searchField {
  height: 100%;
}
.searchField.finding {
  width: 100%;
  visibility: visible;
  opacity: 1;
}
.searchField.finding .layer {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
@media (min-width: 1200px) {
  .searchField {
    position: absolute;
    top: 10px;
    right: 40px;
    width: 0;
    padding: 0 20px;
    visibility: hidden;
    opacity: 0;
  }
  .searchField .layer {
    position: fixed;
    top: 100px;
    bottom: 0;
    left: 0;
    z-index: 12;
    width: 100%;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 0.2s ease;
  }
}
@media (max-width: 1199.98px) {
  .searchField {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.searchField .m-suggestSearch {
  position: relative;
}
.searchField .m-suggestSearch .react-autosuggest__container input.react-autosuggest__input {
  border-radius: 0;
}
@media (max-width: 1199.98px) {
  .searchField .m-suggestSearch .react-autosuggest__container input.react-autosuggest__input {
    border-radius: 0;
    font-size: 16px;
    padding: 13px 55px 13px 15px;
  }
}
.searchField .m-suggestSearch .mobile-show {
  position: absolute;
  top: 0;
  right: 0;
}
.searchField .autosuggest__input {
  width: 100%;
  height: 50px;
  padding: 12px 30px;
  font-weight: 300;
  font-size: 20px;
  border: 1px solid #d3d3d3;
  border-radius: 2px;
  color: #5b5b5b;
  font-family: "Roboto-Medium";
}
.searchField .autosuggest__input:focus {
  outline: 0 !important;
}
.searchField .autosuggest__input--open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.searchField .autocomplete-items {
  position: absolute;
  border: 1px solid #d3d3d3;
  border-bottom: none;
  border-top: none;
  padding-top: 20px;
  padding-bottom: 15px;
  z-index: 99;
  top: 70px;
  left: 0;
  right: 0;
  background-color: #ffffff;
}
.searchField .autocomplete-items div {
  padding: 15px 30px;
  cursor: pointer;
}
.searchField .autocomplete-items div:hover {
  background-color: #e9e9e9;
}
.searchField .autocomplete-active {
  background-color: DodgerBlue !important;
  color: #ffffff;
}

.dropSubMenu {
  position: relative;
  width: 50px;
  height: 50px;
  display: none;
}
@media (min-width: 1200px) {
  .dropSubMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
  }
  .dropSubMenu:hover::before {
    transform: scale(1);
  }
}
.dropSubMenu::before {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  content: "";
  border: 2px solid #d3d3d3;
  border-radius: 100%;
  transition: 0.4s ease;
  transform: scale(0);
}
.dropSubMenu.expand::before {
  transform: scale(1);
}
.dropSubMenu.expand .dropBox::before {
  top: 12px;
  transform: rotate(225deg);
}
.dropSubMenu.expand .dropBox::after {
  bottom: 10px;
  transform: rotate(-225deg);
}
.dropSubMenu.expand .dropBox span {
  transform: scale(0);
}
.dropSubMenu.expand .drop-container {
  top: 116px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 1199.98px) {
  .dropSubMenu.expand .drop-container {
    top: 94px;
  }
}
@media (max-width: 767.98px) {
  .dropSubMenu.expand .drop-container {
    top: 85px;
  }
}
.dropSubMenu .dropBox {
  position: relative;
  width: 24px;
  height: 24px;
}
.dropSubMenu .dropBox::before, .dropSubMenu .dropBox::after {
  position: absolute;
  width: 100%;
  height: 2px;
  content: "";
  background-color: #212529;
  transition: 0.4s ease;
}
@media (max-width: 1199.98px) {
  .dropSubMenu .dropBox::before, .dropSubMenu .dropBox::after {
    background-color: #ffffff;
  }
}
.dropSubMenu .dropBox::before {
  top: 4px;
}
.dropSubMenu .dropBox::after {
  bottom: 4px;
}
.dropSubMenu .dropBox span {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #212529;
  transition: 0.4s ease;
  transform: scale(1);
}
@media (max-width: 1199.98px) {
  .dropSubMenu .dropBox span {
    background-color: #ffffff;
  }
}
.dropSubMenu .drop-container {
  position: fixed;
  top: 100px;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: 0.4s ease;
}
.dropSubMenu .drop-container .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.dropSubMenu .drop-container .wrapper .subMenu {
  list-style: none;
}
.dropSubMenu .drop-container .wrapper .subMenu li:not(:last-child) {
  margin-bottom: 30px;
}
.dropSubMenu .drop-container .wrapper .subMenu li a {
  display: block;
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s ease;
}
@media (max-width: 767.98px) {
  .dropSubMenu .drop-container .wrapper .subMenu li a {
    font-size: 20px;
  }
}
.dropSubMenu .drop-container .wrapper .subMenu li a:hover {
  color: #f49712;
}

.close-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  padding: 8px 10px;
}
.close-menu .closeNav {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.close-menu .closeNav::before, .close-menu .closeNav::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #ffffff;
}
.close-menu .closeNav::before {
  transform: rotate(45deg);
}
.close-menu .closeNav::after {
  transform: rotate(-45deg);
}

@media (max-width: 1199.98px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .mobile-show {
    display: none !important;
  }
}

@media (min-width: 1400px) {
  .container-lp {
    max-width: 1440px !important;
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1200px) {
  .container-lp-full {
    max-width: 1470px !important;
  }
}

@media (min-width: 1400px) {
  .container-full {
    max-width: 1920px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .container-full {
    max-width: 1360px !important;
  }
}

body {
  font-family: "Roboto-Regular";
}

section.mg-section {
  margin: 100px 0;
}
@media (max-width: 991.98px) {
  section.mg-section {
    margin: 40px 0 60px;
  }
}

.p-sectionPage {
  margin-top: 50px;
  margin-bottom: 150px;
}
@media (max-width: 991.98px) {
  .p-sectionPage {
    margin: 40px 0 75px;
  }
}

.o-layout {
  overflow: hidden;
}

.row.sGrid {
  margin-left: -10px;
  margin-right: -10px;
}
@media (max-width: 767.98px) {
  .row.sGrid {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.row.sGrid .col-1,
.row.sGrid .col-2,
.row.sGrid .col-3,
.row.sGrid .col-4,
.row.sGrid .col-5,
.row.sGrid .col-6,
.row.sGrid .col-7,
.row.sGrid .col-8,
.row.sGrid .col-9,
.row.sGrid .col-10,
.row.sGrid .col-11,
.row.sGrid .col-12,
.row.sGrid .col,
.row.sGrid .col-auto,
.row.sGrid .col-sm-1,
.row.sGrid .col-sm-2,
.row.sGrid .col-sm-3,
.row.sGrid .col-sm-4,
.row.sGrid .col-sm-5,
.row.sGrid .col-sm-6,
.row.sGrid .col-sm-7,
.row.sGrid .col-sm-8,
.row.sGrid .col-sm-9,
.row.sGrid .col-sm-10,
.row.sGrid .col-sm-11,
.row.sGrid .col-sm-12,
.row.sGrid .col-sm,
.row.sGrid .col-sm-auto,
.row.sGrid .col-md-1,
.row.sGrid .col-md-2,
.row.sGrid .col-md-3,
.row.sGrid .col-md-4,
.row.sGrid .col-md-5,
.row.sGrid .col-md-6,
.row.sGrid .col-md-7,
.row.sGrid .col-md-8,
.row.sGrid .col-md-9,
.row.sGrid .col-md-10,
.row.sGrid .col-md-11,
.row.sGrid .col-md-12,
.row.sGrid .col-md,
.row.sGrid .col-md-auto,
.row.sGrid .col-lg-1,
.row.sGrid .col-lg-2,
.row.sGrid .col-lg-3,
.row.sGrid .col-lg-4,
.row.sGrid .col-lg-5,
.row.sGrid .col-lg-6,
.row.sGrid .col-lg-7,
.row.sGrid .col-lg-8,
.row.sGrid .col-lg-9,
.row.sGrid .col-lg-10,
.row.sGrid .col-lg-11,
.row.sGrid .col-lg-12,
.row.sGrid .col-lg,
.row.sGrid .col-lg-auto,
.row.sGrid .col-xl-1,
.row.sGrid .col-xl-2,
.row.sGrid .col-xl-3,
.row.sGrid .col-xl-4,
.row.sGrid .col-xl-5,
.row.sGrid .col-xl-6,
.row.sGrid .col-xl-7,
.row.sGrid .col-xl-8,
.row.sGrid .col-xl-9,
.row.sGrid .col-xl-10,
.row.sGrid .col-xl-11,
.row.sGrid .col-xl-12,
.row.sGrid .col-xl,
.row.sGrid .col-xl-auto,
.row.sGrid .col-4k-1,
.row.sGrid .col-4k-2,
.row.sGrid .col-4k-3,
.row.sGrid .col-4k-4,
.row.sGrid .col-4k-5,
.row.sGrid .col-4k-6,
.row.sGrid .col-4k-7,
.row.sGrid .col-4k-8,
.row.sGrid .col-4k-9,
.row.sGrid .col-4k-10,
.row.sGrid .col-4k-11,
.row.sGrid .col-4k-12,
.row.sGrid .col-4k,
.row.sGrid .col-4k-auto {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199.98px) {
  .row.sGrid .col-1,
.row.sGrid .col-2,
.row.sGrid .col-3,
.row.sGrid .col-4,
.row.sGrid .col-5,
.row.sGrid .col-6,
.row.sGrid .col-7,
.row.sGrid .col-8,
.row.sGrid .col-9,
.row.sGrid .col-10,
.row.sGrid .col-11,
.row.sGrid .col-12,
.row.sGrid .col,
.row.sGrid .col-auto,
.row.sGrid .col-sm-1,
.row.sGrid .col-sm-2,
.row.sGrid .col-sm-3,
.row.sGrid .col-sm-4,
.row.sGrid .col-sm-5,
.row.sGrid .col-sm-6,
.row.sGrid .col-sm-7,
.row.sGrid .col-sm-8,
.row.sGrid .col-sm-9,
.row.sGrid .col-sm-10,
.row.sGrid .col-sm-11,
.row.sGrid .col-sm-12,
.row.sGrid .col-sm,
.row.sGrid .col-sm-auto,
.row.sGrid .col-md-1,
.row.sGrid .col-md-2,
.row.sGrid .col-md-3,
.row.sGrid .col-md-4,
.row.sGrid .col-md-5,
.row.sGrid .col-md-6,
.row.sGrid .col-md-7,
.row.sGrid .col-md-8,
.row.sGrid .col-md-9,
.row.sGrid .col-md-10,
.row.sGrid .col-md-11,
.row.sGrid .col-md-12,
.row.sGrid .col-md,
.row.sGrid .col-md-auto,
.row.sGrid .col-lg-1,
.row.sGrid .col-lg-2,
.row.sGrid .col-lg-3,
.row.sGrid .col-lg-4,
.row.sGrid .col-lg-5,
.row.sGrid .col-lg-6,
.row.sGrid .col-lg-7,
.row.sGrid .col-lg-8,
.row.sGrid .col-lg-9,
.row.sGrid .col-lg-10,
.row.sGrid .col-lg-11,
.row.sGrid .col-lg-12,
.row.sGrid .col-lg,
.row.sGrid .col-lg-auto,
.row.sGrid .col-xl-1,
.row.sGrid .col-xl-2,
.row.sGrid .col-xl-3,
.row.sGrid .col-xl-4,
.row.sGrid .col-xl-5,
.row.sGrid .col-xl-6,
.row.sGrid .col-xl-7,
.row.sGrid .col-xl-8,
.row.sGrid .col-xl-9,
.row.sGrid .col-xl-10,
.row.sGrid .col-xl-11,
.row.sGrid .col-xl-12,
.row.sGrid .col-xl,
.row.sGrid .col-xl-auto,
.row.sGrid .col-4k-1,
.row.sGrid .col-4k-2,
.row.sGrid .col-4k-3,
.row.sGrid .col-4k-4,
.row.sGrid .col-4k-5,
.row.sGrid .col-4k-6,
.row.sGrid .col-4k-7,
.row.sGrid .col-4k-8,
.row.sGrid .col-4k-9,
.row.sGrid .col-4k-10,
.row.sGrid .col-4k-11,
.row.sGrid .col-4k-12,
.row.sGrid .col-4k,
.row.sGrid .col-4k-auto {
    margin-bottom: 20px;
  }
}
@media (max-width: 767.98px) {
  .row.sGrid .col-1,
.row.sGrid .col-2,
.row.sGrid .col-3,
.row.sGrid .col-4,
.row.sGrid .col-5,
.row.sGrid .col-6,
.row.sGrid .col-7,
.row.sGrid .col-8,
.row.sGrid .col-9,
.row.sGrid .col-10,
.row.sGrid .col-11,
.row.sGrid .col-12,
.row.sGrid .col,
.row.sGrid .col-auto,
.row.sGrid .col-sm-1,
.row.sGrid .col-sm-2,
.row.sGrid .col-sm-3,
.row.sGrid .col-sm-4,
.row.sGrid .col-sm-5,
.row.sGrid .col-sm-6,
.row.sGrid .col-sm-7,
.row.sGrid .col-sm-8,
.row.sGrid .col-sm-9,
.row.sGrid .col-sm-10,
.row.sGrid .col-sm-11,
.row.sGrid .col-sm-12,
.row.sGrid .col-sm,
.row.sGrid .col-sm-auto,
.row.sGrid .col-md-1,
.row.sGrid .col-md-2,
.row.sGrid .col-md-3,
.row.sGrid .col-md-4,
.row.sGrid .col-md-5,
.row.sGrid .col-md-6,
.row.sGrid .col-md-7,
.row.sGrid .col-md-8,
.row.sGrid .col-md-9,
.row.sGrid .col-md-10,
.row.sGrid .col-md-11,
.row.sGrid .col-md-12,
.row.sGrid .col-md,
.row.sGrid .col-md-auto,
.row.sGrid .col-lg-1,
.row.sGrid .col-lg-2,
.row.sGrid .col-lg-3,
.row.sGrid .col-lg-4,
.row.sGrid .col-lg-5,
.row.sGrid .col-lg-6,
.row.sGrid .col-lg-7,
.row.sGrid .col-lg-8,
.row.sGrid .col-lg-9,
.row.sGrid .col-lg-10,
.row.sGrid .col-lg-11,
.row.sGrid .col-lg-12,
.row.sGrid .col-lg,
.row.sGrid .col-lg-auto,
.row.sGrid .col-xl-1,
.row.sGrid .col-xl-2,
.row.sGrid .col-xl-3,
.row.sGrid .col-xl-4,
.row.sGrid .col-xl-5,
.row.sGrid .col-xl-6,
.row.sGrid .col-xl-7,
.row.sGrid .col-xl-8,
.row.sGrid .col-xl-9,
.row.sGrid .col-xl-10,
.row.sGrid .col-xl-11,
.row.sGrid .col-xl-12,
.row.sGrid .col-xl,
.row.sGrid .col-xl-auto,
.row.sGrid .col-4k-1,
.row.sGrid .col-4k-2,
.row.sGrid .col-4k-3,
.row.sGrid .col-4k-4,
.row.sGrid .col-4k-5,
.row.sGrid .col-4k-6,
.row.sGrid .col-4k-7,
.row.sGrid .col-4k-8,
.row.sGrid .col-4k-9,
.row.sGrid .col-4k-10,
.row.sGrid .col-4k-11,
.row.sGrid .col-4k-12,
.row.sGrid .col-4k,
.row.sGrid .col-4k-auto {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.rowBottom {
  margin-top: 20px;
}

.font-weight-medium {
  font-weight: 600 !important;
}

.block-mw {
  max-width: 900px;
  margin: auto;
  margin-bottom: 145px;
}
@media (max-width: 991.98px) {
  .block-mw {
    margin-bottom: 90px;
  }
}
@media (max-width: 767.98px) {
  .block-mw {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .o-layout {
    padding-bottom: 40px;
  }
}
.o-layout main.wrapper {
  overflow: hidden;
}
@media (max-width: 1199.98px) {
  .o-layout main.wrapper {
    padding-top: 103px;
  }
}
@media (max-width: 991.98px) {
  .o-layout main.wrapper {
    padding-top: 85px;
  }
}
@media (max-width: 767.98px) {
  .o-layout main.wrapper {
    padding-top: 50px;
  }
}

.o-layout .slick-slider {
  margin-left: -10px;
  margin-right: -10px;
}
.o-layout .slick-slider .slick-dots li {
  width: 10px;
  height: 10px;
  background-color: #d3d3d3;
  border-radius: 100%;
}
.o-layout .slick-slider .slick-dots li.slick-active {
  background-color: #f49712;
}
.o-layout .slick-slider .slick-dots li button {
  width: 100%;
  height: 100%;
}
.o-layout .slick-slider .slick-dots li button:before {
  display: none;
}
.o-layout .slick-slider .slick-list {
  padding-bottom: 20px;
}
.o-layout .slick-slider .slick-list .slick-slide {
  padding: 0 10px;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow) {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #f49712;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  top: 35%;
  position: absolute;
  right: 10px;
  left: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow):before {
  display: none;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow):after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 19px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: 0.2s ease;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-prev {
  left: 20px;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-prev:after {
  left: 22px;
  transform: rotate(135deg);
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-next {
  right: 20px;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-next:after {
  left: 18px;
  transform: rotate(-45deg);
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-disabled {
  background-color: #ffffff;
  cursor: not-allowed;
}
.o-layout .slick-slider .slick-arrow:not(.t-customerComments_slider_arrow).slick-disabled:after {
  border-color: #212529;
}
.o-layout .categoryTag {
  padding: 25px 0 10px;
}
@media (max-width: 991.98px) {
  .o-layout .categoryTag {
    padding: 10px 0 0;
  }
}
.o-layout .categoryTag span {
  color: #f49712;
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .o-layout .categoryTag span {
    font-size: 14px;
  }
}
.o-layout .categoryTag span.tag {
  font-family: "Roboto-Medium";
}
.o-layout .categoryTag span:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 19px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: 0.2s ease;
}
.o-layout .categoryTag span.slick-prev {
  left: 20px;
}
.o-layout .categoryTag span.slick-prev:after {
  left: 22px;
  transform: rotate(135deg);
}
.o-layout .categoryTag span.slick-next {
  right: 20px;
}
.o-layout .categoryTag span.slick-next:after {
  left: 18px;
  transform: rotate(-45deg);
}

.m-tabsBar + .tab-content .tab-pane .category-tag span.tag {
  cursor: pointer;
}

.category-tag {
  padding: 25px 0 10px;
}
@media (max-width: 991.98px) {
  .category-tag {
    padding: 10px 0 0;
  }
}
.category-tag span {
  color: #f49712;
}
.category-tag span.tag {
  font-family: "Roboto-Medium";
}
@media (max-width: 767.98px) {
  .category-tag span.tag {
    font-size: 12px;
  }
}
.category-tag span.time {
  font-size: 14px;
}
@media (max-width: 767.98px) {
  .category-tag span.time {
    font-size: 10px;
  }
}

@media (max-width: 767.98px) {
  .zopim {
    right: 0 !important;
    bottom: 40px !important;
  }
}

@media (max-width: 767.98px) {
  .header__menu .accordion .card .card-header {
    background-color: #212529;
    z-index: 2;
  }
}
.header__menu .accordion .card .collapse {
  transition: all 0.3s;
  height: 0;
  visibility: hidden;
  transform: translateY(-90%);
}
.header__menu .accordion .card .collapse:not(.show) {
  display: block;
}
.header__menu .accordion .card .collapse .card-body {
  opacity: 1;
}
.header__menu .accordion .card .collapse .card-body .accordion .card-body li {
  opacity: 0.8;
}
.header__menu .accordion .card.show > .collapse {
  height: unset;
  visibility: visible;
  transform: translateY(0);
}

.o-navFixed {
  bottom: calc(10% + 175px);
  position: fixed;
  right: 0;
  transform: translateX(100%);
  transition: 0.4s;
  z-index: 100;
}
.o-navFixed.show {
  transform: translateX(0);
}
.o-navFixed.show .o-navFixed_interaction {
  display: none;
}
.o-navFixed:not(.show) .o-navFixed_tab_info {
  visibility: hidden !important;
  opacity: 0 !important;
}
@media (max-width: 991px) {
  .o-navFixed {
    display: none;
  }
}
.o-navFixed_tab {
  position: relative;
  margin-bottom: 8px;
}
.o-navFixed_tab.active .o-navFixed_tab_btn, .o-navFixed_tab:hover .o-navFixed_tab_btn {
  background-color: #f49712;
  color: #ffffff;
}
.o-navFixed_tab.active .o-navFixed_tab_info, .o-navFixed_tab:hover .o-navFixed_tab_info {
  opacity: 1;
  visibility: visible;
}
.o-navFixed_tab_btn {
  background-color: #FEF2CF;
  cursor: pointer;
  height: 2rem;
  padding: 0.5rem 0.75rem;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  font-weight: 700;
  font-size: 13.875px;
  line-height: 23px;
  display: flex;
  align-items: center;
  transition: 0.4s ease;
}
.o-navFixed_tab_info {
  background-color: #FEF2CF;
  border-radius: 4px;
  opacity: 0;
  padding: 0.375rem 1rem;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.25s linear;
  visibility: hidden;
  white-space: nowrap;
}
.o-navFixed_interaction {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(-100%);
  width: 2rem;
}

.o-productIntroHome {
  position: relative;
}
.o-productIntroHome:not(.o-productIntroHome-nonAbsolute):hover .layer:before {
  height: 160%;
}
.o-productIntroHome:not(.o-productIntroHome-nonAbsolute):hover .layer .layer__action {
  right: 30px;
}
@media (max-width: 767.98px) {
  .o-productIntroHome:not(.o-productIntroHome-nonAbsolute) .layer__action {
    right: auto;
    bottom: auto;
    left: 14px;
    top: -20px;
  }
}
.o-productIntroHome:not(.o-productIntroHome-nonAbsolute) .layer__text .description {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 767.98px) {
  .o-productIntroHome:not(.o-productIntroHome-nonAbsolute) .layer__text .description {
    -webkit-line-clamp: 3;
  }
}
.o-productIntroHome:not(.o-productIntroHome-nonAbsolute) .layer__text .description p {
  color: #ffffff;
  margin-bottom: 0;
  opacity: 0.8;
}
.o-productIntroHome-nonAbsolute {
  transition: 0.4s ease;
  background: #ffffff;
}
.o-productIntroHome-nonAbsolute:before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
  background-color: #f49712;
  transition: 0.4s ease;
}
@media (min-width: 1200px) {
  .o-productIntroHome-nonAbsolute:before {
    transform: scale(0);
  }
}
@media (min-width: 1200px) {
  .o-productIntroHome-nonAbsolute:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
  .o-productIntroHome-nonAbsolute:hover:before {
    transform: scale(1);
  }
  .o-productIntroHome-nonAbsolute:hover .imgPanel .a-imageRatio {
    transform: scale(1.2);
  }
}
@media (max-width: 1199.98px) {
  .o-productIntroHome-nonAbsolute {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  }
}
.o-productIntroHome-nonAbsolute .imgPanel {
  overflow: hidden;
}
.o-productIntroHome-nonAbsolute .imgPanel .a-imageRatio {
  transition: 0.4s ease;
}
.o-productIntroHome-nonAbsolute .layer {
  position: relative !important;
  background-image: none !important;
  padding: 20px 72px 20px 22px !important;
  background-color: #fafafa;
}
.o-productIntroHome-nonAbsolute .layer::before {
  display: none;
}
@media (max-width: 991.98px) {
  .o-productIntroHome-nonAbsolute .layer {
    padding: 14px 10px !important;
  }
}
.o-productIntroHome-nonAbsolute .layer__text {
  max-width: 320px !important;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .o-productIntroHome-nonAbsolute .layer__text {
    max-width: 296px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-productIntroHome-nonAbsolute .layer__text {
    max-width: 215px !important;
  }
}
@media (max-width: 991.98px) {
  .o-productIntroHome-nonAbsolute .layer__text {
    max-width: 236px !important;
  }
}
.o-productIntroHome-nonAbsolute .layer__text a {
  font-size: 16px;
  color: #5b5b5b !important;
}
.o-productIntroHome-nonAbsolute .layer__text a.name {
  color: #222b45 !important;
  font-size: 20px !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (min-width: 992px) {
  .o-productIntroHome-nonAbsolute .layer__text a.name {
    margin-bottom: 10px;
  }
}
.o-productIntroHome-nonAbsolute .layer__text a.name:hover {
  color: #f49712 !important;
}
.o-productIntroHome-nonAbsolute .layer__text .description * {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.o-productIntroHome-nonAbsolute .layer__action {
  right: 15px !important;
  bottom: auto !important;
  top: 50%;
  transform: translateY(-50%);
}
.o-productIntroHome-nonAbsolute .layer__action a.next {
  border-color: #f49712 !important;
  background: #ffffff;
}
.o-productIntroHome-nonAbsolute .layer__action a.next:hover {
  background: #f49712 !important;
}
.o-productIntroHome-nonAbsolute .layer__action a.next:hover:before {
  border-color: #ffffff !important;
}
.o-productIntroHome-nonAbsolute .layer__action a.next::before {
  border-color: #f49712 !important;
}
.o-productIntroHome-nonAbsolute .a-imageRatio {
  padding-bottom: 73.8636363636%;
}
@media (min-width: 992px) {
  .o-productIntroHome-single .a-imageRatio {
    padding-top: 49.2647058824%;
  }
}
.o-productIntroHome-single .layer__text {
  max-width: 100% !important;
}
@media (max-width: 991.98px) {
  .o-productIntroHome-single .layer__action {
    left: 40px;
    top: -30px;
    right: auto !important;
    bottom: auto !important;
  }
}
@media (max-width: 991.98px) and (max-width: 767.98px) {
  .o-productIntroHome-single .layer__action {
    left: 20px;
    top: -20px;
  }
}
@media (min-width: 992px) {
  .o-productIntroHome-triple .a-imageRatio {
    padding-top: 65.671641791%;
  }
}
.o-productIntroHome-triple .layer__action {
  left: 40px;
  top: -30px;
  right: auto !important;
  bottom: auto !important;
}
@media (max-width: 767.98px) {
  .o-productIntroHome-triple .layer__action {
    left: 20px;
    top: -20px;
  }
}
@media (min-width: 992px) {
  .o-productIntroHome-quadra .a-imageRatio {
    padding-top: 48.5074626866%;
  }
}
.o-productIntroHome-quadra .layer__action {
  left: 40px;
  top: -30px;
  right: auto !important;
  bottom: auto !important;
}
@media (max-width: 767.98px) {
  .o-productIntroHome-quadra .layer__action {
    left: 20px;
    top: -20px;
  }
}
.o-productIntroHome .layer {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  padding: 30px 40px;
}
.o-productIntroHome .layer:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  transition: 0.4s ease;
  background-image: linear-gradient(to top, #212529 12%, rgba(0, 0, 0, 0.82) 30%, rgba(33, 37, 41, 0) 94%);
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer {
    padding: 20px 14px;
  }
}
.o-productIntroHome .layer__text {
  max-width: 380px;
  position: relative;
  z-index: 5;
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__text .description p {
    font-size: 14px;
  }
}
.o-productIntroHome .layer__text a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  transition: 0.4s ease;
  outline: 0;
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__text a {
    font-size: 14px;
  }
}
.o-productIntroHome .layer__text a:not(.name) {
  opacity: 0.8;
  line-height: 1.5;
}
.o-productIntroHome .layer__text a.name {
  font-family: "Roboto-Bold";
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__text a.name {
    line-height: 1.31;
    margin-bottom: 5px;
  }
}
.o-productIntroHome .layer__text a.name h3 {
  font-size: 32px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__text a.name h3 {
    font-size: 16px;
  }
}
.o-productIntroHome .layer__text a h2,
.o-productIntroHome .layer__text a h3 {
  margin-bottom: 0;
}
.o-productIntroHome .layer__action {
  position: absolute;
  right: 40px;
  bottom: 30px;
  z-index: 5;
  transition: 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-productIntroHome .layer__action {
    right: 12px;
    bottom: 24px;
  }
}
.o-productIntroHome .layer__action a.next {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  border: solid 1px #ffffff;
  border-radius: 25px;
  transition: 0.4s ease;
  color: transparent;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-productIntroHome .layer__action a.next {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__action a.next {
    width: 35px;
    height: 35px;
  }
}
.o-productIntroHome .layer__action a.next:hover {
  background-color: #ffffff;
}
.o-productIntroHome .layer__action a.next:hover::before {
  border-right: 2px solid #212529;
  border-bottom: 2px solid #212529;
}
.o-productIntroHome .layer__action a.next::before {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transition: 0.4s ease;
  transform: rotate(-45deg);
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .o-productIntroHome .layer__action a.next::before {
    top: 10px;
    left: 9px;
    width: 7px;
    height: 7px;
  }
}
@media (max-width: 767.98px) {
  .o-productIntroHome .layer__action a.next::before {
    top: 11px;
    left: 11px;
  }
}

@media (min-width: 992px) {
  .o-sectionIntro-row {
    margin-left: 0;
    margin-right: 0;
  }
  .o-sectionIntro-row_reversed .o-sectionIntro-thumb {
    order: 1;
    padding-left: 25px;
    padding-right: 0;
  }
  .o-sectionIntro-row_reversed .o-sectionIntro-detail {
    order: 0;
    padding-right: 25px;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .o-sectionIntro-thumb {
    padding-right: 25px;
    padding-left: 0;
  }
}
.o-sectionIntro-thumbSmall {
  margin-bottom: 20px;
}
.o-sectionIntro-thumbSmall-item:first-of-type {
  padding-right: 10px;
}
.o-sectionIntro-thumbSmall-item:last-of-type {
  padding-left: 10px;
}
.o-sectionIntro-detail {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .o-sectionIntro-detail {
    padding-left: 25px;
    padding-right: 0;
    margin-top: 0;
  }
}
.o-sectionIntro-tag {
  font-size: 14px;
  text-transform: uppercase;
  color: #f58d00;
  font-weight: 600;
}
.o-sectionIntro-title {
  color: #212529;
  margin-top: 5px;
}
.o-sectionIntro-title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}
.o-sectionIntro-content {
  font-size: 16px;
  line-height: 1.5;
  color: #5b5b5b;
  margin-top: 15px;
}

.o-sectionRecord {
  position: relative;
  display: flex;
}
.o-sectionRecord-dotLine {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}
.o-sectionRecord-dotLine:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
  border: 1px solid #f58d00;
  border-radius: 100%;
}
.o-sectionRecord-dotLine:after {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  content: "";
  background: #f58d00;
  border-radius: 100%;
}
.o-sectionRecord-time {
  position: absolute;
  left: 30px;
  font-weight: 600;
  line-height: 20px;
  font-size: 18px;
  color: #f49712;
}
@media (min-width: 768px) {
  .o-sectionRecord-time {
    display: none;
  }
}
.o-sectionRecord_left {
  flex: 1;
  padding-left: 50px;
  text-align: left;
}
.o-sectionRecord-markTime {
  line-height: 0.8;
  font-size: 30px;
  font-weight: 600;
  color: #f49712;
  margin-bottom: 1.5625vw;
}
.o-sectionRecord-block {
  margin-top: 1.5625vw;
}
@media (max-width: 767.98px) {
  .o-sectionRecord-block {
    margin-top: 15px;
  }
}
.o-sectionRecord-block:first-of-type {
  margin-top: 0;
}
.o-sectionRecord-block p {
  color: #5b5b5b;
  margin-bottom: 14px;
}
@media (max-width: 767.98px) {
  .o-sectionRecord-block p {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.o-sectionRecord-block p strong {
  font-size: 18px;
  text-transform: uppercase;
  color: #222b45;
  font-weight: 600;
  display: inline-block;
}
@media (max-width: 767.98px) {
  .o-sectionRecord-block p strong {
    font-size: 14px;
  }
}
.o-sectionRecord-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #222b45;
  font-weight: 600;
  margin-bottom: 0;
}
.o-sectionRecord-content {
  margin-top: 10px;
}
.o-sectionRecord_right {
  flex: 1;
  padding-right: 50px;
  text-align: right;
}
@media (min-width: 768px) {
  .o-sectionRecord-reversed .o-sectionRecord_left {
    order: 0;
    padding-right: 50px;
    padding-left: 0;
    text-align: right;
  }
  .o-sectionRecord-reversed .o-sectionRecord_right {
    order: 1;
    padding-left: 50px;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .o-sectionRecord {
    flex-direction: column;
  }
  .o-sectionRecord-dotLine {
    left: 10px;
  }
  .o-sectionRecord_left {
    padding: 0;
  }
  .o-sectionRecord_right {
    padding: 0;
    margin-top: 40px;
  }
  .o-sectionRecord-markTime {
    display: none;
  }
}

.o-table {
  position: relative;
}
@media (min-width: 768px) {
  .o-table .normal tbody tr td:first-child {
    font-size: 16px !important;
  }
}
.o-table-noLine table {
  text-align: center;
  width: 100%;
}
.o-table-noLine table thead th {
  border: none;
  font-size: 18px;
  color: #222b45;
  vertical-align: top;
}
@media (min-width: 768px) {
  .o-table-noLine table thead th {
    padding-bottom: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .o-table-noLine table thead th {
    vertical-align: top;
    font-size: 12px;
    padding: 0.5rem;
  }
}
.o-table-noLine table tbody tr:nth-child(even) {
  background-color: #fff;
}
.o-table-noLine table tbody tr td {
  border: none;
  color: #5b5b5b;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding: 0.75rem;
  vertical-align: top;
}
@media (min-width: 768px) {
  .o-table-noLine table tbody tr td {
    width: 25%;
  }
}
.o-table-noLine table tbody tr td p {
  margin: 0;
}
.o-table-noLine table tbody tr td:first-child {
  font-size: 18px;
  color: #222b45;
}
@media (max-width: 767.98px) {
  .o-table-noLine table tbody tr td:first-child {
    font-size: 10px;
    padding: 0.5rem;
  }
}
@media (max-width: 767.98px) {
  .o-table-noLine table tbody tr td {
    font-size: 10px;
  }
}
.o-table__title {
  font-size: 20px;
  font-family: "Roboto-Medium";
  text-transform: uppercase;
  color: #f49712;
  line-height: 1.5;
  padding: 0.75rem;
  margin-bottom: 0;
}
.o-table .wrapTable {
  transition: 0.4s ease;
}
.o-table .wrapTable:not(.split) {
  padding-bottom: 30px;
}
.o-table .wrapTable.split {
  max-height: 338px;
  overflow: hidden;
}
.o-table .wrapTable.split .coverLayer {
  opacity: 0.8;
  visibility: visible;
}
.o-table .coverLayer {
  position: absolute;
  bottom: 0;
  height: 100px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  background: linear-gradient(to top, #fafafa, transparent);
}
.o-table .viewMoreTable {
  position: absolute;
  z-index: 2;
  left: 46%;
  bottom: 0;
  display: block;
  padding-right: 18px;
  font-size: 18px;
  color: #002855;
  text-decoration: none;
  text-transform: none;
  transition: 0.2s ease;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .o-table .viewMoreTable {
    font-size: 15px;
    left: 40%;
  }
}
.o-table .viewMoreTable.showing:before {
  transform: rotate(225deg);
  top: 12px;
}
.o-table .viewMoreTable:before {
  content: "";
  position: absolute;
  top: 7px;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid #002855;
  border-bottom: 2px solid #002855;
  transform: rotate(45deg);
  transition: 0.2s ease;
}

.compare-table {
  display: flex;
  margin-left: 20px;
  margin-right: 20px;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .compare-table {
    margin-top: 130px;
    margin-left: 0;
    margin-right: 0;
  }
}
.compare-table-label {
  color: #222b45;
  font-family: "Roboto-Medium";
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .compare-table-label {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .compare-table-label {
    font-size: 12px;
  }
}
.compare-table-product-title {
  font-size: 18px;
  font-family: "Roboto-Medium";
  color: #f49712;
}
@media (max-width: 991.98px) {
  .compare-table-product-title {
    font-size: 14px;
  }
}
.compare-table-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.compare-table-row-cell {
  position: relative;
  padding: 15px 20px;
  flex: 1 0 0;
  text-align: center;
}
@media (min-width: 1200px) {
  .compare-table-row-cell {
    min-width: 210px;
    max-width: 210px;
  }
}
@media (min-width: 992px) {
  .compare-table-row-cell {
    border-right: 0;
    border-bottom: 1px solid #d3d3d3;
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .compare-table-row-cell {
    padding: 5px;
  }
}
.compare-table-row-cell:first-child {
  position: sticky;
  top: 58px;
  z-index: 1;
  padding-left: 0;
  text-align: center;
  border: 0;
  flex: 1 1 100%;
}
@media (min-width: 1200px) {
  .compare-table-row-cell:first-child {
    min-width: 440px;
    max-width: 440px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .compare-table-row-cell:first-child {
    min-width: 340px;
    max-width: 340px;
  }
}
@media (min-width: 992px) {
  .compare-table-row-cell:first-child {
    position: static;
    text-align: left;
    border-bottom: 1px solid #d3d3d3;
    background-color: #ffffff;
    flex: 1 0 0;
  }
}
@media (max-width: 991.98px) {
  .compare-table-row-cell:first-child {
    background-color: #d3d3d3;
  }
}
.compare-table-row-cell--header {
  display: none;
}
@media (min-width: 992px) {
  .compare-table-row-cell--header {
    display: block;
  }
}
.compare-table-row-cell .a-img {
  width: 104px;
  margin: auto;
}
.compare-table-row-cell .a-img:after {
  padding-top: 144.2307692308%;
}
@media (max-width: 991.98px) {
  .compare-table-row-cell .a-img {
    width: 60px;
  }
}
@media (min-width: 992px) {
  .compare-table-row-cell .a-img {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
  }
}
.compare-table-row--header-cell {
  text-align: center;
}
@media (max-width: 991.98px) {
  .compare-table-row--body-cell:not(:last-child) {
    border-right: 1px solid #d3d3d3;
  }
}
.compare-table .entry-content p {
  color: #5b5b5b;
  margin-bottom: 0;
}
.compare-table .entry-content p:not(:first-child) {
  margin-top: 1rem;
}
@media (max-width: 991.98px) {
  .compare-table .entry-content p {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .compare-table .entry-content p {
    font-size: 9px;
  }
}

.o-utilitiesCard {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .o-utilitiesCard-reverse .o-utilitiesCard_item:nth-child(1) {
    order: 2;
  }
  .o-utilitiesCard-reverse .o-utilitiesCard_item:nth-child(2) {
    order: 1;
  }
}
.o-utilitiesCard-secondary .o-utilitiesCard_content_title::before {
  display: none;
}
.o-utilitiesCard-secondary .o-utilitiesCard_content_title .a-heading {
  text-align: left;
}
@media (min-width: 1200px) {
  .o-utilitiesCard-secondary .o-utilitiesCard_content_title .a-heading {
    font-size: 32px;
    line-height: 45px;
  }
}
.o-utilitiesCard-secondary .o-utilitiesCard_content_desc {
  text-align: left;
  margin-top: 12px;
}
.o-utilitiesCard_item {
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .o-utilitiesCard_item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.o-utilitiesCard_thumbnail {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #fafafa;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.o-utilitiesCard_content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px;
}
@media (min-width: 992px) {
  .o-utilitiesCard_content {
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 428px;
  }
}
@media (max-width: 767px) {
  .o-utilitiesCard_content {
    padding: 22px 14px;
  }
}
.o-utilitiesCard_content_title {
  position: relative;
}
.o-utilitiesCard_content_title::before {
  content: "";
  position: absolute;
  bottom: -14px;
  width: 200px;
  left: 50%;
  height: 6px;
  background-color: #f49712;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .o-utilitiesCard_content_title::before {
    width: 156px;
    bottom: -8px;
  }
}
.o-utilitiesCard_content_desc {
  font-size: 16px;
  line-height: 24px;
  color: #5b5b5b;
  margin-top: 46px;
  overflow: auto;
  max-height: 230px;
}
.o-utilitiesCard_content_desc::-webkit-scrollbar {
  position: absolute;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.o-utilitiesCard_content_desc::-webkit-scrollbar-thumb {
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.5);
}
.o-utilitiesCard_content_desc::-webkit-scrollbar:vertical {
  width: 7px;
  -webkit-overflow-scrolling: auto;
}
.o-utilitiesCard_content_desc:hover::-webkit-scrollbar-thumb {
  visibility: visible;
}
@media (max-width: 1199px) {
  .o-utilitiesCard_content_desc {
    margin-top: 32px;
    font-size: 14px;
    line-height: 24px;
    max-height: 110px;
  }
}
.o-utilitiesCard_content_desc p {
  margin: 0;
}
.o-utilitiesCard_content_button {
  margin-top: 26px;
  text-align: left;
}
.o-utilitiesCard_video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.o-utilitiesCard_video .m-video {
  height: 100%;
}

.t-backgroundThumbnail {
  position: relative;
}
.t-backgroundThumbnail .container-full {
  position: relative;
}
.t-backgroundThumbnail-blur .t-backgroundThumbnail_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to left, rgba(235, 236, 237, 0.3), rgba(235, 236, 237, 0.88), #ebeced, #ebeced, #ebeced, #ebeced);
}
.t-backgroundThumbnail-darkOpacity .t-backgroundThumbnail_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(270deg, #1D1D1D 0%, rgba(33, 37, 41, 0) 87.25%, rgba(33, 37, 41, 0) 87.25%);
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail-flex .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 70%;
  }
}
@media (max-width: 991px) {
  .t-backgroundThumbnail-flex .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 147%;
  }
}
.t-backgroundThumbnail-noBg {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 1200px) {
  .t-backgroundThumbnail-noBg {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.t-backgroundThumbnail-noBg .t-backgroundThumbnail_content {
  position: static;
  transform: unset;
  top: unset;
  left: unset;
  right: unset;
}
.t-backgroundThumbnail_background {
  position: relative;
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .t-backgroundThumbnail_background .a-imageRatio-1920x768 {
    padding-bottom: 55%;
  }
}
@media (min-width: 1200px) and (max-width: 1540px) {
  .t-backgroundThumbnail_background .a-imageRatio-1920x546 {
    padding-bottom: 37.4375%;
  }
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_background .a-imageRatio-1366x768 {
    padding-bottom: 80% !important;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_background .a-imageRatio {
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 53%;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 208%;
  }
}
.t-backgroundThumbnail-widePadding .t-backgroundThumbnail_panel {
  padding: 95px 40px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail-widePadding .t-backgroundThumbnail_panel {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail-widePadding .t-backgroundThumbnail_panel {
    padding: 24px;
  }
}
.t-backgroundThumbnail_image {
  max-width: 575px;
  margin: auto;
  padding: 22px;
  background-color: #ffffff;
}
.t-backgroundThumbnail_image-noPadding {
  padding: 0 !important;
}
.t-backgroundThumbnail_image-mw460 {
  max-width: 460px !important;
}
.t-backgroundThumbnail_image-mw785 {
  max-width: 785px !important;
}
@media (min-width: 1200px) {
  .t-backgroundThumbnail_image-alignLeft {
    margin-left: 0;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .t-backgroundThumbnail_image-alignRight {
    margin-right: 0;
    margin-left: auto;
  }
}
@media (min-width: 1200px) and (max-width: 1920px) {
  .t-backgroundThumbnail_image {
    max-width: 28.125vw;
  }
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_image {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_image {
    padding: 8px;
    max-width: 285px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-backgroundThumbnail-mw467 .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 96%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-backgroundThumbnail-mw647 .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 121%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-backgroundThumbnail-mw558 .t-backgroundThumbnail_background .a-imageRatio {
    padding-bottom: 114%;
  }
}
.t-backgroundThumbnail_img {
  max-width: 575px;
  margin-right: 0;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_img {
    max-width: 365px;
  }
}
@media (max-width: 991px) {
  .t-backgroundThumbnail_img {
    max-width: 100%;
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_img {
    margin-top: 40px;
  }
}
.t-backgroundThumbnail_content {
  position: relative;
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .t-backgroundThumbnail_content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-50%);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-backgroundThumbnail_content {
    left: 15px;
    right: 15px;
  }
}
.t-backgroundThumbnail_flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .t-backgroundThumbnail_flex.deviated .t-backgroundThumbnail_flex_item {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .t-backgroundThumbnail_flex.deviated .t-backgroundThumbnail_flex_item:first-child {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 991px) {
  .t-backgroundThumbnail_flex.reverse {
    flex-direction: column-reverse;
  }
}
.t-backgroundThumbnail_flex_item {
  width: 100%;
}
@media (min-width: 992px) {
  .t-backgroundThumbnail_flex_item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_panel {
    padding: 20px;
  }
}
.t-backgroundThumbnail_panel:not(.t-backgroundThumbnail_panel-noBg) {
  padding: 65px 40px;
  background-color: #ffffff;
  max-width: 60%;
  margin-left: auto;
  margin-right: 0;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel:not(.t-backgroundThumbnail_panel-noBg) {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_panel:not(.t-backgroundThumbnail_panel-noBg) {
    padding: 83px 32px;
  }
}
@media (min-width: 1366px) {
  .t-backgroundThumbnail_panel-alignLeft {
    margin-left: 0 !important;
  }
}
@media (min-width: 1366px) {
  .t-backgroundThumbnail_panel-alignRight {
    margin-right: 0 !important;
  }
}
.t-backgroundThumbnail_panel-mw900 {
  margin-right: 0;
  margin-left: auto;
  border: solid 1px #707070;
  max-width: 900px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel-mw900 {
    max-width: 680px;
  }
}
.t-backgroundThumbnail_panel-mw607 {
  max-width: 607px;
  margin: auto;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .t-backgroundThumbnail_panel-mw607 {
    max-width: 545px;
  }
}
.t-backgroundThumbnail_panel-mw759 {
  max-width: 759px;
  margin-right: 0;
  margin-left: auto;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .t-backgroundThumbnail_panel-mw759 {
    max-width: 607px;
  }
}
.t-backgroundThumbnail_panel-mw759 .a-text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 10;
  overflow: hidden;
  text-overflow: ellipsis;
}
.t-backgroundThumbnail_panel-mw467 {
  margin-right: 0;
  margin-left: auto;
  max-width: 547px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel-mw467 {
    max-width: 100%;
  }
}
.t-backgroundThumbnail_panel-mw467 p {
  font-size: 16px;
}
.t-backgroundThumbnail_panel-mw647 {
  margin-left: 115px;
  max-width: 647px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel-mw647 {
    max-width: 100%;
    margin-left: 0;
  }
}
.t-backgroundThumbnail_panel-mw647 p {
  font-size: 16px;
}
.t-backgroundThumbnail_panel-mw558 {
  margin-left: 0;
  margin-right: auto;
  max-width: 547px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel-mw558 {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_panel-mw558 {
    padding: 25px 20px;
  }
}
.t-backgroundThumbnail_panel-mw558 p {
  font-size: 16px;
}
.t-backgroundThumbnail_panel_title {
  margin-bottom: 20px;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .t-backgroundThumbnail_panel_title .a-heading {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_panel_title .a-heading {
    font-size: 18px;
  }
}
.t-backgroundThumbnail_panel_logo {
  max-width: 325px;
}
@media (max-width: 1199px) {
  .t-backgroundThumbnail_panel_logo {
    max-width: 250px;
  }
}
@media (max-width: 991px) {
  .t-backgroundThumbnail_panel_logo {
    max-width: 170px;
  }
}
.t-backgroundThumbnail_panel_logo img {
  width: 100%;
}
.t-backgroundThumbnail_panel p:not(.a-text) {
  color: #5b5b5b;
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_panel p:not(.a-text) {
    font-size: 14px;
  }
}
.t-backgroundThumbnail_grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -40px;
}
.t-backgroundThumbnail_grid_item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  width: 100%;
}
@media (min-width: 768px) {
  .t-backgroundThumbnail_grid_item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.t-backgroundThumbnail_grid_item:hover .icon img {
  animation: heartBeat 1.5s infinite !important;
}
.t-backgroundThumbnail_grid_item p:not(.a-text) {
  font-size: 16px;
  color: #f58d00;
  margin-bottom: 0;
  margin-left: 24px;
  flex: 1 0 0;
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_grid_item p:not(.a-text) {
    margin-left: 18px;
  }
}
.t-backgroundThumbnail_grid_item .icon {
  width: 50px;
  height: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .t-backgroundThumbnail_grid_item .icon {
    width: 37px;
    height: 37px;
  }
}
.t-backgroundThumbnail_grid_item .icon::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  width: 1px;
  background-color: #f49712;
}
.t-backgroundThumbnail_grid_item .icon img {
  width: 100%;
  height: 100%;
}

.t-banner {
  position: relative;
}
.t-banner_slider {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.t-banner_slider_item .a-imageRatio {
  padding-bottom: 34.222548% !important;
}
.t-banner_slider .slick-list {
  padding-bottom: 0 !important;
}
.t-banner_slider .slick-dots {
  bottom: 30px;
}
@media (max-width: 767px) {
  .t-banner_slider .slick-dots {
    bottom: 16px;
  }
}
.t-banner_slider .slick-dots li {
  background-color: transparent !important;
}
.t-banner_slider .slick-active .slick-banner-dot {
  background-color: #f49712;
}
.t-banner_slider .slick-banner-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #D9D9D9;
}
@media (max-width: 767px) {
  .t-banner_slider .slick-banner-dot {
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 768px) {
  .t-banner_absolute {
    top: 50%;
    transform: translateY(-50%);
    max-width: 734px;
    left: 0;
    position: absolute;
  }
}
@media (max-width: 767px) {
  .t-banner_absolute {
    background-color: #fafafa;
    margin-top: -8px;
  }
}
@media (max-width: 1400px) {
  .t-banner_absolute {
    max-width: 725px;
  }
}
@media (max-width: 991px) {
  .t-banner_absolute {
    max-width: rem(525);
  }
}
.t-banner_content {
  background: rgba(1, 1, 1, 0.5);
  z-index: 1;
  padding: 40px 90px;
}
@media (max-width: 991px) {
  .t-banner_content {
    padding: 30px 76px;
  }
}
@media (max-width: 767px) {
  .t-banner_content {
    padding: 15px;
    background: transparent;
  }
}
.t-banner_content_tag {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 28px;
  line-height: 38px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .t-banner_content_tag {
    font-size: 18px;
    line-height: 27px;
    color: #212529;
  }
}
.t-banner_content_title {
  font-family: "Roboto-Bold";
  font-size: 32px;
  line-height: 48px;
  margin-top: 25px;
  letter-spacing: 0.0015em;
  color: #ffffff;
  margin-bottom: 0;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .t-banner_content_title {
    margin-top: 16px;
    font-size: 28px;
    line-height: 38px;
    color: #212529;
  }
}
.t-banner_contact {
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none !important;
  position: fixed;
  left: 15px;
  z-index: 9;
  bottom: 15px;
  z-index: 10;
}
@media (max-width: 991px) {
  .t-banner_contact {
    left: unset;
    bottom: 42%;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .t-banner_contact {
    bottom: 24%;
  }
}
.t-banner_contact_icon {
  width: 64px;
  height: 64px;
  background-color: #f49712;
  border-radius: 50%;
  align-items: center;
  display: flex;
  justify-content: center;
}
.t-banner_contact_icon .a-icon {
  animation: coccoc-alo-circle-img-anim 1s infinite ease-in-out;
}
@media (max-width: 767px) {
  .t-banner_contact_icon .a-icon {
    width: 30px;
    height: 30px;
  }
}
.t-banner_contact_phone {
  padding: 10px 22px;
  background: #FEF2CF;
  border-radius: 50px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.0015em;
  color: #595959;
  margin-left: 12px;
  text-decoration: none !important;
  transition: 0.4s ease;
}
@media (max-width: 991px) {
  .t-banner_contact_phone {
    display: none;
  }
}
.t-banner_contact_phone span {
  display: block;
}
@media (max-width: 767px) {
  .t-banner_contact_phone {
    padding: 7px 18px;
    font-size: 14px;
    line-height: 20px;
  }
}
.t-banner_zalo {
  position: fixed;
  bottom: 146px;
  right: 15px;
  width: 64px;
  height: 64px;
  cursor: pointer;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 991px) {
  .t-banner_zalo {
    bottom: 35%;
  }
}
@media (max-width: 767px) {
  .t-banner_zalo {
    bottom: 15%;
  }
}
.t-banner_zalo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 50%;
  background-color: rgba(28, 173, 210, 0.5);
  opacity: 0;
  z-index: -1;
  animation: sonarWave 1.5s linear infinite;
}
.t-banner_zalo:hover .desc {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  right: calc(100% - 20px);
  max-width: unset;
}
.t-banner_zalo a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.t-banner_zalo .desc {
  position: absolute;
  top: 16px;
  border-radius: 15px;
  right: 8px;
  white-space: nowrap;
  width: 110px;
  padding: 8px 12px;
  background-color: #ffffff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: #212529;
  font-size: 14px;
  line-height: 18px;
  transition: 0.4s ease;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
}
@media (max-width: 991px) {
  .t-banner_zalo .desc {
    display: none;
  }
}
.t-banner_zalo img {
  width: 100%;
  position: relative;
  z-index: 2;
}

.t-contact {
  background-color: #f49712;
  padding-top: 32px;
  padding-bottom: 60px;
}
.t-contact h2 {
  margin-bottom: 0;
}
.t-contact .block__content__text--sub {
  margin-top: 10px;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .t-contact .block__content__text--sub {
    margin-bottom: 25px;
  }
}
.t-contact .a-heading,
.t-contact .block__content__text--sub {
  color: #ffffff;
}
.t-contact .form-style {
  max-width: 670px;
  margin: auto;
}
@media (min-width: 992px) {
  .t-contact .form-line.hasButton .btn-custom {
    width: 270px !important;
  }
}
.t-contact .form-input {
  border-radius: 0;
}

.t-customerComments {
  max-width: 950px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .t-customerComments {
    padding-top: 10px;
    padding-bottom: 30px;
  }
}
.t-customerComments_slider_next {
  right: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background: transparent url(data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M4.63037%2016.0737L25.0139%2016.0737M16.0957%207.15601L25.0135%2016.0738%2016.0957%2024.9916%22%20stroke%3D%22%238C8C8C%22%20stroke-width%3D%222.548%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E) no-repeat center/100% auto;
}
.t-customerComments_slider_next::after {
  display: none;
}
@media (max-width: 767px) {
  .t-customerComments_slider_next {
    right: -20px;
  }
}
.t-customerComments_slider_prev {
  left: 30px;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
  background: transparent url(data:image/svg+xml,%3Csvg%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M27.5615%2016.0737L7.17796%2016.0737M16.0957%207.15601L7.17789%2016.0738%2016.0957%2024.9916%22%20stroke%3D%22%238C8C8C%22%20stroke-width%3D%222.548%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E) no-repeat center/100% auto;
}
.t-customerComments_slider_prev::after {
  display: none;
}
@media (max-width: 767px) {
  .t-customerComments_slider_prev {
    left: -20px;
  }
}
.t-customerComments_slider .slick-list {
  padding-bottom: 0 !important;
}
.t-customerComments_wrap {
  border: 2.54795px solid #f49712;
  border-radius: 40px;
  padding: 40px 127px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .t-customerComments_wrap {
    padding: 24px 40px;
  }
}
.t-customerComments_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 133px;
  height: 438px;
  background: transparent url(/assets/src/assets/images/landingpage/bg-comments-left.png) no-repeat center/100% auto;
}
@media (max-width: 767px) {
  .t-customerComments_wrap::before {
    display: none;
  }
}
.t-customerComments_wrap::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 133px;
  height: 438px;
  background: transparent url(/assets/src/assets/images/landingpage/bg-comments-right.png) no-repeat center/100% auto;
}
@media (max-width: 767px) {
  .t-customerComments_wrap::after {
    display: none;
  }
}
.t-customerComments_people {
  display: flex;
  align-items: center;
  max-width: 263px;
  margin: 0 auto 40px;
}
@media (max-width: 767px) {
  .t-customerComments_people {
    margin-bottom: 20px;
  }
}
.t-customerComments_people_avatar {
  flex: 0 0 100px;
  border-radius: 50%;
  overflow: hidden;
}
.t-customerComments_people_info {
  flex: 1 0 0;
  padding-left: 32px;
}
.t-customerComments_content {
  max-height: 120px;
  overflow: auto;
}
.t-customerComments_content ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.t-customerComments_content ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #f49712;
  -webkit-box-shadow: 0 0 1px #f49712;
}
.t-customerComments_content ::-webkit-scrollbar-track {
  background: #d3d3d3;
}

.t-evaluateAndComments {
  padding: 3.3854166667vw 0;
}
.t-evaluateAndComments_generalRating, .t-evaluateAndComments_evaluateForm {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-evaluateAndComments_generalRating {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
}
.t-evaluateAndComments_generalRating_stars {
  margin: 8px 0;
  display: flex;
}
.t-evaluateAndComments_generalRating_stars .a-icon {
  margin: 0 4px;
}
.t-evaluateAndComments_evaluateForm {
  margin-top: 16px;
}
.t-evaluateAndComments_evaluateForm > div {
  width: 100%;
}
.t-evaluateAndComments form {
  width: 100%;
  margin: 16px 0;
}

@media (min-width: 576px) {
  .t-evaluateModal .modal-dialog {
    max-width: 700px;
    width: 100%;
    margin: auto;
  }
}
.t-evaluateModal .modal-content {
  background-color: #ffffff;
}
.t-evaluateModal_form {
  display: flex;
  flex-wrap: wrap;
  margin: 8px -8px;
}
.t-evaluateModal_field {
  position: relative;
  flex-basis: 50%;
  padding: 8px;
}
@media (max-width: 767px) {
  .t-evaluateModal_field {
    flex-basis: 100%;
  }
}
.t-evaluateModal_field > label {
  width: 100%;
  font-weight: 600;
}
.t-evaluateModal_field.fullWidth {
  flex-basis: 100%;
}
.t-evaluateModal_ratingForm {
  margin-top: 16px;
}
.t-evaluateModal_ratingForm_wrapper {
  display: flex;
  max-width: 15%;
  margin-top: 8px;
  margin-right: auto;
}
.t-evaluateModal_ratingForm_star {
  flex-basis: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.t-evaluateModal_ratingForm_star .icon {
  cursor: pointer;
}
.t-evaluateModal_submit {
  max-width: 250px;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
.t-evaluateModal_submit button {
  width: 100%;
}

.t-commentList {
  margin-top: 16px;
}
.t-commentList_commentCard_ratingStars, .t-commentList_commentCard_content, .t-commentList_commentCard_avatar, .t-commentList_commentCard_info, .t-commentList_commentCard_infoWrapper, .t-commentList_replyCard_ratingStars, .t-commentList_replyCard_content, .t-commentList_replyCard_avatar, .t-commentList_replyCard_info, .t-commentList_replyCard_infoWrapper {
  display: flex;
}
.t-commentList_commentCard:not(:first-child), .t-commentList_replyCard:not(:first-child) {
  margin-top: 8px;
}
.t-commentList_commentCard_infoWrapper, .t-commentList_replyCard_infoWrapper {
  justify-content: space-between;
}
.t-commentList_commentCard_avatar, .t-commentList_replyCard_avatar {
  width: 25px;
  height: 25px;
  background-color: #e6e6e6;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
}
.t-commentList_commentCard_name, .t-commentList_replyCard_name {
  margin-left: 8px;
}
.t-commentList_commentCard_contentWrapper, .t-commentList_replyCard_contentWrapper {
  margin: 8px 0 8px 40px;
  background-color: #e6e6e6;
  border-radius: 6px;
}
.t-commentList_commentCard_ratingStars, .t-commentList_replyCard_ratingStars {
  justify-content: flex-start;
  align-items: center;
}
.t-commentList_commentCard_replyBtn, .t-commentList_replyCard_replyBtn {
  width: fit-content;
  margin-left: auto;
}
.t-commentList_commentCard_replyBtn button, .t-commentList_replyCard_replyBtn button {
  outline: none;
  border: 0;
  background-color: transparent;
  color: #f58d00;
}
.t-commentList_commentCard_replyForm, .t-commentList_replyCard_replyForm {
  margin-left: 40px;
}
.t-commentList_commentCard_replyForm, .t-commentList_replyCard_replyForm {
  display: none;
}
.t-commentList_commentCard_replyForm.opened, .t-commentList_replyCard_replyForm.opened {
  display: block;
}
.t-commentList_commentCard_replyForm form, .t-commentList_replyCard_replyForm form {
  width: 100%;
}
.t-commentList_commentCard_replyForm form textarea, .t-commentList_replyCard_replyForm form textarea {
  width: 100%;
  padding: 10px;
  outline: 0;
  resize: none;
  border-radius: 6px;
}
.t-commentList_commentCard_replyForm_wrapBtn, .t-commentList_replyCard_replyForm_wrapBtn {
  display: flex;
  width: fit-content;
  margin-left: auto;
}
.t-commentList_commentCard_replyForm_submit, .t-commentList_commentCard_replyForm_cancel, .t-commentList_replyCard_replyForm_submit, .t-commentList_replyCard_replyForm_cancel {
  width: fit-content;
}
.t-commentList_commentCard_replyForm_cancel, .t-commentList_replyCard_replyForm_cancel {
  margin-left: 8px;
}
.t-commentList_commentCard_contentWrapper {
  padding: 8px;
}
.t-commentList_replyCard {
  margin-left: 40px;
}
.t-commentList_replyCard_contentWrapper {
  padding: 16px;
}
.t-commentList_seeMore {
  max-width: 250px;
  margin: auto;
}
.t-commentList_seeMore button {
  width: 100%;
}

.t-thanksModal .modal-body {
  padding: 32px;
}
.t-thanksModal_body_check {
  text-align: center;
}
.t-thanksModal_body_close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: fit-content;
  cursor: pointer;
}

.hovered .icon,
.selected .icon {
  filter: invert(96%) sepia(44%) saturate(4321%) hue-rotate(322deg) brightness(98%) contrast(105%);
}

.t-gridContent {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}
.t-gridContent_grid {
  width: 100%;
  height: 100%;
}
.t-gridContent_grid iframe {
  height: 575px;
}
@media (max-width: 767px) {
  .t-gridContent_grid iframe {
    height: 425px;
  }
}
.t-gridContent_image {
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
@media (min-width: 1200px) {
  .t-gridContent_image {
    flex: 0 0 65%;
    max-width: 65%;
  }
}
.t-gridContent_content {
  margin-top: 24px;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
@media (min-width: 1200px) {
  .t-gridContent_content {
    flex: 0 0 35%;
    max-width: 35%;
    margin-top: 0;
  }
}
.t-gridContent_text, .t-gridContent_button {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .t-gridContent_text, .t-gridContent_button {
    margin-top: 12px;
  }
}
.t-gridContent_icon {
  display: flex;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .t-gridContent_icon {
    margin-top: 10px;
  }
}
.t-gridContent_icon .a-icon {
  flex: 0 0 40px;
  max-width: 40px;
}
.t-gridContent_icon .a-text {
  flex: 1 0 0;
  padding-left: 16px;
}

.t-introductionList_item {
  padding: 107px 0;
}
@media (max-width: 991px) {
  .t-introductionList_item {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.t-map {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .t-map {
    display: flex;
  }
}
.t-map_content {
  padding: 40px;
  background-color: #fafafa;
}
@media (max-width: 1199px) {
  .t-map_content {
    padding: 30px 20px;
  }
}
@media (min-width: 768px) {
  .t-map_content {
    flex: 0 0 35%;
  }
}
.t-map_content_empty {
  text-align: center;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 375px;
}
@media (min-width: 1200px) {
  .t-map_content_empty {
    min-height: 576px;
  }
}
@media (max-width: 575px) {
  .t-map_content_empty {
    min-height: 235px;
  }
}
.t-map_content_empty strong {
  opacity: 0.35;
  font-size: 20px;
  font-weight: 500;
  line-height: 2.1;
  color: #212529;
}
@media (max-width: 1199px) {
  .t-map_content_empty strong {
    font-size: 16px;
    line-height: 1.2;
  }
}
.t-map_content_empty p {
  opacity: 0.35;
  font-size: 16px;
  line-height: 1.69;
  color: #5b5b5b;
}
@media (min-width: 768px) {
  .t-map_map {
    flex: 1 0 0;
  }
}
.t-map_map > div {
  height: 100%;
}
@media (max-width: 767px) {
  .t-map_map {
    height: 515px;
  }
}
.t-map_info {
  margin-top: 32px;
}
.t-map_info ::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.t-map_info ::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #f49712;
  -webkit-box-shadow: 0 0 1px #f49712;
}
.t-map_info ::-webkit-scrollbar-track {
  background: #d3d3d3;
}
@media (max-width: 1199px) {
  .t-map_info {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .t-map_info {
    margin-top: 14px;
  }
}
.t-map_info_title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #f49712;
}
.t-map_info_list {
  margin-top: 24px;
  height: 572px;
  overflow: auto;
  padding-right: 5px;
}
@media (max-width: 1199px) {
  .t-map_info_list {
    margin-top: 18px;
  }
}
@media (max-width: 767px) {
  .t-map_info_list {
    margin-top: 12px;
    height: 471px;
  }
}
.t-map_info_list_item {
  background-color: #ffffff;
  padding: 17px 20px;
  border: solid 1.5px #d3d3d3;
  cursor: pointer;
}
@media (max-width: 767px) {
  .t-map_info_list_item {
    padding: 14px 16px;
  }
}
.t-map_info_list_item.active {
  border: solid 1.5px #f49712;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.t-map_info_list_item.active .branch {
  color: #f49712;
}
.t-map_info_list_item .branch {
  color: #212529;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 991px) {
  .t-map_info_list_item .branch {
    font-size: 17px;
  }
}
.t-map_info_list_item:not(:first-child) {
  margin-top: 15px;
}
.t-map_info_list_item p {
  font-size: 16px;
  line-height: 1.5;
  color: #5b5b5b;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .t-map_info_list_item p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .t-map_info_list_item p {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .t-news_slider .slick-arrow {
    top: 47% !important;
  }
}
@media (max-width: 767.98px) {
  .t-news_slider .slick-list {
    padding-bottom: 10px !important;
  }
}
.t-news_more {
  text-align: center;
  margin-top: 50px;
}
.t-news_more button {
  width: 325px;
}

.t-newsGrid_grid {
  grid-column-gap: 20px;
  column-gap: 20px;
  display: grid;
  padding-top: 20px;
  grid-row-gap: 20px;
  row-gap: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .t-newsGrid_grid {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .t-newsGrid_grid {
    padding-top: 4px;
  }
}
@media (min-width: 1200px) {
  .t-newsGrid_grid_item:first-child {
    grid-row-end: 3;
    grid-row-start: 1;
  }
}
.t-newsGrid_button {
  margin-top: 30px;
  text-align: center;
}

.t-pillars_content {
  color: #5b5b5b;
}
.t-pillars_content h3 {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .t-pillars_content h3 {
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .t-pillars_content h3 {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .t-pillars_content p {
    font-size: 14px;
  }
}
.t-pillars_block:not(:first-child) {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .t-pillars_block:not(:first-child) .row {
    flex-direction: column-reverse;
  }
}
.t-pillars_thumbnail {
  margin: auto;
}
.t-pillars_thumbnail.vertical {
  max-width: 400px;
}
@media (max-width: 991px) {
  .t-pillars_thumbnail.vertical {
    max-width: 275px;
  }
}
.t-pillars_thumbnail.normal {
  max-width: 400px;
}
@media (max-width: 991px) {
  .t-pillars_thumbnail.normal {
    max-width: 306px;
  }
}
.t-pillars_thumbnail img {
  width: 100%;
}

.t-productCardSlider .slick-list {
  padding-bottom: 0 !important;
}
@media (min-width: 1500px) {
  .t-productCardSlider .slick-prev {
    left: -60px !important;
  }
}
@media (min-width: 1500px) {
  .t-productCardSlider .slick-next {
    right: -60px !important;
  }
}

.t-singleBanner {
  position: relative;
}
.t-singleBanner_video {
  position: relative;
  padding-bottom: 47.6388888889%;
  pointer-events: none;
}
@media (max-width: 767px) {
  .t-singleBanner_video {
    padding-bottom: 90.333333%;
  }
}
.t-singleBanner_video video,
.t-singleBanner_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dbdbdb;
}
.t-singleBanner_image {
  position: relative;
  z-index: 1;
}
.t-singleBanner_logo {
  max-width: 320px;
  margin: auto;
}
@media (max-width: 991px) {
  .t-singleBanner_logo {
    max-width: 260px;
  }
}
@media (max-width: 767px) {
  .t-singleBanner_logo {
    max-width: 132px;
  }
}
.t-singleBanner_text {
  width: 100%;
  max-width: 510px;
  margin: 70px auto 0;
}
@media (max-width: 991px) {
  .t-singleBanner_text {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .t-singleBanner_text {
    margin-top: 25px;
  }
}
.t-singleBanner_content {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 310px;
}

@media (max-width: 991px) {
  .t-sustainConfirm_item {
    margin-bottom: 20px;
  }
}
.t-sustainConfirm_title {
  display: flex;
}
.t-sustainConfirm_title .icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.t-sustainConfirm_title .icon img {
  width: 100%;
  height: 100%;
}
.t-sustainConfirm_title .a-heading {
  flex: 1 0 0;
}
.t-sustainConfirm_desc {
  margin-top: 15px;
}
.t-sustainConfirm_desc p {
  margin: 0;
  color: #212529;
}
@media (min-width: 992px) {
  .t-sustainConfirm .row .col-lg-4:first-child .t-sustainConfirm_title {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .t-sustainConfirm .row .col-lg-4:nth-child(2) .t-sustainConfirm_title {
    max-width: 337px;
  }
}

.t-voyagerSeries {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .t-voyagerSeries {
    padding-top: 40px;
  }
}
.t-voyagerSeries_link {
  font-family: "Roboto-Bold";
  font-size: 28px;
  line-height: 40px;
  position: relative;
  display: inline-block;
  text-decoration: none !important;
  transition: 0.4s ease;
  text-transform: uppercase;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .t-voyagerSeries_link {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .t-voyagerSeries_link {
    font-size: 24px;
  }
}
.t-voyagerSeries_link::before {
  content: "";
  position: absolute;
  top: 16px;
  right: -25px;
  border-bottom: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  transform: rotate(-45deg);
  width: 14px;
  height: 14px;
  transition: 0.4s ease;
}
.t-voyagerSeries_thumbnail {
  position: relative;
}
.t-voyagerSeries_thumbnail_img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.t-voyagerSeries_thumbnail_content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .t-voyagerSeries_thumbnail_content.right .t-voyagerSeries_thumbnail_thumb {
    position: absolute;
    width: 203px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  .t-voyagerSeries_thumbnail_content.left .t-voyagerSeries_thumbnail_thumb {
    flex: 0 0 203px;
    max-width: 203px;
  }
}
@media (min-width: 992px) {
  .t-voyagerSeries_thumbnail_content.left .t-voyagerSeries_thumbnail_info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    max-width: 306px;
  }
}
.t-voyagerSeries_thumbnail_content_wrap {
  width: 100%;
  position: relative;
}
@media (min-width: 992px) {
  .t-voyagerSeries_thumbnail_content_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.t-voyagerSeries_thumbnail_info {
  max-width: 401px;
}
.t-voyagerSeries_thumbnail_info p {
  margin-top: 16px;
  margin-bottom: 40px;
  font-family: "Roboto-Medium";
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  color: #ffffff;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .t-voyagerSeries_thumbnail_info p {
    font-size: 17px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .t-voyagerSeries_thumbnail_info p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .t-voyagerSeries_thumbnail_thumb {
    max-width: 340px;
    margin-top: 72px;
  }
}
@media (max-width: 767px) {
  .t-voyagerSeries_thumbnail_thumb {
    max-width: 187px;
  }
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_link {
  color: #ffffff;
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_link::before {
  border-color: #ffffff;
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_link:hover {
  color: #f49712;
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_link:hover::before {
  border-color: #f49712;
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_thumbnail_info p {
  color: #ffffff;
}
.t-voyagerSeries_thumbnail.dark .t-voyagerSeries_thumbnail_img::before {
  background: linear-gradient(to left, rgba(0, 0, 0, 0.84), rgba(255, 255, 255, 0));
}
@media (max-width: 991px) {
  .t-voyagerSeries_thumbnail.dark .t-voyagerSeries_thumbnail_img::before {
    background: linear-gradient(270deg, #212529 -36.28%, rgba(33, 37, 41, 0.6) 71.03%, rgba(40, 41, 42, 0.008) 142.39%);
  }
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_link {
  color: #212529;
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_link:hover {
  color: rgba(33, 37, 41, 0.7);
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_link:hover::before {
  border-color: rgba(33, 37, 41, 0.7);
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_link::before {
  border-color: #212529;
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_thumbnail_info p {
  color: #212529;
}
.t-voyagerSeries_thumbnail.light .t-voyagerSeries_thumbnail_img::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
}
@media (max-width: 991px) {
  .t-voyagerSeries_thumbnail.light .t-voyagerSeries_thumbnail_img::before {
    background: linear-gradient(270deg, #ffffff -36.28%, rgba(255, 255, 255, 0.6) 71.03%, rgba(255, 255, 255, 0.008) 142.39%);
  }
}
.t-voyagerSeries_sub {
  margin-top: 16px;
}
.t-voyagerSeries_double {
  background-repeat: no-repeat;
  position: relative;
  background-position: center;
  background-size: cover;
  padding: 50px 0;
}
@media (max-width: 991px) {
  .t-voyagerSeries_double {
    background-image: none !important;
  }
}
.t-voyagerSeries_double::before {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.t-voyagerSeries_double_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 32px;
}
.t-voyagerSeries_double_item {
  margin: auto;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .t-voyagerSeries_double_item {
    flex: 0 0 50%;
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .t-voyagerSeries_double_item:not(:first-child) {
    margin-top: 32px;
  }
}
.t-voyagerSeries_double_img {
  max-width: 320px;
  margin: auto;
}
.t-voyagerSeries_double_title {
  margin-top: 12px;
  font-family: "Roboto-Medium";
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  color: #212529;
}
.t-voyagerSeries_double_desc {
  margin-top: 10px;
  font-size: 18px;
  line-height: 24px;
  color: #212529;
}
@media (max-width: 991px) {
  .t-voyagerSeries_double_desc {
    font-size: 14px;
    margin-top: 8px;
  }
}
.t-voyagerSeries_double_button {
  max-width: 232px;
  margin: 24px auto 0;
}
@media (max-width: 991px) {
  .t-voyagerSeries_double_button {
    margin-top: 12px;
  }
}
.t-voyagerSeries_double .container {
  position: relative;
  z-index: 2;
}
.t-voyagerSeries .mt-50 {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .t-voyagerSeries .mt-50 {
    margin-top: 40px;
  }
}

@media (min-width: 992px) {
  .s-why {
    margin-top: 3.3854166667vw;
  }
}
.s-why .col-lg-7 .imgPanel {
  max-width: 650px;
}
@media (max-width: 991.98px) {
  .s-why .col-lg-7 .imgPanel {
    margin-bottom: 22px;
  }
}
@media (max-width: 991.98px) {
  .s-why .a-scrollThumb {
    left: 0;
  }
}
@media (max-width: 991.98px) {
  .s-why .m-scrollSection {
    padding-left: 35px;
  }
}
@media (min-width: 992px) {
  .s-why .m-scrollSection .card-body p {
    font-size: 18px;
  }
}

.t-cibesLiftCreator {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}
.t-cibesLiftCreator img {
  max-width: 100%;
}
.t-cibesLiftCreator .side-panel {
  background-color: #212529;
  transition: all 0.5s ease-in;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .side-panel {
    width: 345px;
  }
}
.t-cibesLiftCreator .side-panel-header {
  position: relative;
}
.t-cibesLiftCreator .side-panel-header_iconclose {
  position: absolute;
  top: 2px;
  right: 4px;
}
.t-cibesLiftCreator .side-panel-header_iconclose .m-iconButton {
  width: 24px;
  height: 24px;
}
.t-cibesLiftCreator .side-panel-title {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}
.t-cibesLiftCreator .side-panel-left {
  width: 100%;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .side-panel-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 17.96875vw;
  }
}
.t-cibesLiftCreator .side-panel-right, .t-cibesLiftCreator .side-panel-contact {
  width: 100%;
  padding: 16px;
  transform: translateX(calc(100% + 1px));
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .side-panel-right, .t-cibesLiftCreator .side-panel-contact {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 17.96875vw;
    z-index: 2;
  }
}
@media (max-width: 1199.98px) {
  .t-cibesLiftCreator .side-panel-right, .t-cibesLiftCreator .side-panel-contact {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    overflow: auto;
  }
}
@media (max-width: 1199.98px) {
  .t-cibesLiftCreator .side-panel-right, .t-cibesLiftCreator .side-panel-contact {
    top: 94px;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .side-panel-right, .t-cibesLiftCreator .side-panel-contact {
    top: 49px;
  }
}
.t-cibesLiftCreator .side-panel-right.active, .t-cibesLiftCreator .side-panel-contact.active {
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .main-panel-review {
    width: calc(100% - 690px);
    margin: 0 auto;
  }
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .t-cibesLiftCreator .main-panel-review {
    width: calc(100% - 530px);
  }
}
@media (max-width: 1499.98px) {
  .t-cibesLiftCreator .main-panel-review img {
    object-fit: contain;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .main-panel-review {
    height: auto;
  }
}
.t-cibesLiftCreator .option-item {
  display: flex;
  padding: 10px;
  position: relative;
  cursor: pointer;
}
.t-cibesLiftCreator .option-item::before {
  content: "";
  position: absolute;
  width: 5px;
  background-color: #f49712;
  top: 0;
  right: 0;
  transition: 0.4s ease;
  height: 0;
}
.t-cibesLiftCreator .option-item.active::before {
  height: 100%;
}
.t-cibesLiftCreator .option-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #d3d3d3;
  left: 0;
  bottom: 0;
}
.t-cibesLiftCreator .option-item_img {
  flex: 0 0 70px;
}
.t-cibesLiftCreator .option-item_img img {
  width: 70px;
  height: 70px;
}
.t-cibesLiftCreator .option-item_text {
  padding-left: 15px;
}
.t-cibesLiftCreator .option-item_text_title {
  font-size: 18px;
  color: #ffffff;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .t-cibesLiftCreator .option-item_text_title {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .option-item_text_title {
    font-size: 16px;
  }
}
.t-cibesLiftCreator .option-item_text_value {
  font-size: 16px;
  color: #ffffff;
  opacity: 0.8;
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .option-item_text_value {
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .t-cibesLiftCreator .option-item_text_value {
    font-size: 14px;
  }
}
.t-cibesLiftCreator .value-list {
  display: none;
}
.t-cibesLiftCreator .value-list ::-webkit-scrollbar {
  position: absolute;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  -webkit-overflow-scrolling: auto;
}
.t-cibesLiftCreator .value-list ::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.5);
}
.t-cibesLiftCreator .value-list.active {
  display: block;
}
.t-cibesLiftCreator .value-list-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .value-list-container {
    overflow: auto;
    overflow-x: hidden;
  }
}
@media (min-width: 1580px) and (max-width: 1699px) {
  .t-cibesLiftCreator .value-list-container {
    max-height: 480px;
  }
}
@media (min-width: 1400px) and (max-width: 1579px) {
  .t-cibesLiftCreator .value-list-container {
    max-height: 522px;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .t-cibesLiftCreator .value-list-container {
    max-height: 450px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .t-cibesLiftCreator .value-list-container {
    max-height: 400px;
  }
}
@media (min-width: 1700px) {
  .t-cibesLiftCreator .value-list-container {
    max-height: 680px;
  }
}
.t-cibesLiftCreator .value-item {
  margin-bottom: 20px;
  cursor: pointer;
}
.t-cibesLiftCreator .value-item-grid {
  padding-left: 7.5px;
  padding-right: 7.5px;
  flex: 0 0 50%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .t-cibesLiftCreator .value-item-grid {
    flex: none;
  }
}
@media (max-width: 991.98px) {
  .t-cibesLiftCreator .value-item-grid {
    max-width: 33.33333%;
    flex: 0 0 33.33333%;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .value-item-grid {
    max-width: 50%;
    flex: 0 0 50%;
  }
}
.t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb {
  background-color: #212529;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #fff;
}
@media (max-width: 1199.98px) {
  .t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb {
    justify-content: center;
    padding: 10px;
  }
}
.t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span {
  display: block;
}
.t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.pre {
  font-size: 48px;
}
@media (max-width: 1600px) {
  .t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.pre {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.pre {
    font-size: 20px;
  }
}
.t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.val {
  opacity: 0.8;
}
@media (max-width: 1600px) {
  .t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.val {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .t-cibesLiftCreator .value-item-grid.optionSize .value-item-thumb span.val {
    font-size: 12px;
  }
}
.t-cibesLiftCreator .value-item-grid.optionSize .active .value-item-thumb {
  border-color: #f49712;
}
.t-cibesLiftCreator .value-item-thumb {
  width: 100%;
  background-color: #ffffff;
  margin-bottom: 10px;
  position: relative;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .value-item-thumb {
    min-height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .t-cibesLiftCreator .value-item-thumb {
    min-height: 100px;
  }
}
.t-cibesLiftCreator .value-item-value {
  color: #ffffff;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .t-cibesLiftCreator .value-item-value {
    font-size: 14px;
  }
}
.t-cibesLiftCreator .value-item .value-item-thumb::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #f49712;
  transition: 0.2s ease;
  transform: scale(0);
}
.t-cibesLiftCreator .value-item.active .value-item-thumb::after {
  transform: scale(1);
}
.t-cibesLiftCreator .creator-attachment {
  cursor: pointer;
  transition: all 0.25s ease-in;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .creator-attachment {
    position: absolute;
    top: 0;
    transform: translateX(calc(100% - 50px));
    right: 0;
  }
}
@media (max-width: 1199.98px) {
  .t-cibesLiftCreator .creator-attachment {
    width: 100%;
  }
}
.t-cibesLiftCreator .creator-attachment:hover {
  transform: translateX(0);
}
.t-cibesLiftCreator .creator-attachment_item {
  display: flex;
  align-items: center;
  padding: 13px 73px 13px 13px;
  background-color: #212529;
  border-bottom: 1px solid #ffffff;
}
@media (min-width: 1200px) {
  .t-cibesLiftCreator .creator-attachment_item {
    width: 100%;
  }
}
.t-cibesLiftCreator .creator-attachment_item:hover {
  background-color: #f49712;
}
.t-cibesLiftCreator .creator-attachment_item:hover_label {
  color: #ffffff;
}
.t-cibesLiftCreator .creator-attachment_item_icon {
  margin-right: 14px;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.t-cibesLiftCreator .creator-attachment_item_label {
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
}
.t-cibesLiftCreator .creator-attachment_item.download .creator-attachment_item_icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%3E%3Cpath%20d%3D%22M19%209h-4V3H9v6H5l7%207zM5%2018v2h14v-2z%22%20data-name%3D%22Path%205523%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%205524%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
}
.t-cibesLiftCreator .creator-attachment_item.sendDesign .creator-attachment_item_icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20data-name%3D%22email-24px%20%281%29%22%3E%3Cpath%20d%3D%22M16.988%204H3.665a1.662%201.662%200%200%200-1.657%201.663L2%2015.644a1.669%201.669%200%200%200%201.665%201.663h13.323a1.669%201.669%200%200%200%201.665-1.663V5.663A1.669%201.669%200%200%200%2016.988%204zm0%203.327l-6.661%204.159-6.662-4.159V5.663l6.661%204.159%206.661-4.159z%22%20data-name%3D%22Path%2026%22%20transform%3D%22translate%28-.327%20-.654%29%22%20fill%3D%22%23fff%22%2F%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%2027%22%20fill%3D%22none%22%2F%3E%3C%2Fsvg%3E);
}

.listStyleCheck ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1.5625vw;
}
@media (max-width: 767.98px) {
  .listStyleCheck ul {
    margin-top: 24px;
  }
}
.listStyleCheck ul li {
  position: relative;
  color: #5b5b5b;
  padding-left: 30px;
  text-align: left;
}
.listStyleCheck ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .listStyleCheck ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.listStyleCheck ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20data-name%3D%22check_circle-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%205554%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%202a8%208%200%201%200%208%208%208%208%200%200%200-8-8zM8.4%2014l-4-4%201.128-1.128L8.4%2011.736l6.072-6.072L15.6%206.8z%22%20data-name%3D%22Path%205555%22%20fill%3D%22%23f49712%22%2F%3E%3C%2Fsvg%3E) no-repeat center/20px auto;
}

.t-controlCenter {
  margin-bottom: 150px;
}
@media (max-width: 1199px) {
  .t-controlCenter {
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .t-controlCenter {
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .t-controlCenter-triple .t-controlCenter_utils_item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.t-controlCenter-secondary {
  margin-bottom: 0;
}
.t-controlCenter_panel {
  padding: 80px;
  box-shadow: 0 10px 24px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
}
@media (max-width: 767px) {
  .t-controlCenter_panel {
    padding: 32px 16px 40px 15px;
  }
}
.t-controlCenter_heading {
  max-width: 540px;
  margin: auto;
}
.t-controlCenter_sub {
  text-align: center;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .t-controlCenter_sub {
    margin-top: 16px;
  }
}
.t-controlCenter_sub p {
  margin-bottom: 0;
  color: #212529;
}
.t-controlCenter_block {
  margin-top: 180px;
}
@media (max-width: 1199px) {
  .t-controlCenter_block {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .t-controlCenter_block {
    margin-top: 40px;
  }
}
.t-controlCenter_utils {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .t-controlCenter_utils {
    margin-top: 50px;
    margin-bottom: -60px;
  }
}
@media (max-width: 767px) {
  .t-controlCenter_utils {
    margin-bottom: -20px;
  }
}
.t-controlCenter_utils_item {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .t-controlCenter_utils_item {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .t-controlCenter_utils_item {
    margin-bottom: 20px;
  }
}
.t-controlCenter_utils_item:hover img {
  animation: heartBeat 1.5s infinite !important;
}
.t-controlCenter_utils_item img {
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .t-controlCenter_utils_item img {
    width: 55px;
    height: 55px;
  }
}
.t-controlCenter_utils_item p {
  margin-top: 40px;
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 767px) {
  .t-controlCenter_utils_item p {
    font-size: 14px;
    margin-top: 20px;
  }
}
.t-controlCenter_prodImg {
  max-width: 733px;
  margin: 24px auto 0;
}
@media (max-width: 1199px) {
  .t-controlCenter_prodImg {
    max-width: 350px;
  }
}
@media (max-width: 767px) {
  .t-controlCenter_prodImg {
    margin-top: 0;
  }
}

.multiFieldForm .form-header {
  text-align: center;
}
.multiFieldForm .form-header .title {
  font-size: 28px;
  margin-bottom: 15px;
  font-family: "Roboto-Medium";
}
@media (max-width: 991.98px) {
  .multiFieldForm .form-header .title {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.multiFieldForm .form-header .sub {
  color: #5b5b5b;
  max-width: 800px;
  margin: auto;
}
@media (max-width: 991.98px) {
  .multiFieldForm .form-header .sub {
    font-size: 14px;
  }
}
.multiFieldForm .form-body {
  max-width: 900px;
  margin: auto;
  margin-top: 50px;
}
@media (min-width: 992px) {
  .multiFieldForm .form-body .group-btn {
    margin-top: 26px;
  }
}
@media (min-width: 768px) {
  .multiFieldForm .form-flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 768px) {
  .multiFieldForm .form-flex__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.multiFieldForm .form-textwhite {
  color: #ffffff;
}
.multiFieldForm .form-textwhite .a-input,
.multiFieldForm .form-textwhite .a-textarea {
  color: #ffffff !important;
  background-color: transparent !important;
}
.multiFieldForm .form-textwhite .a-input + label.floating-label,
.multiFieldForm .form-textwhite .a-textarea + label.floating-label {
  color: #ffffff;
}
.multiFieldForm .form-textwhite input:focus ~ label.floating-label,
.multiFieldForm .form-textwhite input.has-value ~ label.floating-label {
  opacity: 0.8;
  top: -7px;
}
.multiFieldForm .form-textwhite textarea:focus ~ label.floating-label,
.multiFieldForm .form-textwhite textarea.has-value ~ label.floating-label {
  opacity: 0.8;
}
.multiFieldForm .form-textwhite .group-btn {
  margin-top: 50px;
}
@media (max-width: 1500px) {
  .multiFieldForm .form-textwhite .group-btn {
    margin-top: 30px;
  }
}
@media (max-width: 1500px) {
  .multiFieldForm .form-textwhite .group-btn .a-button {
    padding: 0.8rem 1.75rem;
    font-size: 14px;
  }
}
.multiFieldForm .form-line {
  position: relative;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .multiFieldForm .form-line {
    margin-bottom: 24px;
  }
}
@media (max-width: 767.98px) {
  .multiFieldForm .form-line {
    margin-bottom: 12px;
  }
}
.multiFieldForm .form-line .a-input {
  color: #333333;
}
.multiFieldForm .form-line .m-pulldown__select {
  padding-left: 0;
}
.multiFieldForm .form-warning {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #f60609;
  font-size: 12px;
}
.multiFieldForm .form-style p.sub {
  opacity: 0.8;
  margin-bottom: 0;
}
@media (max-width: 1500px) {
  .multiFieldForm .form-style p.sub {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .multiFieldForm .form-style p.sub {
    font-size: 12px;
  }
}

.imgSliderInner {
  position: relative;
}
.imgSliderInner .slick-slider .slick-arrow {
  width: 40px;
  height: 40px;
  top: auto !important;
  top: 7px;
  bottom: 37px;
  background-color: transparent;
}
.imgSliderInner .slick-slider .slick-arrow:after {
  top: 10px;
  width: 25px;
  height: 25px;
  border-bottom: 5px solid #f49712;
  border-right: 5px solid #f49712;
}
.imgSliderInner .slick-slider .slick-arrow.slick-next {
  right: 88px;
}
@media (max-width: 1199.98px) {
  .imgSliderInner .slick-slider .slick-arrow.slick-next {
    right: 15px;
  }
}
.imgSliderInner .slick-slider .slick-arrow.slick-next:after {
  left: 7px;
}
.imgSliderInner .slick-slider .slick-arrow.slick-prev {
  left: 88px;
}
@media (max-width: 1199.98px) {
  .imgSliderInner .slick-slider .slick-arrow.slick-prev {
    left: 15px;
  }
}
.imgSliderInner .slick-slider .slick-arrow.slick-prev:after {
  left: 7px;
}
@media (max-width: 767.98px) {
  .imgSliderInner .slick-slider .slick-dots {
    position: static;
  }
}
.imgSliderInner .slick-thumb {
  bottom: 40px !important;
}
.imgSliderInner .slick-thumb li {
  width: 73px !important;
  height: 73px !important;
}
@media (max-width: 767.98px) {
  .imgSliderInner .slick-thumb li {
    width: 50px !important;
    height: 50px !important;
  }
}
.imgSliderInner .slick-thumb li a {
  display: block;
  width: 100%;
  height: 100%;
}
.imgSliderInner .slick-thumb li a img {
  width: 73px !important;
  height: 73px !important;
}
@media (max-width: 767.98px) {
  .imgSliderInner .slick-thumb li a img {
    width: 50px !important;
    height: 50px !important;
  }
}
.imgSliderInner .slick-thumb li.slick-active:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.7);
}
.imgSliderInner .thumbSlider {
  max-width: 400px;
}
@media (min-width: 768px) {
  .imgSliderInner .thumbSlider {
    position: absolute;
    bottom: 40px;
    left: 52%;
    transform: translateX(-50%);
  }
}
.imgSliderInner .thumbSlider.triple .slick-list {
  padding-bottom: 0 !important;
}
@media (min-width: 992px) {
  .imgSliderInner .thumbSlider.triple .img {
    width: 80px !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .imgSliderInner .thumbSlider.triple .img {
    width: 120px !important;
  }
}
@media (max-width: 767.98px) {
  .imgSliderInner .thumbSlider.triple .slick-arrow {
    top: 50px !important;
  }
}
.imgSliderInner .thumbSlider .slick-slide .img {
  position: relative;
}
.imgSliderInner .thumbSlider .slick-slide .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1);
  transition: 0.4s ease;
  z-index: 1;
}
.imgSliderInner .thumbSlider .slick-slide .img img {
  width: 100%;
}
.imgSliderInner .thumbSlider .slick-slide.slick-current .img:before {
  transform: scale(0);
}
@media (max-width: 767.98px) {
  .imgSliderInner .thumbSlider .slick-arrow {
    top: 27px !important;
  }
}

@media (min-width: 1300px) {
  .p-handbook .imgVisual .m-tabsBar .tabs-desc li {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    text-align: center;
  }
  .p-handbook .imgVisual .m-tabsBar .tabs-desc li .a-tabItem {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }
}

.imgVisual .sGrid.rowBottom {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
  position: relative;
}
@media (max-width: 991.98px) {
  .imgVisual .sGrid.rowBottom {
    margin-top: 6px;
  }
}
.imgVisual .sGrid.rowBottom .gridItem {
  position: relative;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .imgVisual .sGrid.rowBottom .gridItem {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

.infoPanel {
  position: relative;
}
.infoPanel:not(.split) {
  padding-bottom: 30px;
}
.infoPanel.split {
  max-height: 214px;
  overflow: hidden;
}
.infoPanel.split .coverLayer {
  visibility: visible;
  opacity: 0.8;
}
.infoPanel.center .infoList ul {
  text-align: center;
}
.infoPanel h3 {
  font-size: 20px;
  font-family: "Roboto-Medium";
  color: #f49712;
  line-height: 1.5;
  padding: 0.75rem 0;
  margin-bottom: 0;
}
.infoPanel .infoList ul {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.infoPanel .infoList ul li {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 16px;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .infoPanel .infoList ul li {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 24px;
  }
}
.infoPanel .infoList ul li p:first-child {
  margin-bottom: 5px;
  color: #222b45;
  font-family: "Roboto-Medium";
  line-height: 1.5;
}
@media (min-width: 768px) {
  .infoPanel .infoList ul li p:first-child {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .infoPanel .infoList ul li p:first-child {
    font-size: 12px;
  }
}
.infoPanel .infoList ul li p:last-child {
  color: #5b5b5b;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .infoPanel .infoList ul li p:last-child {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .infoPanel .infoList ul li p:last-child {
    font-size: 10px;
  }
}
.infoPanel .coverLayer {
  position: absolute;
  bottom: 0;
  height: 40px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  background: linear-gradient(to top, #fafafa, transparent);
}
.infoPanel .viewMoreTable {
  position: absolute;
  z-index: 2;
  left: 46%;
  bottom: 0;
  display: block;
  padding-right: 18px;
  font-size: 18px;
  color: #002855;
  text-decoration: none;
  text-transform: none;
  transition: 0.2s ease;
  cursor: pointer;
}
@media (max-width: 767.98px) {
  .infoPanel .viewMoreTable {
    font-size: 15px;
    left: 40%;
  }
}
.infoPanel .viewMoreTable.showing:before {
  transform: rotate(225deg);
  top: 12px;
}
.infoPanel .viewMoreTable:before {
  position: absolute;
  top: 5px;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid #002855;
  border-bottom: 2px solid #002855;
  transition: 0.2s ease;
  transform: rotate(45deg);
}

.t-maintenance .tabpane {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .t-maintenance .tabpane {
    margin-top: 64px;
  }
}
@media (max-width: 767.98px) {
  .t-maintenance .tabpane {
    margin-top: 32px;
  }
}
.t-maintenance__contentCard {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard {
    flex-direction: column;
  }
}
.t-maintenance__contentCard__slider {
  position: relative;
  max-width: 634px;
  width: 100%;
}
.t-maintenance__contentCard__slider__inner {
  width: 100%;
}
.t-maintenance__contentCard__slider__inner .slick-track {
  transition: transform 0.25s ease-in-out;
}
@media (max-width: 1199.98px) {
  .t-maintenance__contentCard__slider {
    max-width: 400px;
  }
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard__slider {
    max-width: 100%;
  }
}
.t-maintenance__contentCard__navFor {
  padding-left: 67px;
  flex-basis: auto;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .t-maintenance__contentCard__navFor {
    padding-left: 0;
    padding-top: 48px;
  }
}
.t-maintenance__contentCard__navFor__content {
  font-size: 20px;
  line-height: 26px;
}
@media (max-width: 1199.98px) {
  .t-maintenance__contentCard__navFor__content {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767.98px) {
  .t-maintenance__contentCard__navFor__content {
    font-size: 14px;
    line-height: 18px;
  }
}
.t-maintenance .handleSlider {
  position: absolute;
  bottom: 80px;
  left: 10px;
  width: calc(100% - 40px);
  display: flex;
  justify-content: space-between;
}
.t-maintenance .handleSlider .a-slideControl {
  background-color: #ffffff;
  border-width: 2px;
}
@media (max-width: 1199.98px) {
  .t-maintenance .handleSlider .a-slideControl {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.t-maintenance .handleSlider .a-slideControl::before {
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.t-maintenance .handleSlider .a-slideControl:hover:before {
  border-color: #f49712;
}

.modal.centered .modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0;
}
@media (min-width: 576px) {
  .modal.modalConstructDetail .modal-dialog, .modal.modalVideoThumb .modal-dialog, .modal.modalDrawingThumb .modal-dialog, .modal.modalInfoThumb .modal-dialog {
    max-width: 1350px;
  }
}
.modal.modalConstructDetail .modal-header, .modal.modalVideoThumb .modal-header, .modal.modalDrawingThumb .modal-header, .modal.modalInfoThumb .modal-header {
  border: none;
}
@media (min-width: 992px) {
  .modal.modalConstructDetail .modal-body, .modal.modalVideoThumb .modal-body, .modal.modalDrawingThumb .modal-body, .modal.modalInfoThumb .modal-body {
    padding: 50px;
  }
}
.modal.modalIntroHome {
  padding-right: 0 !important;
}
@media (max-width: 575.98px) {
  .modal.modalIntroHome {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
  }
}
.modal.modalIntroHome .modal-body {
  padding: 36px;
}
@media (max-width: 767.98px) {
  .modal.modalIntroHome .modal-body {
    padding: 36px 10px 10px;
  }
}
@media (min-width: 576px) {
  .modal.modalIntroHome .modal-dialog {
    max-width: 472px;
  }
}
@media (min-width: 576px) {
  .modal.modalIntroHome .modal-dialog {
    margin: 4.75rem auto;
  }
}
@media (max-width: 575.98px) {
  .modal.modalIntroHome .modal-dialog {
    margin: 0 2.5rem;
  }
}
@media (min-width: 1200px) {
  .modal.modalIntroHome .modal-dialog {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
  }
}
.modal.modalVideoThumb .modal-header, .modal.modalInfoThumb .modal-header {
  margin-bottom: 90px;
  border: none;
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .modal-header, .modal.modalInfoThumb .modal-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text, .modal.modalInfoThumb .block__content__text {
    padding-top: 0;
  }
}
.modal.modalVideoThumb .block__content__text h2, .modal.modalInfoThumb .block__content__text h2 {
  font-family: "Roboto-Bold";
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .block__content__text h2, .modal.modalInfoThumb .block__content__text h2 {
    margin-bottom: 0;
  }
}
.modal.modalVideoThumb .block__content__text--medium h4, .modal.modalInfoThumb .block__content__text--medium h4 {
  color: #222b45;
  font-family: "Roboto-Medium";
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text--medium h4, .modal.modalInfoThumb .block__content__text--medium h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
.modal.modalVideoThumb .block--bottom, .modal.modalInfoThumb .block--bottom {
  margin-top: 25px;
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block--bottom, .modal.modalInfoThumb .block--bottom {
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body {
    padding-bottom: 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal.modalDrawingThumb .modal-body {
    padding-bottom: 65px !important;
    padding-top: 25px !important;
  }
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
  opacity: 0;
  transition: 0.2s;
  min-height: 520px;
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
    min-height: 510px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider {
    min-height: 245px;
  }
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .main-slider.open {
  opacity: 1;
}
.modal.modalDrawingThumb .modal-body .col-lg-7 .a-img:after {
  padding-top: 67.5%;
}
.modal.modalDrawingThumb .modal-body .sliderThumb {
  opacity: 0;
  transition: 0.2s;
}
@media (max-width: 1199.98px) {
  .modal.modalDrawingThumb .modal-body .sliderThumb {
    min-height: 230px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalDrawingThumb .modal-body .sliderThumb {
    min-height: 90px;
  }
}
.modal.modalDrawingThumb .modal-body .sliderThumb.open {
  opacity: 1;
}
.modal.modalDrawingThumb .modal-body .block__content__text {
  padding-top: 0;
  padding-bottom: 0;
}
.modal.modalDrawingThumb .modal-body .block__content__text h2 {
  margin-bottom: 20px;
  font-family: "Roboto-Bold";
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .block__content__text h2 {
    line-height: 48px;
  }
}
.modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 1200px) {
  .modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
    margin-top: 120px !important;
  }
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .block__content .sliderThumb {
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 84px;
  }
}
.modal.modalDrawingThumb .modal-body .o-cardDrawing {
  border: none;
}
@media (min-width: 992px) {
  .modal.modalDrawingThumb .modal-body .o-cardDrawing {
    padding-top: 20px;
  }
}
.modal.modalDrawingThumb .modal-body .o-cardDrawing .block__action {
  justify-content: flex-start;
}
.modal.modalDrawingThumb .modal-body .infoConstructPanel {
  background-color: transparent;
}
.modal.modalDrawingThumb .modal-body .infoConstructPanel .m-iconText {
  margin-bottom: 20px;
  color: #212529;
}
.modal.modalDrawingThumb .modal-header {
  margin-bottom: 90px;
  border: none;
}
@media (max-width: 991.98px) {
  .modal.modalDrawingThumb .modal-header {
    margin-bottom: 30px;
  }
}
.modal.modalVideoThumb .modal-body {
  padding: 50px 50px 90px;
}
@media (max-width: 991.98px) {
  .modal.modalVideoThumb .modal-body {
    padding: 14px 18px 70px;
  }
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__content__text--sub {
    font-size: 20px;
  }
}
.modal.modalVideoThumb .block__item.isFlex {
  display: flex;
}
.modal.modalVideoThumb .block__item.isFlex .m-video {
  width: 160px;
  margin-right: 20px;
}
@media (max-width: 570px) {
  .modal.modalVideoThumb .block__item.isFlex .m-video {
    width: 120px;
    margin-right: 10px;
  }
}
.modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video {
  border-top: 26px solid transparent;
  border-bottom: 26px solid transparent;
  border-left: 40px solid #ffffff;
}
@media (max-width: 1199.98px) {
  .modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video {
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 24px solid #ffffff;
  }
}
.modal.modalVideoThumb .block__item.isFlex .m-video .play_thumb_video span {
  display: none;
}
@media (min-width: 992px) {
  .modal.modalVideoThumb .block__item.isFlex .a-link {
    font-size: 16px;
    max-width: 180px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .modal-dialog {
    max-width: 991px;
  }
}
.modal.modalInfoThumb .group-btn {
  margin-top: 65px;
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .group-btn {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .group-btn {
    margin-top: 25px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .modal-body {
    padding: 30px;
  }
}
.modal.modalInfoThumb .block__content__text--sub p {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .modal.modalInfoThumb .block__content__text--sub p {
    font-size: 16px;
  }
}
@media (max-width: 1919px) {
  .modal.modalInfoThumb .block__content__text h2 {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text h2 {
    font-size: 22px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul {
  padding-left: 0;
  list-style: none;
  margin-top: 1.5625vw;
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul {
    margin-top: 24px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li {
  position: relative;
  color: #5b5b5b;
  padding-left: 30px;
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.modal.modalInfoThumb .block__content__text .contentListStylePanel ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20data-name%3D%22check_circle-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%205554%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M10%202a8%208%200%201%200%208%208%208%208%200%200%200-8-8zM8.4%2014l-4-4%201.128-1.128L8.4%2011.736l6.072-6.072L15.6%206.8z%22%20data-name%3D%22Path%205555%22%20fill%3D%22%23f49712%22%2F%3E%3C%2Fsvg%3E) no-repeat center/20px auto;
}
@media (min-width: 992px) {
  .modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul {
    margin-bottom: 40px;
  }
}
.modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul li {
  font-size: 16px;
  margin-bottom: 13px;
}
@media (max-width: 767.98px) {
  .modal.modalInfoThumb .contentListStylePanel .listStyleCheck ul li {
    font-size: 12px;
  }
}
@media (min-width: 1200px) {
  .modal.modalContext .modal-dialog {
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
  }
}
.modal.modalContext .modal-title {
  font-size: 28px;
  color: #f49712;
  font-family: "Roboto-Medium";
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .modal.modalContext .modal-title {
    font-size: 20px;
  }
}
.modal.modalContext .modal-title.d-flex {
  justify-content: space-between;
}
.modal.modalContext .modal-title.d-flex .close {
  width: 18px;
  height: 18px;
}
.modal.modalContext .modal-title.d-flex .close span:before, .modal.modalContext .modal-title.d-flex .close span:after {
  height: 2px;
  background-color: #f49712;
}
.modal.modalContext .modal-header {
  border: none;
}
.modal.modalContext .modal-body p {
  font-size: 18px;
}
@media (max-width: 767.98px) {
  .modal.modalContext .modal-body p {
    font-size: 14px;
  }
}
.modal.modalContext .modal-body .a-button {
  width: 100%;
}
@media (max-width: 1919px) {
  .modal.modalImage.modal-dialog {
    max-width: 505px;
  }
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .modal.modalImage.modal-dialog {
    max-width: 400px !important;
  }
}
.modal.modalImage .modal-content .a-img:after {
  padding-top: 150.39593%;
}
.modal button.close {
  width: 36px;
  height: 36px;
  padding: 0 !important;
}
.modal button.close span {
  color: transparent;
}
.modal button.close span[aria-hidden=true] {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.modal button.close span[aria-hidden=true]::before, .modal button.close span[aria-hidden=true]::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: #000;
}
.modal button.close span[aria-hidden=true]::before {
  transform: rotate(45deg);
}
.modal button.close span[aria-hidden=true]::after {
  transform: rotate(-45deg);
}
.modal .slick-slider {
  margin-left: -5px;
  margin-right: -5px;
}
.modal .slick-slider .slick-list .slick-track {
  display: flex;
  align-items: center;
}
.modal .slick-slider .slick-list .slick-track .slick-slide {
  padding: 0 5px;
}
.modal .slick-slider .slick-arrow {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background-color: #f49712;
  outline: 0;
  box-shadow: none;
  color: #ffffff;
  top: calc(50% - 25px);
  position: absolute;
  right: 10px;
  left: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .modal .slick-slider .slick-arrow {
    display: none !important;
  }
}
.modal .slick-slider .slick-arrow:before {
  display: none;
}
.modal .slick-slider .slick-arrow:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 19px;
  border-bottom: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transition: 0.2s ease;
}
.modal .slick-slider .slick-arrow.slick-prev {
  left: 20px;
}
.modal .slick-slider .slick-arrow.slick-prev:after {
  left: 22px;
  transform: rotate(135deg);
}
.modal .slick-slider .slick-arrow.slick-next {
  right: 20px;
}
.modal .slick-slider .slick-arrow.slick-next:after {
  left: 18px;
  transform: rotate(-45deg);
}
.modal .sliderThumb {
  margin-top: 20px;
}
.modal .sliderContent .a-img-quadrate-stand {
  max-width: 600px;
  margin: auto;
}

.modal.fade:not(.show) {
  visibility: hidden;
}

.p-newsLayout-content {
  margin: 3.125vw auto 6.7708333333vw;
}
@media (max-width: 991.98px) {
  .p-newsLayout-content {
    margin: 30px auto 80px;
  }
}
.p-newsLayout-section {
  margin: auto;
  padding: 20px 0;
}
@media (max-width: 767.98px) {
  .p-newsLayout-section {
    padding: 5px 0;
  }
}
@media (min-width: 992px) {
  .p-newsLayout-section .a-heading-bigSlider h1 {
    font-size: 2.5vw;
  }
}
.p-newsLayout-title {
  font-size: 28px;
  color: #212529;
  font-family: "Roboto-Medium";
}
@media (max-width: 767.98px) {
  .p-newsLayout-title {
    font-size: 18px;
  }
}
.p-newsLayout-text {
  display: flex;
  flex-direction: column;
  color: #5b5b5b;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .p-newsLayout-text {
    font-size: 14px;
  }
}
.p-newsLayout-text iframe {
  width: 100%;
  height: 475px;
}
@media (max-width: 991.98px) {
  .p-newsLayout-text iframe {
    height: 300px;
  }
}
.p-newsLayout-text p {
  margin-bottom: 0;
}
.p-newsLayout-text h2 {
  font-size: 28px;
  color: #212529;
  font-family: "Roboto-Medium";
  padding-bottom: 0.78125vw;
  padding-top: 2.0833333333vw;
}
@media (max-width: 767.98px) {
  .p-newsLayout-text h2 {
    font-size: 18px;
  }
}
.p-newsLayout-text h2 + h3 {
  margin-top: 0;
}
.p-newsLayout-text h3 {
  font-size: 22px;
  color: #212529;
  font-family: "Roboto-Medium";
  margin-bottom: 0.5208333333vw;
  margin-top: 1.0416666667vw;
}
@media (max-width: 767.98px) {
  .p-newsLayout-text h3 {
    font-size: 16px;
  }
}
.p-newsLayout-text img {
  width: 70%;
  margin-top: 2.6041666667vw;
  margin-bottom: 2.0833333333vw;
  margin-left: auto;
  margin-right: auto;
}
.p-newsLayout-text img + h3 {
  margin-top: 0;
}
@media (max-width: 767.98px) {
  .p-newsLayout-text img {
    width: 100%;
  }
}
.p-newsLayout .imgPanel {
  padding: 20px 0 30px;
}

.gridDetailTemplate .s-article-related .o-article .imgPanel {
  padding: 0;
}
@media (min-width: 992px) {
  .gridDetailTemplate .s-article-related .o-article .a-link {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .gridDetailTemplate .s-article-related .o-article .a-link {
    line-height: 1.2;
  }
}
.gridDetailTemplate .s-article-related .o-article .textPanel .category-tag span.tag {
  display: none;
}
.gridDetailTemplate .s-article-related .o-article .textPanel .text__smaller {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.gridDetailTemplate .s-article-related .o-article .category-tag {
  padding: 15px 0;
}
@media (max-width: 767.98px) {
  .gridDetailTemplate .s-article-related .o-article .category-tag {
    padding: 0;
  }
}

.perspectiveView {
  max-width: 600px;
  margin: auto;
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .perspectiveView {
    margin-top: 25px;
  }
}

.t-smartUtils {
  overflow: hidden;
}
.t-smartUtils_line {
  position: relative;
}
.t-smartUtils_line:last-child {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .t-smartUtils_line:last-child {
    margin-top: 35px;
  }
}
@media (max-width: 767px) {
  .t-smartUtils_line:last-child {
    margin-top: 36px;
  }
}
.t-smartUtils_line.complex .t-smartUtils_thumbnail {
  max-width: 374px;
}
@media (max-width: 1199px) {
  .t-smartUtils_line.complex .t-smartUtils_thumbnail {
    max-width: 320px;
  }
}
.t-smartUtils_line.singleVideo .t-smartUtils_line {
  margin-top: 0;
}
.t-smartUtils_thumbnail {
  max-width: 1008px;
  margin: auto;
}
.t-smartUtils_video {
  position: relative;
  padding-bottom: 53.3333333333%;
  pointer-events: none;
}
.t-smartUtils_video_iframe, .t-smartUtils_video_normal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.t-smartUtils_video_iframe iframe, .t-smartUtils_video_iframe video, .t-smartUtils_video_normal iframe, .t-smartUtils_video_normal video {
  width: 100%;
  height: 100%;
}
.t-smartUtils_heading {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .t-smartUtils_heading {
    margin-bottom: 26px;
  }
}
.t-smartUtils_text1 {
  position: absolute;
  top: 44%;
  left: 5%;
  font-weight: 500;
  font-family: "Roboto-Medium";
  font-size: 28px;
  line-height: 60px;
  color: #212529;
  text-transform: uppercase;
  z-index: 1;
  min-width: 200px;
}
@media (max-width: 1199px) {
  .t-smartUtils_text1 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .t-smartUtils_text1 {
    top: 9%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.t-smartUtils_text1::before {
  content: "";
  position: absolute;
  bottom: 13px;
  height: 10px;
  left: 0;
  z-index: -1;
  width: 100%;
  background-color: #f49712;
}
@media (max-width: 1199px) {
  .t-smartUtils_text1::before {
    height: 5px;
    bottom: 9px;
  }
}
@media (max-width: 991px) {
  .t-smartUtils_text1::before {
    display: none;
  }
}
.t-smartUtils_text2 {
  max-width: 245px;
  margin: auto;
}
@media (max-width: 1199px) {
  .t-smartUtils_text2 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (min-width: 992px) {
  .t-smartUtils_text2 {
    position: absolute;
    top: 34%;
    right: 4%;
  }
}
.t-smartUtils_text2 p {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  font-family: "Roboto-Medium";
  color: #4CC7C5;
}
@media (min-width: 992px) {
  .t-smartUtils_text2 p {
    font-size: 40px;
    line-height: 60px;
  }
}
.t-smartUtils_text3 {
  margin-top: 24px;
  font-weight: 500;
  font-family: "Roboto-Medium";
  font-size: 56px;
  line-height: 60px;
  color: #3929EF;
}
@media (max-width: 1199px) {
  .t-smartUtils_text3 {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 991px) {
  .t-smartUtils_text3 {
    font-size: 40px;
    line-height: 60px;
    margin-top: 4px;
  }
}

.socialPanel {
  display: flex;
  align-items: center;
  margin-top: 2.0833333333vw;
  margin-bottom: 3.3854166667vw;
}
@media (max-width: 991.98px) {
  .socialPanel {
    margin-top: 25px;
    margin-bottom: 30px;
  }
}
.socialPanel .a-icon {
  transition: 0.2s ease;
}
.socialPanel .nav-facebook {
  transition: 0.2s ease;
}
.socialPanel .nav-facebook:hover {
  background-color: #000000;
  border-radius: 100%;
}
.socialPanel .nav-facebook:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.001%22%20height%3D%2220.002%22%20data-name%3D%22arrow_drop_down-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%2029%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M29.2%207.095l.35-2.283h-2.19V3.331A1.141%201.141%200%200%201%2028.649%202.1h1V.154A12.142%2012.142%200%200%200%2027.878%200a2.787%202.787%200%200%200-2.983%203.072v1.74h-2v2.283h2v5.518h2.468V7.095z%22%20transform%3D%22translate%28-16.432%203.102%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E) !important;
}
.socialPanel .nav-instagram {
  transition: 0.2s ease;
}
.socialPanel .nav-instagram:hover {
  background-color: #000000;
  border-radius: 100%;
}
.socialPanel .nav-instagram:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20data-name%3D%22arrow_drop_down-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%2029%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M9.927%2036.7a5.127%205.127%200%201%200%205.127%205.127A5.118%205.118%200%200%200%209.927%2036.7zm0%208.46a3.333%203.333%200%201%201%203.333-3.333%203.339%203.339%200%200%201-3.333%203.329zm6.532-8.669a1.2%201.2%200%201%201-1.2-1.2%201.193%201.193%200%200%201%201.2%201.195zm3.4%201.214a5.918%205.918%200%200%200-1.615-4.19A5.956%205.956%200%200%200%2014.05%2031.9c-1.651-.094-6.6-.094-8.25%200a5.948%205.948%200%200%200-4.19%201.611A5.937%205.937%200%200%200%200%2037.7c-.094%201.651-.094%206.6%200%208.25a5.918%205.918%200%200%200%201.615%204.19A5.964%205.964%200%200%200%205.8%2051.75c1.651.094%206.6.094%208.25%200a5.917%205.917%200%200%200%204.19-1.615%205.956%205.956%200%200%200%201.615-4.19c.093-1.65.093-6.594%200-8.245zm-2.137%2010.012a3.374%203.374%200%200%201-1.9%201.9c-1.316.522-4.439.4-5.894.4s-4.582.116-5.894-.4a3.374%203.374%200%200%201-1.9-1.9c-.522-1.316-.4-4.439-.4-5.894s-.116-4.582.4-5.894a3.374%203.374%200%200%201%201.9-1.9c1.316-.522%204.439-.4%205.894-.4s4.582-.116%205.894.4a3.374%203.374%200%200%201%201.9%201.9c.522%201.316.4%204.439.4%205.894s.122%204.582-.4%205.894z%22%20transform%3D%22translate%282.075%20-29.825%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E) !important;
}
.socialPanel .nav-twitter {
  transition: 0.2s ease;
}
.socialPanel .nav-twitter:hover {
  background-color: #000000;
  border-radius: 100%;
}
.socialPanel .nav-twitter:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20data-name%3D%22arrow_drop_down-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h24v24H0z%22%20data-name%3D%22Path%2029%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M18.528%2052.262c.013.183.013.367.013.55A11.96%2011.96%200%200%201%206.5%2064.855a11.961%2011.961%200%200%201-6.5-1.9%208.753%208.753%200%200%200%201.022.052A8.476%208.476%200%200%200%206.277%2061.2a4.24%204.24%200%200%201-3.957-2.935%205.338%205.338%200%200%200%20.8.065%204.476%204.476%200%200%200%201.114-.144%204.233%204.233%200%200%201-3.395-4.155v-.052a4.263%204.263%200%200%200%201.913.537%204.239%204.239%200%200%201-1.31-5.661%2012.031%2012.031%200%200%200%208.727%204.429%204.778%204.778%200%200%201-.1-.97%204.236%204.236%200%200%201%207.325-2.9%208.333%208.333%200%200%200%202.681-1.014%204.221%204.221%200%200%201-1.861%202.332%208.485%208.485%200%200%200%202.437-.655%209.1%209.1%200%200%201-2.123%202.185z%22%20transform%3D%22translate%281.698%20-45.189%29%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E) !important;
}
.socialPanel .a-link {
  margin-left: 8px;
}

.social-direct .a-icon {
  transition: 0.2s ease;
}
.social-direct .nav-facebook:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220.001%22%20height%3D%2220.002%22%20data-name%3D%22arrow_drop_down-24px%20%281%29%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%2029%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M29.2%207.095l.35-2.283h-2.19V3.331A1.141%201.141%200%200%201%2028.649%202.1h1V.154A12.142%2012.142%200%200%200%2027.878%200a2.787%202.787%200%200%200-2.983%203.072v1.74h-2v2.283h2v5.518h2.468V7.095z%22%20transform%3D%22translate%28-16.432%203.102%29%22%20fill%3D%22%230084cb%22%2F%3E%3C%2Fsvg%3E) !important;
}
.social-direct .nav-call:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%3E%3Cpath%20d%3D%22M0%200h20v20H0z%22%20data-name%3D%22Path%2024%22%20fill%3D%22none%22%2F%3E%3Cpath%20d%3D%22M6.02%209.5a12.636%2012.636%200%200%200%205.5%205.5l1.835-1.835a.829.829%200%200%201%20.851-.2%209.515%209.515%200%200%200%202.978.475.837.837%200%200%201%20.834.834v2.906a.837.837%200%200%201-.834.834A14.179%2014.179%200%200%201%203%203.834.837.837%200%200%201%203.834%203h2.92a.837.837%200%200%201%20.834.834%209.476%209.476%200%200%200%20.475%202.978.837.837%200%200%201-.209.851z%22%20data-name%3D%22Path%2025%22%20transform%3D%22translate%28-.507%20-1%29%22%20fill%3D%22%23f49712%22%2F%3E%3C%2Fsvg%3E) !important;
}
.social-direct .nav-youtube:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20height%3D%22512pt%22%20viewBox%3D%220%20-77%20512.002%20512%22%20width%3D%22512pt%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m501.453125%2056.09375c-5.902344-21.933594-23.195313-39.222656-45.125-45.128906-40.066406-10.964844-200.332031-10.964844-200.332031-10.964844s-160.261719%200-200.328125%2010.546875c-21.507813%205.902344-39.222657%2023.617187-45.125%2045.546875-10.542969%2040.0625-10.542969%20123.148438-10.542969%20123.148438s0%2083.503906%2010.542969%20123.148437c5.90625%2021.929687%2023.195312%2039.222656%2045.128906%2045.128906%2040.484375%2010.964844%20200.328125%2010.964844%20200.328125%2010.964844s160.261719%200%20200.328125-10.546875c21.933594-5.902344%2039.222656-23.195312%2045.128906-45.125%2010.542969-40.066406%2010.542969-123.148438%2010.542969-123.148438s.421875-83.507812-10.546875-123.570312zm0%200%22%20fill%3D%22red%22%2F%3E%3Cpath%20d%3D%22m204.96875%20256%20133.269531-76.757812-133.269531-76.757813zm0%200%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E) !important;
}
.social-direct .nav-instagram:hover .a-icon {
  background-image: url(data:image/svg+xml,%3Csvg%20height%3D%22512pt%22%20viewBox%3D%220%200%20512%20512%22%20width%3D%22512pt%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3ClinearGradient%20id%3D%22a%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%2242.966%22%20x2%3D%22469.034%22%20y1%3D%22469.03%22%20y2%3D%2242.962%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23ffd600%22%2F%3E%3Cstop%20offset%3D%22.5%22%20stop-color%3D%22%23ff0100%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23d800b9%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22b%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22163.043%22%20x2%3D%22348.954%22%20y1%3D%22348.954%22%20y2%3D%22163.043%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23ff6400%22%2F%3E%3Cstop%20offset%3D%22.5%22%20stop-color%3D%22%23ff0100%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fd0056%22%2F%3E%3C%2FlinearGradient%3E%3ClinearGradient%20id%3D%22c%22%20gradientUnits%3D%22userSpaceOnUse%22%20x1%3D%22370.929%22%20x2%3D%22414.373%22%20y1%3D%22141.068%22%20y2%3D%2297.624%22%3E%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23f30072%22%2F%3E%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23e50097%22%2F%3E%3C%2FlinearGradient%3E%3Cpath%20d%3D%22m510.460938%20150.453125c-1.246094-27.25-5.574219-45.859375-11.902344-62.140625-6.425782-17.082031-16.503906-32.554688-29.527344-45.34375-12.785156-13.023438-28.261719-23.105469-45.34375-29.535156-16.285156-6.324219-34.890625-10.648438-62.140625-11.886719-27.300781-1.25-36.023437-1.546875-105.546875-1.546875s-78.246094.296875-105.546875%201.539062c-27.25%201.246094-45.855469%205.574219-62.140625%2011.902344-17.082031%206.425782-32.554688%2016.503906-45.34375%2029.527344-13.023438%2012.785156-23.105469%2028.257812-29.535156%2045.339844-6.324219%2016.285156-10.648438%2034.894531-11.886719%2062.140625-1.25%2027.304687-1.546875%2036.023437-1.546875%20105.546875%200%2069.527344.296875%2078.25%201.546875%20105.550781%201.242187%2027.246094%205.570313%2045.855469%2011.898437%2062.140625%206.425782%2017.078125%2016.503907%2032.554688%2029.527344%2045.339844%2012.785156%2013.023437%2028.261719%2023.101562%2045.34375%2029.527344%2016.28125%206.332031%2034.890625%2010.65625%2062.140625%2011.902343%2027.304688%201.246094%2036.023438%201.539063%20105.546875%201.539063%2069.523438%200%2078.246094-.292969%20105.546875-1.539063%2027.25-1.246093%2045.855469-5.570312%2062.140625-11.902343%2034.386719-13.296876%2061.570313-40.480469%2074.867188-74.867188%206.332031-16.285156%2010.65625-34.894531%2011.902344-62.140625%201.242187-27.304687%201.539062-36.023437%201.539062-105.546875%200-69.527344-.296875-78.246094-1.539062-105.546875zm-46.082032%20208.996094c-1.136718%2024.960937-5.308594%2038.515625-8.8125%2047.535156-8.613281%2022.328125-26.257812%2039.972656-48.585937%2048.585937-9.019531%203.503907-22.574219%207.675782-47.535157%208.8125-26.988281%201.234376-35.085937%201.492188-103.445312%201.492188-68.363281%200-76.457031-.257812-103.449219-1.492188-24.957031-1.136718-38.511719-5.308593-47.535156-8.8125-11.117187-4.105468-21.175781-10.648437-29.433594-19.152343-8.503906-8.257813-15.046875-18.3125-19.152343-29.433594-3.503907-9.019531-7.675782-22.574219-8.8125-47.535156-1.230469-26.992188-1.492188-35.089844-1.492188-103.445313%200-68.359375.261719-76.453125%201.492188-103.449218%201.140624-24.960938%205.308593-38.515626%208.8125-47.535157%204.105468-11.121093%2010.652343-21.179687%2019.152343-29.4375%208.257813-8.503906%2018.316407-15.046875%2029.4375-19.148437%209.019531-3.507813%2022.574219-7.675782%2047.535157-8.816406%2026.992187-1.230469%2035.089843-1.492188%20103.445312-1.492188h-.003906c68.355468%200%2076.453125.261719%20103.449218%201.496094%2024.960938%201.136718%2038.511719%205.308594%2047.535157%208.8125%2011.117187%204.105468%2021.175781%2010.648437%2029.433593%2019.148437%208.503907%208.257813%2015.046876%2018.316407%2019.148438%2029.4375%203.507812%209.019531%207.679688%2022.574219%208.816406%2047.535157%201.230469%2026.992187%201.492188%2035.089843%201.492188%20103.445312%200%2068.359375-.257813%2076.453125-1.492188%20103.449219zm0%200%22%20fill%3D%22url%28%23a%29%22%2F%3E%3Cpath%20d%3D%22m255.996094%20124.539062c-72.601563%200-131.457032%2058.859376-131.457032%20131.460938s58.855469%20131.457031%20131.457032%20131.457031c72.605468%200%20131.460937-58.855469%20131.460937-131.457031s-58.855469-131.460938-131.460937-131.460938zm0%20216.792969c-47.125-.003906-85.332032-38.207031-85.328125-85.335937%200-47.125%2038.203125-85.332032%2085.332031-85.332032%2047.128906.003907%2085.332031%2038.207032%2085.332031%2085.332032%200%2047.128906-38.207031%2085.335937-85.335937%2085.335937zm0%200%22%20fill%3D%22url%28%23b%29%22%2F%3E%3Cpath%20d%3D%22m423.371094%20119.347656c0%2016.964844-13.753906%2030.71875-30.71875%2030.71875-16.96875%200-30.722656-13.753906-30.722656-30.71875%200-16.96875%2013.753906-30.722656%2030.722656-30.722656%2016.964844%200%2030.71875%2013.753906%2030.71875%2030.722656zm0%200%22%20fill%3D%22url%28%23c%29%22%2F%3E%3C%2Fsvg%3E) !important;
  background-size: 17px;
}

.tripleIntroProductPanels {
  position: relative;
  z-index: 7;
  margin-left: -10px;
  margin-right: -10px;
  margin-top: 20px;
}
@media (min-width: 1200px) {
  .tripleIntroProductPanels {
    margin-top: -123px;
  }
}
@media (max-width: 991.98px) {
  .tripleIntroProductPanels {
    margin-left: -2px;
    margin-right: -2px;
  }
}
@media (min-width: 992px) {
  .tripleIntroProductPanels > div {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .tripleIntroProductPanels.quadra .item {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (max-width: 1500px) {
  .tripleIntroProductPanels.quadra .item .o-productIntroHome .layer__text h3 {
    font-size: 25px !important;
  }
}
.tripleIntroProductPanels .item {
  padding-left: 10px;
  padding-right: 10px;
  outline: 0;
}
@media (min-width: 992px) {
  .tripleIntroProductPanels .item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (max-width: 991.98px) {
  .tripleIntroProductPanels .item {
    padding-left: 2px;
    padding-right: 2px;
    padding-bottom: 20px;
  }
}
.tripleIntroProductPanels .o-productIntroHome .layer__text {
  max-width: 320px;
}
.tripleIntroProductPanels .slick-dots {
  bottom: 0;
}

@media (max-width: 991.98px) {
  .s-utilities .group-btn {
    text-align: center;
  }
}

.s-video .block__content__text h2 {
  margin-bottom: 20px;
}
.s-video .block__content__text--medium {
  color: #5b5b5b;
  margin: auto;
}
.s-video .block__content__img {
  padding-top: 32px;
}

.p-404-section {
  position: relative;
  min-height: 500px;
  margin-top: 40px;
  margin-bottom: 100px;
}
.p-404-section .container p {
  font-size: 20px;
  color: #5b5b5b;
}
.p-404-section .container p.title {
  font-family: "Roboto-Medium";
  font-size: 100px;
}
.p-404-section .container .a-button {
  margin-bottom: 30px;
}
.p-404-section .container .row {
  margin-top: 30px;
}
.p-404-section .container .o-article-flex {
  text-align: left;
}
@media (min-width: 768px) {
  .p-404-section .container .o-article-flex {
    margin-bottom: 20px;
  }
}

.p-about-title {
  font-size: 28px;
  font-weight: 600;
}
.p-about-introSection {
  margin-top: 5.2083333333vw;
}
@media (max-width: 991.98px) {
  .p-about-introSection {
    margin-top: 40px;
  }
}
.p-about-sectionFull {
  background-color: #fafafa;
  margin-top: 7.8125vw;
  padding-top: 2.6041666667vw;
  padding-bottom: 3.3854166667vw;
}
@media (max-width: 991.98px) {
  .p-about-sectionFull {
    margin-top: 40px;
  }
}
@media (max-width: 767.98px) {
  .p-about-sectionFull {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-about-sectionFull-wrapper {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.p-about-sectionFull-tag {
  font-size: 14px;
  text-transform: uppercase;
  color: #f58d00;
  font-weight: 600;
}
.p-about-sectionFull-title {
  color: #212529;
  margin-top: 5px;
}
.p-about-sectionFull-title h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}
.p-about-sectionFull-description {
  font-size: 16px;
  line-height: 1.5;
  color: #5b5b5b;
  margin-top: 15px;
}
.p-about-branchs {
  margin-top: 7.8125vw;
  text-align: center;
}
@media (max-width: 991.98px) {
  .p-about-branchs {
    margin-top: 40px;
  }
}
.p-about-branchs-subtext {
  max-width: 786px;
  margin: 0.78125vw auto 1.0416666667vw;
  color: #5b5b5b;
}
@media (min-width: 992px) {
  .p-about-branchs .o-groupBranch .b-item .img {
    transition: 0.4s ease;
    position: relative;
  }
  .p-about-branchs .o-groupBranch .b-item .img:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 6px solid #f49712;
    border-radius: 100%;
    transition: 0.2s ease;
    transform: scale(0);
    filter: blur(5px);
    z-index: -1;
  }
  .p-about-branchs .o-groupBranch .b-item:hover .img {
    box-shadow: 0 3px 15px rgba(244, 151, 18, 0.4);
  }
  .p-about-branchs .o-groupBranch .b-item:hover .img:before {
    transform: scale(1);
  }
}
.p-about-records {
  text-align: center;
  margin-top: 3.6458333333vw;
  margin-bottom: 7.8125vw;
}
@media (max-width: 991.98px) {
  .p-about-records {
    margin-top: 50px;
    margin-bottom: 90px;
  }
}
.p-about-records-map {
  margin-top: 10px;
  position: relative;
}
.p-about-records-map:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background-color: #d3d3d3;
}
@media (max-width: 767.98px) {
  .p-about-records-map {
    padding-left: 24px;
  }
  .p-about-records-map:before {
    left: 2px;
  }
}
.p-about-records-item {
  margin-top: 4.1666666667vw;
}
@media (max-width: 991.98px) {
  .p-about-records-item {
    margin-top: 1.5625vw;
  }
}
@media (max-width: 767.98px) {
  .p-about-records-item .o-sectionRecord-dotLine {
    left: -22px;
  }
}

@media (min-width: 992px) {
  .p-catalogue .p-sectionHome {
    padding-top: 4.1666666667vw;
    padding-bottom: 5.2083333333vw;
  }
}
.p-catalogue .imgPanel .a-img {
  border: 1px solid #d3d3d3;
  transition: 0.4s ease;
}
.p-catalogue .imgPanel .a-img:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: translate(0, -8px) scale(1.02);
}
.p-catalogue .imgPanel .block__content__text {
  font-family: "Roboto-Medium";
}
@media (min-width: 992px) {
  .p-catalogue .imgPanel .block__content__text {
    font-size: 20px;
  }
}

.p-cibesLiftCreator {
  padding-bottom: 150px;
}
@media (max-width: 991.98px) {
  .p-cibesLiftCreator {
    padding-bottom: 50px;
  }
}
.p-cibesLiftCreator-section {
  padding-top: 60px;
}
@media (max-width: 991.98px) {
  .p-cibesLiftCreator-section {
    padding-top: 40px;
  }
}
.p-cibesLiftCreator-section-content {
  margin: 0 auto;
}
@media (max-width: 1920px) {
  .p-cibesLiftCreator-section-content {
    width: 70.8333333333vw;
  }
}
@media (max-width: 991.98px) {
  .p-cibesLiftCreator-section-content {
    width: 100%;
  }
}
.p-cibesLiftCreator-section-content .m-tabsBar-fillOrange {
  max-width: 770px;
}
.p-cibesLiftCreator .cibes-note {
  margin-top: 45px;
  font-size: 14px;
  max-width: 670px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .p-cibesLiftCreator .customizer .cd-right-side-panel {
    top: 56px;
  }
}
@media (max-width: 767.98px) {
  .p-cibesLiftCreator .customizer {
    z-index: 10;
  }
}
.p-cibesLiftCreator .nav-tabs .nav-item {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .p-compare .block__content__text--title {
    margin-bottom: 40px;
  }
}
.p-compare .block .sliderProductCompare .slider {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .p-compare .block .sliderProductCompare .slider .m-productCompare {
    margin-bottom: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 767.98px) {
  .p-compare .block .sliderProductCompare .slider .m-productCompare {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.p-compare .block .sliderProductCompare .compareLabel {
  display: flex;
  flex-wrap: wrap;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  margin-bottom: 0.5rem;
}
@media (max-width: 767.98px) {
  .p-compare .block .sliderProductCompare .compareLabel .itemLabel {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label {
  cursor: pointer;
  margin-bottom: 0;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label span {
  font-size: 12px;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label input[type=checkbox] {
  display: none;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label input[type=checkbox] + span {
  position: relative;
  padding-top: 4px;
  padding-left: 28px;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label input[type=checkbox] + span::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "";
  background: #fff;
  border: 1px solid #dbdbdb;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label input[type=checkbox]:checked + span::before {
  background-color: #f49712;
  border-color: #f49712;
}
.p-compare .block .sliderProductCompare .compareLabel .itemLabel label input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 5px;
  left: 6px;
  width: 5px;
  height: 10px;
  content: "";
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  opacity: 1;
  transform: rotate(45deg);
}
@media (min-width: 992px) {
  .p-compare table.verticalHeading {
    margin-bottom: 150px;
  }
}

.s-construction {
  margin-top: 1.5625vw;
  margin-bottom: 5.2083333333vw;
}
@media (max-width: 991.98px) {
  .s-construction {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.s-construction .block__content .sGrid .m-cardProduct {
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .s-construction .block__content .sGrid .m-cardProduct {
    margin-bottom: 6px;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .imgPanel .a-label {
    top: 10px;
    font-size: 8px;
    padding: 5px 12px;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .textPanel {
    padding: 10px;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .textPanel .a-link {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .textPanel ul {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .textPanel ul li:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media (max-width: 767.98px) {
  .s-construction .block__content .sGrid .m-cardProduct .textPanel .m-iconText {
    font-size: 10px;
  }
}
.s-construction .filter-search {
  padding: 20px 0 30px;
}
.s-construction .filter-search .toggle-form {
  max-width: 80px;
  padding: 12px;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  font-weight: bold;
  color: #212529;
  text-decoration: none;
  background: #d3d3d3;
}
@media (min-width: 1200px) {
  .s-construction .filter-search .filterForm {
    display: flex;
  }
}
.s-construction .filter-search .filterForm .type {
  width: 26%;
  margin-right: 20px;
}
@media (max-width: 1199.98px) {
  .s-construction .filter-search .filterForm .type {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
.s-construction .filter-search .filterForm .size, .s-construction .filter-search .filterForm .position, .s-construction .filter-search .filterForm .construct {
  width: 200px;
  margin-right: 20px;
}
@media (max-width: 1199.98px) {
  .s-construction .filter-search .filterForm .size, .s-construction .filter-search .filterForm .position, .s-construction .filter-search .filterForm .construct {
    width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
@media (min-width: 1200px) {
  .s-construction .filter-search .filterForm .a-button {
    width: 300px;
  }
}
@media (max-width: 1199.98px) {
  .s-construction .filter-search .filterForm .a-button {
    width: 100%;
  }
}

.s-construction-detail {
  margin-top: 50px;
  margin-bottom: 90px;
}
@media (max-width: 991.98px) {
  .s-construction-detail {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.s-construction-detail .s-construction {
  margin: 0;
}
.s-construction-detail .s-gallery {
  margin-top: 20px;
}
@media (max-width: 991.98px) {
  .s-construction-detail .s-gallery .sGrid {
    margin-left: -5px;
    margin-right: -5px;
  }
  .s-construction-detail .s-gallery .sGrid .col-lg-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 768px) {
  .s-construction-detail .s-gallery .sGrid .mobileGrid {
    display: none;
  }
}
.s-construction-detail .s-gallery .sGrid .imgPanel {
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .s-construction-detail .s-gallery .sGrid .imgPanel {
    margin-bottom: 10px;
  }
}
.s-construction-detail .s-gallery .sGrid .imgPanel:hover .a-imageRatio img {
  transform: scale(1.2);
}
@media (max-width: 767.98px) {
  .s-construction-detail .s-gallery .sGrid .col-lg-4:last-child {
    display: none;
  }
}

.infoConstructPanel {
  padding: 20px 30px;
  background-color: #212529;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .infoConstructPanel {
    padding: 10px 8px;
  }
}
.infoConstructPanel.d-block .m-iconText {
  flex: 0 0 100%;
  max-width: 100%;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .infoConstructPanel.d-block .m-iconText {
    margin-bottom: 15px;
  }
}
.infoConstructPanel .m-iconText {
  font-size: 16px;
  flex: 0 0 25%;
  max-width: 25%;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .infoConstructPanel .m-iconText {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 14px;
  }
}
@media (max-width: 767.98px) {
  .infoConstructPanel .m-iconText {
    font-size: 10px;
  }
}
.infoConstructPanel .m-iconText .a-icon-smaller {
  width: 24px;
  height: 24px;
}

@media (min-width: 992px) {
  .p-contact .p-sectionHome {
    padding-top: 6.7708333333vw;
    padding-bottom: 7.2916666667vw;
  }
}
.p-contact iframe {
  height: 600px;
}
.p-contact .tabMap {
  padding: 15px 20px;
  border: 1px solid #d3d3d3;
  transition: 0.2s;
  cursor: pointer;
}
.p-contact .tabMap.active {
  border-color: #f49712;
}
.p-contact .tabMap.active .title {
  color: #f49712;
}
.p-contact .tabMap:not(:last-child) {
  margin-bottom: 15px;
}
.p-contact .tabMap .title {
  color: #212529;
  transition: 0.2s;
  font-size: 20px;
  font-family: "Roboto-Medium";
}
.p-contact .tabMap ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.p-contact .tabMap ul li {
  color: #5b5b5b;
}
.p-contact .tabMap ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media (min-width: 992px) {
  .p-contact .s-forms .p-sectionHome {
    padding-top: 20px;
  }
}

@media (min-width: 992px) {
  .m-banner.product-page .a-img:after {
    padding-top: 30.2604166667%;
  }
}
@media (min-width: 1200px) and (max-width: 1450px) {
  .m-banner.product-page .a-img:after {
    padding-top: 38.26042%;
  }
}

@media (max-width: 991.98px) {
  .productsPage .p-sectionHome {
    padding: 1.5625vw 0;
  }
}
.productsPage .s-products .block__content__text h2 {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .productsPage .s-products .block__content__text h2 {
    margin-bottom: 10px;
  }
}
.productsPage .s-products .block__content__text--medium {
  color: #5b5b5b;
  max-width: 555px;
  margin: auto;
}
.productsPage .s-products .block__content__img {
  padding-top: 1.6666666667vw;
}
.productsPage .tripleIntroProductPanels .slick-dots {
  bottom: -12px;
}
@media (min-width: 768px) {
  .productsPage .s-thumbProducts {
    padding-bottom: 65px;
  }
}
@media (max-width: 767px) {
  .productsPage .s-thumbProducts {
    padding-top: 40px;
  }
}
.productsPage .s-thumbProducts .scrollThumb {
  position: relative;
  width: 100%;
  max-width: 270px;
}
@media (min-width: 992px) {
  .productsPage .s-thumbProducts .row .col-lg-3 {
    margin-left: 8.33333%;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .productsPage .s-thumbProducts .row .col-lg-7 {
    margin-left: 8.33333%;
  }
}
@media (max-width: 1199.98px) {
  .productsPage .s-thumbProducts .tripleComplex {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .productsPage .s-thumbProducts .tripleComplex .row .col-lg-4 {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img {
    width: 325px;
  }
}
@media (min-width: 992px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img-quadrate-stand {
    width: 325px;
  }
}
@media (min-width: 1500px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img-quadrate-low-stretch {
    width: 554px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img-quadrate-low-stretch {
    width: 450px;
  }
}
@media (min-width: 768px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img-quadrate-low-stretch {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .productsPage .s-thumbProducts .tripleComplex .a-img-quadrate-low-stretch {
    margin-top: 10px;
  }
}
.productsPage .s-thumbProducts .m-scrollSection .card-header .collapsible {
  text-transform: uppercase;
}
.productsPage .s-thumbProducts .m-scrollSection .card-body .a-slideControl {
  margin-top: 14px;
}
@media (max-width: 767.98px) {
  .productsPage .s-thumbProducts .m-scrollSection .card-body .a-slideControl {
    margin-top: 8px;
  }
}
.productsPage .s-thumbProducts .a-scrollThumb {
  left: auto;
  right: -40px;
}

#exportFile {
  padding: 90px;
}
#exportFile .header img {
  max-width: 290px;
}
#exportFile .body .img {
  text-align: center;
  margin-bottom: 50px;
}
#exportFile .body .img img {
  max-width: 620px;
}
#exportFile .body ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
#exportFile .body ul li {
  color: #333;
  flex: 0 0 50%;
  max-width: 50%;
}
#exportFile .body ul li p {
  font-size: 24px;
}
#exportFile .body ul li strong {
  font-size: 48px;
  font-family: "Roboto-Bold";
}
#exportFile .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 300px;
}
#exportFile .footer .infoContact > p {
  font-size: 1rem;
}
#exportFile .footer .infoContact ul {
  list-style: none;
  padding-left: 0;
}
#exportFile .footer .infoContact ul li p span {
  font-family: "Roboto-Medium";
}
#exportFile .footer .infoScanning {
  width: 160px;
}
#exportFile .footer .infoScanning p {
  margin-bottom: 0;
  margin-top: 15px;
}

.p-faq .m-banner .container .content {
  max-width: 675px;
}
.p-faq .m-tabsBar {
  max-width: 1015px;
  margin: auto;
}
@media (max-width: 767.98px) {
  .p-faq .m-tabsBar-filled {
    position: relative;
    padding-right: 12px;
  }
  .p-faq .m-tabsBar-filled:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #5b5b5b;
    border-right: 2px solid #5b5b5b;
    top: calc(50% - 7px);
    right: -6px;
    transform: rotate(-45deg);
  }
}
.p-faq .m-tabsBar ul.tabs-desc {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .p-faq .m-tabsBar ul.tabs-desc {
    margin-bottom: 25px;
  }
}
.p-faq .m-tabsBar ul.tabs-desc li .a-tabItem {
  text-transform: uppercase;
  padding: 10px 30px;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .p-faq .m-scrollSection-lineArrow {
    max-width: 1170px;
    margin: auto;
  }
}
.p-faq .m-scrollSection-lineArrow .accordion .card:not(:last-child) {
  padding-bottom: 10px;
}
.p-faq .m-scrollSection-lineArrow .card-header .collapsible {
  padding-right: 30px;
  padding-bottom: 28px;
}
@media (min-width: 992px) {
  .p-faq .m-scrollSection-lineArrow .card-header .collapsible {
    padding-left: 30px;
  }
}
.p-faq .m-scrollSection-lineArrow .card-header .collapsible:before {
  top: auto;
  bottom: 18px;
}
@media (max-width: 767.98px) {
  .p-faq .m-scrollSection-lineArrow .card-header .collapsible:before {
    bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .p-faq .m-scrollSection-lineArrow .card-header .collapsible:after {
    top: 2px;
    width: 8px;
    height: 8px;
  }
}
@media (min-width: 992px) {
  .p-faq .m-scrollSection-lineArrow .card-body {
    padding-left: 30px;
  }
}

@media (max-width: 767.98px) {
  .p-handbook .m-tabsBar {
    position: relative;
    padding-right: 12px;
  }
  .p-handbook .m-tabsBar:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #5b5b5b;
    border-right: 2px solid #5b5b5b;
    top: calc(50% - 7px);
    right: -6px;
    transform: rotate(-45deg);
  }
}

.p-handbookDetail-content {
  margin: 80px auto 150px;
}
@media (max-width: 991.98px) {
  .p-handbookDetail-content {
    margin: 40px auto 80px;
  }
}
.p-handbookDetail-section {
  max-width: 900px;
  margin: auto;
  padding: 20px 0;
}
@media (max-width: 767.98px) {
  .p-handbookDetail-section {
    padding: 5px 0;
  }
}
.p-handbookDetail-title {
  font-size: 28px;
  color: #212529;
  font-family: "Roboto-Medium";
}
@media (max-width: 767.98px) {
  .p-handbookDetail-title {
    font-size: 20px;
  }
}
.p-handbookDetail-text {
  color: #5b5b5b;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .p-handbookDetail-text {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .p-handbookDetail .p-newsLayout-section .a-heading + .category-tag span {
    font-size: 18px;
  }
}
.p-handbookDetail .block__content .slick-slide {
  outline: 0 !important;
  box-shadow: none !important;
}
.p-handbookDetail .imgPanel.imgContent {
  padding: 20px 0 30px;
}
.p-handbookDetail .s-construction > .container {
  padding: 0;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mr-15 {
  margin-right: 15px;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.m-auto {
  margin: auto;
}

.plr-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.p-sectionHome {
  padding: 3.3854166667vw 0;
}
@media (min-width: 992px) {
  .p-sectionHome.hasSlide {
    padding-bottom: 2.34375vw;
  }
}
@media (max-width: 991.98px) {
  .p-sectionHome {
    padding: 30px 0;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.homepage .o-productIntroHome .layer__text .name,
.homepage .o-productIntroHome .layer__text .description {
  height: auto !important;
}
.homepage .o-productIntroHome .layer__text .name {
  text-transform: uppercase;
}
.homepage .s-products .p-home-productSlider .slick-arrow {
  top: 50% !important;
}
.homepage .s-products .p-home-productSlider .slick-prev {
  left: -25px !important;
}
.homepage .s-products .p-home-productSlider .slick-next {
  right: -25px !important;
}
.homepage .s-saying .block__content__text h2 {
  margin-bottom: 16px;
}
@media (max-width: 575.98px) {
  .homepage .s-saying .block__content__text h2 span {
    display: block;
  }
}
.homepage .s-construction {
  margin: 0;
}
@media (max-width: 991.98px) {
  .homepage .block__content__text {
    padding-bottom: 0;
  }
}
.homepage .block__content .imgPanel {
  margin-left: auto;
  margin-right: auto;
}
.homepage .block__content .imgPanel img {
  width: 100%;
}

.block__content {
  position: relative;
}
.block__content__img {
  position: relative;
}
.block__content__img .img-bg {
  transition: 0.2s ease;
}
.block__content__img .img-bg::after {
  padding-top: 73.8636363636%;
}
.block__content__img .play_thumb_video,
.block__content__img .play_related_video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 50px solid #ffffff;
  transform: translate3d(-50%, -50%, 0);
}
.block__content__img .video-box::after {
  padding-top: 56.2222222222%;
}
.block__content__text {
  padding: 8px 15px;
}
@media (max-width: 767.98px) {
  .block__content__text {
    padding: 8px 5px;
  }
}
@media (min-width: 992px) {
  .block__content__text {
    padding: 18px 30px;
    font-size: 18px;
  }
}
.block__content__text--title {
  margin-bottom: 10px;
  font-family: "Roboto-Bold";
  font-size: 28px;
}
@media (max-width: 991.98px) {
  .block__content__text--title {
    font-size: 22px;
  }
}
.block__content__text--light a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}
.block__content__text--light a:hover {
  color: #f49712;
}
.block__content__text--violet {
  color: #222b45;
}
.block__content__text--violet a {
  color: #222b45;
  text-decoration: none;
  transition: 0.2s ease;
}
.block__content__text--violet a:hover {
  color: #212529;
}
.block__content__text--dark a {
  color: #212529;
  text-decoration: none;
  transition: 0.2s ease;
}
.block__content__text--dark a:hover {
  color: #f49712;
}
.block__content__text--sub {
  font-size: 16px;
  color: #5b5b5b;
}
@media (max-width: 991.98px) {
  .block__content__text--sub {
    font-size: 12px;
  }
}
.block__content__text--medium {
  font-size: 15px;
}
@media (min-width: 992px) {
  .block__content__text--medium {
    font-size: 20px;
  }
}
.block__content__text--greyColor {
  color: #5b5b5b;
}
.block__content__text .title {
  font-family: "Roboto-Bold";
}
.block__content__text .sub {
  font-family: "Roboto-Medium";
}
.block__content__text h1 {
  font-size: 48px;
}
@media (max-width: 991.98px) {
  .block__content__text h1 {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .block__content__text h1 {
    font-size: 24px;
  }
}
.block__content__text h2 {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 32px;
}
@media (max-width: 991.98px) {
  .block__content__text h2 {
    margin-bottom: 25px;
    font-size: 26px;
  }
}
@media (max-width: 767.98px) {
  .block__content__text h2 {
    font-size: 18px;
  }
}
.block__item--inner.isFlex {
  display: flex;
}
.block__item--inner.isFlex .block__content__text {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 991.98px) {
  .block__item--inner.isFlex .block__content__text {
    margin-left: 10px;
  }
}
.block__item.block--image .block__content__img {
  overflow: hidden;
}
.block__item.block--image .block__content__img:hover .img-bg {
  transform: scale(1.1);
}
.block__item.block--video .block__content__img:hover .block--bgLayer {
  visibility: visible;
  opacity: 1;
}
.block__item.block--catalogue .block__content__img {
  border: 1px solid #dbdbdb;
  transition: 0.2s ease;
}
.block__item.block--catalogue .block__content__img:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transform: translate(0, -8px) scale(1.02);
}
.block__action {
  display: flex;
  justify-content: flex-end;
  padding: 0 20px 20px;
}
.block__action .act-download {
  padding-left: 25px;
  cursor: pointer;
}
.block__action .act-download span {
  font-family: "Roboto-Medium";
  font-size: 18px;
  color: #002855;
  transition: 0.2s ease;
}
.block__action .act-download span:hover {
  color: #f49712;
}
.block--subtext {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.block--subtext a.viewmore {
  position: relative;
  display: block;
  padding-right: 18px;
  font-size: 18px;
  color: #002855;
  text-decoration: none;
  text-transform: none;
  transition: 0.2s ease;
}
@media (max-width: 767.98px) {
  .block--subtext a.viewmore {
    font-size: 12px;
  }
}
.block--subtext a.viewmore:hover {
  color: rgba(0, 40, 85, 0.8);
}
.block--subtext a.viewmore:hover::before {
  transform: rotate(-45deg) translate3d(5px, 5px, 0);
}
.block--subtext a.viewmore::before {
  position: absolute;
  top: 10px;
  right: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-right: 2px solid #002855;
  border-bottom: 2px solid #002855;
  transition: 0.2s ease;
  transform: rotate(-45deg);
}
@media (max-width: 767.98px) {
  .block--subtext a.viewmore::before {
    top: 5px;
  }
}
.block--triple {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .block--triple {
    margin-right: -10px;
    margin-left: -10px;
  }
}
.block--triple .block__item {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  padding: 0 10px;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .block--triple .block__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 767.98px) {
  .block--triple .block__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}
.block--thumb .block__item {
  max-width: 100%;
}
.block--bgLayer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.2s ease;
}
.block--layer {
  color: #ffffff;
  background: #212529;
}
.block--maxwidth {
  max-width: 786px;
  margin: auto;
}
@media (min-width: 992px) {
  .block--maxwidth {
    margin-top: 20px;
  }
}
.block .hasBorder {
  border: solid 1px #d3d3d3;
}

.s-why .block__content .imgPanel .a-img:after {
  padding-top: 40.92026%;
}
@media (min-width: 992px) {
  .s-why .block__content .col-lg-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .s-why .block__content .col-lg-4 {
    margin-left: 8.33333%;
  }
}
@media (max-width: 575.98px) {
  .s-products .block .a-heading span {
    display: block;
  }
}
.s-products .row {
  margin-right: -10px;
  margin-left: -10px;
}
.s-products .row .col-lg-6 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199.98px) {
  .s-products .row .col-lg-6 {
    margin-bottom: 15px;
  }
}
.s-products .m-tabsBar-doubleTab {
  margin-top: 0;
}
@media (max-width: 991.98px) {
  .s-construction {
    padding-bottom: 56px;
  }
}
@media (max-width: 991.98px) {
  .s-construction {
    padding-bottom: 15px;
  }
}
.s-utilities .col-lg-5 {
  margin-top: 20px;
}
@media (min-width: 992px) and (max-width: 1300px) {
  .s-utilities .col-lg-5:before {
    top: 0 !important;
    bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .s-utilities .col-lg-5:before {
    content: "";
    position: absolute;
    top: 133px;
    left: -40px;
    bottom: 50px;
    right: -300px;
    z-index: 1;
    background-color: #fafafa;
  }
}
@media (min-width: 1301px) and (max-width: 1400px) {
  .s-utilities .col-lg-5:before {
    top: 128px;
  }
}
@media (max-width: 767.98px) {
  .s-utilities .col-lg-5 {
    margin-top: 25px;
  }
}
@media (min-width: 1400px) {
  .s-utilities .col-lg-5 {
    padding-left: 110px !important;
  }
}
@media (min-width: 992px) {
  .s-utilities .col-lg-5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0;
    padding-left: 60px;
  }
}
.s-utilities .block__content {
  z-index: 2;
}
@media (min-width: 1200px) and (max-width: 1500px) {
  .s-utilities .block__content__text {
    max-width: 350px;
  }
}
.s-utilities .block__content__text h2 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .s-utilities .block__content__text h2 {
    line-height: 48px;
  }
  .s-utilities .block__content__text h2 span {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .s-utilities .block__content__text h2 {
    margin-bottom: 10px;
    font-size: 28px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .s-utilities .block__content__text h2 {
    font-size: 24px;
  }
}
.s-utilities .block__content__text p {
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .s-utilities .block__content__text p {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .s-utilities .block__content .imgPanel.desktopView {
    display: none;
  }
}
@media (min-width: 768px) {
  .s-utilities .block__content .imgPanel.mobileView {
    display: none;
  }
}
.s-utilities .block__content .imgPanel .a-img:after {
  padding-top: 63.94904%;
}
.s-utilities .block__content button.a-button {
  margin-top: 35px;
}
@media (max-width: 991.98px) {
  .s-utilities .block__content button.a-button {
    margin-top: 20px;
  }
}
@media (max-width: 991.98px) {
  .s-saying {
    padding-bottom: 56px;
  }
}
.s-saying .b-talkAbout {
  position: relative;
  z-index: 1;
  display: flex;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
}
@media (max-width: 991.98px) {
  .s-saying .b-talkAbout {
    margin-left: 0;
    margin-right: 0;
  }
}
.s-saying .b-talkAbout .slick-track {
  padding: 10px 0;
}
@media (max-width: 991.98px) {
  .s-saying .b-talkAbout .m-clientSay__info {
    min-height: 162px;
  }
}
.s-guide-seemore {
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 1199.98px) {
  .s-guide-seemore {
    margin-top: 10px;
  }
}
.s-guide-seemore button {
  width: 325px;
}
@media (max-width: 991.98px) {
  .s-guide-seemore button {
    width: unset;
  }
}
.s-guide h2 {
  margin-bottom: 0;
}
.s-guide .textPanel {
  text-align: left;
}
@media (min-width: 1300px) {
  .s-guide .m-tabsBar:not(.m-tabsBar-narrowTab) ul.tabs-desc li {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .s-guide .m-tabsBar ul.tabs-desc {
    flex-wrap: wrap;
    white-space: normal;
    overflow: visible;
    justify-content: flex-start;
  }
  .s-guide .m-tabsBar ul.tabs-desc:before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .s-guide .m-tabsBar ul.tabs-desc li .a-tabItem-active {
    background-color: #f49712;
    color: #fff;
  }
  .s-guide .m-tabsBar ul.tabs-desc li .a-tabItem-active::before {
    border-color: #f49712;
  }
}
@media (min-width: 1300px) {
  .s-guide .m-tabsBar ul.tabs-desc li .a-tabItem {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .s-guide .m-tabsBar ul.tabs-desc li .a-tabItem {
    padding: 5px 14px;
    margin-right: 5px;
    margin-bottom: 5px;
  }
  .s-guide .m-tabsBar ul.tabs-desc li .a-tabItem:before {
    transform: scale(1);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    border: 1px solid #d3d3d3;
    background: transparent;
  }
}
@media (min-width: 1200px) {
  .s-branches {
    padding-bottom: 150px;
  }
}
.s-branches h2 {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .s-branches h2 {
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .s-branches .block__content__text--sub {
    font-size: 14px;
  }
}
.s-contact {
  background-color: #f49712;
  padding-top: 32px;
  padding-bottom: 60px;
}
.s-contact h2 {
  margin-bottom: 0;
}
.s-contact .block__content__text--sub {
  margin-top: 10px;
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .s-contact .block__content__text--sub {
    margin-bottom: 25px;
  }
}
.s-contact .a-heading,
.s-contact .block__content__text--sub {
  color: #ffffff;
}
.s-contact .form-style {
  max-width: 670px;
  margin: auto;
}
@media (min-width: 992px) {
  .s-contact .form-line.hasButton .btn-custom {
    width: 270px !important;
  }
}
.s-contact .form-input {
  border-radius: 0;
}

.row.sGrid {
  margin-left: -10px;
  margin-right: -10px;
}
.row.sGrid .col-1,
.row.sGrid .col-2,
.row.sGrid .col-3,
.row.sGrid .col-4,
.row.sGrid .col-5,
.row.sGrid .col-6,
.row.sGrid .col-7,
.row.sGrid .col-8,
.row.sGrid .col-9,
.row.sGrid .col-10,
.row.sGrid .col-11,
.row.sGrid .col-12,
.row.sGrid .col,
.row.sGrid .col-auto,
.row.sGrid .col-sm-1,
.row.sGrid .col-sm-2,
.row.sGrid .col-sm-3,
.row.sGrid .col-sm-4,
.row.sGrid .col-sm-5,
.row.sGrid .col-sm-6,
.row.sGrid .col-sm-7,
.row.sGrid .col-sm-8,
.row.sGrid .col-sm-9,
.row.sGrid .col-sm-10,
.row.sGrid .col-sm-11,
.row.sGrid .col-sm-12,
.row.sGrid .col-sm,
.row.sGrid .col-sm-auto,
.row.sGrid .col-md-1,
.row.sGrid .col-md-2,
.row.sGrid .col-md-3,
.row.sGrid .col-md-4,
.row.sGrid .col-md-5,
.row.sGrid .col-md-6,
.row.sGrid .col-md-7,
.row.sGrid .col-md-8,
.row.sGrid .col-md-9,
.row.sGrid .col-md-10,
.row.sGrid .col-md-11,
.row.sGrid .col-md-12,
.row.sGrid .col-md,
.row.sGrid .col-md-auto,
.row.sGrid .col-lg-1,
.row.sGrid .col-lg-2,
.row.sGrid .col-lg-3,
.row.sGrid .col-lg-4,
.row.sGrid .col-lg-5,
.row.sGrid .col-lg-6,
.row.sGrid .col-lg-7,
.row.sGrid .col-lg-8,
.row.sGrid .col-lg-9,
.row.sGrid .col-lg-10,
.row.sGrid .col-lg-11,
.row.sGrid .col-lg-12,
.row.sGrid .col-lg,
.row.sGrid .col-lg-auto,
.row.sGrid .col-xl-1,
.row.sGrid .col-xl-2,
.row.sGrid .col-xl-3,
.row.sGrid .col-xl-4,
.row.sGrid .col-xl-5,
.row.sGrid .col-xl-6,
.row.sGrid .col-xl-7,
.row.sGrid .col-xl-8,
.row.sGrid .col-xl-9,
.row.sGrid .col-xl-10,
.row.sGrid .col-xl-11,
.row.sGrid .col-xl-12,
.row.sGrid .col-xl,
.row.sGrid .col-xl-auto,
.row.sGrid .col-4k-1,
.row.sGrid .col-4k-2,
.row.sGrid .col-4k-3,
.row.sGrid .col-4k-4,
.row.sGrid .col-4k-5,
.row.sGrid .col-4k-6,
.row.sGrid .col-4k-7,
.row.sGrid .col-4k-8,
.row.sGrid .col-4k-9,
.row.sGrid .col-4k-10,
.row.sGrid .col-4k-11,
.row.sGrid .col-4k-12,
.row.sGrid .col-4k,
.row.sGrid .col-4k-auto {
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1199.98px) {
  .row.sGrid .col-1,
.row.sGrid .col-2,
.row.sGrid .col-3,
.row.sGrid .col-4,
.row.sGrid .col-5,
.row.sGrid .col-6,
.row.sGrid .col-7,
.row.sGrid .col-8,
.row.sGrid .col-9,
.row.sGrid .col-10,
.row.sGrid .col-11,
.row.sGrid .col-12,
.row.sGrid .col,
.row.sGrid .col-auto,
.row.sGrid .col-sm-1,
.row.sGrid .col-sm-2,
.row.sGrid .col-sm-3,
.row.sGrid .col-sm-4,
.row.sGrid .col-sm-5,
.row.sGrid .col-sm-6,
.row.sGrid .col-sm-7,
.row.sGrid .col-sm-8,
.row.sGrid .col-sm-9,
.row.sGrid .col-sm-10,
.row.sGrid .col-sm-11,
.row.sGrid .col-sm-12,
.row.sGrid .col-sm,
.row.sGrid .col-sm-auto,
.row.sGrid .col-md-1,
.row.sGrid .col-md-2,
.row.sGrid .col-md-3,
.row.sGrid .col-md-4,
.row.sGrid .col-md-5,
.row.sGrid .col-md-6,
.row.sGrid .col-md-7,
.row.sGrid .col-md-8,
.row.sGrid .col-md-9,
.row.sGrid .col-md-10,
.row.sGrid .col-md-11,
.row.sGrid .col-md-12,
.row.sGrid .col-md,
.row.sGrid .col-md-auto,
.row.sGrid .col-lg-1,
.row.sGrid .col-lg-2,
.row.sGrid .col-lg-3,
.row.sGrid .col-lg-4,
.row.sGrid .col-lg-5,
.row.sGrid .col-lg-6,
.row.sGrid .col-lg-7,
.row.sGrid .col-lg-8,
.row.sGrid .col-lg-9,
.row.sGrid .col-lg-10,
.row.sGrid .col-lg-11,
.row.sGrid .col-lg-12,
.row.sGrid .col-lg,
.row.sGrid .col-lg-auto,
.row.sGrid .col-xl-1,
.row.sGrid .col-xl-2,
.row.sGrid .col-xl-3,
.row.sGrid .col-xl-4,
.row.sGrid .col-xl-5,
.row.sGrid .col-xl-6,
.row.sGrid .col-xl-7,
.row.sGrid .col-xl-8,
.row.sGrid .col-xl-9,
.row.sGrid .col-xl-10,
.row.sGrid .col-xl-11,
.row.sGrid .col-xl-12,
.row.sGrid .col-xl,
.row.sGrid .col-xl-auto,
.row.sGrid .col-4k-1,
.row.sGrid .col-4k-2,
.row.sGrid .col-4k-3,
.row.sGrid .col-4k-4,
.row.sGrid .col-4k-5,
.row.sGrid .col-4k-6,
.row.sGrid .col-4k-7,
.row.sGrid .col-4k-8,
.row.sGrid .col-4k-9,
.row.sGrid .col-4k-10,
.row.sGrid .col-4k-11,
.row.sGrid .col-4k-12,
.row.sGrid .col-4k,
.row.sGrid .col-4k-auto {
    margin-bottom: 14px;
  }
}

.form-style.grid {
  display: flex;
  flex-wrap: wrap;
  max-width: 834px !important;
}
.form-style.grid .form-line {
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 24px;
  width: 100%;
}
@media (min-width: 576px) {
  .form-style.grid .form-line {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.form-style.grid .form-line.w100 {
  flex: 0 0 100%;
  max-width: 100%;
}
.form-style .form-line.hasButton {
  display: flex;
}
.form-style .form-line.hasButton ::placeholder {
  color: #ffffff;
}
.form-style .form-line.hasButton input.form-input {
  display: block;
  width: 100%;
  padding: 13px 15px;
  font-size: 0.88889em;
  line-height: 1.5;
  background-clip: padding-box;
  outline: 0;
  box-shadow: none;
  height: 50px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
@media (max-width: 767.98px) {
  .form-style .form-line.hasButton input.form-input {
    padding: 4px 15px;
    height: 40px;
    font-size: 14px;
  }
}
.form-style .form-line.hasButton .btn-custom {
  width: 210px;
  background-color: #ffffff;
  color: #f49712;
  padding: 0.8rem 2.75rem;
  border: none;
  border-radius: 0;
  outline: 0;
  display: inline-block;
  text-decoration: none;
  transition: 0.2s ease;
}
.form-style .form-line.hasButton .btn-custom:hover {
  background-color: #eaeaea;
}
@media (max-width: 767.98px) {
  .form-style .form-line.hasButton .btn-custom {
    width: 70%;
    padding: 0.7rem 0.75rem;
    font-size: 10px;
  }
}

.form-button {
  display: flex;
  justify-content: center;
}

.zopim[data-test-id=ChatWidgetMobileButton] {
  bottom: 75px !important;
  z-index: 10;
}

.zopim[data-test-id=ChatWidgetMobileUnreadCountBadge] {
  bottom: 95px !important;
  z-index: 10;
}

@media (min-width: 1200px) {
  .p-landingpage_nav {
    margin-top: 62px;
  }
}
.p-landingpage_nav.fixNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 20;
}
@media (max-width: 1199.98px) {
  .p-landingpage_nav.fixNav {
    top: 103px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .p-landingpage_nav.fixNav {
    top: 92px;
  }
}
@media (max-width: 991.98px) {
  .p-landingpage_nav.fixNav {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .p-landingpage_nav.fixNav {
    top: 39px;
  }
}
.p-landingpage_nav.fixNav .m-tabsBar {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .p-landingpage_nav .m-tabsBar-underlined {
    position: relative;
    padding-right: 12px;
  }
  .p-landingpage_nav .m-tabsBar-underlined:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #5b5b5b;
    border-right: 2px solid #5b5b5b;
    top: calc(50% - 7px);
    right: -6px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 1199.98px) {
  .p-landingpage_nav .m-tabsBar ul.tabs-desc {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media (max-width: 767.98px) {
  .p-landingpage_nav .m-tabsBar ul.tabs-desc {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .p-landingpage_nav .m-tabsBar ul.tabs-desc li {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
.p-landingpage_nav .m-tabsBar ul.tabs-desc li.active .a-tabItem {
  color: #f49712;
}
.p-landingpage_nav .m-tabsBar ul.tabs-desc li.active .a-tabItem::before {
  transform: scale(1);
}
@media (min-width: 1200px) {
  .p-landingpage_nav .m-tabsBar ul.tabs-desc li .a-tabItem {
    width: 100%;
    padding: 11px 10px 13px;
  }
}
@media (min-width: 1200px) and (max-width: 1490px) {
  .p-landingpage_nav .m-tabsBar ul.tabs-desc li .a-tabItem {
    font-size: 17px;
  }
}
.p-landingpage_contact {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f49712;
}

@media (max-width: 991px) {
  .p-landingpage2 {
    margin-top: 94px;
  }
}
@media (max-width: 767px) {
  .p-landingpage2 {
    margin-top: 65px;
  }
}
.p-landingpage2 #lp-products .block__content__text h2 {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .p-landingpage2 #lp-products .block__content__text h2 {
    margin-bottom: 14px;
  }
}
.p-landingpage2_thumbnailContent_heading {
  max-width: 835px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1400px) {
  .p-landingpage2_utilities .listStyleCheck ul li {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .p-landingpage2_utilities .listStyleCheck ul li::before {
    top: 7px;
  }
}
@media (min-width: 1200px) {
  .p-landingpage2 .p-sectionHome {
    padding: 24px 0;
  }
}
@media (min-width: 992px) {
  .p-landingpage2 .s-why {
    margin-top: 20px !important;
  }
}

.p-demoFirst .m-banner .a-img:after {
  padding-top: 36.927083%;
}
@media (max-width: 1199.98px) {
  .p-demoFirst .m-banner .a-img:after {
    padding-top: 57.927083%;
  }
}
@media (max-width: 767.98px) {
  .p-demoFirst .m-banner .a-img:after {
    padding-top: 138.927083%;
  }
}
.p-demoFirst .m-banner .content {
  text-align: center;
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
}
.p-demoFirst .m-banner .content .banner-title {
  margin-bottom: 14px;
}
@media (max-width: 1199.98px) {
  .p-demoFirst .m-banner .content .banner-title {
    font-size: 28px;
  }
}
@media (max-width: 767.98px) {
  .p-demoFirst .m-banner .content .banner-title {
    font-size: 24px;
  }
}
@media (max-width: 1199.98px) {
  .p-demoFirst .m-banner .content p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .p-demoFirst .m-banner .content p {
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .p-library .p-sectionHome {
    padding-top: 150px;
    padding-bottom: 130px;
  }
}
.p-library .a-link {
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .p-library-drawing .p-sectionHome {
    padding: 80px 0 130px;
  }
}
.p-library-drawing .group-btn {
  padding-top: 30px;
}

@media (min-width: 992px) {
  .p-library-video .p-sectionHome {
    padding: 80px 0 130px;
  }
}
.p-library-video .p-sectionHome .group-btn {
  padding: 30px 0;
}
.p-library-video .m-tabsBar {
  max-width: 670px;
  margin-left: auto;
  margin-right: auto;
}
.p-library-video .m-tabsBar ul.tabs-desc li {
  flex: 0 0 50%;
  max-width: 50%;
}
.p-library-video .m-tabsBar ul.tabs-desc li .a-tabItem {
  width: 100%;
}

@media (min-width: 992px) {
  .p-library-video-detail .p-sectionHome {
    padding: 80px 0 130px;
  }
}

.p-newHandbook_title {
  padding-bottom: 0;
}
.p-newHandbook_title h1, .p-newHandbook_title h2 {
  font-family: "Roboto-Bold";
  color: #212529;
  font-size: 46px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}
.p-newHandbook_title p {
  max-width: 840px;
  margin: 12px auto 0;
}
.p-newHandbook_specification {
  background-color: #fafafa;
}
.p-newHandbook_gallery {
  margin-top: 20px;
  padding-bottom: 0;
}
@media (max-width: 767.98px) {
  .p-newHandbook_gallery {
    margin-top: 0;
  }
}
@media (max-width: 991.98px) {
  .p-newHandbook_gallery .sGrid {
    margin-left: -5px;
    margin-right: -5px;
  }
  .p-newHandbook_gallery .sGrid .col-lg-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 768px) {
  .p-newHandbook_gallery .sGrid .mobileGrid {
    display: none;
  }
}
.p-newHandbook_gallery .sGrid .imgPanel {
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .p-newHandbook_gallery .sGrid .imgPanel {
    margin-bottom: 10px;
  }
}
.p-newHandbook_gallery .sGrid .imgPanel:hover .a-imageRatio img {
  transform: scale(1.2);
}
@media (max-width: 767.98px) {
  .p-newHandbook_gallery .sGrid .col-lg-4:last-child {
    display: none;
  }
}
.p-newHandbook_gallery .socialPanel {
  margin-bottom: 0;
}
.p-newHandbook_related {
  padding-bottom: 0;
}
.p-newHandbook_detail {
  padding-top: 0;
  padding-bottom: 0;
}
@media (min-width: 576px) {
  .p-newHandbook_detail .block {
    max-width: 85%;
    margin: auto;
  }
}
.p-newHandbook_certification_flex {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 20px;
  justify-content: center;
}
@media (max-width: 767px) {
  .p-newHandbook_certification_flex {
    margin-bottom: 8px;
  }
}
.p-newHandbook_certification_flex .item {
  flex: 0 0 20%;
  max-width: 20%;
  padding-left: 8px;
  padding-right: 8px;
}
@media (max-width: 767px) {
  .p-newHandbook_certification_flex .item {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    margin-bottom: 16px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .block--flex {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .block--flex .imgSliderInner {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-newHandbook .block--flex .imgSliderInner .slider {
  margin-bottom: 0;
}
.p-newHandbook .block--flex .imgSliderInner .slider .slick-list {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .p-newHandbook .block--flex .imgPanelMain {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .block--flex .contentListStylePanel {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1500px) {
  .p-newHandbook .block--flex .contentListStylePanel .subHeading {
    max-width: 600px !important;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .block--flex .contentListStylePanel .subHeading {
    margin-top: 20px;
  }
}
@media (min-width: 1500px) {
  .p-newHandbook .block--flex .contentListStylePanel .listStyleCheck ul {
    max-width: 600px !important;
  }
}
.p-newHandbook .block--maxwidth {
  max-width: 670px;
}
@media (max-width: 767.98px) {
  .p-newHandbook .block__content__text--sub {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .s-characteristic .block--flex:first-child .contentListStylePanel {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .s-characteristic .block--flex .collapsePanel {
    margin-left: 8.33333%;
  }
}
.p-newHandbook .s-characteristic .block--flex .collapsePanel .block__content__text {
  padding: 30px 0 40px;
}
.p-newHandbook .s-characteristic .block--flex .collapsePanel .block__content__text .a-heading {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .p-newHandbook .s-characteristic .block--flex .collapsePanel .block__content__text .a-heading {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .p-newHandbook .s-characteristic .block--flex .collapsePanel .m-scrollSection .accordion .card {
    padding-bottom: 27px;
  }
}
.p-newHandbook .s-characteristic .block__content:first-child {
  margin-bottom: 6.7708333333vw;
}
@media (max-width: 767.98px) {
  .p-newHandbook .s-characteristic .block__content:first-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 991.98px) {
  .p-newHandbook .s-characteristic .block__content__text--sub {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .p-newHandbook .s-characteristic .block__content .m-scrollSection-lineArrow .card-header .collapsible {
    font-size: 16px;
  }
}
.p-newHandbook .s-why {
  margin-top: 0 !important;
  padding-bottom: 0;
}
.p-newHandbook .s-products .o-productIntroHome-triple .a-imageRatio,
.p-newHandbook .s-products .o-productIntroHome-quadra .a-imageRatio {
  padding-top: unset;
  padding-bottom: 110%;
}

.p-news .tab-content .o-article .category-tag span.tag {
  display: none;
}
.p-news .tab-content .o-article .category-tag span.time {
  font-family: "Roboto-Medium";
}

.p-newsDetail .p-newsLayout-content .imgContent {
  padding-top: 30px;
  padding-bottom: 60px;
}
@media (max-width: 1199.98px) {
  .p-newsDetail .p-newsLayout-content .imgContent {
    padding-top: 15px;
    padding-bottom: 24px;
  }
}

.p-newsDetail .o-article .category-tag span.tag {
  display: none;
}
.p-newsDetail .p-newsLayout-section:first-child {
  padding-bottom: 10px;
}

.t-pricing_intro {
  max-width: 900px;
  margin: auto;
}
@media (max-width: 991.98px) {
  .t-pricing_intro {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.t-pricing_intro_inner {
  padding: 30px 15px;
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
@media (max-width: 767.98px) {
  .t-pricing_intro_inner {
    margin-left: -8px;
    margin-right: -8px;
  }
}
.t-pricing_intro_item {
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
  display: inline-flex;
}
@media (max-width: 767.98px) {
  .t-pricing_intro_item {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.t-pricing_intro_item_icon {
  flex: 0 0 30%;
  max-width: 30%;
}
@media (min-width: 768px) {
  .t-pricing_intro_item_icon .a-icon {
    width: 100px;
    height: 100px;
  }
}
.t-pricing_intro_item_detail {
  flex: 1 0 0;
}
.t-pricing_intro_item_detail .title {
  font-family: "Roboto-Medium";
  font-size: 18px;
  color: #f49712;
  margin-bottom: 8px;
}
@media (max-width: 767.98px) {
  .t-pricing_intro_item_detail .title {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.t-pricing_intro_item_detail .sub {
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .t-pricing_intro_item_detail .sub {
    font-size: 10px;
  }
}
.t-pricing_footer {
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #fafafa;
  text-align: center;
}
@media (max-width: 767.98px) {
  .t-pricing_footer {
    padding-top: 50px;
    padding-bottom: 20px;
  }
}
.t-pricing_footer_copyright {
  color: #7f7f7f;
}
@media (max-width: 767.98px) {
  .t-pricing_footer_copyright {
    font-size: 14px;
  }
}
.t-pricing_footer_content {
  margin-bottom: 150px;
}
.t-pricing_footer_content .title {
  color: #f49712;
  font-size: 32px;
  max-width: 400px;
  margin: auto;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .t-pricing_footer_content .title {
    font-size: 22px;
  }
}
.t-pricing_footer_content .sub {
  color: #7f7f7f;
}
@media (max-width: 767.98px) {
  .t-pricing_footer_content .sub {
    font-size: 14px;
  }
}
.t-pricing_footer_content .sub p {
  font-family: "Roboto-Bold";
}
.t-pricing_footer_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .t-pricing_footer_wrapper {
    max-width: 555px;
    margin: auto;
  }
}
.t-pricing .m-banner_formContent .row .col-xl-4 {
  display: flex;
  align-items: center;
}
.t-pricing .m-banner_formContent .multiFieldForm .form-line {
  margin-bottom: 20px;
}
.t-pricing .m-banner .content {
  max-width: 400px;
  margin: auto;
}
@media (max-width: 991.98px) {
  .t-pricing .m-banner .content {
    text-align: center;
    padding: 15px;
  }
}
@media (max-width: 767.98px) {
  .t-pricing .m-banner .content .banner-title {
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .t-pricing .m-banner .content .banner-title,
.t-pricing .m-banner .content p {
    color: #fff;
  }
}
@media (max-width: 767.98px) {
  .t-pricing .m-banner .content p {
    color: #212529;
  }
}
.t-pricing .m-banner .overlay-dark {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.52), transparent);
}
.t-pricing .m-banner .a-img:after {
  padding-top: 37.927083%;
}
@media (max-width: 1500px) {
  .t-pricing .m-banner .a-img:after {
    padding-top: 57.927083%;
  }
}
@media (max-width: 1199.98px) {
  .t-pricing .m-banner .a-img:after {
    padding-top: 70.927083%;
  }
}
@media (max-width: 991.98px) {
  .t-pricing .m-banner .a-img:after {
    padding-top: 130.927083%;
  }
}

.p-privacy-content {
  max-width: 900px;
  margin: 4.1666666667vw auto 7.8125vw;
}
@media (max-width: 991.98px) {
  .p-privacy-content {
    margin: 30px auto 90px;
  }
}
.p-privacy-content .a-heading h1 {
  margin-bottom: 0;
}
.p-privacy-section h2 {
  font-size: 28px;
  color: #212529;
  font-family: "Roboto-Medium";
  margin-top: 2.0833333333vw;
}
@media (max-width: 1199.98px) {
  .p-privacy-section h2 {
    margin-top: 15px;
  }
}
@media (max-width: 767.98px) {
  .p-privacy-section h2 {
    font-size: 20px;
  }
}
.p-privacy-section p {
  color: #5b5b5b;
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .p-privacy-section p {
    font-size: 14px;
  }
}
.p-privacy-text {
  color: #5b5b5b;
  margin-top: 10px;
}
@media (max-width: 767.98px) {
  .p-privacy-text {
    font-size: 14px;
  }
}

.p-search-result .block__content__text h3 {
  font-family: "Roboto-Medium";
}
@media (max-width: 1199.98px) {
  .p-search-result .m-tabsBar {
    border-bottom: 1px solid #d3d3d3;
  }
}
@media (max-width: 1199.98px) {
  .p-search-result .m-tabsBar ul.tabs-desc:before {
    display: none;
  }
}
.p-search-result .m-tabsBar ul.tabs-desc li {
  flex: 0 0 14%;
  max-width: 14%;
}
@media (max-width: 1199.98px) {
  .p-search-result .m-tabsBar ul.tabs-desc li {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.p-search-result .listResult .imgTextFlex {
  display: flex;
}
.p-search-result .listResult .imgTextFlex:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .p-search-result .listResult .imgTextFlex:not(:last-child) {
    margin-bottom: 10px;
  }
}
.p-search-result .listResult .imgTextFlex .imgPanel {
  margin-right: 20px;
}
@media (max-width: 991.98px) {
  .p-search-result .listResult .imgTextFlex .imgPanel {
    margin-right: 10px;
  }
}
.p-search-result .listResult .imgTextFlex .imgPanel .a-img {
  width: 194px;
}
@media (max-width: 767.98px) {
  .p-search-result .listResult .imgTextFlex .imgPanel .a-img {
    width: 100px;
  }
}
.p-search-result .listResult .imgTextFlex .textPanel .text__smaller {
  color: #5b5b5b;
}
@media (max-width: 767.98px) {
  .p-search-result .listResult .imgTextFlex .textPanel .text__smaller {
    font-size: 12px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}
@media (max-width: 767.98px) {
  .p-search-result .listResult .imgTextFlex .textPanel .a-link {
    font-size: 16px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.p-sitemap_group {
  position: relative;
  padding-left: 28px;
}
.p-sitemap_group:not(:first-child) {
  margin-top: 16px;
}
.p-sitemap_group:nth-child(even)::before {
  background-color: #5c6771;
}
.p-sitemap_group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #f49712;
  height: 100%;
  width: 14px;
}
.p-sitemap_group_wrap {
  display: flex;
  flex-wrap: wrap;
}
.p-sitemap_group h3 {
  margin-bottom: 0;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 991.98px) {
  .p-sitemap_group h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .p-sitemap_group h3 {
    font-size: 19px;
  }
}
.p-sitemap_group h3 a {
  color: #212529;
}
.p-sitemap_group h3 a:hover {
  color: #f49712;
}
.p-sitemap_subgroup {
  width: 100%;
  margin-top: 12px;
}
@media (min-width: 768px) {
  .p-sitemap_subgroup {
    padding-right: 15px;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
.p-sitemap_subgroup h4 {
  color: #f49712;
  font-weight: 600;
  transition: 0.4s ease;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .p-sitemap_subgroup h4 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .p-sitemap_subgroup h4 {
    font-size: 16px;
  }
}
.p-sitemap_subgroup h4:hover {
  color: #f49712;
}
.p-sitemap_subgroup h4 a {
  color: inherit;
  text-decoration: none;
}
.p-sitemap_subgroup ul {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .p-sitemap_subgroup ul {
    padding-left: 15px;
  }
}
.p-sitemap_subgroup ul li {
  color: #5c6771;
  transition: 0.4s ease;
}
.p-sitemap_subgroup ul li:hover a {
  color: #f49712;
}
.p-sitemap_subgroup ul li a {
  color: #5c6771;
  display: block;
}
@media (min-width: 768px) {
  .p-sitemap_subgroup ul li a {
    white-space: nowrap;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 991.98px) {
  .solutionDetailPage {
    margin-bottom: 90px;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .block--flex {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .block--flex .imgSliderInner {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.solutionDetailPage .block--flex .imgSliderInner .slider {
  margin-bottom: 0;
}
.solutionDetailPage .block--flex .imgSliderInner .slider .slick-list {
  padding-bottom: 0;
}
@media (min-width: 992px) {
  .solutionDetailPage .block--flex .imgPanelMain {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .block--flex .contentListStylePanel {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1500px) {
  .solutionDetailPage .block--flex .contentListStylePanel .subHeading {
    max-width: 600px !important;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .block--flex .contentListStylePanel .subHeading {
    margin-top: 20px;
  }
}
@media (min-width: 1500px) {
  .solutionDetailPage .block--flex .contentListStylePanel .listStyleCheck ul {
    max-width: 600px !important;
  }
}
.solutionDetailPage .block--maxwidth {
  max-width: 670px;
}
@media (max-width: 767.98px) {
  .solutionDetailPage .block__content__text--sub {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .solutionDetailPage .navTabs {
    margin-top: 60px;
  }
}
.solutionDetailPage .navTabs.fixNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  z-index: 20;
}
@media (max-width: 1199.98px) {
  .solutionDetailPage .navTabs.fixNav {
    top: 103px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .solutionDetailPage .navTabs.fixNav {
    top: 92px;
  }
}
@media (max-width: 991.98px) {
  .solutionDetailPage .navTabs.fixNav {
    top: 83px;
  }
}
@media (max-width: 767.98px) {
  .solutionDetailPage .navTabs.fixNav {
    top: 39px;
  }
}
.solutionDetailPage .navTabs.fixNav .m-tabsBar {
  margin: 0;
}
@media (max-width: 1199.98px) {
  .solutionDetailPage .navTabs .m-tabsBar-underlined {
    position: relative;
    padding-right: 12px;
  }
  .solutionDetailPage .navTabs .m-tabsBar-underlined:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #5b5b5b;
    border-right: 2px solid #5b5b5b;
    top: calc(50% - 7px);
    right: -6px;
    transform: rotate(-45deg);
  }
}
@media (max-width: 1199.98px) {
  .solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc {
    white-space: nowrap;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
  }
}
@media (max-width: 767.98px) {
  .solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc li {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
}
.solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc li.active .a-tabItem {
  color: #f49712;
}
.solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc li.active .a-tabItem::before {
  transform: scale(1);
}
@media (min-width: 1200px) {
  .solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc li .a-tabItem {
    width: 100%;
    padding: 11px 10px 13px;
  }
}
@media (min-width: 1200px) and (max-width: 1490px) {
  .solutionDetailPage .navTabs .m-tabsBar ul.tabs-desc li .a-tabItem {
    font-size: 17px;
  }
}
@media (max-width: 767.98px) {
  .solutionDetailPage .m-tabsBar-filled {
    position: relative;
    padding-right: 12px;
  }
  .solutionDetailPage .m-tabsBar-filled:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid #5b5b5b;
    border-right: 2px solid #5b5b5b;
    top: calc(50% - 8px);
    right: -5px;
    transform: rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .m-tabsBar-filled:not(.innerTab) {
    margin-top: 2.6041666667vw;
    margin-bottom: 2.6041666667vw;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .m-tabsBar-filled:not(.innerTab) ul li {
    max-width: 16.66667%;
  }
}
@media (min-width: 768px) {
  .solutionDetailPage .m-tabsBar-filled:not(.innerTab) ul li {
    flex: 0 0 16.66667%;
  }
}
@media (max-width: 767.98px) {
  .solutionDetailPage .m-tabsBar-filled:not(.innerTab) ul li {
    margin-bottom: 5px;
    margin-right: 5px;
  }
}
.solutionDetailPage .s-rotateView .m-tabsBar-underlined {
  max-width: 670px;
  margin: auto;
}
.solutionDetailPage .s-rotateView .m-tabsBar-underlined ul.tabs-desc li {
  flex: 0 0 50%;
  max-width: 50%;
}
.solutionDetailPage .s-rotateView .m-tabsBar-underlined ul.tabs-desc li .a-tabItem {
  width: 100%;
}
@media (min-width: 992px) {
  .solutionDetailPage .s-characteristic .block--flex:first-child .contentListStylePanel {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .s-characteristic .block--flex .collapsePanel {
    margin-left: 8.33333%;
  }
}
.solutionDetailPage .s-characteristic .block--flex .collapsePanel .block__content__text {
  padding: 30px 0 40px;
}
.solutionDetailPage .s-characteristic .block--flex .collapsePanel .block__content__text .a-heading {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .solutionDetailPage .s-characteristic .block--flex .collapsePanel .block__content__text .a-heading {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .solutionDetailPage .s-characteristic .block--flex .collapsePanel .m-scrollSection .accordion .card {
    padding-bottom: 27px;
  }
}
.solutionDetailPage .s-characteristic .block__content:first-child {
  margin-bottom: 6.7708333333vw;
}
@media (max-width: 767.98px) {
  .solutionDetailPage .s-characteristic .block__content:first-child {
    margin-bottom: 60px;
  }
}
@media (max-width: 991.98px) {
  .solutionDetailPage .s-characteristic .block__content__text--sub {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .solutionDetailPage .s-characteristic .block__content .m-scrollSection-lineArrow .card-header .collapsible {
    font-size: 16px;
  }
}
.solutionDetailPage .s-construction {
  margin: 0;
}
@media (min-width: 992px) {
  .solutionDetailPage .s-video .block__content__text--medium {
    max-width: 900px;
    margin: auto;
  }
}
.solutionDetailPage .s-options .m-tabsBar-innerTab ul.tabs-desc li .a-tabItem {
  width: 100%;
}
.solutionDetailPage .s-options .m-tabsBar-innerTab + .tab-content .slick-slide .imgPanelMain {
  border: none !important;
  box-shadow: none !important;
  outline: 0 !important;
}
.solutionDetailPage .s-options .m-tabsBar-innerTab + .tab-content .slick-slide .imgPanelMain p {
  color: #212529;
  font-size: 20px;
  font-family: "Roboto-Bold";
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .solutionDetailPage .s-options .m-tabsBar-innerTab + .tab-content .slick-slide .imgPanelMain p {
    margin-top: 8px;
    font-size: 12px;
  }
}
.solutionDetailPage .s-options .m-tabsBar-innerTab + .tab-content .slick-arrow {
  top: calc(50% - 25px);
}
@media (max-width: 991.98px) {
  .solutionDetailPage .s-options .m-tabsBar-filled .tabs-desc {
    justify-content: flex-start;
  }
}
.solutionDetailPage .s-options #sides .slider-options .imgPanel {
  border: 1px solid #dbdbdb;
}
.solutionDetailPage .s-options #sides .slider-options .imgPanel p {
  min-height: 52.8px;
}
@media (max-width: 767.98px) {
  .solutionDetailPage .s-options #sides .slider-options .imgPanel p {
    min-height: 48px;
  }
}
.solutionDetailPage .s-options .slider-options .imgPanel p {
  margin-top: 20px;
  font-family: "Roboto-Medium";
}
@media (max-width: 767.98px) {
  .solutionDetailPage .s-options .slider-options .imgPanel p {
    margin-top: 10px;
  }
}
.solutionDetailPage .s-options .slider-options .imgPanel .a-img-half-stand {
  max-width: 85px;
  margin: auto;
}
.solutionDetailPage .s-specification {
  background-color: #fafafa;
}
.solutionDetailPage .s-specification .o-table {
  margin: 25px 0 50px;
}
.solutionDetailPage .s-serviceCard .slick-slider .slick-list {
  padding-top: 30px;
}
@media (max-width: 767.98px) {
  .solutionDetailPage .s-serviceCard .slick-slider .slick-list {
    padding-top: 10px;
  }
}
.solutionDetailPage .s-serviceCard .m-serviceCard .textPanel p:not(.title) {
  min-height: 120px;
  overflow: auto;
}
@media (max-width: 991.98px) {
  .solutionDetailPage .s-serviceCard .block__content__text--sub {
    font-size: 16px;
  }
}

.p-sustainable_backgroundContent {
  position: relative;
  padding-bottom: 0;
}
.p-sustainable_backgroundContent_bg {
  position: relative;
}
@media (max-width: 767px) {
  .p-sustainable_backgroundContent_bg .a-imageRatio-1920x768 {
    padding-bottom: 85%;
  }
}
.p-sustainable_backgroundContent_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.3);
}
.p-sustainable_backgroundContent_content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30%;
  z-index: 2;
  max-width: 689px;
}
@media (max-width: 1199px) {
  .p-sustainable_backgroundContent_content {
    max-width: 475px;
  }
}
@media (max-width: 991px) {
  .p-sustainable_backgroundContent_content {
    top: 65%;
    right: 20%;
  }
}
@media (max-width: 767px) {
  .p-sustainable_backgroundContent_content {
    right: 40px;
    left: 40px;
    top: 55%;
    max-width: 300px;
  }
}
.p-sustainable_backgroundContent_content h3,
.p-sustainable_backgroundContent_content h4,
.p-sustainable_backgroundContent_content p {
  color: #ffffff;
}
@media (max-width: 767px) {
  .p-sustainable_backgroundContent_content h3,
.p-sustainable_backgroundContent_content h4,
.p-sustainable_backgroundContent_content p {
    margin-bottom: 6px;
  }
}
@media (max-width: 1199px) {
  .p-sustainable_backgroundContent_content p {
    max-height: 75px;
    overflow: auto;
  }
}
.p-sustainable_backgroundContent_content h3 {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 20px;
}
@media (min-width: 1200px) {
  .p-sustainable_backgroundContent_content h3 {
    margin-bottom: 20px;
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .p-sustainable_backgroundContent_content h3 {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.p-sustainable_backgroundContent_content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 17px;
}
@media (min-width: 1200px) {
  .p-sustainable_backgroundContent_content h4 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .p-sustainable_backgroundContent_content h4 {
    margin-bottom: 12px;
  }
}
@media (max-width: 767px) {
  .p-sustainable_backgroundContent_content h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.p-sustainable_co2 {
  background-color: #fafafa;
  text-align: center;
}
.p-sustainable_co2 .o-headingSection {
  padding-left: 0;
  padding-right: 0;
}
.p-sustainable_co2 p {
  color: #5b5b5b;
  text-align: left;
}
.p-sustainable_co2 img {
  width: 100%;
  max-width: 1170px;
}
.p-sustainable_utilities {
  padding-bottom: 0;
}
.p-sustainable_utilities_man {
  display: flex;
  align-items: center;
  max-width: 1100px;
  flex-wrap: wrap;
  margin: 37px auto 0;
}
@media (max-width: 767px) {
  .p-sustainable_utilities_man {
    margin-top: 20px;
  }
}
.p-sustainable_utilities_man .img {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .p-sustainable_utilities_man .img {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.p-sustainable_utilities_man .img img {
  width: 100%;
}
.p-sustainable_utilities_man .statement {
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 992px) {
  .p-sustainable_utilities_man .statement {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 991px) {
  .p-sustainable_utilities_man .statement {
    margin-top: 9px;
  }
}
.p-sustainable_utilities_man .statement p {
  font-size: 16px;
}
@media (max-width: 991px) {
  .p-sustainable_utilities_man .statement p {
    margin-bottom: 6px;
  }
}
.p-sustainable_pillars {
  padding-bottom: 0;
}
.p-sustainable_confirm {
  padding-top: 0;
  padding-bottom: 20px;
}
@media (min-width: 1200px) {
  .p-sustainable_confirm {
    padding-bottom: 37px;
  }
}

.p-technology .block__content__text--medium {
  color: #5b5b5b;
  max-width: 785px;
  margin: auto;
}
@media (max-width: 991.98px) {
  .p-technology .block__content__text--sub {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .p-technology .block__content__text--sub {
    font-size: 16px;
  }
}
.p-technology .block__content__text h2 {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .p-technology .block__content__text h2 {
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .p-technology .block__content__img {
    padding-top: 30px;
  }
}
@media (min-width: 992px) {
  .p-technology .block__content .sGrid.reverse-column .block__content__text {
    padding-left: 0;
    padding-right: 0;
  }
}
.p-technology .block__content .sGrid.reverse-column .imgPanel {
  max-width: 575px;
}
@media (min-width: 992px) {
  .p-technology .block__content .sGrid:not(.reverse-column) .block__content__text {
    padding-right: 0;
  }
}
.p-technology .block__content .imgPanel {
  max-width: 450px;
  margin: auto;
}
.p-technology .block__content .sGrid:first-child {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .p-technology .block__content .sGrid:first-child {
    margin-bottom: 5.7291666667vw;
  }
}
@media (min-width: 992px) {
  .p-technology .block__content .sGrid.reverse-column {
    flex-direction: row-reverse;
  }
}
.p-technology .block__content .sGrid.reverse-column .imgPanel .a-img:after {
  padding-top: 73.3913043478%;
}
.p-technology .block__content .sGrid .imgPanel .a-img:after {
  padding-top: 87.3333333333%;
}
@media (max-width: 767.98px) {
  .p-technology .contentListStylePanel ul {
    margin-top: 14px;
  }
}
.p-technology .contentListStylePanel ul li {
  font-size: 16px;
  margin-bottom: 15px;
}
@media (max-width: 767.98px) {
  .p-technology .contentListStylePanel ul li {
    font-size: 14px;
  }
}
.p-technology .s-design-section .imgPanel {
  max-width: 670px;
  margin: auto;
}
.p-technology .s-design-section .textPanel {
  margin-top: 15px;
}
@media (min-width: 992px) {
  .p-technology .s-design-section .textPanel {
    margin-top: 90px;
    max-width: 440px;
  }
}
.p-technology .s-design-section .textPanel p {
  color: #5b5b5b;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .p-technology .s-design-section .textPanel p {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .p-technology .s-design-section .textPanel p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .p-technology .s-design-section .textPanel p {
    font-size: 14px;
  }
}
.p-technology .s-design-section .textPanel p.title {
  font-family: "Roboto-Medium";
  font-size: 28px;
  color: #f49712;
}
@media (max-width: 767.98px) {
  .p-technology .s-design-section .textPanel p.title {
    font-size: 23px;
    margin-bottom: 5px;
  }
}
@media (max-width: 991.98px) {
  .p-technology .s-certification-section .col-lg-5 {
    margin-bottom: 15px;
  }
}
.p-technology .s-certification-section .category-tag {
  padding-top: 0;
}
.p-technology .s-certification-section .category-tag span.tag {
  font-size: 14px;
}
.p-technology .s-certification-section p {
  color: #5b5b5b;
}
@media (min-width: 992px) {
  .p-technology .s-certification-section p {
    line-height: 1.5;
    font-size: 18px;
    max-width: 460px;
  }
}
@media (max-width: 991.98px) {
  .p-technology .s-certification-section p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .p-technology .s-certification-section p {
    font-size: 14px;
  }
}
.p-technology .s-certification-section .a-img-slide-item:after {
  padding-top: 138.0952380952%;
}
.p-technology .p-slider-section .slick-slider .slick-list {
  padding-bottom: 0;
}
.p-technology .p-slider-section .m-benefitCard .textPanel {
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .p-technology .s-infoTech-section .mb-hide {
    display: none;
  }
}
@media (min-width: 992px) {
  .p-technology .s-infoTech-section .mb-show {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .p-technology .s-infoTech-section .col-lg-6:last-child {
    margin-bottom: 0;
  }
  .p-technology .s-infoTech-section .col-lg-6:last-child .contentListStylePanel ul {
    margin-bottom: 0;
  }
  .p-technology .s-infoTech-section .col-lg-6:last-child .contentListStylePanel ul li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .p-technology .p-slider-section h2.a-heading,
.p-technology .s-design-section h2.a-heading,
.p-technology .s-certification-section h2.a-heading {
    margin-bottom: 42px;
  }
}
@media (min-width: 1200px) {
  .p-technology .p-sectionHome {
    padding: 24px 0;
  }
}
