@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1
}

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat)
}

.animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2)
}

.animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: 3;
    animation-iteration-count: 3;
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3)
}

.animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay)
}

.animate__animated.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2)
}

.animate__animated.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3)
}

.animate__animated.animate__delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s;
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4)
}

.animate__animated.animate__delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5)
}

.animate__animated.animate__faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2)
}

.animate__animated.animate__fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8)
}

.animate__animated.animate__slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2)
}

.animate__animated.animate__slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3)
}

@media (prefers-reduced-motion: reduce), print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }

    .animate__animated[class*=Out] {
        opacity: 0
    }
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }
    80% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

@keyframes bounce {
    0%, 20%, 53%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
        transform: translate3d(0, -30px, 0) scaleY(1.1)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
        transform: translate3d(0, -15px, 0) scaleY(1.05)
    }
    80% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0) scaleY(.95);
        transform: translateZ(0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
        transform: translate3d(0, -4px, 0) scaleY(1.02)
    }
}

.animate__bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%, 50%, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    0%, 50%, to {
        opacity: 1
    }
    25%, 75% {
        opacity: 0
    }
}

.animate__flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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 shakeX {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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)
    }
}

.animate__shakeX {
    -webkit-animation-name: shakeX;
    animation-name: shakeX
}

@-webkit-keyframes shakeY {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
}

@keyframes shakeY {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
}

.animate__shakeY {
    -webkit-animation-name: shakeY;
    animation-name: shakeY
}

@-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)
    }
}

.animate__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: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.animate__swing {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }
    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
        transform: translate3d(-25%, 0, 0) rotate(-5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
        transform: translate3d(20%, 0, 0) rotate(3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
        transform: translate3d(-15%, 0, 0) rotate(-3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
        transform: translate3d(10%, 0, 0) rotate(2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
        transform: translate3d(-5%, 0, 0) rotate(-1deg)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%, 11.1%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%, 11.1%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(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(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.animate__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)
    }
}

.animate__heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
    animation-duration: calc(var(--animate-duration) * 1.3);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInDown {
    0% {
        -webkit-transform: translateY(-1200px) scale(.7);
        transform: translateY(-1200px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInDown {
    -webkit-animation-name: backInDown;
    animation-name: backInDown
}

@-webkit-keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInLeft {
    0% {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInLeft {
    -webkit-animation-name: backInLeft;
    animation-name: backInLeft
}

@-webkit-keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInRight {
    0% {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInRight {
    -webkit-animation-name: backInRight;
    animation-name: backInRight
}

@-webkit-keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes backInUp {
    0% {
        -webkit-transform: translateY(1200px) scale(.7);
        transform: translateY(1200px) scale(.7);
        opacity: .7
    }
    80% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

.animate__backInUp {
    -webkit-animation-name: backInUp;
    animation-name: backInUp
}

@-webkit-keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutDown {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateY(700px) scale(.7);
        transform: translateY(700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutDown {
    -webkit-animation-name: backOutDown;
    animation-name: backOutDown
}

@-webkit-keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutLeft {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateX(-2000px) scale(.7);
        transform: translateX(-2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutLeft {
    -webkit-animation-name: backOutLeft;
    animation-name: backOutLeft
}

@-webkit-keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutRight {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateX(0) scale(.7);
        transform: translateX(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateX(2000px) scale(.7);
        transform: translateX(2000px) scale(.7);
        opacity: .7
    }
}

.animate__backOutRight {
    -webkit-animation-name: backOutRight;
    animation-name: backOutRight
}

@-webkit-keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

@keyframes backOutUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
    20% {
        -webkit-transform: translateY(0) scale(.7);
        transform: translateY(0) scale(.7);
        opacity: .7
    }
    to {
        -webkit-transform: translateY(-700px) scale(.7);
        transform: translateY(-700px) scale(.7);
        opacity: .7
    }
}

.animate__backOutUp {
    -webkit-animation-name: backOutUp;
    animation-name: backOutUp
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.animate__bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
        transform: translate3d(0, -3000px, 0) scaleY(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
        transform: translate3d(0, 25px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
        transform: translate3d(0, -10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
        transform: translate3d(0, 5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
        transform: translate3d(-3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
        transform: translate3d(25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
        transform: translate3d(-10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
        transform: translate3d(5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
        transform: translate3d(3000px, 0, 0) scaleX(3)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
        transform: translate3d(-25px, 0, 0) scaleX(1)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
        transform: translate3d(10px, 0, 0) scaleX(.98)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
        transform: translate3d(-5px, 0, 0) scaleX(.995)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
        transform: translate3d(0, 3000px, 0) scaleY(5)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
        transform: translate3d(0, 10px, 0) scaleY(.95)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
        transform: translate3d(0, -5px, 0) scaleY(.985)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .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(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.animate__bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
        transform: translate3d(0, 10px, 0) scaleY(.985)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
        transform: translate3d(0, 10px, 0) scaleY(.985)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
        transform: translate3d(0, -20px, 0) scaleY(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
        transform: translate3d(0, 2000px, 0) scaleY(3)
    }
}

.animate__bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
        transform: translate3d(20px, 0, 0) scaleX(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
        transform: translate3d(20px, 0, 0) scaleX(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
        transform: translate3d(-2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
        transform: translate3d(-20px, 0, 0) scaleX(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
        transform: translate3d(-20px, 0, 0) scaleX(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
        transform: translate3d(2000px, 0, 0) scaleX(2)
    }
}

.animate__bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
        transform: translate3d(0, -10px, 0) scaleY(.985)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
        transform: translate3d(0, -10px, 0) scaleY(.985)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
        transform: translate3d(0, 20px, 0) scaleY(.9)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
        transform: translate3d(0, -2000px, 0) scaleY(3)
    }
}

.animate__bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

@-webkit-keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInTopRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight
}

@-webkit-keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

@-webkit-keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInBottomRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.animate__fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.animate__fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.animate__fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.animate__fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

.animate__fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.animate__fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

.animate__fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.animate__fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.animate__fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
}

@keyframes fadeOutTopLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, -100%, 0);
        transform: translate3d(-100%, -100%, 0)
    }
}

.animate__fadeOutTopLeft {
    -webkit-animation-name: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

@-webkit-keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
}

@keyframes fadeOutTopRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, -100%, 0);
        transform: translate3d(100%, -100%, 0)
    }
}

.animate__fadeOutTopRight {
    -webkit-animation-name: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

@-webkit-keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
}

@keyframes fadeOutBottomRight {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 100%, 0);
        transform: translate3d(100%, 100%, 0)
    }
}

.animate__fadeOutBottomRight {
    -webkit-animation-name: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

@-webkit-keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
}

@keyframes fadeOutBottomLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 100%, 0);
        transform: translate3d(-100%, 100%, 0)
    }
}

.animate__fadeOutBottomLeft {
    -webkit-animation-name: fadeOutBottomLeft;
    animation-name: fadeOutBottomLeft
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animate__animated.animate__flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotateX(-5deg);
        transform: perspective(400px) rotateX(-5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-20deg);
        transform: perspective(400px) rotateY(-20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(-5deg);
        transform: perspective(400px) rotateY(-5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

.animate__flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotateX(-20deg);
        transform: perspective(400px) rotateX(-20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.animate__flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotateY(-15deg);
        transform: perspective(400px) rotateY(-15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.animate__flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
    animation-duration: calc(var(--animate-duration) * 0.75);
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedInRight {
    0% {
        -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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInRight {
    0% {
        -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: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInRight {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedInLeft {
    0% {
        -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: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes lightSpeedInLeft {
    0% {
        -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: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__lightSpeedInLeft {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutRight {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOutLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
        transform: translate3d(-100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
}

.animate__lightSpeedOutLeft {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

.animate__rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOut {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.animate__rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

.animate__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }
}

.animate__rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.animate__rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes hinge {
    0% {
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -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-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%, 80% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -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
    }
}

.animate__hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
    -webkit-animation-name: hinge;
    animation-name: hinge;
    -webkit-transform-origin: top left;
    transform-origin: top left
}

@-webkit-keyframes jackInTheBox {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.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 {
    0% {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.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)
    }
}

.animate__jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
        transform: translate3d(-100%, 0, 0) rotate(-120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
        transform: translate3d(100%, 0, 0) rotate(120deg)
    }
}

.animate__rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.animate__zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0)
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0)
    }
}

.animate__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: left center;
    transform-origin: left center
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0)
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0)
    }
}

.animate__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.animate__zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.animate__slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

.animate__slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

.animate__slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.animate__slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}.zzBoxes, .zzBoxes * {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    margin: 0;
    padding: 0;
}
.zzBoxes_overlay {
    background: none no-repeat center center #111111;
    position: fixed;
	z-index: 99999;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0.8;
}
.zzBoxes_inner {
    background-color: #ffffff;
    color: #131313;
    font-size: 15px;
    line-height: 21px;
    position: fixed;
	z-index: 999999;
    text-align: justify;
    width: 95%;
    max-width: 580px;
    min-width: 300px;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -100px;
    -webkit-transition: margin .3s;
    transition: margin .3s;
}
.zzBoxes.alert .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes.confirm .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes.prompt .zzBoxes_inner {
	max-width: 400px !important;
}
.zzBoxes.prompt .zzBoxes_title {
    color: #ffaa05;
}
.zzBoxes_title {
    font-size: 1.4em;
    line-height: 1.5em;
}
.zzBoxes_content {
    padding: 20px 15px;
    margin: 0;
}
.zzBoxes_mess {
    overflow: auto;
    white-space: pre-line;
}
.zzBoxes_content img {
    max-width: 100%;
}
.zzBoxes_input {
    padding: 7px;
    margin: 10px 0 0;
    width: 100%;
    border: 1px solid #dddddd;
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.zzBoxes_input:focus {
    border-color: #ffaa05;
    box-shadow: 0 0 3px 1px #ffaa05;
    outline: 0 none;
}
.zzBoxes_button {
    background-color: #f4f4f4;
    text-align: right;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}
.zzBoxes_button > div {
    background-color: #218bd1;
    border-radius: 30px;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    line-height: 18px;
    margin: 7px 0 7px 10px;
    padding: 7px 12px 5px;
    text-align: center;
	text-transform: uppercase;
    -webkit-transition: background .3s;
    transition: background .3s;
}
.zzBoxes_button > div:first-child {
    margin-left: 0;
}
div.zzBoxes_cancel {
    background-color: #eb0900;
}
.zzBoxes_close {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJZJREFUeNpi/P//PwMpgAlKywHxMSD2wKImCogPA7EEmAeyAYhP/oeAb0DsARUD4XAg/gOV2wV2DVTCA6oYWVMIkuLPQGyDrAGbJgzF6BrQNWEoBmEmNA/yADEbEp8ZKoYAODwIMvknlP0TOSBgiqOwuNkDTZM3soZjONzsjaRpC7IGCSDei+5BJE0gxUIgPiOpSQMgwAB/QVTYXhJ/ggAAAABJRU5ErkJggg==) no-repeat center center #eb0900;
    position: absolute;
    width: 30px;
    height: 20px;
    right: 2px;
    top: 2px;
    text-indent: -9999px;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.zzBoxes_inner:hover .zzBoxes_close {
    opacity: 1;
}
.zzBoxes_button > div:hover, .zzBoxes_close:hover {
    background-color: #2f2f2f;
    cursor: pointer;
}

.slider-bg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.owl-theme .owl-dots .owl-dot {
  padding: 2px !important;
  margin-right: 15px;
}
.owl-theme .owl-dots .owl-dot span {
  width: 14px !important;
  height: 14px !important;
  border: none !important;
  border-radius: 40px !important;
  margin: 0 !important;
}

.owl-theme .owl-dots .owl-dot.active span {
  background-color: #026ed1 !important;
}
.owl-theme .owl-dots {
  bottom: 40px !important;
}
.owl-dot.active {
  border: #026ed1 solid 1px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .owl-theme .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
  }
  .owl-theme .owl-dots {
    bottom: 10px !important;
  }
}
body.compensate-for-scrollbar{overflow:hidden}.fancybox-active{height:auto}.fancybox-is-hidden{left:-9999px;margin:0;position:absolute!important;top:-9999px;visibility:hidden}.fancybox-container{-webkit-backface-visibility:hidden;height:100%;left:0;outline:none;position:fixed;-webkit-tap-highlight-color:transparent;top:0;-ms-touch-action:manipulation;touch-action:manipulation;transform:translateZ(0);width:100%;z-index:99992}.fancybox-container *{box-sizing:border-box}.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage{bottom:0;left:0;position:absolute;right:0;top:0}.fancybox-outer{-webkit-overflow-scrolling:touch;overflow-y:auto}.fancybox-bg{background:#1e1e1e;opacity:0;transition-duration:inherit;transition-property:opacity;transition-timing-function:cubic-bezier(.47,0,.74,.71)}.fancybox-is-open .fancybox-bg{opacity:.9;transition-timing-function:cubic-bezier(.22,.61,.36,1)}.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar{direction:ltr;opacity:0;position:absolute;transition:opacity .25s ease,visibility 0s ease .25s;visibility:hidden;z-index:99997}.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar{opacity:1;transition:opacity .25s ease 0s,visibility 0s ease 0s;visibility:visible}.fancybox-infobar{color:#ccc;font-size:13px;-webkit-font-smoothing:subpixel-antialiased;height:44px;left:0;line-height:44px;min-width:44px;mix-blend-mode:difference;padding:0 10px;pointer-events:none;top:0;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fancybox-toolbar{right:0;top:0}.fancybox-stage{direction:ltr;overflow:visible;transform:translateZ(0);z-index:99994}.fancybox-is-open .fancybox-stage{overflow:hidden}.fancybox-slide{-webkit-backface-visibility:hidden;display:none;height:100%;left:0;outline:none;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:absolute;text-align:center;top:0;transition-property:transform,opacity;white-space:normal;width:100%;z-index:99994}.fancybox-slide:before{content:"";display:inline-block;font-size:0;height:100%;vertical-align:middle;width:0}.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous{display:block}.fancybox-slide--image{overflow:hidden;padding:44px 0}.fancybox-slide--image:before{display:none}.fancybox-slide--html{padding:6px}.fancybox-content{background:#fff;display:inline-block;margin:0;max-width:100%;overflow:auto;-webkit-overflow-scrolling:touch;padding:44px;position:relative;text-align:left;vertical-align:middle}.fancybox-slide--image .fancybox-content{animation-timing-function:cubic-bezier(.5,0,.14,1);-webkit-backface-visibility:hidden;background:transparent;background-repeat:no-repeat;background-size:100% 100%;left:0;max-width:none;overflow:visible;padding:0;position:absolute;top:0;transform-origin:top left;transition-property:transform,opacity;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:99995}.fancybox-can-zoomOut .fancybox-content{cursor:zoom-out}.fancybox-can-zoomIn .fancybox-content{cursor:zoom-in}.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content{cursor:grab}.fancybox-is-grabbing .fancybox-content{cursor:grabbing}.fancybox-container [data-selectable=true]{cursor:text}.fancybox-image,.fancybox-spaceball{background:transparent;border:0;height:100%;left:0;margin:0;max-height:none;max-width:none;padding:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.fancybox-spaceball{z-index:1}.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content{height:100%;overflow:visible;padding:0;width:100%}.fancybox-slide--video .fancybox-content{background:#000}.fancybox-slide--map .fancybox-content{background:#e5e3df}.fancybox-slide--iframe .fancybox-content{background:#fff}.fancybox-iframe,.fancybox-video{background:transparent;border:0;display:block;height:100%;margin:0;overflow:hidden;padding:0;width:100%}.fancybox-iframe{left:0;position:absolute;top:0}.fancybox-error{background:#fff;cursor:default;max-width:400px;padding:40px;width:100%}.fancybox-error p{color:#444;font-size:16px;line-height:20px;margin:0;padding:0}.fancybox-button{background:rgba(30,30,30,.6);border:0;border-radius:0;box-shadow:none;cursor:pointer;display:inline-block;height:44px;margin:0;padding:10px;position:relative;transition:color .2s;vertical-align:top;visibility:inherit;width:44px}.fancybox-button,.fancybox-button:link,.fancybox-button:visited{color:#ccc}.fancybox-button:hover{color:#fff}.fancybox-button:focus{outline:none}.fancybox-button.fancybox-focus{outline:1px dotted}.fancybox-button[disabled],.fancybox-button[disabled]:hover{color:#888;cursor:default;outline:none}.fancybox-button div{height:100%}.fancybox-button svg{display:block;height:100%;overflow:visible;position:relative;width:100%}.fancybox-button svg path{fill:currentColor;stroke-width:0}.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2){display:none}.fancybox-progress{background:#ff5268;height:2px;left:0;position:absolute;right:0;top:0;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;z-index:99998}.fancybox-close-small{background:transparent;border:0;border-radius:0;color:#ccc;cursor:pointer;opacity:.8;padding:8px;position:absolute;right:-12px;top:-44px;z-index:401}.fancybox-close-small:hover{color:#fff;opacity:1}.fancybox-slide--html .fancybox-close-small{color:currentColor;padding:10px;right:0;top:0}.fancybox-slide--image.fancybox-is-scaling .fancybox-content{overflow:hidden}.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small{display:none}.fancybox-navigation .fancybox-button{background-clip:content-box;height:100px;opacity:0;position:absolute;top:calc(50% - 50px);width:70px}.fancybox-navigation .fancybox-button div{padding:7px}.fancybox-navigation .fancybox-button--arrow_left{left:0;left:env(safe-area-inset-left);padding:31px 26px 31px 6px}.fancybox-navigation .fancybox-button--arrow_right{padding:31px 6px 31px 26px;right:0;right:env(safe-area-inset-right)}.fancybox-caption{background:linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);bottom:0;color:#eee;font-size:14px;font-weight:400;left:0;line-height:1.5;padding:75px 20px 15px;pointer-events:none;right:0;text-align:center;z-index:99996}@supports (padding:max(0px)){.fancybox-caption{padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))}}.fancybox-caption--separate{margin-top:-50px}.fancybox-caption__body{border-top:1px solid hsla(0,0%,100%,.4);max-height:50vh;overflow:auto;pointer-events:all;padding-top:25px}.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited{color:#ccc;text-decoration:none}.fancybox-caption a:hover{color:#fff;text-decoration:underline}.fancybox-loading{animation:a 1s linear infinite;background:transparent;border:4px solid #888;border-bottom-color:#fff;border-radius:50%;height:50px;left:50%;margin:-25px 0 0 -25px;opacity:.7;padding:0;position:absolute;top:50%;width:50px;z-index:99999}@keyframes a{to{transform:rotate(1turn)}}.fancybox-animated{transition-timing-function:cubic-bezier(0,0,.25,1)}.fancybox-fx-slide.fancybox-slide--previous{opacity:0;transform:translate3d(-100%,0,0)}.fancybox-fx-slide.fancybox-slide--next{opacity:0;transform:translate3d(100%,0,0)}.fancybox-fx-slide.fancybox-slide--current{opacity:1;transform:translateZ(0)}.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous{opacity:0;transition-timing-function:cubic-bezier(.19,1,.22,1)}.fancybox-fx-fade.fancybox-slide--current{opacity:1}.fancybox-fx-zoom-in-out.fancybox-slide--previous{opacity:0;transform:scale3d(1.5,1.5,1.5)}.fancybox-fx-zoom-in-out.fancybox-slide--next{opacity:0;transform:scale3d(.5,.5,.5)}.fancybox-fx-zoom-in-out.fancybox-slide--current{opacity:1;transform:scaleX(1)}.fancybox-fx-rotate.fancybox-slide--previous{opacity:0;transform:rotate(-1turn)}.fancybox-fx-rotate.fancybox-slide--next{opacity:0;transform:rotate(1turn)}.fancybox-fx-rotate.fancybox-slide--current{opacity:1;transform:rotate(0deg)}.fancybox-fx-circular.fancybox-slide--previous{opacity:0;transform:scale3d(0,0,0) translate3d(-100%,0,0)}.fancybox-fx-circular.fancybox-slide--next{opacity:0;transform:scale3d(0,0,0) translate3d(100%,0,0)}.fancybox-fx-circular.fancybox-slide--current{opacity:1;transform:scaleX(1) translateZ(0)}.fancybox-fx-tube.fancybox-slide--previous{transform:translate3d(-100%,0,0) scale(.1) skew(-10deg)}.fancybox-fx-tube.fancybox-slide--next{transform:translate3d(100%,0,0) scale(.1) skew(10deg)}.fancybox-fx-tube.fancybox-slide--current{transform:translateZ(0) scale(1)}@media (max-height:576px){.fancybox-slide{padding-left:6px;padding-right:6px}.fancybox-slide--image{padding:6px 0}.fancybox-close-small{right:-6px}.fancybox-slide--image .fancybox-close-small{background:#4e4e4e;color:#f2f4f6;height:36px;opacity:1;padding:6px;right:0;top:0;width:36px}.fancybox-caption{padding-left:12px;padding-right:12px}@supports (padding:max(0px)){.fancybox-caption{padding-left:max(12px,env(safe-area-inset-left));padding-right:max(12px,env(safe-area-inset-right))}}}.fancybox-share{background:#f4f4f4;border-radius:3px;max-width:90%;padding:30px;text-align:center}.fancybox-share h1{color:#222;font-size:35px;font-weight:700;margin:0 0 20px}.fancybox-share p{margin:0;padding:0}.fancybox-share__button{border:0;border-radius:3px;display:inline-block;font-size:14px;font-weight:700;line-height:40px;margin:0 5px 10px;min-width:130px;padding:0 15px;text-decoration:none;transition:all .2s;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap}.fancybox-share__button:link,.fancybox-share__button:visited{color:#fff}.fancybox-share__button:hover{text-decoration:none}.fancybox-share__button--fb{background:#3b5998}.fancybox-share__button--fb:hover{background:#344e86}.fancybox-share__button--pt{background:#bd081d}.fancybox-share__button--pt:hover{background:#aa0719}.fancybox-share__button--tw{background:#1da1f2}.fancybox-share__button--tw:hover{background:#0d95e8}.fancybox-share__button svg{height:25px;margin-right:7px;position:relative;top:-1px;vertical-align:middle;width:25px}.fancybox-share__button svg path{fill:#fff}.fancybox-share__input{background:transparent;border:0;border-bottom:1px solid #d7d7d7;border-radius:0;color:#5d5b5b;font-size:14px;margin:10px 0 0;outline:none;padding:10px 15px;width:100%}.fancybox-thumbs{background:#ddd;bottom:0;display:none;margin:0;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;padding:2px 2px 4px;position:absolute;right:0;-webkit-tap-highlight-color:rgba(0,0,0,0);top:0;width:212px;z-index:99995}.fancybox-thumbs-x{overflow-x:auto;overflow-y:hidden}.fancybox-show-thumbs .fancybox-thumbs{display:block}.fancybox-show-thumbs .fancybox-inner{right:212px}.fancybox-thumbs__list{font-size:0;height:100%;list-style:none;margin:0;overflow-x:hidden;overflow-y:auto;padding:0;position:absolute;position:relative;white-space:nowrap;width:100%}.fancybox-thumbs-x .fancybox-thumbs__list{overflow:hidden}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar{width:7px}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track{background:#fff;border-radius:10px;box-shadow:inset 0 0 6px rgba(0,0,0,.3)}.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb{background:#2a2a2a;border-radius:10px}.fancybox-thumbs__list a{-webkit-backface-visibility:hidden;backface-visibility:hidden;background-color:rgba(0,0,0,.1);background-position:50%;background-repeat:no-repeat;background-size:cover;cursor:pointer;float:left;height:75px;margin:2px;max-height:calc(100% - 8px);max-width:calc(50% - 4px);outline:none;overflow:hidden;padding:0;position:relative;-webkit-tap-highlight-color:transparent;width:100px}.fancybox-thumbs__list a:before{border:6px solid #ff5268;bottom:0;content:"";left:0;opacity:0;position:absolute;right:0;top:0;transition:all .2s cubic-bezier(.25,.46,.45,.94);z-index:99991}.fancybox-thumbs__list a:focus:before{opacity:.5}.fancybox-thumbs__list a.fancybox-thumbs-active:before{opacity:1}@media (max-width:576px){.fancybox-thumbs{width:110px}.fancybox-show-thumbs .fancybox-inner{right:110px}.fancybox-thumbs__list a{max-width:calc(100% - 10px)}}mm-hidden {
  display: none !important;
}

.mm-wrapper {
  overflow-x: hidden;
  position: relative;
}

.mm-menu,
.mm-menu>.mm-panel {
  margin: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.mm-menu>.mm-panel .fa-fw {
  width: 1.68571429em;
}

.mm-menu {
  background: inherit;
  display: block;
  overflow: hidden;
  padding: 0;
}

.mm-panel {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-panel.mm-opened {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-panel.mm-subopened {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

.mm-panel.mm-highest {
  z-index: 1;
}

.mm-menu>.mm-panel {
  background: inherit;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.mm-menu>.mm-panel.mm-hasnavbar {
  padding-top: 40px;
}

.mm-menu>.mm-panel:before,
.mm-menu>.mm-panel:after {
  content: "";
  display: block;
  height: 20px;
}

.mm-vertical .mm-panel {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
}

.mm-vertical .mm-listview .mm-panel,
.mm-listview .mm-vertical .mm-panel {
  display: none;
  padding: 10px 0 10px 10px;
}

.mm-vertical .mm-listview .mm-panel .mm-listview>li:last-child:after,
.mm-listview .mm-vertical .mm-panel .mm-listview>li:last-child:after {
  border-color: transparent;
}

.mm-vertical li.mm-opened>.mm-panel,
li.mm-vertical.mm-opened>.mm-panel {
  display: block;
}

.mm-vertical .mm-listview>li>.mm-next,
.mm-listview>li.mm-vertical>.mm-next {
  height: 40px;
  bottom: auto;
}

.mm-vertical .mm-listview>li>.mm-next:after,
.mm-listview>li.mm-vertical>.mm-next:after {
  top: 16px;
  bottom: auto;
}

.mm-vertical .mm-listview>li.mm-opened>.mm-next:after,
.mm-listview>li.mm-vertical.mm-opened>.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-navbar {
  border-bottom: 1px solid transparent;
  text-align: center;
  line-height: 20px;
  height: 40px;
  padding: 0 40px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mm-navbar>* {
  display: block;
  padding: 10px 0;
}

.mm-navbar a,
.mm-navbar a:hover {
  text-decoration: none;
}

.mm-navbar .mm-title {

  background-size: contain;
  background-position: center -5px;
  color: transparent !important;
  background-repeat: no-repeat;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.mm-navbar .mm-btn {
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  z-index: 1;
}

.mm-navbar .mm-btn:first-child {
  padding-left: 20px;
  left: 0;
}

.mm-navbar .mm-btn:last-child {
  padding-right: 20px;
  right: 0;
}

.mm-panel .mm-navbar {
  display: none;
}

.mm-panel.mm-hasnavbar .mm-navbar {
  display: block;
}

.mm-listview,
.mm-listview>li {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0;
}

.mm-listview {
  font: inherit;
  font-size: 14px;
}

.mm-listview a,
.mm-listview a:hover {
  text-decoration: none;
}

.mm-listview>li {
  position: relative;
}

.mm-listview>li>a,
.mm-listview>li>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: inherit;
  line-height: 20px;
  display: block;
  padding: 15px 12px 12px 25px;
  margin: 0;
}

#mm-1 .mm-listview>li>a {
  text-transform: uppercase;
}

.mm-listview>li>a .fa,
.mm-listview>li>span .fa {
  color: #bfbfbf;
  margin-left: -12px;
}

.mm-listview>li>a.mm-arrow,
.mm-listview>li>span.mm-arrow {
  padding-right: 50px;
}

#mm-0 .mm-listview>li>a,
#mm-0 .mm-listview>li>span {
  text-transform: uppercase;
}

.mm-listview>li:not(.mm-divider):after {
  content: "";
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.mm-listview>li:not(.mm-divider):after {
  left: 10px;
}

.mm-listview .mm-next {
  background-color: rgba(3, 2, 1, 0);
  width: 35px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 5px;
  bottom: 5px;
  z-index: 2;
}

.mm-listview .mm-next:before {
  content: "";
  border-left-width: 1px;
  border-left-style: solid;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.mm-listview .mm-next+a,
.mm-listview .mm-next+span {
  margin-right: 38px;
}

.mm-listview .mm-next.mm-fullsubopen {
  width: 100%;
}

.mm-listview .mm-next.mm-fullsubopen:before {
  border-left: none;
}

.mm-listview .mm-next.mm-fullsubopen+a,
.mm-listview .mm-next.mm-fullsubopen+span {
  padding-right: 50px;
  margin-right: 0;
}

.mm-menu>.mm-panel>.mm-listview {
  margin-left: -20px;
  margin-right: -20px;
}

.mm-menu>.mm-panel>.mm-listview.mm-first {
  margin-top: -20px;
}

.mm-menu>.mm-panel>.mm-listview.mm-last {
  padding-bottom: 20px;
}

.mm-prev:before,
.mm-next:after,
.mm-arrow:after {
  content: "";
  border: 1px solid transparent;
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mm-prev:before {
  border-right: none;
  border-bottom: none;
  left: 20px;
}

.mm-next:after,
.mm-arrow:after {
  border-top: none;
  border-left: none;
  right: 15px;
}

.mm-divider {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 10px;
  text-transform: uppercase;
  text-indent: 20px;
  line-height: 25px;
}

.mm-listview>li.mm-spacer {
  padding-top: 40px;
}

.mm-listview>li.mm-spacer>.mm-next {
  top: 40px;
}

.mm-listview>li.mm-spacer.mm-divider {
  padding-top: 25px;
}

.mm-menu {
  background-color: #ffffff;
  color: #2f3032;
}

.mm-menu .mm-navbar {
  border-color: rgba(0, 0, 0, 0.2);
}

.mm-menu .mm-navbar>*,
.mm-menu .mm-navbar a {
  color: #afafaf;
}

.mm-menu .mm-navbar .mm-btn:before,
.mm-menu .mm-navbar .mm-btn:after {
  border-color: #8e8e8e;
  color: #8e8e8e;
}

.mm-menu .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu .mm-listview>li .mm-prev:before,
.mm-menu .mm-listview>li .mm-next:after,
.mm-menu .mm-listview>li .mm-arrow:after {
  border-color: #8e8e8e;
}

.mm-menu .mm-listview>li .mm-prev:after,
.mm-menu .mm-listview>li .mm-next:before {
  border-color: rgba(72, 72, 72, 0.05);
}

.mm-menu .mm-listview>li>a:hover,
.mm-menu .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu .mm-listview>li.mm-selected>span {
  background-color: #efefef;
}

.mm-menu.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu .mm-divider {
  background: rgba(0, 0, 0, 0.05);
}

.mm-page {
  box-sizing: border-box;
  position: relative;
}

.mm-slideout {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-opened {
  overflow: hidden;
  position: relative;
}

html.mm-opened body {
  overflow: hidden;
}

html.mm-background .mm-page {
  background: inherit;
}

#mm-blocker {
  background-color: rgba(3, 2, 1, 0);
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

html.mm-opened #mm-blocker,
html.mm-blocking #mm-blocker {
  display: block;
}

html.mm-opened #mm-blocker {
  opacity: 0;
}

html.mm-opened #mm-blocker {
  background-color: #000000;
}

html.mm-opening #mm-blocker {
  opacity: 0.2;
  transition: opacity 0.4s ease 0.4s;
}

.mm-menu.mm-offcanvas {
  display: none;
  position: fixed;
}

.mm-menu.mm-current {
  display: block;
}

.mm-menu {
  width: 80%;
  min-width: 140px;
  max-width: 280px;
}

html.mm-opening .mm-slideout {
  -webkit-transform: translate(80%, 0);
  -moz-transform: translate(80%, 0);
  -ms-transform: translate(80%, 0);
  -o-transform: translate(80%, 0);
  transform: translate(80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 400px) {
  html.mm-opening .mm-slideout {
    -webkit-transform: translate(280px, 0);
    -moz-transform: translate(280px, 0);
    -ms-transform: translate(280px, 0);
    -o-transform: translate(280px, 0);
    transform: translate(280px, 0);
  }
}

.mm-menu.mm-top.mm-autoheight,
.mm-menu.mm-bottom.mm-autoheight {
  max-height: 80%;
}

.mm-menu.mm-top.mm-autoheight.mm-fullscreen,
.mm-menu.mm-bottom.mm-autoheight.mm-fullscreen {
  max-height: 100%;
}

.mm-menu.mm-measureheight>.mm-panel {
  bottom: auto !important;
  height: auto !important;
}

em.mm-counter {
  font: inherit;
  font-size: 14px;
  font-style: normal;
  text-indent: 0;
  line-height: 20px;
  display: block;
  margin-top: -10px;
  position: absolute;
  right: 45px;
  top: 50%;
}

em.mm-counter+a.mm-next {
  padding-left: 40px;
}

em.mm-counter+a.mm-next+a,
em.mm-counter+a.mm-next+span {
  margin-right: 90px;
}

em.mm-counter+a.mm-fullsubopen {
  padding-left: 0;
}

.mm-vertical>.mm-counter {
  top: 12px;
  margin-top: 0;
}

.mm-vertical.mm-spacer>.mm-counter {
  margin-top: 40px;
}

.mm-nosubresults>.mm-counter {
  display: none;
}

.mm-menu em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-divider>span {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding: 0;
  line-height: 25px;
}

.mm-divider.mm-opened a.mm-next:after {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.mm-collapsed:not(.mm-uncollapsed) {
  display: none;
}

.mm-fixeddivider {
  background: inherit;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-fixeddivider:after {
  content: none !important;
  display: none !important;
}

.mm-hasdividers .mm-fixeddivider {
  display: block;
}

.mm-menu .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.05);
}

html.mm-opened.mm-dragging .mm-menu,
html.mm-opened.mm-dragging .mm-page,
html.mm-opened.mm-dragging .mm-fixed-top,
html.mm-opened.mm-dragging .mm-fixed-bottom,
html.mm-opened.mm-dragging #mm-blocker {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}

.mm-menu>.mm-navbar {
  background: inherit;
  padding: 0;
  z-index: 3;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-navbar-bottom {
  border-top: 1px solid transparent;
  border-bottom: none;
  top: auto;
  bottom: 0;
}

.mm-navbar-top~.mm-navbar-top {
  border-bottom: none;
}

.mm-navbar-bottom~.mm-navbar-bottom {
  border-top: none;
}

.mm-navbar.mm-hasbtns {
  padding: 0 40px;
}

.mm-navbar-top-1 {
  top: 0px;
}

.mm-hasnavbar-top-1 .mm-panel {
  top: 40px;
}

.mm-hasnavbar-top-1 .mm-indexer {
  top: 50px;
}

.mm-hasnavbar-top-1 .mm-fixeddivider {
  top: 40px;
}

.mm-navbar-top-2 {
  top: 40px;
}

.mm-hasnavbar-top-2 .mm-panel {
  top: 80px;
}

.mm-hasnavbar-top-2 .mm-indexer {
  top: 90px;
}

.mm-hasnavbar-top-2 .mm-fixeddivider {
  top: 80px;
}

.mm-navbar-top-3 {
  top: 80px;
}

.mm-hasnavbar-top-3 .mm-panel {
  top: 120px;
}

.mm-hasnavbar-top-3 .mm-indexer {
  top: 130px;
}

.mm-hasnavbar-top-3 .mm-fixeddivider {
  top: 120px;
}

.mm-navbar-bottom-1 {
  bottom: 0px;
}

.mm-hasnavbar-bottom-1 .mm-panel {
  bottom: 40px;
}

.mm-hasnavbar-bottom-1 .mm-indexer {
  bottom: 50px;
}

.mm-navbar-bottom-2 {
  bottom: 40px;
}

.mm-hasnavbar-bottom-2 .mm-panel {
  bottom: 80px;
}

.mm-hasnavbar-bottom-2 .mm-indexer {
  bottom: 90px;
}

.mm-navbar-bottom-3 {
  bottom: 80px;
}

.mm-hasnavbar-bottom-3 .mm-panel {
  bottom: 120px;
}

.mm-hasnavbar-bottom-3 .mm-indexer {
  bottom: 130px;
}

.mm-close {
  text-align: right;
}

.mm-close:after {
  content: "x";
  font-size: 22px;
  line-height: 0;
}

.mm-navbar-2>*,
.mm-navbar-3>*,
.mm-navbar-4>*,
.mm-navbar-5>*,
.mm-navbar-6>* {
  display: block;
  float: left;
}

.mm-navbar-2>* {
  width: 50%;
}

.mm-navbar-3>* {
  width: 33.33%;
}

.mm-navbar-4>* {
  width: 25%;
}

.mm-navbar-5>* {
  width: 20%;
}

.mm-navbar-6>* {
  width: 16.66%;
}

.mm-search,
.mm-search input {
  box-sizing: border-box;
}

.mm-search {
  height: 40px;
  padding: 10px 10px 0;
}

.mm-search input {
  border: none;
  border-radius: 28px;
  font: inherit;
  font-size: 13px;
  outline: none;
  display: block;
  width: 100%;
  height: 28px;
  line-height: 28px;
  margin: 0;
  padding: 0 15px;
}

.mm-search input::-ms-clear {
  display: none;
}

.mm-panel>.mm-search {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mm-panel.mm-hassearch {
  padding-top: 40px;
}

.mm-panel.mm-hassearch.mm-hasnavbar {
  padding-top: 80px;
}

.mm-panel.mm-hassearch.mm-hasnavbar .mm-search {
  top: 40px;
}

.mm-noresultsmsg {
  text-align: center;
  font-size: 21px;
  display: none;
  padding: 40px 0;
}

.mm-noresults .mm-noresultsmsg {
  display: block;
}

.mm-noresults .mm-indexer {
  display: none !important;
}

li.mm-nosubresults>a.mm-next {
  display: none;
}

li.mm-nosubresults>a.mm-next+a,
li.mm-nosubresults>a.mm-next+span {
  padding-right: 10px;
}

.mm-menu .mm-search input {
  background-color: #eeeeee;
  color: #8d8d8d;
}

.mm-menu .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-indexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: -100px;
  z-index: 3;
  -webkit-transition: right 0.4s ease;
  -moz-transition: right 0.4s ease;
  -ms-transition: right 0.4s ease;
  -o-transition: right 0.4s ease;
  transition: right 0.4s ease;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-indexer a {
  text-decoration: none;
  display: block;
  height: 3.85%;
}

.mm-indexer~.mm-panel.mm-hasindexer {
  padding-right: 40px;
}

.mm-hasindexer .mm-indexer {
  right: 0;
}

.mm-hasindexer .mm-fixeddivider {
  right: 20px;
}

.mm-menu .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

input.mm-toggle,
input.mm-check {
  position: absolute;
  left: -10000px;
}

label.mm-toggle,
label.mm-check {
  margin: 0;
  position: absolute;
  top: 50%;
  z-index: 2;
}

label.mm-toggle:before,
label.mm-check:before {
  content: "";
  display: block;
}

label.mm-toggle {
  border-radius: 30px;
  width: 50px;
  height: 30px;
  margin-top: -15px;
}

label.mm-toggle:before {
  border-radius: 30px;
  width: 28px;
  height: 28px;
  margin: 1px;
}

input.mm-toggle:checked~label.mm-toggle:before {
  float: right;
}

label.mm-check {
  width: 30px;
  height: 30px;
  margin-top: -15px;
}

label.mm-check:before {
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: 0.1;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

input.mm-check:checked~label.mm-check:before {
  opacity: 1;
}

li.mm-vertical label.mm-toggle,
li.mm-vertical label.mm-check {
  bottom: auto;
  margin-top: 0;
}

li.mm-vertical label.mm-toggle {
  top: 5px;
}

li.mm-vertical label.mm-check {
  top: 5px;
}

label.mm-toggle,
label.mm-check {
  right: 20px;
}

label.mm-toggle+a,
label.mm-toggle+span {
  padding-right: 80px;
}

label.mm-check+a,
label.mm-check+span {
  padding-right: 60px;
}

a.mm-next+label.mm-toggle,
a.mm-next+label.mm-check {
  right: 60px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span,
a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
  margin-right: 50px;
}

a.mm-next+label.mm-toggle+a,
a.mm-next+label.mm-toggle+span {
  padding-right: 70px;
}

a.mm-next+label.mm-check+a,
a.mm-next+label.mm-check+span {
  padding-right: 50px;
}

em.mm-counter+a.mm-next+label.mm-toggle,
em.mm-counter+a.mm-next+label.mm-check {
  right: 100px;
}

em.mm-counter+a.mm-next+label.mm-toggle+a,
em.mm-counter+a.mm-next+label.mm-toggle+span,
em.mm-counter+a.mm-next+label.mm-check+a,
em.mm-counter+a.mm-next+label.mm-check+span {
  margin-right: 90px;
}

.mm-menu label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu label.mm-toggle:before {
  background: #f3f3f3;
}

.mm-menu input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.7);
}

.mm-menu.mm-border-none .mm-listview>li:after,
.mm-listview.mm-border-none>li:after {
  content: none;
}

.mm-menu.mm-border-full .mm-listview>li:after,
.mm-listview.mm-border-full>li:after {
  left: 0 !important;
}

html.mm-effect-zoom-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  -moz-transition: -moz-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-zoom-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

html.mm-effect-zoom-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-zoom-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  -o-transform-origin: right center;
  transform-origin: right center;
}

html.mm-effect-zoom-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

html.mm-effect-slide-menu .mm-menu.mm-offcanvas {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
}

html.mm-effect-slide-menu.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(-30%, 0, 0);
  -moz-transform: translate3d(-30%, 0, 0);
  -ms-transform: translate3d(-30%, 0, 0);
  -o-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0);
}

html.mm-effect-slide-menu.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  z-index: 99;
}

html.mm-effect-slide-menu.mm-right.mm-opened .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(30%, 0, 0);
  -moz-transform: translate3d(30%, 0, 0);
  -ms-transform: translate3d(30%, 0, 0);
  -o-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0);
}

html.mm-effect-slide-menu.mm-right.mm-opening .mm-menu.mm-offcanvas {
  -webkit-transform: translate3d(0%, 0, 0);
  -moz-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel {
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -moz-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -ms-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -o-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-property: -webkit-transform, left;
  -moz-transition-property: -moz-transform, left;
  -ms-transition-property: -ms-transform, left;
  -o-transition-property: -o-transform, left;
  transition-property: transform, left;
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened {
  -webkit-transform: scale(1, 1) translate3d(0%, 0, 0);
  -moz-transform: scale(1, 1) translate3d(0%, 0, 0);
  -ms-transform: scale(1, 1) translate3d(0%, 0, 0);
  -o-transform: scale(1, 1) translate3d(0%, 0, 0);
  transform: scale(1, 1) translate3d(0%, 0, 0);
}

.mm-menu.mm-effect-zoom-panels .mm-panel.mm-opened.mm-subopened {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -moz-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -ms-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -o-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
}

.mm-menu.mm-effect-slide-panels-0 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-effect-slide-panels-100 .mm-panel.mm-subopened {
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px;
}

html.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(100%, 0);
  -moz-transform: translate(100%, 0);
  -ms-transform: translate(100%, 0);
  -o-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(140px, 0);
    -moz-transform: translate(140px, 0);
    -ms-transform: translate(140px, 0);
    -o-transform: translate(140px, 0);
    transform: translate(140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(10000px, 0);
    -moz-transform: translate(10000px, 0);
    -ms-transform: translate(10000px, 0);
    -o-transform: translate(10000px, 0);
    transform: translate(10000px, 0);
  }
}

html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
  -webkit-transform: translate(-100%, 0);
  -moz-transform: translate(-100%, 0);
  -ms-transform: translate(-100%, 0);
  -o-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

@media all and (max-width: 140px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 10000px) {
  html.mm-right.mm-opening.mm-fullscreen .mm-slideout {
    -webkit-transform: translate(-10000px, 0);
    -moz-transform: translate(-10000px, 0);
    -ms-transform: translate(-10000px, 0);
    -o-transform: translate(-10000px, 0);
    transform: translate(-10000px, 0);
  }
}

.mm-menu.mm-fullscreen.mm-top,
.mm-menu.mm-fullscreen.mm-bottom {
  height: 100%;
  min-height: 140px;
  max-height: 10000px;
}

html.mm-opened.mm-fullscreen .mm-page {
  box-shadow: none !important;
}

.mm-menu.mm-multiline .mm-listview>li>a,
.mm-menu.mm-multiline .mm-listview>li>span,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>a,
.mm-listview.mm-multiline>li .mm-listview>li.mm-multiline>span {
  text-overflow: clip;
  white-space: normal;
}

.mm-menu.mm-pageshadow:after {
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 99;
}

.mm-menu.mm-pageshadow.mm-right:after {
  left: auto;
  right: 100%;
}

.mm-menu.mm-pageshadow.mm-next:after,
.mm-menu.mm-pageshadow.mm-front:after {
  content: none;
  display: none;
}

.mm-menu.mm-pageshadow:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.mm-menu.mm-right {
  left: auto;
  right: 0;
}

.mm-menu.mm-bottom {
  top: auto;
  bottom: 0;
}

html.mm-right.mm-opening .mm-slideout {
  -webkit-transform: translate(-80%, 0);
  -moz-transform: translate(-80%, 0);
  -ms-transform: translate(-80%, 0);
  -o-transform: translate(-80%, 0);
  transform: translate(-80%, 0);
}

@media all and (max-width: 175px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-140px, 0);
    -moz-transform: translate(-140px, 0);
    -ms-transform: translate(-140px, 0);
    -o-transform: translate(-140px, 0);
    transform: translate(-140px, 0);
  }
}

@media all and (min-width: 350px) {
  html.mm-right.mm-opening .mm-slideout {
    -webkit-transform: translate(-280px, 0);
    -moz-transform: translate(-280px, 0);
    -ms-transform: translate(-280px, 0);
    -o-transform: translate(-280px, 0);
    transform: translate(-280px, 0);
  }
}

html.mm-front .mm-slideout {
  -webkit-transform: none !important;
  -moz-transform: none !important;
  -ms-transform: none !important;
  -o-transform: none !important;
  transform: none !important;
  z-index: 0 !important;
}

.mm-menu.mm-front {
  z-index: 1;
}

.mm-menu.mm-front,
.mm-menu.mm-next {
  -webkit-transition: -webkit-transform 0.4s ease;
  -ms-transition: -ms-transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: translate3d(-100%, 0, 0);
  -moz-transform: translate3d(-100%, 0, 0);
  -ms-transform: translate3d(-100%, 0, 0);
  -o-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.mm-menu.mm-front.mm-right,
.mm-menu.mm-next.mm-right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  -ms-transform: translate3d(100%, 0, 0);
  -o-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.mm-menu.mm-top {
  -webkit-transform: translate3d(0, -100%, 0);
  -moz-transform: translate3d(0, -100%, 0);
  -ms-transform: translate3d(0, -100%, 0);
  -o-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.mm-menu.mm-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  -moz-transform: translate3d(0, 100%, 0);
  -ms-transform: translate3d(0, 100%, 0);
  -o-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

html.mm-opening .mm-menu.mm-front,
html.mm-opening .mm-menu.mm-next {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.mm-menu.mm-top,
.mm-menu.mm-bottom {
  height: 80%;
  min-height: 140px;
  max-height: 880px;
}

.mm-menu.mm-theme-dark {
  background: #333333;
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-navbar {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-navbar>*,
.mm-menu.mm-theme-dark .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-dark .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-dark .mm-listview>li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-dark .mm-listview>li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-dark .mm-listview>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-dark.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-dark .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark .mm-divider {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-theme-dark label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.05);
}

.mm-menu.mm-pageshadow.mm-theme-dark:after {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mm-menu.mm-theme-dark .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.mm-menu.mm-theme-dark .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-dark label.mm-toggle {
  background: rgba(0, 0, 0, 0.15);
}

.mm-menu.mm-theme-dark label.mm-toggle:before {
  background: #333333;
}

.mm-menu.mm-theme-dark input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-white {
  background: white;
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-navbar {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-navbar>*,
.mm-menu.mm-theme-white .mm-navbar a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-white .mm-navbar .mm-btn:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview>li:after {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-white .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-white .mm-listview>li .mm-arrow:after {
  border-color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-white .mm-listview>li .mm-next:before {
  border-color: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-white .mm-listview>li.mm-selected>span {
  background: rgba(0, 0, 0, 0.05);
}

.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-white.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-white .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white .mm-divider {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-theme-white label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white em.mm-counter {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-fixeddivider span {
  background: rgba(0, 0, 0, 0.03);
}

.mm-menu.mm-pageshadow.mm-theme-white:after {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mm-menu.mm-theme-white .mm-search input {
  background: rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.6);
}

.mm-menu.mm-theme-white .mm-noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white .mm-indexer a {
  color: rgba(0, 0, 0, 0.3);
}

.mm-menu.mm-theme-white label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
}

.mm-menu.mm-theme-white label.mm-toggle:before {
  background: white;
}

.mm-menu.mm-theme-white input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-menu.mm-theme-black {
  background: black;
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-navbar {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-navbar>*,
.mm-menu.mm-theme-black .mm-navbar a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-navbar .mm-btn:before,
.mm-menu.mm-theme-black .mm-navbar .mm-btn:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview>li:after {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-prev:before,
.mm-menu.mm-theme-black .mm-listview>li .mm-next:after,
.mm-menu.mm-theme-black .mm-listview>li .mm-arrow:after {
  border-color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-listview>li .mm-prev:after,
.mm-menu.mm-theme-black .mm-listview>li .mm-next:before {
  border-color: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-listview>li.mm-selected>a:not(.mm-next),
.mm-menu.mm-theme-black .mm-listview>li.mm-selected>span {
  background: rgba(255, 255, 255, 0.3);
}

.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened>a.mm-next,
.mm-menu.mm-theme-black.mm-vertical .mm-listview li.mm-opened>.mm-panel,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical>a.mm-next,
.mm-menu.mm-theme-black .mm-listview li.mm-opened.mm-vertical>.mm-panel {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black .mm-divider {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-check:before {
  border-color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black em.mm-counter {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-fixeddivider span {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-pageshadow.mm-theme-black:after {
  content: none;
  display: none;
}

.mm-menu.mm-theme-black .mm-search input {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
}

.mm-menu.mm-theme-black .mm-noresultsmsg {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black .mm-indexer a {
  color: rgba(255, 255, 255, 0.4);
}

.mm-menu.mm-theme-black label.mm-toggle {
  background: rgba(255, 255, 255, 0.2);
}

.mm-menu.mm-theme-black label.mm-toggle:before {
  background: black;
}

.mm-menu.mm-theme-black input.mm-toggle:checked~label.mm-toggle {
  background: #4bd963;
}

.mm-listview li.tth-mm-search,
.mm-listview li.tth-mm-category {
  display: none;
  height: 0;
}

@media screen and (max-width: 959px) {
  .mm-listview li.tth-mm-search {
    display: block;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .mm-listview li.tth-mm-category {
    display: block;
    height: auto;
  }
}

.mm-navbar-bottom {
  text-align: center;
}

.mm-navbar-bottom a {
  background-color: #bfbfbf;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff !important;
  display: inline-block !important;
  float: none;
  font-size: 15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0;
  margin: 5px;
}

.mm-navbar-bottom a.facebook:hover,
.mm-navbar-bottom a.facebook:focus,
.mm-navbar-bottom a.facebook:active {
  background-color: #37528d;
}

.mm-navbar-bottom a.instagram:hover,
.mm-navbar-bottom a.instagram:focus,
.mm-navbar-bottom a.instagram:active {
  background-color: #e03663;
}

.mm-navbar-bottom a.twitter:hover,
.mm-navbar-bottom a.twitter:focus,
.mm-navbar-bottom a.twitter:active {
  background-color: #33bce9;
}

.mm-navbar-bottom a.youtube:hover,
.mm-navbar-bottom a.youtube:focus,
.mm-navbar-bottom a.youtube:active {
  background-color: #ee1c1b;
}

.mm-navbar-bottom a.tripadvisor:hover,
.mm-navbar-bottom a.tripadvisor:focus,
.mm-navbar-bottom a.tripadvisor:active {
  background-color: #3ce0a1;
}

.mm-navbar-bottom a.linkedin:hover,
.mm-navbar-bottom a.linkedin:focus,
.mm-navbar-bottom a.linkedin:active {
  background-color: #148bba;
}

#hamburger {
  border: 1px solid transparent;
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  position: absolute;
  top: calc(50% - 25px);
  right: 5px;
  z-index: 9;
  margin: 0;
  display: none;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  background-color: white;
  content: "";
  display: block;
  width: 30px;
  height: 4px;
  position: absolute;
  right: 8px;
}

#hamburger:before {
  top: 12px;
}

#hamburger span {
  top: 22px;
  width: 25px;
}

#hamburger:after {
  top: 32px;
  width: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
  -webkit-transition: none 0.5s ease 0.5s;
  transition: none 0.5s ease 0.5s;
  -webkit-transition-property: transform, top, bottom, right, opacity;
  transition-property: transform, top, bottom, right, opacity;
}

html.mm-opening #hamburger:before,
html.mm-opening #hamburger:after {
  top: 22px;
  width: 30px;
}

html.mm-opening #hamburger span {
  right: -50px;
  opacity: 0;
}

html.mm-opening #hamburger:before {
  transform: rotate(45deg);
}

html.mm-opening #hamburger:after {
  transform: rotate(-45deg);
}

.mm-opened #wrapper {
  margin-top: 0;
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  #hamburger {
    display: block;
  }
}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1;margin:0 auto;padding:0;list-style:none}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none !important}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(../images/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{display:none}.owl-theme .owl-nav [class*=owl-]{position: absolute;top: 0;outline: 0;width: 65px;height: 100%;text-indent: -9999px;z-index: 5;}.owl-theme .owl-nav .owl-prev{background:url(../images/arl.png) center no-repeat;left:0}.owl-theme .owl-nav .owl-next{background:url(../images/arr.png) center no-repeat;right:0}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots{position: absolute; right: 0; bottom: 10px; left: 0;}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:12px;height:12px;margin:5px;background:#e1e1e1;border:1px solid #dfdfdf;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot:hover span{background:#adb5c1}.owl-theme .owl-dots .owl-dot.active span{background:#adb5c1}.owl-carousel.owl-theme:hover .owl-nav{display:block}.rating{display:flex;width:100%;justify-content:center;overflow:hidden;flex-direction:row-reverse;height:150px;position:relative}.rating-0{filter:grayscale(100%)}.rating>input{display:none}.rating>label{cursor:pointer;width:40px;height:40px;margin-top:auto;background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:center;background-size:76%;transition:.3s}.rating>input:checked~label,.rating>input:checked~label~label{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e")}.rating>input:not(:checked)~label:hover,.rating>input:not(:checked)~label:hover~label{background-image:url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e")}.emoji-wrapper{width:100%;text-align:center;height:100px;overflow:hidden;position:absolute;top:0;left:0}.emoji-wrapper:before,.emoji-wrapper:after{content:"";height:15px;width:100%;position:absolute;left:0;z-index:1}.emoji-wrapper:before{top:0;background:linear-gradient(to bottom,rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%)}.emoji-wrapper:after{bottom:0;background:linear-gradient(to top,rgba(255,255,255,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,0) 100%)}.emoji{display:flex;flex-direction:column;align-items:center;transition:.3s}.emoji>svg{margin:15px 0;width:70px;height:70px;flex-shrink:0}#rating-1:checked~.emoji-wrapper>.emoji{transform:translateY(-100px)}#rating-2:checked~.emoji-wrapper>.emoji{transform:translateY(-200px)}#rating-3:checked~.emoji-wrapper>.emoji{transform:translateY(-300px)}#rating-4:checked~.emoji-wrapper>.emoji{transform:translateY(-400px)}#rating-5:checked~.emoji-wrapper>.emoji{transform:translateY(-500px)}.feedback{max-width:360px;background-color:#fff;width:100%;padding:30px;border-radius:8px;display:flex;flex-direction:column;flex-wrap:wrap;align-items:center;box-shadow:0 4px 30px rgba(0,0,0,.05)}:root {
  --color-black-1: #1F2225;
  --color-blue-1: #016ed3;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  background-color: #ffffff;
  font-family: "Inter", serif;
  color: #000;
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font: inherit;
  color: inherit;
  border: none;
}

select {
  background: url("../images/select.png") right 10px center no-repeat;
  outline: none;
  overflow: hidden;
  text-indent: 0.01px;
  text-overflow: "";
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input,
textarea,
select {
  outline: none;
}

* ::-webkit-input-placeholder {
  color: #a4aeb8;
}

* :-moz-placeholder {
  color: #a4aeb8;
  opacity: 1;
}

* ::-moz-placeholder {
  color: #a4aeb8;
  opacity: 1;
}

* :-ms-input-placeholder {
  color: #a4aeb8;
}

ul,
ol {
  margin: 7px;
  padding-left: 15px;
  width: auto;
}

img {
  background-color: transparent;
  border: 0;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

a {
  color: var(--color-black-1);
  text-decoration: none;
}

/* a:hover,
a:focus,
a:active {
  color: #81e44b;
  text-decoration: none;
} */
a[href^="tel"],
a[href^="mail"] {
  color: inherit;
  text-decoration: none;
}

a img {
  text-decoration: none;
}

a:hover img,
a:focus img,
a:active img {
  text-decoration: none;
}

sup {
  font-size: 10px;
  line-height: 0;
}

strong,
b {
  font-weight: 600;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
}

h1 {
  font-size: 30px;

}

h2 {
  font-size: 20px;

}

h3 {
  font-size: 18px;

}

h4 {
  font-size: 16px;

}

h5 {
  font-size: 14px;

}

.text-upper {
  text-transform: uppercase;
}

.text-lower {
  text-transform: lowercase;
}

.text-crop {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.text-crop-1lines {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.text-crop-2lines {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.text-crop-3lines {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.text-crop-4lines {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.f-space05 {
  margin-top: 5px;
}

.f-space10 {
  margin-top: 10px;
}

.f-space15 {
  margin-top: 15px;
}

.f-space20 {
  margin-top: 20px;
}

.f-space25 {
  margin-top: 25px;
}

.f-space30 {
  margin-top: 30px;
}

.f-space40 {
  margin-top: 40px;
}

.f-space50 {
  margin-top: 50px;
}

.c-gold {
  color: #ffcf1a;
}

.c-red {
  color: #ff1018;
}

#wrapper {
  background-color: #ffffff;
  width: 100%;
  margin-top: 89px;
  position: relative;
  overflow: hidden;
}

.home-page {
  margin-top: 0 !important;
}

.box-wp {
  max-width: 1240px;
}

.box-wp:before,
.box-wp:after,
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.box-wp:after,
.clearfix:after {
  clear: both;
}

.title>a {
  color: inherit;
}

.img {
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.img * {
  line-height: 0;
  display: block;
}
.img img, .img-smart img, .img-product img, .img-project img{
  transition: transform 1s ease;
}
.img:hover img, .img:focus img, .product-box:hover .img-smart img, .product-item:hover .img-product img, .box-c:hover .img-project img {
  transform: scale(1.1);
  transition: transform 1s ease;
}
.img-product{
  overflow: hidden;
}
.btn-outline {
  border: 2px solid #00355e;
  outline: 2px solid #00355e;
  transition: outline-offset 200ms ease;
}

.btn-outline:hover,
.btn-outline:focus {
  outline-color: #fff;
  outline-offset: -7px;
}

.header {
  background-color: #1F2225;
  padding: 8px 10px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.header .header-left {
  float: left;
  width: 25%;
  margin-left: 0;
}

.header .header-right {
  float: right;
  width: 75%;
  display: flex;
  align-items: center;
  margin-right: 0;
}

.header .menu-main {
  width: 100%;
}

.navbar {
  width: 100%;
  position: relative;
}

.navigation,
.navigation ul,
.navigation ul li,
.navigation ul li a {
  list-style: none;
  line-height: 0;
  display: block;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.navigation ul ul {
  position: absolute;
  left: -9999px;
  top: 40px;
  width: 200px;
  z-index: 999;
  padding-top: 15px;
  opacity: 0;
  text-align: left;
  -webkit-transition: top 0.2s ease, opacity 0.2s ease-in;
  -moz-transition: top 0.2s ease, opacity 0.2s ease-in;
  -ms-transition: top 0.2s ease, opacity 0.2s ease-in;
  -o-transition: top 0.2s ease, opacity 0.2s ease-in;
  transition: top 0.2s ease, opacity 0.2s ease-in;
  margin: 0;
}
.navbar .navigation > ul > li:hover > ul {
  top: 66px;
  left: 0px;
  opacity: 1;
}

.navigation ul ul li a {
  background-color: #ffffff;
  border-top: 1px solid #e8e8e8;
  color: #363636;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  padding: 0 15px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}
.navigation ul ul>li>a::after{
  content: none;
}
.navigation>ul {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

.navigation:after,
.navigation>ul:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.navigation {
  width: 100%;
}

.navigation>ul>li {
  display: table-cell;
  vertical-align: bottom;
  text-align: center;
  padding: 22px 0 15px;
  position: relative;
  width: 1%;
}

.navigation ul>li>a {
  color: #fff;
  display: block;
  font-weight: 600;
  text-align: center;
  line-height: 24px;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 5px 10px;
  letter-spacing: -0.25px;
}

.navigation ul>li>a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-blue-1);
  transition: width 0.3s;
}

.navigation ul>li>a:hover::after,
.navigation ul>li.active>a::after {
  width: 80%;
}

.navigation ul>li>a:hover,
.navigation ul>li>a:focus,
.navigation ul>li.active>a {
  color: var(--color-blue-1);
}

.navigation>ul>li .nav-sub {
  background-color: #ffffff;
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  position: fixed;
  top: -99999px;
  left: 0;
  right: 0;
  opacity: 0;
  z-index: 3;
  padding: 20px 10px;
  box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -webkit-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -moz-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
  -o-box-shadow: 0 5px 5px 0 rgba(33, 33, 33, 0.1);
}

.navigation>ul>li:hover .nav-sub,
.navigation>ul>li:focus .nav-sub {
  top: 72px;
  opacity: 1;
}

.navigation>ul>li .nav-sub>ul {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: end;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

.navigation>ul>li .nav-sub>ul>li {
  margin-right: 0;
}

.navigation .nav-sub ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.navigation .nav-sub ul>li>a {
  text-align: left;
}

.navigation .nav-sub ul ul {
  margin-top: 10px;
}

.navigation .nav-sub ul ul>li {
  margin: 5px 0;
}

.navigation .nav-sub ul ul>li>a {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: none;
}

.navigation .nav-sub ul ul>li.active>a {
  color: #27719e;
  text-decoration: underline;
}

.breadcrumb {
  background-color: #dfdfdf;
  background-image: url("../images/bg-bdc.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  padding: 150px 10px 150px;
  overflow-y: auto;
  position: relative;
}

.breadcrumb:after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.breadcrumb .title {
  color: #ffffff;
  display: block;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  margin-bottom: 10px;
}

.breadcrumb a.br-c {
  color: #ffffff;
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
}

.breadcrumb .bd-view>a {
  color: #ffffff;
}

.breadcrumb .bd-view>a:hover,
.breadcrumb .bd-view>a:focus {}

.breadcrumb .bd-view>a::after {
  content: "\f105";
  font-style: normal;
  font-weight: normal;
  font-family: "FontAwesome";
  margin: 0 15px;
}

.breadcrumb .bd-view>a:last-child::after {
  display: none;
}

.breadcrumb.b-about {
  padding-bottom: 300px;
}

.breadcrumb.bdc-sm {
  background: none;
  text-align: left;
  padding: 32px 20px 32px;
  margin-bottom: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.breadcrumb.bdc-sm .bd-view>a {
  color: #757575;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.breadcrumb.bdc-sm .bd-view>a:last-child {
  color: var(--color-blue-1);
}
.breadcrumb:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000038;
}
.bd-view {
  position: relative;
  z-index: 2;
}
.slider {
  position: relative;
}

.slider>#_slider {
  margin-right: 0;
}
.utilities-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  padding: 64px 0;
}
.utilities-box .box-s{
  display: grid;
  grid-template-columns: 45px 1fr;
}
.utilities-box .box-s .img img{
  float: left;
  margin: 0;
  display: block;

}
.utilities-box .box-s {
  display: flex;
  align-items: center;
  gap: 20px;
}
.utilities-box .img {
  width: 45px;
  margin: 0;
}
.utilities-box .box-s .txt{
  float: left;
  color: #343E48;
  margin: 0;
}
.utilities-box .box-s .txt h3{
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.utilities-box .box-s .txt p{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*.smart-product{*/
/*  padding-bottom: 76px;*/
/*}*/
.smart-product .list-smart{
  margin: 0 -10px;
  max-width: 1260px;
}
.smart-product .list-smart-pdt{
  padding: 60px 0;
  display: flex;
}

.smart-b, .smart-s{
  transition: .5s;
  border-radius: 8px;
}
.smart-b{
  text-align: center;
  z-index: 2;
  position: relative;
}
.smart-b .txt{
  top: 50px;
  left: 0;
  position: absolute;
  z-index: 3;
  right: 0;
  display: block !important;
}
.smart-s{
  text-align: center;
}
.smart-s .txt{
  padding-top: 22px;
}

.smart-product h2 a{
  color: #218BD1;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  text-align: center;
}
.smart-product h3 a{
  color: white;
  font-size: 28px;
  line-height: 33.6px;
  text-align: center;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 16px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.smart-product .smart-s h3 a,.smart-s .discover_now {
  color: black;
}
.discover_now{
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-align: center;
  color: white;
  max-width: 109px;
  /* display: flex; */
}
.discover_now:hover{
  text-decoration: underline;
}
.about-company{
  background-image: url(../images/bg-number.webp);
}
.about-list{
  background-color: #ffffff87;
  border-radius: 8px;
  max-width: 1260px;
  margin: 64px 0;
}
.list-about{
  gap: 159px;
  display: flex;
}
.box-left, .box-right{
  padding: 0 10px;
}
.box-left .img{
  text-align: left;
}
.box-left{
  margin: 155px 0 155px 54px;
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 27.9%;
}
.box-right{
  padding: 64px;
  gap: 22px;
  display: flex;
  width: 72.1%;
}
.box-right .box1, .box-right .box2{
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.box-right .box1 .box1-1, .box-right .box1 .box1-2, .box-right .box2 .box{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 24px;
  text-align: center;
  border-radius: 10px;
  transition: .5s;
}
.box-right .box1 .box1-1 {
  border: 1px solid #E1E4ED;
  color: #1F2225;
  background-color: #FFFFFF;
}
.box-right .box1 .box1-1:first-child{
  margin-top: 32px;
}
.box-right .box1 .box1-1:hover, .box-right .box2 .box:hover{

  border: 1px solid #1F2225;
  color: #FFFFFF;
  background-color: #1F2225;
}
.box-right .box1 .box1-2, .box-right .box2 .box{
  border: 1px solid #E1E4ED;
  color: #1F2225;
  background-color: #FFFFFF;
  width: 100%;
}
.about-company .number{
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}
.about-company h2{
  margin-left: 0;
  text-transform: capitalize;
  color: #218BD1;
  font-size: 28px;
  font-weight: 700;
}
.about-company h3{
  font-size: 16px;
  font-weight: 600;
}
.about-company .box-right .comment{
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  min-height: 36px;
}
.about-company .box-left .comment{
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  min-width: 346px;
}
.list-news .txt label{
  font-weight: 300;
}
.list-news .txt .date{
  font-size: 12px;
}
.about-company .box-left .comment,.list-news .txt label{
  line-height: 21px;
  font-size: 14px;
}
.product-choose{
  padding-bottom: 78px;
  padding-top: 78px;
}
.product-top{
  text-align: center;
  max-width: 33.71%;
  padding-bottom: 48px;
}
.product-top h2{
  color: #1F2225;
}
.box2 .txt-t h3 a{
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 88px;
  color: #218BD1;
}
.box2 .txt-t h3 a{
  margin-bottom: 14px;
}
.product-top h2{
  margin-bottom: 19px;
}
.product-top h2, .box2 .txt-t h3 a{
  font-weight: 800;
  font-size: 36px;
  line-height: 40px;
}
.product-top p, .box2 .txt-t p{
  color: #343E48;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.box2 .txt-t p{
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 14px;
  min-height: 36px;
}
.product-bottom{
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.product-bottom .product-box{
  display: flex;
  align-items: center;
}
.product-box .box1{
  width: 49.2%;
  overflow: hidden;
}
.product-box .box2{
  width: 50.8%;
}
.product-box .box2{
  padding: 0 56px 0 68px;
}
.product-box .box1 .img-smart img{
  border-radius: 8px;
  width: 100%;
}
.product-bottom .box2 .txt-t{
  border-bottom:  1px solid #E1E4ED;
}
.box2 .txt-b{
  max-height: 36px;
  display: flex;
  margin-top: 24px;
  gap: 20px;
}
.box2 .txt-b .category{
  margin: 0;
  padding: 5px 10px;
  background-color: #F8FAFF;
  border: 1px solid #F1F3F7;
  gap: 10px;
  border-radius: 3px;
  color: #343E48;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  text-align: center;
}
.box2 .txt-b .date{
  font-size: 14px;
  padding: 6px 0;
  margin-right: 0;
}
.home-product-s h2{
  margin-bottom: 40px;
  display: block;
  margin-left: 0;
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  color: white;
}
.home-product-s.lighting h2, .thl-pdt_ps .home-product-s h2 {
  color: #343E48;
}
.thl-pdt_ps .home-product-s{
  margin-top: 30px;
}
.home-product-s {
  padding: 50px 0;
  background-color: #1F2225;
}
.slider-comment{
  padding: 80px 0;
}
.smart-contact{
  background-image: url(../images/background-contact.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-top: 40px;
}
.list-contact{
  margin-top: 93px;
  margin-bottom: 103px;
  display: flex;
  gap: 80px;
  align-items: center;

}
.lienhe-left{
  margin-left: 0;
  padding: 32px 20px 64px 20px;
  gap: 20px;
  border-radius: 5px;
  background: #343E4866;
  backdrop-filter: blur(8px);
  width: 30%;
}
.lienhe-left h3{
  font-weight: 600;
  font-size: 17px;
  text-transform: uppercase;
  color: #E2E2E2;
  text-align: center;
}

.lienhe-left .form-item{
  position: relative;
}

.error{
  bottom: -1px;
  left: 0;
  color: red;
  font-style: italic;
}
.btn-send{
  padding: 4.5px 0;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 2px;
  gap: 10px;
  text-align: center;
  color: #343E48;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
}
.lienhe-right{
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 62px;
}
.lienhe-right .lienhe-rt p{
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  text-align: center;
  color: #E2E2E2;
}
.lienhe-right .lienhe-rb{
  display: flex;
  gap: 100px;
}
.lienhe-right .lienhe-rb .box .txt{
  font-weight: 200;
  text-transform: uppercase;
}
.lienhe-right .lienhe-rb .box{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.smart-contact h2{
  margin-bottom: 20px;
  max-width: 610px;
  font-weight: 400;
  font-size: 32px;
  text-align: center;
  text-transform: uppercase;
}
.thl-title {
  font-size: 38px;
  font-weight: 600;
}

.thl-pdt-menu,
.thl-pdt-hot,
.thl-services,
.thl-news,
.thl-project,
.thl-partner {
  margin: 80px 0;
  padding: 0 10px;
}

.thl-news_ps, .thl-project_ps, .thl-pdt_ps {
  margin-bottom: 50px;
  padding: 0 15px;
  margin-top: 50px;
}

.thl-about {
  padding: 0 10px;
  margin-bottom: 70px;
}

.thl-pdt-menu .pdt-menu-item {
  padding: 30px 15px;
  transition: all 0.3s ease-in-out;
}

.pdt-menu-item .box h2 a {
  color: black;
}

.thl-pdt-hot .thl-title {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.list--new-pdt{
  margin: 0 -16px;
}


.a--more a {
  transform: translateY(120px);
  padding: 8px 24px;
  text-align: center;
  border-radius: 5px;
  background: var(--color-blue-1);
  color: #FFF;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.5;
  width: fit-content;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.pdt-item:hover .a--more a {
  transform: translateY(-30px);
  transition: 0.8s;
}

.a--more a:hover {
  background: #569137;
}

.pdt-item {
  /* border-bottom: 1px solid #e0e0e0; */
  float: left;
  width: 25%;
  padding: 30px 15px;
}

/* .pdt-item .img {
  border: 1px solid #e0e0e0;
} */
.other--pdt {
  width: 100% !important;
}

.pdt-main.other--pdt .pdt-item {
  width: 25%;
}

.pdt-item .txt {
  padding: 16px;
}

.pdt-item .txt p {
  margin-top: 8px;
}

.pdt-item .pdt-code {
  color: #757575;
  font-size: 12px;
  line-height: 18px;
}


.pdt-item .txt h3 {
  margin: 10px 0 5px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}

.thl-pdt .pdt-more {
  background-color: #ffffff;
  border: 1px solid #00355e;
  color: #00355e;
  display: inline-block;
  font-weight: 500;
  padding: 10px 30px;
  margin-top: 30px;
}

.pdt-main .page-navigation {
  text-align: center;
  margin-top: 40px;
}

.thl-pdt .pdt-more>svg {
  fill: #00355e;
  margin-left: 5px;
  margin-bottom: -5px;
}

.thl-pdt .pdt-more:hover,
.thl-pdt .pdt-more:focus {
  background-color: #00355e;
  color: #ffffff;
}

.thl-pdt .pdt-more:hover>svg,
.thl-pdt .pdt-more:focus>svg {
  fill: #ffffff;
}

.thl-services .service-list {
  margin: 70px -15px 0;
}

.project-list .service-item,
.thl-services .service-item {
  float: left;
  width: 33.33336%;
  padding: 15px;
}

.project-list .service-item {
  padding: 16px;
}

.service-item .box {
  position: relative;
  overflow: hidden;
}

.service-item .img>a {
  display: block;
  position: relative;
}

.service-item .img img {}

.service-item .txt {
  color: #000;
  padding: 20px 10px;
  width: 89%;
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  bottom: 0;
  right: 0;
  text-align: left;
}

.service-item:hover .txt h2 {
  color: var(--color-blue-1);
}

.service-item .txt h2 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}

.service-item .txt h2 a {
  color: inherit;
}

.service-item .txt p {
  color: #616161;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.service-item a.v-more {
  display: inline-block;
  margin-top: 5px;
  color: black;
}

.service-item a.v-more i {
  font-weight: 500;
  margin-left: 4px;
}

.service-item a.v-more>.fa {
  margin-left: 10px;
}

.thl-news {
  margin-bottom: 90px;
}

.thl-news .news-list {
  margin: 45px -15px 0;
}

.thl-news .news-item {
  float: left;
  width: 33.33333%;
  padding: 15px;
}

.news-item .box {
  transition: all 0.3s ease-in-out;
}

.thl-news .news-item .img a>img {
  width: 100%;
  max-height: 221px;
  object-fit: cover;
}

.news-item .box::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.news-item .txt {
  padding: 10px;
}

.news-item h2,
.news-item h3 {
  margin: 10px 0 14px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item .txt a {
  color: inherit;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.news-item:hover .txt a,
.news-item:focus .txt a {
  color: var(--color-blue-1);
}

.thl-news .news-item:hover .box,
.thl-news .news-item:focus .box {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.thl-news .news-item .txt p:last-child {
  color: #757575;
  letter-spacing: -0.25px;
  padding-top: 15px;
  border-top: #bdbdbd solid 1px;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  max-height: 88px;
}

.news-item.news-s {
  border-bottom: 0.5px solid var(--neutral-neutral-500, #9e9e9e);
  padding: 20px 0 10px;
}

.news-item.news-s .img {
  float: left;
  width: 32%;
}

.news-item.news-s .img a>img {
  width: 100%;
  max-height: 90px;
  object-fit: cover;
}

.news-item.news-s .txt {
  float: left;
  margin-top: 0;
  width: calc(68% - 5px);
  margin-left: 5px;
  padding: 0 0 0 10px;
}

.news-item.news-s .date-views {
  font-size: 14px;
  color: #9e9e9e;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.news-item.news-s .date-views {
  margin: 14px 0 0;
}

.project-list {
  margin: -16px -16px 17px -16px;
}

.project-item {
  float: left;
  width: 33.33336%;
  padding: 15px;
}

.project-item .box::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.project-item .date-views {
  color: #000;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 10px;
}

.project-item .date-views .fa {
  margin-right: 5px;
}

.project-item .date-views .dv-view {
  margin-left: 20px;
}

.project-item .txt {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
}

.project-item h2,
.project-item h3 {
  margin: 10px 0 5px;
}

.project-item .txt a {
  color: inherit;
}

.project-item .txt a:hover,
.project-item .txt a:focus {
  color: #27719e;
}

.f-project {
  display: block;
}

.f-project>span {
  display: block;
  font-size: 13px;
  line-height: 18px;
  margin-bottom: 5px;
}

.s-classify {
  background-color: #ffffff;
  border: 1px solid #bdbdbd;
  padding: 8px 20px;
  outline: none;
}

.thl-about .box-abouts {
  background: #00355e url("../images/bg-about.png") center bottom no-repeat;
  color: #ffffff;
  max-width: 1020px;
  padding: 80px;
  margin-top: -200px;
}

/* .thl-about  */
.mb-5 {
  margin-bottom: 50px;
}

.box-wp-2 {
  padding: 0 100px;
}

.c-blue {
  color: var(--color-blue-1);
}

.title-m {
  margin-bottom: 24px;
}

._honorSwiper,
._exhibitionSwiper {
  position: relative;
}

._honorSwiper .swiper-slide {
  margin-right: 24px;
}

._honorSwiper .swiper-button-next,
._honorSwiper .swiper-button-prev {
  background-color: #0000008c;
  z-index: 1;
}

._honorSwiper .swiper-button-next,
._honorSwiper .swiper-rtl .swiper-button-prev {
  height: 100%;
  width: calc(100px - 24px);
  margin: 0;
  right: var(--swiper-navigation-sides-offset, -100px);
  top: 0;
  bottom: 0;
}

._honorSwiper .swiper-button-prev,
._honorSwiper .swiper-rtl .swiper-button-next {
  height: 100%;
  width: calc(100px - 24px);
  margin: 0;
  left: var(--swiper-navigation-sides-offset, -100px);
  top: 0;
  bottom: 0;
}

._honorSwiper .swiper-button-next::after,
._honorSwiper .swiper-button-prev::after {
  color: #ffffff;
  margin: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  font-size: 38px;
  transition: .5s;
}

._honorSwiper .swiper-button-next:hover::after,
._honorSwiper .swiper-button-prev:hover::after {
  background-color: #00000038;
  color: var(--color-blue-1);
  transition: .5s;
}

._honorSwiper .swiper-slide img {
  width: 100%;
}

._exhibitionSwiper {
  max-width: 700px;
  overflow: hidden;
}

._exhibitionSwiper .swiper-button-next,
._exhibitionSwiper .swiper-rtl .swiper-button-prev {
  margin: 0;
  right: var(--swiper-navigation-sides-offset, 20px);
  transform: translateY(-50%);
}

._exhibitionSwiper .swiper-button-prev,
._exhibitionSwiper .swiper-rtl .swiper-button-next {
  margin: 0;
  left: var(--swiper-navigation-sides-offset, 20px);
  transform: translateY(-50%);
}

._exhibitionSwiper .swiper-button-next::after,
._exhibitionSwiper .swiper-button-prev::after {
  color: #ffffff;
  background-color: #0000003d;
  flex-shrink: 0;
  margin: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  align-content: center;
  border-radius: 8px;
  font-size: 38px;
  transition: .5s;
}

._exhibitionSwiper .swiper-button-next:hover::after,
._exhibitionSwiper .swiper-button-prev:hover::after {
  background-color: #0000006e;
  color: var(--color-blue-1);
  transition: .5s;
}

.partner-list.pt-about {
  list-style: none;
  margin: 30px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.pt-about>.pt-item {
  display: block;
  flex: 0 0 25%;
  max-width: 25%;
  padding: 5px;
}

.pt-about>.pt-item .img {
  border: 1px solid #bdbdbd;
  padding: 10px 30px;
}

.pt-about>.pt-item img {
  max-height: 100px;
}

.wp-service>.img {
  float: left;
  width: 50%;
}

.wp-service .v-more {
  background-color: #ffffff;
  border: 1px solid #00355e;
  color: #00355e;
  display: inline-block;
  padding: 8px 30px;
  margin-top: 20px;
  text-align: center;
}

.wp-service .v-more:hover,
.wp-service .v-more:focus {
  background-color: #00355e;
  color: #ffffff;
}

.thl-contact,
.thl-map {}

.thl-form-page {
  padding: 0 10px;
  margin: 90px 0;
}

.thl-contact .ct-left {
  float: left;
  width: 50%;
}

.thl-contact .ct-right {
  font-weight: 300;
  float: right;

  width: calc(50% - 50px);
}

.ct-right h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 48px;
  letter-spacing: -0.25px;
  color: var(--color-blue-1);
}

.thl-map {
  line-height: 0;
}

.container {}

.main {}

.sidebar {
  float: left;
  width: 23.5%;
  padding: 20px 15px;
  border-radius: 8px;
  border: 0.5px solid #9E9E9E;
}

.sidebar .plb-title,
.pdt-detail .plb-title {
  margin-bottom: 0;
}

.sidebar .plb-title>label,
.pdt-detail .plb-title>label {
  display: block;
}


.sd-search>form {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  border: 0.5px solid #BEBEBE;
  margin-bottom: 20px;
  height: 44px;
}

.sd-search label:first-child {
  width: calc(100% - 22px);
  padding-right: 6px;
}

.sd-search label:last-child {
  width: 21px;
}

.sidebar h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 20px;
}

.sd-search label>input[type="text"] {
  color: #9E9E9E;
  font-size: 14px;
  width: 100%;
}

.sd-search label>button[type="submit"] {
  color: var(--color-blue-1);
  text-align: center;
  background: transparent;
}


.sidebar .sd-others-pdt {
  margin-bottom: 40px;
}


nav.sb ul {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

nav.sb>ul>li {
  background-color: #ffffff;
  margin: 1px 0;
  position: relative;
}

nav.sb>ul>li::after {
  content: "\f0da";
  font-style: normal;
  font-weight: normal;
  font-family: "FontAwesome";
  line-height: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
}

nav.sb>ul>li::after {
  /* content: "\f0d7"; */
  content: "\2b";

}

/* nav.sb>ul>li:hover::after, */
nav.sb>ul>li.ch-open::after,
nav.sb>ul>li.active::after {
  /* content: "\f0d7"; */
  content: "\f068";
  color: var(--color-blue-1);
  transition: 0.8s;

}


nav.sb ul>li>a,
nav.sb ul>li>a,
nav.sb ul>li>a {
  color: #333;
  z-index: 2;
  position: relative;
}

nav.sb>ul>li>ul>li {
  padding-left: 30px;
  background: url(/images/icon/icon_check.png) no-repeat left center;
}

nav.sb>ul>li>ul>li.active {
  background: url(/images/icon/icon_check_y.png) no-repeat left center;
}

/* nav.sb ul>li.child {
  background: url(/images/icon/icon_plus.png) no-repeat right center;
}

nav.sb ul>li.child:hover,
nav.sb ul>li.child.active {
  background: url(/images/icon/icon_plus_hover.png) no-repeat right center;
} */

nav.sb ul>li>a {
  color: #333;
  display: block;
  padding: 8px 0;
}

nav.sb ul>li:hover>a,
nav.sb ul>li:focus>a,
nav.sb ul>li.active>a {
  color: #27719e;
}

nav.sb ul>li:hover>a,
nav.sb ul>li:focus>a,
nav.sb ul>li.active>a,
nav.sb ul>li.ch-open>a {
  color: var(--color-blue-1);
}

nav.sb>ul ul {
  display: none;
}

nav.sb>ul>li.ch-open ul {
  display: block;
}

ul.sb-trade {
  background-color: #f5f5f5;
  color: #424242;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  list-style: none;
  margin: 0 auto;
  padding: 15px;
}

ul.sb-trade>li {
  background-color: #ffffff;
  cursor: pointer;
  display: block;
  margin: 1px 0;
  position: relative;
  padding: 10px 20px 10px 45px;
}

ul.sb-trade>li::before {
  content: " ";
  background-color: #f5f5f5;
  border: 2px solid #424242;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 20px;
}

ul.sb-trade>li:hover,
ul.sb-trade>li:focus,
ul.sb-trade>li.active {
  color: #27719e;
}

ul.sb-trade>li.active::before {
  background-color: #27719e;
  border-color: #27719e;
  box-shadow: inset 0 0 0 3px #ffffff;
}

.pdt-main {
  float: left;
  width: calc(76.5% - 32px);
}

.sidebar+.pdt-main,
.pdt-main+.sidebar {
  margin-left: 32px;
}

.pdt-main .pdt-list {
  margin-top: -16px;
}

.pdt-main .pdt-item {
  width: 33.33336%;
  padding: 16px;
  text-align: center;
}

.pdt-home {
  text-align: center;
}

.slogan-slider{
  background-color: #1F2225;
  padding-top: 57px;
  margin-top: 89px;
}
.slogan{
  max-width: 560px;
}
.title-slogan, .title-slogan-b{
  text-transform: capitalize;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
}
.title-slogan{
  color: #fff;
}
.title-slogan span{
  color: #218BD1;
}
.comment-slogan{
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #C2C2C2;
  -webkit-line-clamp: 7;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 32px;

}
.slider {
  margin: 60px 0;
}
.mySlideHome .img{
  border-radius: 8px;
}
.mySlideHome .content i {
  font-size: 18px;
  padding: 13px;
  margin-left: 10px;
  background-color: #343E48;
}

.mySlideHome a {
  color: white;
}
.mySlideHome .content {
  position: absolute;
  bottom: 0;
  left: 0;
}
.mySlideHome .content.prd-menu-item {
  width: 60%;
}
.buy-now{
  padding: 8px 16px;
  text-align: center;
  display: block;
  background-color: #343E48;
  border-radius: 5px;
  max-width: 185px;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #fff;
  margin-top: 32px;
}
.buy-now:hover{
  background-color: #218BD1;
}

.pdt-main .pdt-item h3 a,
.pdt-home .pdt-item h3 a,
.pdt-home .pdt-item p,
.pdt-main .pdt-item p {
  color: #000;

}

.pdt-main.pdt-detail {
  margin-top: 15px;
}

.pdt-detail .detail-wp {
  padding: 20px;
}

.content-left {}

.content-right {}

.pd-dt-shop {
  margin-bottom: 30px;
}

.pd-dt-shop .pd-s-gal {
  border: 1px solid #e0e0e0;
  float: left;
  width: calc(50% - 30px);
  padding: 8px;
}

.pd-dt-shop .pd-s-des {
  float: right;
  width: 50%;
}

.pdt-item.pdt-sb-sm {
  border-bottom: none;
  width: 100%;
  padding: 10px 0 5px;
}

.pdt-sb-sm .box::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.pdt-sb-sm .img {
  float: left;
  width: 30%;
}

.pdt-sb-sm .txt {
  float: left;
  width: calc(70% - 15px);
  margin-left: 15px;
  margin-top: 0;
}

.pdt-sb-sm .pdt-price {
  font-size: 13px;
  line-height: 18px;
  margin-top: 8px;
}

.pd-s-des .pdt-np {
  margin: 15px 0;
}

.pd-s-des .pdt-price {
  font-weight: 400;
  color: #f00000;
  margin-top: 30px;
}

.pdt-hotline {
  margin-top: 30px;
}

.pdt-hotline>.box {
  background-color: #f5f7f9;
  color: #27719e;
  display: inline-block;
  padding: 15px 30px;
}

.plb-title {
  margin-bottom: 10px;
  border-bottom: solid 1px #9e9e9e;
  padding-bottom: 8px;
  position: relative;
}

.plb-title::after {
  content: " ";
  border-bottom: 4px solid var(--color-blue-1);
  position: absolute;
  bottom: -2.5px;
  right: 85%;
  left: 0px;
  border-radius: 10px;
}

.plb-title>label {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: var(--color-blue-1);
  display: inline-block;
  text-transform: uppercase;
}

.r-sidebar {
  list-style: none;
  margin: 15px auto 0;
  padding: 0;
}

.r-sidebar>li {
  padding: 9px 0;
}

.r-sidebar>li::before {
  content: "\f054";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.r-sidebar>li a {
  color: #000;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.25px;
}

.r-sidebar>li span {
  float: right;
  padding: 1px 8.5px;
  background-color: #eeeeee;
  border-radius: 50%;
}

.content-right .box-sd {
  margin-bottom: 30px;
}

.box-sd+.box-sd {
  margin-top: 20px;
}

.box-sd .news-item {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 10px;
}

.p-others {
  margin-top: 30px;
}

.p-others .news-item {
  width: 33.33336%;
}

.jp-photos {
  list-style: none;
  margin: 20px -10px;
  padding: 0;
}

.jp-photos>li {
  display: block;
  float: left;
  width: 33.33336%;
  padding: 10px;
}

.date-views {
  color: #000;
  margin-bottom: 12px;
}

.date-views .aa {
  margin-right: 5px;
}

.date-views .dv-view {
  margin-left: 20px;
}

.date-views .fa {
  margin-right: 5px;
}

.date-views .dv-view {
  margin-left: 20px;
}

.wrap-detail,
.detail-wp {
  position: relative;
}

.wrap-detail .title-detail {
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 42px;
  letter-spacing: -0.25px;
}

.wrap-detail .title-other {
  margin-top: 50px;
}

.wrap-detail .description {
  font-weight: 500;
  margin: 20px 0 30px;
}

.wrap-detail .detail-wp a.f-zoom>img {
  cursor: zoom-in;
  position: relative;
}

.wrap-detail,
.detail-wp h1,
.detail-wp h2,
.detail-wp h3,
.detail-wp h4,
.detail-wp h5,
.detail-wp p,
.detail-wp div,
.detail-wp table,
.detail-wp ul,
.detail-wp ol {
  margin-bottom: 15px;
}

.detail-wp .locationmap {
  margin-top: 20px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrap-detail ._2pi8 {
  padding: 0 !important;
}

.wrap-detail .box-comments {
  padding: 0 12px;
}

.social-share {
  color: #717171;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

.social-share .item-social {
  float: left;
  margin: 0;
  position: relative;
}

.social-share .item-social+.item-social {
  margin-left: 15px;
}

.social-share .item-social .fa {
  font-weight: 300;
  font-size: 18px;
}

.social-share .item-social a {
  color: inherit;
}

.social-share .item-social a:hover,
.social-share .item-social a:focus {
  color: #ef6e2c;
}

.social-share::after {
  content: "";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.time-views {
  color: #707b97;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 15px;
}

.time-views .views {
  margin-left: 20px;
}

.time-views .tags {
  border-left: 1px solid #707b97;
  font-style: italic;
  margin-left: 15px;
  padding-left: 15px;
}

.time-views .tags>a {
  color: inherit;
}

.time-views .tags>a:hover,
.time-views .tags>a:focus {
  color: #0090cf;
  text-decoration: underline;
}

.time-share {
  border-bottom: 1px solid #707b97;
  color: #707b97;
  font-size: 13px;
  margin: 10px 0 20px;
  padding: 3px 5px;
  white-space: nowrap;
}

.time-share .views {
  margin-left: 20px;
}

.time-share .social-like {
  float: right;
}


.ft-col3.register {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.register #email {
  height: 48px;
  border: solid 1px #ffffff;
  background: none;
  color: #ffffff;

  padding: 14px 16px;
  width: 100%;
}

.register button {
  width: 100%;
  padding: 14px 0;
  color: #ffffff;
  text-transform: uppercase;
  border: none;
  background-color: var(--color-blue-1);
  font-weight: 600;
  position: relative;
}

.register button:hover {
  background-color: var(--color-blue-1);
}

.footer {
  background-color: #343E48;
  color: #F6F6F6;
}
.footer .footer-sitemap{
  border-bottom: 1px solid #6E6E6E;
}
.footer h4{
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 16px;
  display: block;
}
.footer .footer-logo,
.footer .footer-copyright {
  padding: 16px 10px;
}
.footer .footer-sitemap {
  padding: 10px 0;
}
.footer .footer-logo .logo {
  display: inline-block;
  text-align: left;
}
.footer .ft-col1 {
  font-size: 14px !important;
  float: left;
  width: 17.3%;
}
.footer .ft-col2 {
  float: left;
  width: calc(36.6% - 75px);
  margin-left: 75px;
}
.footer .ft-col3 {
  float: left;
  width: calc(16.6% - 75px);
  margin-left: 75px;
}
.footer .ft-col4 {
  float: left;
  width: calc(29.5% - 75px);
  margin-left: 75px;
}
.footer .ft-col2 .mm_tt_ i{

  padding: 4px 6px 0 0;
  margin: 0;

}
.footer .ft-col2 .mm_tt_ p{
  padding-bottom: 25px;
  display: block;
  float: none;
  margin: 0;
}
.footer .ft-sitemap {
  line-height: 22px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.footer .ft-sitemap a, .ft-col2 p{
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  color: #F6F6F6;
}
.footer .ft-sitemap a:hover{
  color: #218BD1;
}
.footer .ft-sitemap {
  margin: 0 -15px;
}
.footer .ft-sitemap li {
  margin-bottom: 16px;
  padding: 0 15px;
}
.footer .thongtin_{
  margin-bottom: 13px;
  display: inline-block;
}
.footer .ft-social{
  /* text-align: center; */
}
.footer .social {
  margin-top: 0;
  margin-left: 0;
  padding-left: 0;
  font-size: 20px;
  list-style: none;
  display: inline-block;
  margin-bottom: 32px;
}
.footer .social a img{
  display: block;
}
.footer .social > li {
  display: inline-block;
}
.footer .social > li + li {
  margin-left: 3px;
}
.footer .social a{
  background-color: #F6F6F6;
  background-size: 100%;
  border-radius: 50%;
  display: block;
  width: 32px;
  height: 32px;
  line-height: 42px;
  text-align: center;
  overflow: hidden;
  /* color:#FBFBFB; */
}
.footer .social a:hover {
  border: 1px solid #218BD1;
  background-color: #218BD1;
}
.footer .social a:hover .fa-brands{
  color: #F6F6F6;
}
.footer .flex-col{
  margin-top: 32px;
}
.footer .social .fa{
  color: #FBFBFB;
  margin-bottom: 5px;
}
.footer .social .fa-brands{
  color: #218BD1;
  margin-top: 6px;
  display: block;
}
.footer .footer-copyright .copy-right{
  padding: 24px 0 2px;
}
.footer .footer-copyright .copyright, .footer .footer-copyright .dnw  {
  font-weight: 300;
  line-height: 24px;
  color: #FEFEFE;
}
.footer .footer-copyright .copyright {
  text-align: center;
}
.footer .footer-copyright .dnw {
  float: right;
}

#go-top {
  background: url("../images/go-top.svg") center top no-repeat;
  position: fixed;
  z-index: 91;
  height: 36px;
  width: 36px;
  right: 30px;
  bottom: -50px;
  cursor: pointer;
}

#go-top:hover {
  background-position: center -36px;
}

#call-us {
  border-radius: 50%;
  color: #eeeeee;
  background-color: var(--color-blue-1);
  position: fixed;
  z-index: 91;
  height: 32px;
  width: 32px;
  right: 35px;
  bottom: 150px;
  cursor: pointer;
}

#call-us {
  -webkit-animation: ripple-white 1s linear infinite;
  animation: ripple-blue 1s linear infinite;
  -webkit-transition: 0.5s;
  z-index: 44;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes ripple-blue {
  0% {
    -webkit-box-shadow: 0 0 0 0 #218bd17d,
      0 0 0 10px #218bd17d, 0 0 0 20px #218bd17d;
    box-shadow: 0 0 0 0 #218bd17d, 0 0 0 10px #218bd17d,
      0 0 0 20px #218bd17d;
  }

  100% {
    -webkit-box-shadow: 0 0 0 10px #218bd17d,
      0 0 0 20px #218bd17d, 0 0 0 30px rgba(238, 238, 238, 0);
    box-shadow: 0 0 0 10px #218bd17d,
      0 0 0 20px #218bd17d, 0 0 0 30px rgba(238, 238, 238, 0);
  }
}

#_loading {
  display: none;
  position: fixed;
  z-index: 9999;
}

.form .form-item {
  float: left;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 8px;
}

.form .form-item input,
.form .form-item select,
.form .form-item textarea {
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  font-size: 14px;
  line-height: 20px;
  padding: 12px 20px;
  width: 100%;
  border-radius: 4px;
}

.form .form-item textarea {
  resize: none;
}

.div-input {
  margin: 0 -8px;
}

.form .form-item .f-icon {
  top: 8px;
  left: 10px;
  position: absolute;
  width: 40px;
  height: 40px;
  color: #b8b8b8;
  text-align: center;
  line-height: 40px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  pointer-events: none;
}

.form .form-item input:hover~i,
.form .form-item select:hover~i,
.form .form-item textarea:hover~i {
  color: #1f355d;
}

.form .form-item input:focus~i,
.form .form-item select:focus~i,
.form .form-item textarea:focus~i {
  color: #1f355d;
}

.form .form-item input[type="submit"] {
  background-color: #1f355d;
  border: none;
  width: 100%;
  padding: 10px 15px 8px;
  display: inline-block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 300;
  max-width: 250px;
  text-transform: uppercase;
}

.form .form-item input[type="submit"]:hover,
.form .form-item input[type="submit"]:focus {
  background-color: #1f355d;
}

.form .form-item .show-error,
#email-error,
.form .form-item label.error {
  color: #f70626;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 16px;
}

.form-item.it-error input,
.form-item.it-error select,
.form-item.it-error textarea {
  border: 1px solid #ff6e69;
}

.form .form-item.form-sm {
  width: 50%;
}

.form .form-item.form-lg {
  width: 100%;
}

.box-rfm {
  border: 1px solid #d8d9dd;
  margin-bottom: 25px;
  font-size: 15px;
}

.box-rfm .title {
  background-color: #1f355d;
  color: #ffffff;
  padding: 12px 25px 8px;
}

.box-rfm .title.t-red {
  background-color: #ec1d25;
}

.box-rfm .fm-tl {
  padding: 20px 10px;
}

.box-rfm .lgt {
  text-align: left;
  padding: 17px 5px 15px;
}

.box-rfm .cgt {
  text-align: center;
  padding: 17px 5px 15px;
}

.box-rfm .rgt {
  text-align: right;
  padding: 17px 5px 15px;
}

.form .box-rbtn {
  padding: 0;
}

.box-rbtn .btn {
  padding: 11px 20px 7px;
  text-transform: uppercase;
}

.box-rbtn .btn+.btn {
  margin-left: 20px;
}

.box-rbtn .btn.btn-send {
  width: 100%;
  background-color: var(--color-blue-1);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 25px 90px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-send:hover,
.btn-send:focus {
  background-color: #27719e;
}

.btn-send:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #00355e;
}

.btn-send span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
}

.btn-send span i {
  transform-origin: center center;
}

.btn-send span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%);
}

.btn-send span:nth-of-type(2) {
  top: 100%;
  transform: translateY(0%);
  font-size: 24px;
}

.btn-send span:nth-of-type(3) {
  display: none;
}

.b-active {
  background-color: #00355e;
}

.b-active:before {
  width: 100%;
  transition: width 7s linear;
}

.b-active span:nth-of-type(1) {
  top: -100%;
  transform: translateY(-50%);
}

.b-active span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.b-active span:nth-of-type(2) i {
  -webkit-animation: fa-spin 3s infinite linear;
  animation: fa-spin 3s infinite linear;
}

.b-active span:nth-of-type(3) {
  display: none;
}

.b-finished {
  background-color: #54d98c;
}

.b-finished .s_submit {
  display: none;
}

.b-finished .s_loading {
  display: none;
}

.b-finished .s_check {
  display: block !important;
  font-size: 24px;
  animation: scale 0.5s linear;
}

.b-finished .s_check i {
  transform-origin: center center;
}

@keyframes s_loading {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scale {
  0% {
    transform: scale(10);
  }

  50% {
    transform: scale(0.2);
  }

  70% {
    transform: scale(1.2);
  }

  90% {
    transform: scale(0.7);
  }

  100% {
    transform: scale(1);
  }
}

.page-navigation {
  clear: both;
  cursor: default;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  padding: 10px 20px;
}

.pagination {
  display: inline-block;
  margin: 0 -2px;
  padding: 0;
}

.pagination>li {
  display: inline-block;
  list-style: none;
  float: left;
}

.pagination>li>a,
.pagination>li>span {
  color: inherit;
  float: left;
  padding: 0;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  margin-right: 19px;
}

.pagination>li.active>a,
.pagination>li.active>span,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
  background-color: var(--color-blue-1);
  border-radius: 5px;
  color: white;
}

.pagination>li.paginate_icon .fa-chevron-left {
  margin-left: -2px;
}

.pagination>li.paginate_icon .fa-chevron-right {
  margin-right: -2px;
}

.pagination>li.paginate_icon>a,
.pagination>li.paginate_icon>span {
  line-height: 24px;
  width: 24px;
}

.pagination>li.paginate_icon>a:hover,
.pagination>li.paginate_icon>span:hover,
.pagination>li.paginate_icon>a:focus,
.pagination>li.paginate_icon>span:focus {
  background-color: var(--color-blue-1);
}

.pagination>li.paginate_icon>a:hover::after,
.pagination>li.paginate_icon>span:hover::after,
.pagination>li.paginate_icon>a:focus::after,
.pagination>li.paginate_icon>span:focus::after {
  display: none;
}

.pagination>.disabled>span,
.pagination>.disabled>span:hover,
.pagination>.disabled>span:focus,
.pagination>.disabled>a,
.pagination>.disabled>a:hover,
.pagination>.disabled>a:focus {
  color: #8b7f7f;
  cursor: not-allowed;
}

.pager {
  padding-left: 0;
  margin: 20px 0;
  text-align: center;
  list-style: none;
}

.pager li {
  display: inline;
}

.pager li>a,
.pager li>span {
  display: inline-block;
  padding: 5px 14px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 15px;
}

.pager li>a:hover,
.pager li>a:focus {
  text-decoration: none;
  background-color: #eee;
}

.pager .next>a,
.pager .next>span {
  float: right;
}

.pager .previous>a,
.pager .previous>span {
  float: left;
}

.pager .disabled>a,
.pager .disabled>a:hover,
.pager .disabled>a:focus,
.pager .disabled>span {
  color: #9c8f8f;
  cursor: not-allowed;
  background-color: #fff;
}

.updating,
.error404 {
  padding: 80px 10px;
  text-align: center;
}

.error404 i {
  margin-top: 50px;
  font-size: 10em;
}

.error404 p:last-child {
  color: #a7545e;
}

.error404 .title {
  font-weight: 500;
  margin-bottom: 50px;
}

.updating h3,
.error404 h3 {
  color: #9c8f8f;
  font-weight: 400;
}

.introduction {
  padding: 60px 10px 10px;
}

.intro-txt {
  width: 100%;
  /* float: left; */
}

.sidebar-menu {
  margin-bottom: 50px;
  border-bottom: 2px solid var(--color-black-1);
}

.sidebar-menu ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.sidebar-menu ul li {
  padding: 8px 12px;
  margin: 0;
}

.sidebar-menu ul li a:hover {
  color: var(--color-blue-1);
}

.sidebar-menu ul li.active a {
  color: var(--color-blue-1);
  font-weight: 700;
}

.main-about {
  margin-top: 10px;
}

.main-about .intro-txt {
  width: 100%;
  /* float: left; */
  padding-bottom: 50px;
  margin-bottom: 50px;
  border-bottom: 1px solid #1f222525;
}

.main-about .intro-txt:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.intro-txt .thl-title {
  margin-bottom: 46px;
  color: var(--color-blue-1);
}

.character {
  line-height: 32px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
}

.character p:first-child,
.character p:nth-child(2) {
  margin-bottom: 15px;
}

.intro-img {
  width: 44%;
  float: right;
  padding: 25px 27px 0;
  position: relative;
}

.intro-img .img1 {
  border-radius: 500px 500px 0px 0px;
  max-height: 541px;
  width: 100%;
  object-fit: cover;
}

.intro-img .img2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  cursor: default;
}

.thl-pdt-menu {
  width: 100%;
  position: relative;
  z-index: 1;
  color: white;
  padding: 47px 15px;
}

.thl-pdt-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 100%;
  background-image: url("../images/bg-dv.png");
  background-size: cover;
  z-index: -1;
}

.service-title {
  width: calc(27% - 19px);
  float: left;
  margin-top: 100px;
  letter-spacing: -0.25px;
}

.service-title .thl-title {
  margin-bottom: 29px;
  text-transform: uppercase;
}

.pdt-menu-list {
  width: 73%;
  float: right;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 28px;
  column-gap: 22px;
  color: #000;
}

.pdt-menu-list .pdt-menu-item:hover {
  transform: translateY(-15px);
}

.pdt-menu-item {
  background: #fff;
  box-shadow: 19px 16px 100px 0px rgba(0, 0, 0, 0.25);
}

.pdt-menu-item .icon {
  margin-bottom: 20px;
  pointer-events: none;
}

.pdt-menu-item .box h2 {
  font-size: 14px;
  line-height: 24px;
  height: 48px;
  font-weight: 500;
  text-transform: uppercase;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.pdt-menu-item .box p {
  font-size: 14px;
  margin-bottom: 34px;
  padding-right: 12px;
  line-height: 22px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  max-height: calc(5 * 22px);
}

.solution {
  background-image: url("../images/bg-gp.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 52px 10px;
  color: white;
}

.solution .thl-title {
  text-transform: uppercase;
  margin-bottom: 60px;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.solution-item {
  padding: 20px;
  border: solid 1px transparent;
  transition: all 0.3s ease-in-out;
}

.solution-item .box {
  display: flex;
  gap: 16px;
}

.solution-item .box .stt {
  min-width: 75px;
}

.solution-item .box .stt span {
  color: #48494b;
  font-family: Montserrat;
  font-size: 56px;
  font-weight: 600;
  line-height: 65px;
  letter-spacing: -0.25px;
}

.solution-item .txt h2 {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
  margin-bottom: 24px;
}

.solution-item .txt p {
  font-size: 14px;
  letter-spacing: -0.25px;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  height: 96px;
}

.solution-item .txt h2 a {
  color: #fff;
  position: relative;
}

.solution-item .txt h2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 75px;
  height: 0;
  border-bottom: 3px solid var(--color-blue-1);
}

.solution-item:hover {
  border: solid 1px #fff;
}

/* project */
.thl-services {
  background-image: url("../images/bg-sv.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 30px 10px 60px;
}

.project-title {
  position: relative;
}

.project-title .thl-title {
  padding-left: 15px;
  border-left: solid var(--color-blue-1) 6px;
  margin-bottom: 16px;
}

.project-title p {
  max-width: 433px;
  margin: 0;
}

.project-title .link-all {
  letter-spacing: -0.25px;
  font-weight: 500;
  border-radius: 10px;
  color: #fff;
  padding: 10px 40px 10px 20px;
  background-color: var(--color-blue-1);
  position: absolute;
  right: 0;
  top: 35%;
}

.project-title .link-all span {
  position: relative;
}

.project-title .link-all span::after {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: -2px;
  right: -22px;
}

.numbers {
  margin: 90px 0;
  padding: 0 10px;
}

.nums-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.nums-item {
  text-align: center;
  width: 100%;
  padding: 45px 55px;
  color: var(--color-blue-1);
}

.nums-item:hover {
  background-color: var(--color-blue-1);
  color: white;
}

.nums-item:hover .icon {
  border: solid 1px #fff;
}

.nums-item .icon {
  width: 80px;
  height: 80px;
  padding: 20px 15px 15px;
  border: solid 1px var(--color-blue-1);
  border-radius: 50%;
}

.nums-item .icon i {
  font-size: 2.2rem;
}

.nums-item .num {
  font-size: 56px;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -0.25px;
  margin-top: 33px;
}

.nums-item .name {
  color: #000;
  font-weight: 500;
  letter-spacing: -0.25px;
  margin-top: 28px;
}


/* PRODUCT PAGE START */
.bb-product-list-menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.prd-menu-item {
  background: #016ed3;
  color: white;
  padding: 10px;
  width: 100%;
}
.prd-menu-item a{
  color: white;
}
.prd-menu-item a .name-menu-prd {
  width: 100%;
}
.prd-menu-item a {
  display: flex;
  align-items: center;
  gap:20px
}
.prd-menu-item .prd-menu-l, .prd-menu-item .prd-menu-r {
  margin: 0;
}
.prd-menu-item .prd-menu-l h4 {
  font-size: 36px;
  font-weight: bold;
}
.prd-menu-r p {
  font-weight: bold;
}
.prd-menu-r h4 {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 27px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
.name-menu-prd {
  font-size: 24px;
  font-weight: bold;
}
.pd40{
  padding: 30px 0;
}
.title-h {
  margin-bottom: 20px;
  font-size: 20px;
}

.pdt-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.product-item .txt {
  background: #016ed3;
  padding: 10px 20px;
  color: white;
}
.product-item .txt h3 a {
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 27px;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  color: white;
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.product-item {
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
  position: relative;
  background: white;
}

.pdt--page {
  background: #FFF
}

.wtm-pdt_ps {
  padding: 40px 0
}

.product--main {
  display: flex
}

.left--product--main {
  width: 25.5%;
  padding-right: 40px
}

.right--product--main {
  width: 74.5%
}

.nav--page--product .page-navigation {
  text-align: center
}

.i-pdt--main {
  max-height: 390px
}

.pdt--page * {
  color: #000
}

.cus--part--pdt {
  display: flex;
  flex-wrap: wrap
}

.left--pdt--50 {
  width: 52%
}

.right--pdt--50 {
  width: 48%;
  padding-left: 24px
}

.flex--pdt {
  display: flex;
  align-items: center;

}

.flex--pdt * {
  width: fit-content;
  margin: 0
}

.flex--pdt i {
  margin: 0 16px
}

.flex--pdt span {
  margin-right: 5px;
  font-weight: 700
}
.comment--pdt:last-child {
  border: none;
  padding-bottom: 0;
}
.name-menu-pd {
  color: #016ed3;
  line-height: 1.5;
  font-family: "Big Shoulders Text", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.name--pdt-dt {
  font-size: 30px;
  font-weight: bold;
}

.pd-tab-nav > ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.pd-tab-nav > ul > li {
  display: block;
}
.pd-tab-nav ul {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #BEBEBE;
  padding: 8px 0;
  margin: 0 0 16px;
  height: 47px;
}

.bb-p-show > .pd-tab-panel .pd--s-panel {
  display: none;
}
.bb-p-show > .pd-tab-panel .pd--s-panel.active {
  display: block;
}
.detail-wp table tr td {
  padding: 5px;
}
.price--pdt {
  margin: 16px 0;
  color: red;
  font-size: 32px;
  font-weight: 700
}
.comment--pdt h3 {
  margin-bottom: 10px;
}
.part--pdt.part--2--pdt {
  margin-top: 30px;
}
.price--pdt label {
  color: #9E9E9E;
  font-size: 20px;
  font-weight: 400;
  text-decoration-line: line-through;
  margin-left: 8px
}

.comment--pdt {
  padding-bottom: 20px;
  border-bottom: 1px dashed #BEBEBE;
  margin-top: 20px;
}

.comment--pdt p {
  margin-bottom: 16px
}

#sync1 {
  margin-bottom: 16px;
  border: 2px solid #DEDEDE;
  border-radius: 8px;
  padding: 18px;
  background-color: #fff
}

#sync2 .owl-item div {
  border: 1px solid #DEDEDE;
  overflow: hidden;
  ;
  border-radius: 4px
}


#sync2 {
  padding: 0 28px
}

#sync2 .owl-nav .owl-prev,
#sync2 .owl-nav .owl-next {
  position: absolute;
  top: 45%;
  width: 24px;
  height: 24px
}

#sync2 .owl-nav .owl-prev {
  left: 0
}

#sync2 .owl-nav .owl-next {
  right: 0;
  text-align: right
}

.nav--sub--pdt {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #BEBEBE;
  padding: 8px 0;
  margin: 0 0 16px;
  height: 47px
}

.pd-tab-nav ul li {
  width: fit-content;
  padding: 0 16px;
  margin: 0;
  list-style: none;
  color: #BEBEBE;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.pd-tab-nav ul li::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  background: transparent;
}
.bb-p-show {
  width: 100%;
}
.pd-tab-nav ul li.active a {
  color: var(--color-blue-1);
}
.pd-tab-nav ul li.active::after {
  background: var(--color-blue-1);
}

.nav--sub--pdt li.infor-pdt {
  margin: 0 0 0 auto;
}

.nav--sub--pdt li:last-child {
  margin-right: auto;
}

/* li.ratting-pdt {
  margin-left: 0;
} */

.nav--sub--pdt li.active {
  color: var(--color-blue-1)
}
#download img {
  width: 30px;
  margin-right: 15px;
  margin-top: -5px;
}
#download a {
  display: block;
  margin-top: 25px;
}
.left--pdt--67 {
  width: 67%
}

.right--pdt--33 {
  width: 33%;
  padding-left: 20px
}

.item--new--pdt {
  display: flex;
  margin-bottom: 24px
}

.item--new--pdt:last-child {
  margin-bottom: 0
}

.item--new--pdt .img {
  width: 36%
}

.item--new--pdt .infor-new--pdt {
  width: 64%;
  position: relative;
  padding: 12px 0;
  padding-left: 8px
}

.a--new--pdt {
  position: absolute;
  bottom: 12px;
  left: 8px
}

.infor-new--pdt h4 {
  font-weight: 700
}

.desc--ratting {
  width: 100%;
}

.pd--40 {
  padding: 40px 0;
}

.a--contact a {
  position: unset;
  padding: 8px 40px;
  margin: 24px 0;
  display: block;
  transform: none;
}

.number-pdt {
  margin-top: 24px;
}

.number-pdt label {
  font-weight: 600;
}

#decrement,
#quantity,
#increment {
  border-radius: 40px;
  background: #FFF;
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
  width: 24px;
  height: 24px;
  text-align: center;

}

#quantity {
  margin: 0 16px;
  width: 32px;
  height: 32px;
}

.right--pdt--50 .social {
  margin: 0 0 0 8px;
  transform: translateY(8px);
}

/* 
.part--2--pdt {
  margin-top: 48px
} */

.tl--other-pdt {
  color: var(--color-blue-1);
  font-size: 38px;
  margin-bottom: 40px;
}

.show--ratting--pdt {
  display: none
}

.show--ratting--pdt.active {
  display: block
}

.show--infor--pdt.hidden {
  display: none
}

.top--filter {
  padding: 10px 0;
  margin-bottom: 16px
}

.top--filter form {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #BEBEBE;
  padding: 12px;
  display: flex
}

.top--filter form input {
  width: calc(100% - 32px);
  background-color: transparent
}

.top--filter form button {
  width: 32px;
  padding-left: 8px
}

.top--filter form button:hover img {
  transform: scale(1.12);
  transform: .6s
}

.box--filter {
  margin-bottom: 32px
}

.box--filter h2 {
  font-size: 24px;
  font-weight: 400;
  color: #000;
  margin-bottom: 16px
}

.box--filter ul {
  margin: 0;
  padding: 0
}

.box--filter li {
  list-style: none;
  padding: 8px;
  border-bottom: .5px dashed #494D48;
  margin-bottom: 8px;
  cursor: pointer
}

.box--filter li.active,
.box--filter li.active * {
  color: #98743D
}

.box--filter:last-child,
.box--filter li:last-child {
  margin-bottom: 0
}

.title--ratting {
  text-align: center;
  width: fit-content;
  padding: 20px 0;
  border-bottom: 1px solid #BEBEBE;
  margin-bottom: 24px;
  color: #000;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase
}

.feedback {
  margin-bottom: 20px
}

.btn-ratting {
  margin-top: 32px;
  color: #fff !important;
  background-color: #4D3A1E;
  padding: 12px;
  max-width: 175px
}

.btn-ratting * {
  color: #fff !important
}

.box-btn--ratting {
  text-align: center
}

.list--ratting {
  margin: 40px 0 0;
  padding: 20px 20px 0;
  border-top: 2px solid var(--color-blue-1);
  border-bottom: 2px solid var(--color-blue-1);
  border-radius: 20px
}

.list--ratting li {
  margin-bottom: 15px;
  list-style: none
}

.list--ratting h4 {
  font-size: 20px
}

.list--ratting label {
  margin-left: -4px
}

.list--ratting label {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e") no-repeat center;
  background-size: 70%
}

.detail--post img {
  margin: 33px 0
}

/* PRODUCT PAGE ENDS */

/* teamSize */
.team-size .thl-title {
  color: var(--color-blue-1);
  letter-spacing: -0.25px;
  text-transform: uppercase;
  margin-bottom: 60px;
  text-align: center;
}

.team-size {
  margin-bottom: 90px;
}

.team-size .team-size-list {
  margin: 0 -16px;
}

.team-item .box {
  position: relative;
  overflow: hidden;
  border-bottom: 2.913px solid var(--color-blue-1);
}

.team-item .box .img img {
  max-height: 320px;
}

.team-item .txt {
  letter-spacing: -0.25px;
  border-radius: 10px 10px 0px 0px;
  background-color: #fff;
  text-align: center;
  color: #000;
  padding: 10px 10px;
  transition: 0.5s;
  transform: translateY(100%);
  position: absolute;
  right: 0;
  bottom: 64px;
  left: 0;
}

.team-item .txt .name {
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 5px;
}

.team-item .txt .pos {
  font-size: 14px;
  color: var(--color-blue-1);
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.team-item .txt .content {
  opacity: 0;
  font-size: 14px;
}

.team-item:hover .txt,
.team-item:focus .txt {
  bottom: 0;
  transform: translateY(0);
}

.team-item:hover .txt .content,
.team-item:focus .txt .content {
  opacity: 1;
}

.team-item:hover .txt,
.team-item:focus .txt {
  background: rgba(255, 255, 255, 0.8);
}

.sv-contact {
  margin-top: 80px;
  padding: 50px 10px 60px;
  background-color: var(--color-blue-1);
  color: #fff;
  letter-spacing: -0.25px;
}

.sv-contact .box {
  max-width: 898px;
  text-align: center;
}

.sv-contact .box .cont-title {
  max-width: 761px;
  font-size: 38px;
  font-weight: 600;
  line-height: 57px;

  text-transform: uppercase;
}

.sv-contact .box .cont-des {
  margin: 51px auto 60px;
  font-size: 14px;
  line-height: 20px;
}

.sv-contact .box a {
  padding: 10px 20px;
  background-color: white;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  transition: all 0.3s ease-out;
}

.sv-contact .box a:hover {
  color: white;
  background-color: rgb(10, 128, 34);
  transform: scale(1.1);
  padding: 15px 25px;
}

.service-main {
  width: calc(60% - 34px);
  float: left;
  margin-right: 34px;
}

.faq {
  width: 40%;
  float: right;
}

.service-main span {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.25px;
  color: var(--color-blue-1);
}

.service-main .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: var(--color-blue-1);
  margin: 12px 0 35px;
  max-width: 529px;
  text-transform: uppercase;
}

.service-main .content {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.service-main .content p {
  margin-bottom: 18px;
}

.service-main .social {
  font-size: 15px;
  letter-spacing: -0.25px;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-top: 47px;
}

.service-main .social span {
  padding-top: 5px;
  margin: 0;
  color: #757575;
}

.service-main .social span>i {
  margin-right: 4px;
}

.service-main .social a {
  border: none;
  width: unset;
  height: 32px;
  margin: 0;
  color: #fff;
  font-size: 15px;
  padding: 0px 9px;
  background-color: #0085ff;
  border-radius: 4px;
}

.service-main .social a>i {
  margin-right: 8px;
}

/* faq */
.faq-item {
  margin-bottom: 26px;
}

.faq .faq-title {
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 24px;
}

.faq .faq-question {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 500;
  cursor: pointer;
}

.faq .faq-question .icon {
  width: fit-content;
  padding: 3px 8px;
  background-color: var(--color-blue-1);
  border-radius: 50%;
  color: #fff;
  margin: 0;
}

.faq-item .faq-answer {
  margin-top: 15px;
  transition: all 0.5s ease-in-out;
  font-size: 14px;
  letter-spacing: 0.75px;
}

.faq-item .faq-answer p {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

.similar-service {
  margin: 100px 0 90px;
  padding: 0 10px;
}

.similar-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.similar-service .pdt-menu-item {
  box-shadow: unset;
  padding: 30px 10px;
}

.similar-service .pdt-menu-item:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.similar-title h2 {
  font-size: 28px;
  color: var(--color-blue-1);
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
}

.detail-wp {}

.wrap-detail .img img {
  max-height: 486px;
  width: 100%;
  object-fit: cover;
}

.detail-wp .content-left {
  width: calc(34% - 30px);
  margin-right: 30px;
  float: left;
}

.detail-wp .content-left p {
  margin-bottom: 18px;
}

.detail-wp .content-right {
  width: 66%;
  float: right;
}
.title-proj {
  color: #026ed1;
  font-size: 30px;
  text-align: center;
  margin-bottom: 18px;
}

.detail-wp .proj-title {
  margin-bottom: 26px;
  font-size: 16px;
  font-weight: 500;
}

.detail-wp strong {
  font-weight: 500;
}
.slider-list {
  margin-bottom: 32px;
}
.ft-social .social {
  list-style: none;
}

.social>li+li {
  margin-left: 15px;
}

 .ft-social-pj {
  display: flex;
  gap: 17px;
  align-items: center;
   margin-top: 32px;
}

.ft-social-pj .social {
  margin: 2px 0 0 0;
}
.ft-social-pj .social a {
  background-color: transparent;
  border: 1px solid var(--color-blue-1);
  background-size: 70%;
  border-radius: 50%;
  color: var(--color-blue-1);
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  overflow: hidden;
}
.ft-social-pj .social {
  list-style: none;
  margin: 2px 0 0 0;
}
.ft-social-pj .social>li {
  display: inline-block;
}
.thl-news_ps .content-left .ft-social-pj {
  margin-top: 0;
  margin-right: 0;
}
.document-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.document-item {
  width: 100%;
  background: var(--color-blue-1);
  padding: 20px 30px;
  border-radius: 20px;
  color: white;
}
.document-item:hover, .prd-menu-item:hover, .button-xt a:hover{
  animation: pulse 1s;
}
.box-rbtn .btn.btn-send:hover{
  animation: headShake 1s;
}
  .document-item img {
  width: 30px;
  margin-right: 10px;
  margin-top: -5px;
}
.project-similar {
  margin-top: 32px;
}

.project-similar .news-list {
  margin: 0 -15px;
}

.project-similar .others-title {
  font-size: 28px;
  margin-bottom: 45px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.25px;
  color: var(--color-blue-1);
}
.pd70{
  padding: 70px 0;
}
.box-sd .service-item {
  padding: 15px;
  float: left;
  width: 33.33333%;
}

.thl-news_ps .content-right {
  width: 40%;
  float: right;
}

.thl-news_ps .content-left {
  width: calc(60% - 32px);
  margin-right: 30px;
  float: left;
  margin-bottom: 20px;
}

.thl-news_ps .content-left .detail-wp {

  font-size: 15px;
}

.thl-news_ps .content-left .news-item:first-child {
  margin-bottom: 20px;
}

.thl-news_ps .content-left .page-navigation {
  margin-top: 40px;
}
.navigation > ul > li > ul::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-bottom-color: #e8e8e8;
  top: -1px;
  left: 35px;
}
.thl-news_ps .news-item .img img {
  max-height: 439px;
  object-fit: cover;
  width: 100%;
}

.thl-news_ps .content-left .news-item .txt {
  margin-top: 15px;
  padding: 0;
}

.thl-news_ps .news-item .txt h2 {
  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 600;
}

.thl-news_ps .content-left .news-item .txt .date-views {
  color: #9e9e9e;
  margin-bottom: 16px;
  font-size: 13px;
}

.thl-news_ps .content-left .news-item .txt p {
  text-overflow: ellipsis;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 15px;
  margin-bottom: 26px;
}

.thl-news_ps .news-item .txt a>span {
  color: var(--color-blue-1);
  padding: 5px 10px;
  border: 1px solid var(--color-blue-1);
  font-size: 15px;
}

.thl-news_ps .news-item .txt a>span::after {
  margin-left: 8px;
  content: "\f061";
  font-family: "FontAwesome";
}

.thl-news_ps .news-item .txt a>span:hover,
.thl-news_ps .news-item .txt a>span:focus {
  color: #fff;
  background-color: var(--color-blue-1);
}

.date-and-social {
  margin-top: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.date-and-social .date-views {
  margin: 0;
  font-size: 14px;
  color: #9e9e9e;
}

.date-and-social .ft-social {
  margin: 0;
}

.date-and-social .ft-social strong {
  font-weight: 500;
}

.info-contact {
  margin-top: 12px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.info-contact .ft-inf:not(:last-child) {
  margin-bottom: 12px;
}

.info-contact .ft-inf span {
  font-weight: 700;
}

.hire-item {
  width: 25%;
  float: left;
  padding: 15px;
}

.hire-section {
  margin-bottom: 90px;
}

.hire-section .service-list {
  margin: -15px;
}

.thl-project_ps .page-navigation,
.hire-section .page-navigation {
  text-align: center;
  margin-top: 45px;
}

.hire-item:hover .box,
.hire-item:focus .box {
  border-radius: 0 0 5px 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
}

.hire-item .img a>img {
  max-height: 195px;
  width: 100%;
  object-fit: cover;
}

.hire-item .txt {
  padding: 12px 10px 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.25px;
}

.hire-item .txt h3 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.25px;
}

.hire-item .txt h3>a {
  color: #000;
}

.hire-item .txt .info-location {
  margin-bottom: 16px;
}

.hire-item .txt .info-location::before {
  content: "\f3c5";
  font-family: "FontAwesome";
  color: var(--color-blue-1);
  font-size: 1.3rem;
  margin-right: 6px;
}

.hire-item .txt .info-line:not(:last-child) {
  margin-bottom: 12px;
}

.hire-item .txt .info-line span {
  font-weight: 500;
}

.hire-item .txt .info-line span::before {
  content: "\f00c";
  margin-right: 8px;
  font-family: "FontAwesome";
}

.hiring-title {
  background: url("../images/hiring-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  letter-spacing: -0.25px;
  padding: 0 10px;
}

.hiring-title h2 {
  font-size: 28px;
  margin: 150px 0 58px;
  line-height: 42px;
  position: relative;
  text-transform: uppercase;
}

.hiring-title h2::after {
  content: "";
  border-bottom: 10px solid white;
  position: absolute;
  left: 0;
  right: 88%;
  bottom: -20px;
}

.hiring-title h3 {
  font-size: 16px;
  margin-bottom: 54px;
  line-height: 24px;
}

.wrap-detail .txt {
  margin-top: 62px;
  padding: 0 15px;
}

.txt .detail-wp {
  padding-top: 42px;
  border-top: 2px solid var(--color-blue-1);
  font-size: 14px;
  line-height: 28px;
  letter-spacing: -0.25px;
  margin-bottom: 30px;
}

.txt .detail-wp strong:not(:first-child) {
  margin-top: 20px;
}

.txt .info {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.25px;
  margin-bottom: 43px;
}

.txt .info .info-line:not(:last-child) {
  margin-bottom: 6px;
}

.txt .hiring {
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  padding: 10px 40px;
  border-radius: 5px;
  background: var(--color-blue-1);
  margin: 0;
  cursor: pointer;
}

.wrap-detail.wp-service.clearfix {
  margin-bottom: 100px;
}

.btn-apply {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-apply .ft-social {
  margin: 0;
}

.btn-apply .social {
  margin: 0;
  position: relative;
}

.btn-apply .social::before {
  content: "Share: ";
  font-weight: 500;
  font-size: 16px;
  position: absolute;
  top: 5px;
  left: -170px;
}

.btn-apply .social a {
  color: white;
  background-color: var(--color-blue-1);
}

.service-view {
  padding: 0 10px;
}

.choose_file {
  background-color: #616161;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

.thl-chinhsach_ps {
  margin: 90px 0;
  padding: 0 10px;
}



.windows8 {
  position: relative;
  width: 80px;
  height: 80px;
}

.windows8 .wBall {
  position: absolute;
  width: 76px;
  height: 76px;
  opacity: 0;
  -moz-transform: rotate(225deg);
  -moz-animation: orbit 4.95s infinite;
  -webkit-transform: rotate(225deg);
  -webkit-animation: orbit 4.95s infinite;
  -ms-transform: rotate(225deg);
  -ms-animation: orbit 4.95s infinite;
  -o-transform: rotate(225deg);
  -o-animation: orbit 4.95s infinite;
  transform: rotate(225deg);
  animation: orbit 4.95s infinite;
}

.windows8 .wBall .wInnerBall {
  background-color: #00355e;
  position: absolute;
  width: 10px;
  height: 10px;
  left: 0;
  top: 0;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
}

.windows8 #wBall_1 {
  -moz-animation-delay: 1.08s;
  -webkit-animation-delay: 1.08s;
  -ms-animation-delay: 1.08s;
  -o-animation-delay: 1.08s;
  animation-delay: 1.08s;
}

.windows8 #wBall_2 {
  -moz-animation-delay: 0.22s;
  -webkit-animation-delay: 0.22s;
  -ms-animation-delay: 0.22s;
  -o-animation-delay: 0.22s;
  animation-delay: 0.22s;
}

.windows8 #wBall_3 {
  -moz-animation-delay: 0.43s;
  -webkit-animation-delay: 0.43s;
  -ms-animation-delay: 0.43s;
  -o-animation-delay: 0.43s;
  animation-delay: 0.43s;
}

.windows8 #wBall_4 {
  -moz-animation-delay: 0.65s;
  -webkit-animation-delay: 0.65s;
  -ms-animation-delay: 0.65s;
  -o-animation-delay: 0.65s;
  animation-delay: 0.65s;
}

.windows8 #wBall_5 {
  -moz-animation-delay: 0.86s;
  -webkit-animation-delay: 0.86s;
  -ms-animation-delay: 0.86s;
  -o-animation-delay: 0.86s;
  animation-delay: 0.86s;
}

@-moz-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -moz-transform: rotate(180deg);
    -moz-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -moz-transform: rotate(300deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 0%;
  }

  30% {
    opacity: 1;
    -moz-transform: rotate(410deg);
    -moz-animation-timing-function: ease-in-out;
    -moz-origin: 7%;
  }

  39% {
    opacity: 1;
    -moz-transform: rotate(645deg);
    -moz-animation-timing-function: linear;
    -moz-origin: 30%;
  }

  70% {
    opacity: 1;
    -moz-transform: rotate(770deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 39%;
  }

  75% {
    opacity: 1;
    -moz-transform: rotate(900deg);
    -moz-animation-timing-function: ease-out;
    -moz-origin: 70%;
  }

  76% {
    opacity: 0;
    -moz-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -moz-transform: rotate(900deg);
  }
}

@-webkit-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -webkit-transform: rotate(180deg);
    -webkit-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -webkit-transform: rotate(300deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 0%;
  }

  30% {
    opacity: 1;
    -webkit-transform: rotate(410deg);
    -webkit-animation-timing-function: ease-in-out;
    -webkit-origin: 7%;
  }

  39% {
    opacity: 1;
    -webkit-transform: rotate(645deg);
    -webkit-animation-timing-function: linear;
    -webkit-origin: 30%;
  }

  70% {
    opacity: 1;
    -webkit-transform: rotate(770deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 39%;
  }

  75% {
    opacity: 1;
    -webkit-transform: rotate(900deg);
    -webkit-animation-timing-function: ease-out;
    -webkit-origin: 70%;
  }

  76% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: rotate(900deg);
  }
}

@-ms-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -ms-transform: rotate(180deg);
    -ms-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -ms-transform: rotate(300deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 0%;
  }

  30% {
    opacity: 1;
    -ms-transform: rotate(410deg);
    -ms-animation-timing-function: ease-in-out;
    -ms-origin: 7%;
  }

  39% {
    opacity: 1;
    -ms-transform: rotate(645deg);
    -ms-animation-timing-function: linear;
    -ms-origin: 30%;
  }

  70% {
    opacity: 1;
    -ms-transform: rotate(770deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 39%;
  }

  75% {
    opacity: 1;
    -ms-transform: rotate(900deg);
    -ms-animation-timing-function: ease-out;
    -ms-origin: 70%;
  }

  76% {
    opacity: 0;
    -ms-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -ms-transform: rotate(900deg);
  }
}

@-o-keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    -o-transform: rotate(180deg);
    -o-animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    -o-transform: rotate(300deg);
    -o-animation-timing-function: linear;
    -o-origin: 0%;
  }

  30% {
    opacity: 1;
    -o-transform: rotate(410deg);
    -o-animation-timing-function: ease-in-out;
    -o-origin: 7%;
  }

  39% {
    opacity: 1;
    -o-transform: rotate(645deg);
    -o-animation-timing-function: linear;
    -o-origin: 30%;
  }

  70% {
    opacity: 1;
    -o-transform: rotate(770deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 39%;
  }

  75% {
    opacity: 1;
    -o-transform: rotate(900deg);
    -o-animation-timing-function: ease-out;
    -o-origin: 70%;
  }

  76% {
    opacity: 0;
    -o-transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    -o-transform: rotate(900deg);
  }
}

@keyframes orbit {
  0% {
    opacity: 1;
    z-index: 99;
    transform: rotate(180deg);
    animation-timing-function: ease-out;
  }

  7% {
    opacity: 1;
    transform: rotate(300deg);
    animation-timing-function: linear;
    origin: 0%;
  }

  30% {
    opacity: 1;
    transform: rotate(410deg);
    animation-timing-function: ease-in-out;
    origin: 7%;
  }

  39% {
    opacity: 1;
    transform: rotate(645deg);
    animation-timing-function: linear;
    origin: 30%;
  }

  70% {
    opacity: 1;
    transform: rotate(770deg);
    animation-timing-function: ease-out;
    origin: 39%;
  }

  75% {
    opacity: 1;
    transform: rotate(900deg);
    animation-timing-function: ease-out;
    origin: 70%;
  }

  76% {
    opacity: 0;
    transform: rotate(900deg);
  }

  100% {
    opacity: 0;
    transform: rotate(900deg);
  }
}
.lienhe-left .form-item input{
  width: 100%;
  padding: 4.5px 10px;
  border: 1px solid #E2E2E2;
  border-radius: 2px;
  gap: 10px;
  background-color: transparent;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #E2E2E2;
}
.lienhe-left .box-rbtn .btn.btn-send {
  padding: 18px;
  border-radius: 2px;
  width: calc(100% - 16px);
  margin-left: 8px;
  font-size: 14px;
}
.slider-comment h2{
  color: white;
  font-size: 32px;
  font-weight: 500;
  line-height: 48px;
  margin-bottom: 64px;
  text-align: center;
}
.author{
  padding-top: 41px;
  display: flex;
  gap: 27.4%;
}
.author .box{
  display: grid;
  gap: 10px;
  margin: 0;
}
.author .box .name{
  color: #E2E2E2;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.swiper-slide .comment{
  color: #E2E2E2;
  font-size: 18px;
  font-weight: 300;
  line-height: 27px;
  max-width: 750px;
  text-align: justify;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 65px;
}
.swiper-horizontal>.swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal{
  background-color: #C2C2C2;
  height: 1px !important;
}
.swiper-scrollbar-drag{
  background-color: #E2E2E2 !important;
  height: 3px !important;
  top: -1px;
  margin: 0 !important;
}
.img-rating img{
  display: block;
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

.slider-comment {
  background-color: #343E48;
}
.smart-news{
  padding-top: 60px;
  margin-bottom: 90px;
}
.smart-news h2 a{
  text-align: center;
  display: block;
  padding-bottom: 40px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 60px;
  font-weight: 500;
  color: #343E48;
}
.smart-news .list-news{
  max-width: 1251px;
  display: grid;
  gap: 21px;
  grid-template-columns: repeat(4, 1fr);
}

.list-news .box-b .content, .list-news .box-s .content{
  border-radius: 8px;
}

.box-c:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #218BD1;
  transition: .5s;
}
.box-c:hover:after{
  height: 10px;
}
.list-news .box-b .content:hover{
  border-radius: 8px 8px 0 0;
}
.img-project{
  border-radius: 8px;
}
.box-c {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
.list-news .box-b .txt{
  margin: -100px 103px 0 13px;
  position: absolute;
  z-index: 3;
}
.list-news .box-s .txt{
  width: calc(100% - 12px);
  position: absolute;
  z-index: 3;
  margin: 0;
  left: 12px;
}
.list-news .txt{
  color: #FFFFFF;
  bottom: 30px;
}
.list-news .txt h3 a{
  display: block;
  min-height: 42px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;

}
.box-b {
  grid-column: span 2;
  position: relative;
}
.box-s {
  position: relative;
}
.box-s .img-project {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}
.box-s .img-project img {
  height: 100%;
  object-fit: cover;
}
.box-s {
  position: relative;
  width: 100%;
  height: 100%;
}
.img-project a:after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000054;
}
.detail-wp img {
  height: auto;
}
.price {
  position: absolute;
  background: #016ed3;
  padding: 10px 20px;
  color: white;
  font-weight: bold;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.price-detail {
    font-weight: bold;
    color: red;
    margin: 10px 0;
}
.header-left img {
  max-width: 230px;
}
.prd-menu-light-item{
  position: relative;
}
.prd-menu-light-item .text a {
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  padding: 10px;
  background: rgba(255, 167, 39, 1);
}
.product-item-light {
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, .1);
  padding: 10px;
}
.product-item-light .price {
  position: relative;
  text-align: center;
  background: transparent;
  color: red;
}
.product-item-light .txt {
  margin-top: 10px;
}
.home-product-s.lighting {
  background: transparent;
}
.thl-pdt_ps .home-product-s {
  background: transparent;
  padding: 0;
}
.button-xt a {
  background: #016ed3;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-block;
}
.button-xt {
  text-align: center;
  margin: 50px 0 0 0;
}
.menu-product-b {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  border-radius: 8px;
  overflow: hidden;
}
.menu-product-b .img img {
  width: 100%;

}

.menu-product-b .img {
  width: 80%;
}
.menu-product-b .text {
  width: 20%;
}

.pdt-b-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.menu-product-b:nth-child(odd) {
  flex-direction: row-reverse;
}
.thl-title-b {
  padding: 10px;
}
.thl-title-b a {
  font-family: "Big Shoulders Text", sans-serif;
  text-align: center;
  font-size: 38px;
  display: block;
  color: #0067d4;
}
.logo-pr img {
  max-width: 170px;
  max-height: 100px;
}

.logo-pr {
  text-align: center;
}
.thl-pdt_ps .page-navigation {
  text-align: center;
  margin: 30px 0 0;
}
.content-left .news-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.r-sidebar .active a, .r-sidebar .active {
  color: var(--color-blue-1);
}
.mySwiper_thumb {

  padding-top: 15px;

}
.mySwiper_thumb .swiper-slide img {
  border-radius: 8px;
}
.mySwiper_thumb .swiper-slide {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.mySwiper_thumb2 {
  border: 1px solid #ccc;
  border-radius: 16px;
}@media screen and (max-width: 1300px) {
    .box-wp{
        padding: 0 16px;
    }
}
@media screen and (min-width: 1240px) {
    .hire-item .img a>img {
        height: 195px;
    }
}

@media screen and (max-width: 1240px) {
    .intro-txt {
        padding-left: 15px;
    }

    .hire-section .service-list {
        padding: 0 10px;
    }
}

@media screen and (max-width: 1080px) {
    .list-contact{
        gap: 45px;
    }
    .smart-product{
        padding-bottom: 0;
    }

    .product-top {
        max-width: 50.71%;
        padding-top: 0;
    }
    .list-about {
        gap: 50px;
    }
    .box-left {
        margin: 155px 0 155px 0;
    }
    .header .header-left {
        width: 15%;
    }

    .header .header-right {
        width: 85%;
    }

    .header .menu-main {
        width: 100%;
    }

    .slider-bg {
        height: 50vh;
    }

    .service-title {
        margin: 0 0 30px;
        width: 70%;
    }

    .pdt-menu-list {
        width: 100%;
    }

    .footer .footer-sitemap {
        padding: 50px 0 30px;
    }


    .footer .ft-col3.register {
        width: 100%;
    }

    .footer .ft-col3.register form {
        width: 100%;
    }

    .footer .f-title {
        margin: 0 auto;
    }
    .footer .ft-col3 {
        width: calc(18.6% - 24px);
        margin-left: 24px;
    }
    .footer .ft-sitemap a, .ft-col2 p {
        font-size: 14px;
    }
    .footer .ft-col4 {
        width: calc(27.5% - 12px);
        margin-left: 12px;
    }
    .footer h4 {
        font-size: 16px;
    }
    .footer .ft-col2 .mm_tt_ p {
        padding-bottom: 16px;
    }
    .footer .footer-copyright .copyright, .footer .footer-copyright .dnw{
        font-size: 13px;
    }
    .footer .ft-col2 {
        width: calc(36.6% - 30px);
        margin-left: 30px;
    }

}

@media screen and (min-width: 961px) {
    .project-item:nth-child(3n + 1) {
        clear: both;
    }
}

@media screen and (max-width: 960px) {
    .thl-title-b a{
        font-size: 22px;
    }
    .slogan-slider {
        margin-top: 64px;
    }
    .sv-contact .box .cont-des {
        margin: 30px auto 35px;
    }

    .sv-contact .box .cont-title {
        line-height: 36px;
        font-size: 27px;
    }

    .thl-title {
        font-size: 24px;
    }
    #wrapper {
        margin-top: 60px;
    }
    .service-item .txt h2 {
        margin-bottom: 5px;
        font-size: 15px;
    }
    .breadcrumb{
        padding: 60px 0;
    }
    .breadcrumb .title{
        font-size: 36px;
    }
    .bb-product-list-menu {
        grid-template-columns: 1fr 1fr;
    }
    .pd40 {
        padding: 20px 0;
    }
    .thl-news_ps, .thl-project_ps, .thl-pdt_ps {
        margin-bottom: 35px;
        margin-top: 35px;
        padding: 0;
    }
    .service-item a.v-more {
        margin-top: 5px;

    }

    .service-item .txt {
        padding: 10px;
        font-size: 13px;
    }

    .thl-contact .ct-right {
        width: calc(50% - 30px);
    }

    .navigation ul>li>a {
        padding: 5px 5px;
        font-size: 15px;
    }

    .nums-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .intro-txt .thl-title {
        margin-bottom: 30px;
    }

    .service-item .txt p {
        font-size: 14px;
        line-height: 22px;
    }

    .project-item {
        width: 50%;
    }

    .thl-services .service-list {
        margin: 70px -8px 0;
    }

    .project-list {
        margin: -8px;
    }

    .project-list .service-item,
    .thl-services .service-item {
        padding: 8px;
    }

    .thl-news .news-list {
        margin: 0 -8px;
    }

    .thl-news .news-item {
        padding: 8px;
    }

    .header .header-right {
        display: none;
    }

    .header .header-left {
        width: 100%;
        text-align: center;
    }

    .price--pdt {
        font-size: 28px;
    }

    .price--pdt label {
        font-size: 20px;
    }
}

/* @media screen and (max-width: 960px) and (min-width: 768px) {
    .sidebar {
        width: 30%;
    }

    .pdt-main {
        width: calc(70% - 20px);
    }

    .sidebar+.pdt-main,
    .pdt-main+.sidebar {
        margin-left: 20px;
    }

    .pdt-main .pdt-item {
        width: 50%;
    }

    .pdt-main .pdt-item:nth-child(2n + 1) {
        clear: both;
    }
} */

@media screen and (max-width: 880px) {
    #specifications{
        overflow: scroll;
    }
    .smart-b .txt{
        top: 0;
    }
    .product-choose {
        padding-bottom: 40px;
        padding-top: 60px;
    }
    .box2 .txt-b .category {
        -webkit-line-clamp: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
    }
    .product-box .box2 {
        padding: 0 20px;
    }
    .smart-s .txt, .smart-b .txt {
        padding-top: 10px;
    }
    .smart-b, .smart-s {
       width: 100%;
    }
    .smart-b .txt{
        position: relative;
    }
    .product-top h2, .box2 .txt-t h3 a, .home-product-s h2,.smart-contact h2,.slider-comment h2 , .smart-news h2 a,.tl--other-pdt,.plb-title>label, .wrap-detail .title-detail, .ct-right h2{
        font-size: 26px;
    }
    .thl-form-page {
        margin: 40px 0;
    }
    .document-item h3 {
        font-size: 16px;
    }
    .document-list{
        grid-template-columns: 1fr 1fr;
    }
    .thl-news_ps .content-left .news-item .txt {
         margin-top: 15px;
         padding: 0;
     }
    .thl-news_ps .content-left .news-item:first-child{
        margin-bottom: 0;
    }
    .thl-news_ps .news-item:nth-child(n+5) {
        display: none;
    }
    .thl-news_ps .content-left .news-item .txt p {
        text-overflow: ellipsis;
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
    .content-right .news-item.news-s {
        padding: 10px 0;
    }

    .thl-news_ps .news-item .txt h2{
        font-size: 20px;
    }
    .project-list .service-item, .thl-services .service-item, .box-sd .service-item{
        width: 50%;
    }
    .project-similar .service-item:nth-child(n+3) {
        display: none;
    }
    .footer .ft-sitemap a, .ft-col2 p{
        font-size: 13px;
    }
    .utilities-box {
        padding: 40px 0;
    }
    .smart-news {
        padding-top: 40px;
        margin-bottom: 60px;
    }
    .footer h4 {
        font-size: 14px;
    }
    .slider-comment{
        padding: 40px 0;
    }
    .swiper-slide .comment{
        font-size: 16px;
    }
    .slider-comment h2{
        margin-bottom: 30px;
    }
    .lienhe-right .lienhe-rb {
        gap: 30px;
        width: 100%;
    }
    .lienhe-left{
        width: 50%;
        padding: 32px 20px 32px 20px;
    }
    .pdt-list {
        grid-template-columns: 1fr 1fr;
    }
    .list-contact {
        margin-top: 50px;
        margin-bottom: 50px;
    }
    .product-bottom {
        padding: 20px 0;
    }
    .box-left {
        width: 36.9%;
    }
    .about-company .box-left .comment{
        min-width: initial;
    }
    .about-company .box-left .comment {
        -webkit-line-clamp: 10;
    }
    .list-about {
        gap: 30px;
    }
    .smart-product .txt{
        max-width: initial;
    }
    .smart-product h3 a {
        font-size: 24px;
        margin-bottom: 0;
    }
    .product-item .txt h3 a{
        font-size: 24px;
    }
    .introduction {
        padding: 40px 0 10px;
    }
    .box-right {
        padding: 50px 10px;
    }
    .title-slogan, .title-slogan-b {
        font-size: 26px;
    }
    .utilities-box {
        grid-template-columns: 1fr 1fr;
    }
    .prd-menu-r h4 {
        font-size: 22px;
    }
    .prd-menu-item{
        padding: 5px;
    }
    .prd-menu-item .prd-menu-l h4 {
        font-size: 30px;
    }
    .mySlideHome .content.prd-menu-item {
        width: 80%;
    }
    .ct-right h2 {
        font-size: 28px;
    }

    .left--pdt--50,
    .right--pdt--50 {
        width: 100%;
        padding: 0;
    }

    .right--pdt--50 {
        margin-top: 32px;
    }

    .navigation ul>li>a {
        font-size: 14px;
    }

    .character {
        line-height: 28px;
    }

    .pdt-menu-item .v-more {
        font-size: 13px;
        padding: 5px 15px;
    }

    .detail-wp .content-right {
        width: 100%;
        margin-top: 30px;
    }

    .detail-wp .content-left {
        width: 100%;
    }

    .thl-news_ps .content-left {
        width: 100%;
    }

    .thl-news_ps .content-right {
        width: 100%;
    }

    .hire-item {
        width: 33.3333%;
        padding: 8px;
    }

    .sidebar {
        width: 100%;
        margin-bottom: 30px;
    }

    .pdt-main {
        width: 100%;
        margin: 0;
    }

}

@media screen and (max-width: 767px) {
    .about-company .box-left .comment{
        text-align: center;
    }
    .footer .ft-col3 {
        width: 40%;
        margin-left: 0;
    }
    .footer .ft-col4 {
        width: 60%;
        margin-left: 0;
    }
    .footer .ft-col2 {
        width: 100%;
        text-align: center;
        margin-top: 30px;
        margin-left: 0;
    }
    .content-left .news-list {
        grid-template-columns: 1fr;
    }
    .menu-product-b, .menu-product-b:nth-child(odd) {
        flex-direction: column;
    }
    .menu-product-b .text, .menu-product-b .img {
        width: 100%;
    }
    .thl-title-b a {
        font-size: 18px;
    }
    .header-left img {
        max-width: 170px;
    }
    .ct-right h2 {
        font-size: 24px;
    }
    .thl-map iframe {
        min-height: 300px !important;
        height: 300px !important;
    }
    .thl-form-page{
        padding: 0;
    }
    .document-list {
        grid-template-columns: 1fr;
    }
    .page-navigation{
        padding: 0;
    }
    .thl-news_ps .content-left .page-navigation {
        margin-top: 20px;
    }
    .thl-news_ps .news-item .txt h2 {
        font-size: 18px;
    }
    .thl-news_ps .news-item {
        width: 100%;
    }
    .thl-news_ps .content-left .news-item:first-child{
        margin-bottom: 20px;
    }
    body{
        font-size: 14px;
    }
    .box-sd .service-item {
        width: 100%;
    }
    .project-similar .service-item:nth-child(n+3){
        display: block;
    }
    .title-proj {
        font-size: 20px;
    }
    .project-list .service-item {
        width: 100%;
    }
    .box-wp-2 {
        padding: 0;
    }
    ._honorSwiper .swiper-button-prev, ._honorSwiper .swiper-rtl .swiper-button-next, ._exhibitionSwiper .swiper-button-prev, ._exhibitionSwiper .swiper-rtl .swiper-button-next{
        left: 0;
    }
    ._honorSwiper .swiper-button-next::after, ._honorSwiper .swiper-button-prev::after, ._exhibitionSwiper .swiper-button-next::after, ._exhibitionSwiper .swiper-button-prev::after {
        width: 31px;
        height: 32px;
        font-size: 20px;
    }
    ._honorSwiper .swiper-button-prev, ._honorSwiper .swiper-rtl .swiper-button-next, ._honorSwiper .swiper-button-next, ._honorSwiper .swiper-rtl .swiper-button-prev{
        width: 37px;
    }
    ._honorSwiper .swiper-button-next, ._honorSwiper .swiper-rtl .swiper-button-prev,._exhibitionSwiper .swiper-button-next, ._exhibitionSwiper .swiper-rtl .swiper-button-prev{
        right: 0;
    }
    .main-about .intro-txt{
        margin-bottom: 30px;
    }
    .intro-txt, .main-about .intro-txt {
        padding: 0 0 16px;
    }
    .intro-txt .thl-title {
        margin-bottom: 16px;
    }
    .footer .flex-col {
        margin-top: 0;
    }
    .footer .ft-col1 {
        width: 100%;
        float: none;
        text-align: center;
    }
    .footer .ft-col1 img {
        max-width: 150px;
    }
    .smart-contact h2{
        font-size: 20px;
    }
    .box-b {
        grid-column: auto;
    }
    .box-s .img-project {
        position: relative;
    }
    .about-company .number{
        font-size: 26px;
    }
    .about-company h3, .about-company .box-right .comment{
        font-size: 14px;
    }
    .box-right .box1 .box1-1, .box-right .box1 .box1-2, .box-right .box2 .box {
        padding: 16px 16px;
    }
    .utilities-box,.pdt-list, .smart-news .list-news, .bb-product-list-menu {
        grid-template-columns: 1fr;
    }
    .name-menu-prd {
        font-size: 20px;
    }
    #sync2 {
        padding: 0;
    }
    .comment--pdt {
        font-size: 14px;
    }
    .comment--pdt h3 {
        font-size: 18px;
    }
    .pd-tab-nav ul li {
        padding: 0 3px;
        font-size: 14px;
    }

    .home-product-s h2 {
        margin-bottom: 20px;
    }
    .box-left {
        width: 100%;
        margin: 20px 0;
    }
    .box-right {
        padding: 10px 10px 40px 10px;
        width: 100%;

    }
    .list-contact{
        flex-direction: column;
    }
    .lienhe-left{
        width: 100%;
    }
    .box-right .box1 .box1-1{
        margin-top: 0;
        width: 100%;
    }
    .product-bottom .product-box{
        flex-direction: column;
    }
    .product-box .box2 {
        padding: 0 24px;
    }
    .product-box .box1, .product-box .box2{
        width: 100%;
    }
    .product-top{
        max-width: initial;
    }
    .about-company h2{
        font-size: 24px;
        margin-left: auto;
    }
    .smart-product .list-smart-pdt {
        flex-direction: column;
    }
    .smart-b, .smart-s {
        padding: 0;
    }
    .list-about{
        flex-direction: column;
    }
    .slogan-slider {
        margin-top: 48px;
    }

    .footer .ft-col1 p:first-child>img {
        width: 130px;
    }

    .tl--other-pdt {
        font-size: 32px;
    }

    .name--pdt-dt {
        font-size: 24px;
    }

    .pdt-main.other--pdt .pdt-item {
        width: 33.333%;
    }

    .price--pdt {
        font-size: 24px;
    }

    .price--pdt label {
        font-size: 18px;
    }

    .hire-section .service-list {
        margin: -8px;
    }

    .thl-news_ps .content-left .news-item .txt {
        margin-top: 15px;
    }

    .content-right .box-sd {
        margin-bottom: 20px;
    }

    .breadcrumb.bdc-sm {
        padding: 35px 10px;
    }

    .thl-news_ps, .thl-project_ps, .thl-pdt_ps {
        margin-bottom: 30px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;

    }

    h3 {
        font-size: 17px;

    }

    .thl-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 10px;
    }

    #wrapper {
        margin-top: 48px;
    }

    .header {
        padding: 8px 10px;
    }

    .header .header-left {
        width: 100%;
    }

    .header .header-right {
        display: none;
    }

    .breadcrumb {
        font-size: 14px;
        line-height: 22px;
        padding: 30px 10px 40px;
    }

    .breadcrumb.b-about {
        padding-bottom: 200px;
    }

    .breadcrumb .title {
        font-size: 26px;
    }

    .thl-pdt-menu,
    .thl-pdt-hot,
    .thl-services,
    .thl-news,
    .thl-partner {
        margin: 50px 0;
    }

    .pdt-item {
        width: 33.33336%;
    }

    .thl-services .service-item {
        width: 50%;
    }

    .news-item.news-b,
    .news-item.news-s {
        width: 100%;
    }

    .thl-contact,
    .thl-map {}

    .thl-about .box-abouts {
        padding: 50px;
    }

    .wrap-detail .description {
        margin: 10px 0 20px;
    }

    .thl-contact .ct-left,
    .thl-contact .ct-right {
        width: 100%;
    }

    .thl-contact .ct-right {
        margin-top: 50px;
    }

    .sidebar,
    .pdt-main {
        width: 100%;
    }

    .sidebar+.pdt-main,
    .pdt-main+.sidebar {
        margin-left: 0;
    }

    .sd-search>form,
    .sidebar .sd-search {
        margin-bottom: 0px;
    }

    .sidebar .sd-nar-pdt,
    .sidebar .sd-partner {
        display: none;
    }

    .sidebar .sd-others-pdt {
        margin-bottom: 20px;
        max-width: 420px;
    }

    .pdt-hotline {
        margin-top: 20px;
    }
    .box-right .box1, .box-right .box2{
        width: 100%;
    }
    .list-about {
        gap: 0;
    }
}

@media screen and (max-width: 640px) {
    .box-right {

        flex-direction: column;
    }
    .footer .footer-copyright .copyright, .footer .footer-copyright .dnw {
        float: none;
        text-align: center;
    }
    .list-news .box-b .txt {
        margin: -100px 103px 0 0;
        width: calc(100% - 12px);
        left: 12px;
    }

    .footer .footer-copyright {
        font-size: 14px;
    }

    .title--ratting,
    .nav--sub--pdt li {
        font-size: 18px;
    }

    .pdt-list .pdt-item {
        width: 50%;
    }

    .footer .footer-copyright .dnw a>img {

        max-width: 70px;
    }
    .footer .footer-copyright .dnw img {
        margin-top: -2px !important;
    }
    .hiring-title h2 {
        font-size: 24px;
    }

    .txt .info {
        margin-bottom: 30px;
        font-size: 14px;
    }

    .wrap-detail .title-detail {
        font-size: 22px;
        line-height: 28px;
    }

    .wrap-detail .txt {
        margin-top: 40px;
    }

    .plb-title>label {
        font-size: 22px;
    }

    .project-similar .others-title {
        margin-bottom: 25px;
        font-size: 22px;
        line-height: 30px;
    }

    .project-similar {
        margin-top: 25px;
    }

    .service-item .txt {
        padding: 10px 5px;
    }

    .content-left {
        width: 100%;
    }

    .service-item .txt p {
        display: none;
    }

    .pd-dt-shop .pd-s-gal,
    .pd-dt-shop .pd-s-des {
        width: 100%;
    }

    .pd-dt-shop .pd-s-des {
        margin-top: 20px;
    }

    .sidebar h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .pdt-main .page-navigation {
        margin-top: 20px;
    }
}

@media screen and (max-width: 580px) {
    .date-views {
        font-size: 14px;
    }

    .service-item .txt {
        background: rgba(255, 255, 255, 0.7);
        font-size: 12px;
    }

    .service-item .txt h2 a {
        font-size: 13px;
    }

    .footer .f-title {
        font-size: 14px;
    }

    .footer {
        font-size: 14px;
    }

    .footer .ft-col3 {
        margin-top: 5px;
    }

    .social {
        margin: 20px 0 0 0;
    }

    .pdt-menu-item .box p {

        margin-bottom: 10px
    }

    .sv-contact .box .cont-des {
        margin: 25px auto 35px;
    }

    .sv-contact .box .cont-title {
        font-size: 26px;
        line-height: 40px;
    }

    .nums-item {
        padding: 10px 15px;
    }

    .nums-item .num {
        font-size: 40px;
        line-height: 50px;
    }

    .character {
        font-size: 14px;
    }

    .thl-pdt-menu {
        padding: 30px 10px;
    }

    .wrap-detail.wp-service.clearfix {
        margin-bottom: 50px;
    }

    .btn-apply {
        flex-direction: column;
        gap: 50px;
    }

    .hire-item {
        width: 50%;
    }

    .similar-service {
        margin: 0 0 20px;
    }

    .similar-list {
        margin-top: 10px;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .similar-service .pdt-menu-item {
        padding: 15px 10px;
    }

    .service-main {
        width: 100%;
    }

    .faq {
        width: 100%;
        margin-top: 30px;
    }

    .team-size {
        margin-bottom: 60px;
    }

    .numbers {
        margin: 30px 0;
    }

    .slider-bg {
        height: 35vh;
    }

    .intro-img {
        width: 100%;
        margin-top: 30px;
        padding: 15px 16px 0;
    }

    .thl-pdt-menu .pdt-menu-item {
        padding: 15px 10px;
    }

    .solution-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px;
    }

    .solution .thl-title {
        margin-bottom: 25px;
    }

    .project-title {
        padding-bottom: 70px;
    }

    .project-title .link-all {
        top: unset;
        bottom: 15px;
    }

    .thl-services {
        padding-bottom: 25px;
    }

    .service-item .txt h2 {
        margin-bottom: 0px;
    }

    .service-item a.v-more {
        margin-top: 5px;
    }

    .thl-news .news-item {
        width: 50%;
    }

    .thl-news .news-item .txt p:last-child {
        margin-bottom: 0px;
    }

    h1 {
        font-size: 22px;

    }

    h2 {
        font-size: 18px;

    }

    h3 {
        font-size: 16px;

    }

    .intro-txt .thl-title {
        font-size: 20px;
    }

    .thl-title {
        font-size: 24px;
        line-height: 30px;
    }

    .pdt-item {
        width: 50%;
    }

    .thl-services .service-list,
    .pdt-list,
    .news-list,
    .project-list {
        margin: 0 -8px;
    }

    .thl-services .service-item,
    .news-item,
    .project-item {
        padding: 8px;
    }

    .pdt-item {
        padding: 20px 8px;
    }

    .thl-about .box-abouts {
        padding: 30px;
    }

    .pt-about>.pt-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .wp-service>.img,
    .wp-service>.txt {
        width: 100%;
    }

    .wp-service>.txt {
        margin-top: 20px;
    }

    .p-others .news-item {
        width: 50%;
    }

    .p-others .news-item:nth-child(2n + 1) {
        clear: both;
    }

    .pdt-main .pdt-item {
        width: 50%;
    }

    .pdt-item:nth-child(2n + 1) {
        clear: both;
    }


    .footer .ft-col1 p:first-child {
        text-align: right;
        margin-right: 0px;
    }


    .footer .ft-col2:nth-child(4) {
        width: calc(30% - 30px);
        margin-top: 20px;
    }


}

@media screen and (min-width: 441px) and (max-width: 960px) {
    .project-item:nth-child(2n + 1) {
        clear: both;
    }
}

@media screen and (max-width: 480px) {
    .form .form-item.form-sm {
        width: 100%;
        padding: 8px !important;
    }

    .pdt-main.other--pdt .pdt-item {
        width: 50%;
    }

    .sidebar {
        border: none;
    }

    .thl-news_ps .news-item .txt h2 {
        line-height: 1.5;
        max-height: unset;
    }

    .team-item .txt {
        transform: none;
        position: unset;
    }

    .team-item .txt .pos {
        min-height: 40px;
    }

    .team-item .txt .content {
        opacity: 1;
    }

    .tl--other-pdt {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .name--pdt-dt {
        font-size: 22px;
    }

    .price--pdt {
        font-size: 20px;
    }

    .price--pdt label {
        font-size: 14px;
    }

    .pd--40 {
        padding: 20px 0;
    }

    .part--2--pdt {
        margin-top: 16px;
    }
}

@media screen and (max-width: 440px) {
    .btn-apply .ft-social {
        padding-left: 100px;
    }

    .price--pdt {
        font-size: 20px;
    }

    .price--pdt label {
        font-size: 14px;
    }

    .title--ratting,
    .nav--sub--pdt li {
        font-size: 16px;
    }

    .pdt-main .pdt-list {
        margin: 0;
    }

    .pdt-main .page-navigation {
        margin-top: 12px;
    }

    /* .pdt-list .pdt-item {
        width: 100%;
    } */
    .sidebar h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .hire-item {
        width: 100%;
    }

    .date-and-social {
        flex-direction: column;
        margin-top: 30px;
        align-items: unset;
        gap: 15px;
    }

    .service-item .txt p {
        display: none;
    }

    .news-item,
    .project-item {
        width: 100%;
    }
}

@media screen and (min-width: 441px) {
    .thl-news_ps .news-item:nth-child(2n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 581px) {
    .p-others .news-item:nth-child(2n + 1) {
        clear: none;
    }
}

@media screen and (max-width: 767px) and (min-width: 581px) {

    /* .pdt-main .pdt-item:nth-child(3n + 1), */
    .thl-pdt-hot .pdt-item:nth-child(3n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 768px) {
    .thl-pdt-hot .pdt-item:nth-child(4n + 1) {
        clear: both;
    }
}

@media screen and (min-width: 961px) {
    .pdt-main .pdt-item:nth-child(3n + 1) {
        clear: both;
    }

    .pdt-main .list--new-pdt .pdt-item:nth-child(3n + 1) {
        clear: none;
    }
}