@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(0.78125deg) skewY(0.78125deg);
        transform: skewX(0.78125deg) skewY(0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(-0.390625deg) skewY(-0.390625deg);
        transform: skewX(-0.390625deg) skewY(-0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(0.1953125deg) skewY(0.1953125deg);
        transform: skewX(0.1953125deg) skewY(0.1953125deg)
    }
}

@keyframes jello {
    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(0.78125deg) skewY(0.78125deg);
        transform: skewX(0.78125deg) skewY(0.78125deg)
    }

    77.7% {
        -webkit-transform: skewX(-0.390625deg) skewY(-0.390625deg);
        transform: skewX(-0.390625deg) skewY(-0.390625deg)
    }

    88.8% {
        -webkit-transform: skewX(0.1953125deg) skewY(0.1953125deg);
        transform: skewX(0.1953125deg) skewY(0.1953125deg)
    }
}

.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 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: backInLeft;
    animation-name: backInLeft
}

@-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: 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 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: backOutLeft;
    animation-name: backOutLeft
}

@-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: 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 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: bounceInLeft;
    animation-name: bounceInLeft
}

@-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: 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 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: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-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: 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 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: fadeInLeft;
    animation-name: fadeInLeft
}

@-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: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-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: fadeInRight;
    animation-name: fadeInRight
}

@-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: 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 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: fadeInTopLeft;
    animation-name: fadeInTopLeft
}

@-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: fadeInTopRight;
    animation-name: fadeInTopRight
}

@-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: fadeInBottomLeft;
    animation-name: fadeInBottomLeft
}

@-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: 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 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: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-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: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-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: fadeOutRight;
    animation-name: fadeOutRight
}

@-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: 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 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: fadeOutTopLeft;
    animation-name: fadeOutTopLeft
}

@-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: fadeOutTopRight;
    animation-name: fadeOutTopRight
}

@-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: fadeOutBottomRight;
    animation-name: fadeOutBottomRight
}

@-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: 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 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: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-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: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-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: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-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: 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 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__rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-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__rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    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: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    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: left bottom;
    transform-origin: left 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 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__rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom
}

@-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__rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    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: right bottom;
    transform-origin: right bottom
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        opacity: 1
    }

    to {
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    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: left bottom;
    transform-origin: left 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 right;
    transform-origin: top right
}

@-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 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: zoomInLeft;
    animation-name: zoomInLeft
}

@-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: 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 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__zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
    -webkit-transform-origin: right center;
    transform-origin: right center
}

@-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__zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
    -webkit-transform-origin: left center;
    transform-origin: left 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 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: slideInLeft;
    animation-name: slideInLeft
}

@-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: 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 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: slideOutLeft;
    animation-name: slideOutLeft
}

@-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: 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
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px; }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #869791;
      color: #FFF;
      text-decoration: none; }
  .owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default; }

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px; }

.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent; }
  .owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline; }
    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 5px 7px;
      background: #D6D6D6;
      display: block;
      -webkit-backface-visibility: visible;
      transition: opacity 200ms ease;
      border-radius: 30px; }
    .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
        background: #f5c540;
    }

.owl-prev {
    width: auto;
    height: auto;
    position: absolute;
    top: 40%;
    left: -20px;
    display: block !important;
    border: 0px solid black;
}

.owl-next {
    width: auto;
    height: auto;
    position: absolute;
    top: 40%;
    right: -20px;
    display: block !important;
    border: 0px solid black;
}

    .owl-prev i, .owl-next i {
        transform: scale(1,6);
        color: #ccc;
    }

.owl-theme .owl-nav [class*='owl-']:hover, .owl-theme .owl-nav [class*='owl-']:focus, .owl-dot:focus, .owl-dot:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
    outline: none;
}
/**
 * Swiper 6.4.9
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 28, 2021
 */

 @font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1
}

.swiper-container-vertical > .swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
    transform: translate3d(0px,0,0)
}

.swiper-container-multirow > .swiper-wrapper {
    flex-wrap: wrap
}

.swiper-container-multirow-column > .swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-container-free-mode > .swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-container-pointer-events {
    touch-action: pan-y
}

    .swiper-container-pointer-events.swiper-container-vertical {
        touch-action: pan-x
    }

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
    height: auto
}

    .swiper-container-autoheight .swiper-wrapper {
        align-items: flex-start;
        transition-property: transform,height
    }

.swiper-container-3d {
    perspective: 1200px
}

    .swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
        transform-style: preserve-3d
    }

    .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 10
    }

    .swiper-container-3d .swiper-slide-shadow-left {
        background-image: linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-right {
        background-image: linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-top {
        background-image: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

    .swiper-container-3d .swiper-slide-shadow-bottom {
        background-image: linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))
    }

.swiper-container-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

    .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
        display: none
    }

    .swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
        scroll-snap-align: start start
    }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
    scroll-snap-type: y mandatory
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(-1 * var(--swiper-navigation-size)/ 2);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color))
}

    .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
        opacity: .35;
        cursor: auto;
        pointer-events: none
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-family: swiper-icons;
        font-size: var(--swiper-navigation-size);
        text-transform: none !important;
        letter-spacing: 0;
        text-transform: none;
        font-variant: initial;
        line-height: 1
    }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto
}

    .swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
        content: 'prev'
    }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
    right: 10px;
    left: auto
}

    .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
        content: 'next'
    }

    .swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
        --swiper-navigation-color: #ffffff
    }

    .swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
        --swiper-navigation-color: #000000
    }

.swiper-button-lock {
    display: none
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10
}

    .swiper-pagination.swiper-pagination-hidden {
        opacity: 0
    }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transform: scale(.33);
        position: relative
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
        transform: scale(1)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
        transform: scale(.33)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
        transform: scale(.66)
    }

    .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
        transform: scale(.33)
    }

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    opacity: .2
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--swiper-pagination-color,var(--swiper-theme-color))
}

.swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    transform: translate3d(0px,-50%,0)
}

    .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 6px 0;
        display: block
    }

    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
        top: 50%;
        transform: translateY(-50%);
        width: 8px
    }

        .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
            display: inline-block;
            transition: .2s transform,.2s top
        }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

    .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
        transition: .2s transform,.2s left
    }

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform,.2s right
}

.swiper-pagination-progressbar {
    background: rgba(0,0,0,.25);
    position: absolute
}

    .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
        background: var(--swiper-pagination-color,var(--swiper-theme-color));
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: scale(0);
        transform-origin: left top
    }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0
}

    .swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
        width: 4px;
        height: 100%;
        left: 0;
        top: 0
    }

.swiper-pagination-white {
    --swiper-pagination-color: #ffffff
}

.swiper-pagination-black {
    --swiper-pagination-color: #000000
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1)
}

.swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%
}

.swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0,0,0,.5);
    border-radius: 10px;
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

    .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

.swiper-slide-zoomed {
    cursor: move
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    animation: swiper-preloader-spin 1s infinite linear;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    100% {
        transform: rotate(360deg)
    }
}

.swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-container-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

    .swiper-container-fade .swiper-slide .swiper-slide {
        pointer-events: none
    }

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-container-cube {
    overflow: visible
}

    .swiper-container-cube .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1;
        visibility: hidden;
        transform-origin: 0 0;
        width: 100%;
        height: 100%
    }

        .swiper-container-cube .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-cube.swiper-container-rtl .swiper-slide {
        transform-origin: 100% 0
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next + .swiper-slide, .swiper-container-cube .swiper-slide-prev {
        pointer-events: auto;
        visibility: visible
    }

    .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

    .swiper-container-cube .swiper-cube-shadow {
        position: absolute;
        left: 0;
        bottom: 0px;
        width: 100%;
        height: 100%;
        opacity: .6;
        z-index: 0
    }

        .swiper-container-cube .swiper-cube-shadow:before {
            content: '';
            background: #000;
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            right: 0;
            -webkit-filter: blur(50px);
            filter: blur(50px)
        }

.swiper-container-flip {
    overflow: visible
}

    .swiper-container-flip .swiper-slide {
        pointer-events: none;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        z-index: 1
    }

        .swiper-container-flip .swiper-slide .swiper-slide {
            pointer-events: none
        }

    .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
        pointer-events: auto
    }

    .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
        z-index: 0;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden
    }

.carousel {
    position: relative;
    box-sizing: border-box
}

    .carousel *, .carousel *:before, .carousel *:after {
        box-sizing: inherit
    }

    .carousel.is-draggable {
        cursor: move;
        cursor: grab
    }

    .carousel.is-dragging {
        cursor: move;
        cursor: grabbing
    }

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%
}

.carousel__track {
    display: flex
}

.carousel__slide {
    flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain
}

.has-dots {
    margin-bottom: calc(0.5rem + 22px)
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    user-select: none
}

    .carousel__dots .carousel__dot {
        margin: 0;
        padding: 0;
        display: block;
        position: relative;
        width: 22px;
        height: 22px;
        cursor: pointer
    }

        .carousel__dots .carousel__dot:after {
            content: "";
            width: 8px;
            height: 8px;
            border-radius: 50%;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: currentColor;
            opacity: .25;
            transition: opacity .15s ease-in-out
        }

        .carousel__dots .carousel__dot.is-selected:after {
            opacity: 1
        }

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    box-shadow: var(--carousel-button-shadow, none);
    transition: opacity .15s ease
}

    .carousel__button.is-prev, .carousel__button.is-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%)
    }

    .carousel__button.is-prev {
        left: 10px
    }

    .carousel__button.is-next {
        right: 10px
    }

    .carousel__button[disabled] {
        cursor: default;
        opacity: .3
    }

    .carousel__button svg {
        width: var(--carousel-button-svg-width, 50%);
        height: var(--carousel-button-svg-height, 50%);
        fill: none;
        stroke: currentColor;
        stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
        stroke-linejoin: bevel;
        stroke-linecap: round;
        filter: var(--carousel-button-svg-filter, none);
        pointer-events: none
    }

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    touch-action: none
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    overflow: hidden;
    z-index: 1050;
    outline: none;
    transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

    .fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
        box-sizing: inherit
    }

    .fancybox__container :focus {
        outline: none
    }

body:not(.is-using-mouse) .fancybox__container :focus {
    box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94))
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width: 48px;
        --carousel-button-height: 48px;
        --carousel-button-svg-width: 27px;
        --carousel-button-svg-height: 27px
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.92))
}

.fancybox__carousel {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10
}

    .fancybox__carousel.has-dots {
        margin-bottom: calc(0.5rem + 22px)
    }

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default
}

.fancybox__track {
    display: flex;
    height: 100%
}

.fancybox__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: flex;
    flex-direction: column;
    outline: 0;
    overflow: auto;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px
}

    .fancybox__slide::before, .fancybox__slide::after {
        content: "";
        flex: 0 0 0;
        margin: auto
    }

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding: 64px 100px
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    z-index: 20
}

    .fancybox__content :focus:not(.carousel__button.is-close) {
        outline: thin dotted;
        box-shadow: none
    }

.fancybox__caption {
    align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    flex-shrink: 0;
    overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container > .carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff)
}

.fancybox__nav .carousel__button {
    z-index: 40
}

    .fancybox__nav .carousel__button.is-next {
        right: 8px
    }

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40
}

@media all and (min-width: 1024px) {
    .carousel__button.is-close {
        right: 40px
    }
}

.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff)
}

.fancybox__no-click, .fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor)
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053
}

.fancybox__spinner svg {
    animation: fancybox-rotate 2s linear infinite;
    transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%
}

    .fancybox__spinner svg circle {
        fill: none;
        stroke-width: 2.75;
        stroke-miterlimit: 10;
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
        animation: fancybox-dash 1.5s ease-in-out infinite;
        stroke-linecap: round;
        stroke: currentColor
    }

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px
    }
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    animation: .15s ease backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
    animation: .15s ease both fancybox-fadeOut
}

.fancybox-fadeIn {
    animation: .15s ease both fancybox-fadeIn
}

.fancybox-fadeOut {
    animation: .1s ease both fancybox-fadeOut
}

.fancybox-zoomInUp {
    animation: .2s ease both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
    animation: .15s ease both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
    animation: .15s ease both fancybox-throwOutUp
}

.fancybox-throwOutDown {
    animation: .15s ease both fancybox-throwOutDown
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-zoomInUp {
    from {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0
    }

    to {
        transform: scale(1) translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutUp {
    to {
        transform: translate3d(0, -30%, 0);
        opacity: 0
    }
}

@keyframes fancybox-throwOutDown {
    to {
        transform: translate3d(0, 30%, 0);
        opacity: 0
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255,255,255,.1)
}

    .fancybox__carousel .carousel__slide::-webkit-scrollbar {
        width: 8px;
        height: 8px
    }

    .fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
        background-color: rgba(255,255,255,.1)
    }

    .fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
        background-color: #ccc;
        border-radius: 2px;
        box-shadow: inset 0 0 4px rgba(0,0,0,.2)
    }

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: grabbing
}

.fancybox__image {
    transform-origin: 0 0;
    user-select: none;
    transition: none
}

.has-image .fancybox__content {
    padding: 0;
    background: rgba(0,0,0,0);
    min-height: 1px
}

.is-closing .has-image .fancybox__content {
    overflow: visible
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    touch-action: none
}

    .has-image[data-image-fit=contain] .fancybox__content {
        flex-direction: row;
        flex-wrap: wrap
    }

    .has-image[data-image-fit=contain] .fancybox__image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain
    }

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto
}

    .has-image[data-image-fit=contain-w] .fancybox__content {
        min-height: auto
    }

    .has-image[data-image-fit=contain-w] .fancybox__image {
        max-width: 100%;
        height: auto
    }

.has-image[data-image-fit=cover] {
    overflow: visible;
    touch-action: none
}

    .has-image[data-image-fit=cover] .fancybox__content {
        width: 100%;
        height: 100%
    }

    .has-image[data-image-fit=cover] .fancybox__image {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    max-width: 100%;
    flex-shrink: 1;
    min-height: 1px;
    overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24,24,27,.9);
    color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

.fancybox__html5video, .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0)
}

.fancybox-placeholder {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0
}

.fancybox__thumbs {
    flex: 0 0 auto;
    position: relative;
    padding: 0px 3px;
    opacity: var(--fancybox-opacity, 1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    cursor: pointer
}

    .fancybox__thumbs .carousel__slide .fancybox__thumb::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-width: 5px;
        border-style: solid;
        border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
        opacity: 0;
        transition: opacity .15s ease;
        border-radius: var(--fancybox-thumbs-border-radius, 4px)
    }

    .fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
        opacity: .92
    }

    .fancybox__thumbs .carousel__slide > * {
        pointer-events: none;
        user-select: none
    }

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255,255,255,.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px)
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: linear-gradient(to top, hsla(0deg, 0%, 0%, 0) 0%, hsla(0deg, 0%, 0%, 0.006) 8.1%, hsla(0deg, 0%, 0%, 0.021) 15.5%, hsla(0deg, 0%, 0%, 0.046) 22.5%, hsla(0deg, 0%, 0%, 0.077) 29%, hsla(0deg, 0%, 0%, 0.114) 35.3%, hsla(0deg, 0%, 0%, 0.155) 41.2%, hsla(0deg, 0%, 0%, 0.198) 47.1%, hsla(0deg, 0%, 0%, 0.242) 52.9%, hsla(0deg, 0%, 0%, 0.285) 58.8%, hsla(0deg, 0%, 0%, 0.326) 64.7%, hsla(0deg, 0%, 0%, 0.363) 71%, hsla(0deg, 0%, 0%, 0.394) 77.5%, hsla(0deg, 0%, 0%, 0.419) 84.5%, hsla(0deg, 0%, 0%, 0.434) 91.9%, hsla(0deg, 0%, 0%, 0.44) 100%);
    padding: 0;
    touch-action: none;
    display: flex;
    justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4))
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0
}

.fancybox__toolbar__items {
    display: flex
}

.fancybox__toolbar__items--left {
    margin-right: auto
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
    margin-left: auto
}

@media(max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: scaleX(0);
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 30;
    user-select: none
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}



.panzoom {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.panzoom__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 1px;
    margin: auto
}

.panzoom__content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: translate3d(0, 0, 0) scale(1);
    transform-origin: 0 0;
    transition: none;
    touch-action: none;
    user-select: none
}

.is-draggable {
    cursor: move;
    cursor: grab
}

.is-dragging {
    cursor: grabbing
}


[ng-click]:focus, button:focus {
    outline: none;
}

html, body {
    min-height: 100vh;
    height: auto;
}

body {
    font-family: 'Tajawal','Cinzel',serif;
    font-family: 'Tajawal','Libre Franklin', sans-serif;
    /*    font-family: 'Cinzel',serif,'Roboto','Gotham Medium','Open Sans','Tajawal';*/
    background: #fff;
}

/*#region Select2 */

/*
Version: 3.4.5 Timestamp: Mon Nov  4 08:22:42 PST 2013
*/
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
    /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
    -webkit-box-sizing: border-box; /* webkit */
    -moz-box-sizing: border-box; /* firefox */
    box-sizing: border-box; /* css3 */
}

    .select2-container .select2-choice {
        display: block;
        height: 26px;
        padding: 0 8px 0 0;
        overflow: hidden;
        position: relative;
        border: 1px solid #aaa;
        white-space: nowrap;
        line-height: 26px;
        color: #444;
        text-decoration: none;
        border-radius: 4px;
        background-clip: padding-box;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #fff;
        background-image: -webkit-gradient(linear, right bottom, right top, color-stop(0, #eee), color-stop(0.5, #fff));
        background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
        background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
        background-image: linear-gradient(top, #fff 0%, #eee 50%);
    }

    .select2-container.select2-drop-above .select2-choice {
        border-bottom-color: #aaa;
        border-radius: 0 0 4px 4px;
        background-image: -webkit-gradient(linear, right bottom, right top, color-stop(0, #eee), color-stop(0.9, #fff));
        background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
        background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
        background-image: linear-gradient(top, #eee 0%, #fff 90%);
    }

    .select2-container.select2-allowclear .select2-choice .select2-chosen {
        margin-left: 42px;
    }

    .select2-container .select2-choice > .select2-chosen {
        margin-left: 26px;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .select2-container .select2-choice abbr {
        display: none;
        width: 12px;
        height: 12px;
        position: absolute;
        left: 24px;
        top: 8px;
        font-size: 1px;
        text-decoration: none;
        border: 0;
        background: url('select2.png') left top no-repeat;
        cursor: pointer;
        outline: 0;
    }

    .select2-container.select2-allowclear .select2-choice abbr {
        display: inline-block;
    }

    .select2-container .select2-choice abbr:hover {
        background-position: left -11px;
        cursor: pointer;
    }

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;
    border-radius: 0 0 4px 4px;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}


    .select2-drop-auto-width .select2-search {
        padding-top: 4px;
    }

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #5897fb;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #5897fb;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-right: 1px solid #aaa;
    border-radius: 4px 0 0 4px;
    background-clip: padding-box;
    background: #ccc;
    background-image: -webkit-gradient(linear, right bottom, right top, color-stop(0, #ccc), color-stop(0.6, #eee));
    background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#eeeeee', endColorstr = '#cccccc', GradientType = 0);
    background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}

    .select2-container .select2-choice .select2-arrow b {
        display: block;
        width: 100%;
        height: 100%;
        background: url('select2.png') no-repeat 100% 1px;
    }

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-right: 4px;
    padding-left: 4px;
    position: relative;
    z-index: 10000;
    white-space: nowrap;
}

    .select2-search input {
        width: 100%;
        height: auto !important;
        min-height: 26px;
        padding: 4px 5px 4px 20px;
        margin: 0;
        outline: 0;
        font-family: 'Tajawal','Roboto','Gotham Medium','Open Sans', 'Tajawal';
        font-size: 1em;
        border: 1px solid #aaa;
        border-radius: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: #fff url('select2.png') no-repeat 0% -22px;
        background: url('select2.png') no-repeat 0% -22px, -webkit-gradient(linear, right bottom, right top, color-stop(0.85, #fff), color-stop(0.99, #eee));
        background: url('select2.png') no-repeat 0% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
        background: url('select2.png') no-repeat 0% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
        background: url('select2.png') no-repeat 0% -22px, linear-gradient(top, #fff 85%, #eee 99%);
    }

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('select2-spinner.gif') no-repeat 0%;
    background: url('select2-spinner.gif') no-repeat 0%, -webkit-gradient(linear, right bottom, right top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('select2-spinner.gif') no-repeat 0%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 0%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('select2-spinner.gif') no-repeat 0%, linear-gradient(top, #fff 85%, #eee 99%);
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    background-color: #eee;
    background-image: -webkit-gradient(linear, right bottom, right top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #5897fb;
    border-top-color: transparent;
    background-image: -webkit-gradient(linear, right top, right bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-right: none;
    filter: none;
}

    .select2-dropdown-open .select2-choice .select2-arrow b {
        background-position: -18px 1px;
    }

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

    .select2-results ul.select2-result-sub {
        margin: 0;
        padding-right: 0;
    }

        .select2-results ul.select2-result-sub > li .select2-result-label {
            padding-right: 20px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 40px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 60px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 80px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 100px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 110px
        }

        .select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
            padding-right: 120px
        }

    .select2-results li {
        list-style: none;
        display: list-item;
        background-image: none;
    }

        .select2-results li.select2-result-with-children > .select2-result-label {
            font-weight: bold;
        }

    .select2-results .select2-result-label {
        padding: 3px 7px 4px;
        margin: 0;
        cursor: pointer;
        min-height: 1em;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .select2-results .select2-highlighted {
        background: #3875d7;
        color: #fff;
    }

    .select2-results li em {
        background: #feffde;
        font-style: normal;
    }

    .select2-results .select2-highlighted em {
        background: transparent;
    }

    .select2-results .select2-highlighted ul {
        background: #fff;
        color: #000;
    }


    .select2-results .select2-no-results,
    .select2-results .select2-searching,
    .select2-results .select2-selection-limit {
        background: #f4f4f4;
        display: list-item;
    }

    /*
disabled look for disabled choices in the results dropdown
*/
    .select2-results .select2-disabled.select2-highlighted {
        color: #666;
        background: #f4f4f4;
        display: list-item;
        cursor: default;
    }

    .select2-results .select2-disabled {
        background: #f4f4f4;
        display: list-item;
        cursor: default;
    }

    .select2-results .select2-selected {
        display: none;
    }

.select2-more-results.select2-active {
    background: #f4f4f4 url('select2-spinner.gif') no-repeat 0%;
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container.select2-container-disabled .select2-choice .select2-arrow {
        background-color: #f4f4f4;
        background-image: none;
        border-right: 0;
    }

    .select2-container.select2-container-disabled .select2-choice abbr {
        display: none;
    }


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0;
    position: relative;
    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;
    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(top, #eee 1%, #fff 15%);
}

.select2-locked {
    padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #5897fb;
    outline: none;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-container-multi .select2-choices li {
    float: right;
    list-style: none;
}

.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .select2-container-multi .select2-choices .select2-search-field input {
        padding: 5px;
        margin: 1px 0;
        font-family: 'Tajawal','Roboto','Gotham Medium','Open Sans','Tajawal';
        font-size: 100%;
        color: #666;
        outline: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent !important;
    }

        .select2-container-multi .select2-choices .select2-search-field input.select2-active {
            background: #fff url('select2-spinner.gif') no-repeat 0% !important;
        }

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 18px 3px 5px;
    margin: 3px 5px 3px 0;
    position: relative;
    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    background-clip: padding-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}

    .select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
        cursor: default;
    }

.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    left: 3px;
    top: 4px;
    font-size: 1px;
    outline: none;
    background: url('select2.png') left top no-repeat;
}

.select2-container-multi .select2-search-choice-close {
    right: 3px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
    background-position: left -11px;
}

.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: left -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

    .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
        padding: 3px 5px 3px 5px;
        border: 1px solid #ddd;
        background-image: none;
        background-color: #f4f4f4;
    }

        .select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
            display: none;
            background: none;
        }
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    right: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    right: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}
/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
    .select2-search input, .select2-search-choice-close, .select2-container .select2-choice abbr, .select2-container .select2-choice .select2-arrow b {
        background-image: url('select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 0% -21px !important;
    }
}



/*#region Selectize */


/**
 * selectize.css (v0.12.6)
 * Copyright (c) 2013–2015 Brian Reavis & contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 * @author Brian Reavis <brian@thirdroute.com>
 */
.selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder {
    visibility: visible !important;
    background: #f2f2f2 !important;
    background: rgba(0, 0, 0, 0.06) !important;
    border: 0 none !important;
    -webkit-box-shadow: inset 0 0 12px 4px #fff;
    box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
    content: '!';
    visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.selectize-dropdown-header {
    position: relative;
    padding: 5px 8px;
    border-bottom: 1px solid #d0d0d0;
    background: #f8f8f8;
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
    position: absolute;
    left: 8px;
    top: 50%;
    color: #303030;
    opacity: 0.4;
    margin-top: -12px;
    line-height: 20px;
    font-size: 20px !important;
}

    .selectize-dropdown-header-close:hover {
        color: #000000;
    }

.selectize-dropdown.plugin-optgroup_columns .optgroup {
    border-left: 1px solid #f2f2f2;
    border-top: 0 none;
    float: right;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
        border-left: 0 none;
    }

    .selectize-dropdown.plugin-optgroup_columns .optgroup:before {
        display: none;
    }

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
    border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
    position: relative;
    padding-left: 24px !important;
}

    .selectize-control.plugin-remove_button [data-value] .remove {
        z-index: 1;
        /* fixes ie bug (see #392) */
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 17px;
        text-align: center;
        font-weight: bold;
        font-size: 12px;
        color: inherit;
        text-decoration: none;
        vertical-align: middle;
        display: inline-block;
        padding: 2px 0 0 0;
        border-right: 1px solid #d0d0d0;
        -webkit-border-radius: 2px 0 0 2px;
        -moz-border-radius: 2px 0 0 2px;
        border-radius: 2px 0 0 2px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

        .selectize-control.plugin-remove_button [data-value] .remove:hover {
            background: rgba(0, 0, 0, 0.05);
        }

    .selectize-control.plugin-remove_button [data-value].active .remove {
        border-right-color: #cacaca;
    }

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
    background: none;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
    border-right-color: #ffffff;
}

.selectize-control.plugin-remove_button .remove-single {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 23px;
}

.selectize-control {
    position: relative;
}

.selectize-dropdown,
.selectize-input,
.selectize-input input {
    color: #303030;
    font-family: inherit;
    font-size: 13px;
    line-height: 18px;
    -webkit-font-smoothing: inherit;
}

.selectize-input,
.selectize-control.single .selectize-input.input-active {
    background: #fff;
    cursor: text;
    display: inline-block;
}

.selectize-input {
    border: 1px solid #d0d0d0;
    padding: 8px 8px;
    display: inline-block;
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
    padding: 6px 8px 3px;
}

.selectize-input.full {
    background-color: #fff;
}

.selectize-input.disabled,
.selectize-input.disabled * {
    cursor: default !important;
}

.selectize-input.focus {
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
}

.selectize-input.dropdown-active {
    -webkit-border-radius: 3px 3px 0 0;
    -moz-border-radius: 3px 3px 0 0;
    border-radius: 3px 3px 0 0;
}

.selectize-input > * {
    vertical-align: baseline;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.selectize-control.multi .selectize-input > div {
    cursor: pointer;
    margin: 0 0 3px 3px;
    padding: 2px 6px;
    background: #f2f2f2;
    color: #303030;
    border: 0 solid #d0d0d0;
}

    .selectize-control.multi .selectize-input > div.active {
        background: #e8e8e8;
        color: #303030;
        border: 0 solid #cacaca;
    }

.selectize-control.multi .selectize-input.disabled > div,
.selectize-control.multi .selectize-input.disabled > div.active {
    color: #7d7d7d;
    background: #ffffff;
    border: 0 solid #ffffff;
}

.selectize-input > input {
    display: inline-block !important;
    padding: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    max-width: 100% !important;
    margin: 0 0 0 2px !important;
    text-indent: 0 !important;
    border: 0 none !important;
    background: none !important;
    line-height: inherit !important;
    -webkit-user-select: auto !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

    .selectize-input > input::-ms-clear {
        display: none;
    }

    .selectize-input > input:focus {
        outline: none !important;
    }

.selectize-input::after {
    content: ' ';
    display: block;
    clear: right;
}

.selectize-input.dropdown-active::before {
    content: ' ';
    display: block;
    position: absolute;
    background: #f0f0f0;
    height: 1px;
    bottom: 0;
    right: 0;
    left: 0;
}

.selectize-dropdown {
    position: absolute;
    z-index: 10;
    border: 1px solid #d0d0d0;
    background: #fff;
    margin: -1px 0 0 0;
    border-top: 0 none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
}

    .selectize-dropdown [data-selectable] {
        cursor: pointer;
        overflow: hidden;
    }

        .selectize-dropdown [data-selectable] .highlight {
            background: rgba(125, 168, 208, 0.2);
            -webkit-border-radius: 1px;
            -moz-border-radius: 1px;
            border-radius: 1px;
        }

    .selectize-dropdown .option,
    .selectize-dropdown .optgroup-header {
        padding: 5px 8px;
    }

    .selectize-dropdown .option,
    .selectize-dropdown [data-disabled],
    .selectize-dropdown [data-disabled] [data-selectable].option {
        cursor: inherit;
        opacity: 0.5;
    }

    .selectize-dropdown [data-selectable].option {
        opacity: 1;
    }

    .selectize-dropdown .optgroup:first-child .optgroup-header {
        border-top: 0 none;
    }

    .selectize-dropdown .optgroup-header {
        color: #303030;
        background: #fff;
        cursor: default;
    }

    .selectize-dropdown .active {
        background-color: #f5fafd;
        color: #495c68;
    }

        .selectize-dropdown .active.create {
            color: #495c68;
        }

    .selectize-dropdown .create {
        color: rgba(48, 48, 48, 0.5);
    }

.selectize-dropdown-content {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 200px;
    -webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input,
.selectize-control.single .selectize-input input {
    cursor: pointer;
}

    .selectize-control.single .selectize-input.input-active,
    .selectize-control.single .selectize-input.input-active input {
        cursor: text;
    }

    .selectize-control.single .selectize-input:after {
        content: ' ';
        display: block;
        position: absolute;
        top: 50%;
        left: 15px;
        margin-top: -3px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 5px 5px 0 5px;
        border-color: #808080 transparent transparent transparent;
    }

    .selectize-control.single .selectize-input.dropdown-active:after {
        margin-top: -4px;
        border-width: 0 5px 5px 5px;
        border-color: transparent transparent #808080 transparent;
    }

.selectize-control.rtl.single .selectize-input:after {
    right: 15px;
    left: auto;
}

.selectize-control.rtl .selectize-input > input {
    margin: 0 -2px 0 4px !important;
}

.selectize-control .selectize-input.disabled {
    opacity: 0.5;
    background-color: #fafafa;
}

.selectize-material .selectize-input {
    box-shadow: none;
    border-radius: 0;
    padding-bottom: 10px !important;
    padding-top: 10px !important;
    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    border-bottom: 1px solid #d0d0d0 !important;
    font-size: 16px !important;
}

    .selectize-material .selectize-input.focus,
    .selectize-material .selectize-focus {
        border-bottom: 2px solid #4247a4 !important;
    }

/*#endregion Selectize*/
/*#endregion Select2*/
body {
    background: #fff;
    font-weight: 400;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: subpixel-antialiased;
    color: #707070;
    line-height: 26px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Tajawal','Raleway', 'Gotham Book', 'Open Sans','El Messiri',sans-serif;
    color: #404040
}

a {
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    cursor: pointer;
}

    a:hover {
        text-decoration: none
    }

    a a:focus {
        outline: 0
    }


.top--10 {
    top: -10px;
}

.top--20 {
    top: -20px;
}

.top--30 {
    top: -30px;
}

.top--40 {
    top: -40px;
}

.top--50 {
    top: -50px;
}




.hero-heading {
    font-family: 'Tajawal', 'Raleway','Gotham Bold', 'Open Sans','El Messiri',sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    /*text-transform: uppercase;*/
    line-height: 70px;
    letter-spacing: 1px
}

.hero-sub-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: #e6e6e6;
    line-height: 27px
}

.rev-heading {
    text-transform: uppercase !important;
    font-size: 60px !important
}

.section-titile-bg {
    display: inline;
    font-size: 115px;
    font-weight: 700;
    height: 100%;
    right: -173px;
    opacity: .1;
    position: absolute;
    top: -14px;
    width: 100%;
    text-align: center
}

.small-title {
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 20px;
    text-align: right;
    font-size: 20px
}

.Material-section-quote blockquote {
    border-right-width: 2px
}

.sub-quote p {
    padding-right: 20px
}

.section-title {
    color: #404040;
    font-family: 'Tajawal', 'Raleway', 'Gotham Bold', 'Open Sans','El Messiri',sans-serif;
    font-size: 33.1px;
    font-weight: 700;
    letter-spacing: .3px;
    text-align: right;
    position: relative;
    margin-bottom: 45px;
    text-transform: capitalize
}

    .section-title:before {
        position: absolute;
        content: '';
        bottom: 4px;
        width: 414px;
        height: 7px;
        z-index: -1;
        background-color: #f5c748;
    }


.sectiontitle {
    font-size: 16px;
    font-weight: 700;
}

.sectionsubtitle {
    font-size: 13px;
    font-style: italic;
    font-weight: 500;
}

.subtitle {
    font-size: 1.2rem;
    font-family: 'Tajawal','Raleway', 'Gotham Bold','El Messiri';
    letter-spacing: 0.3px;
    margin-top: 20px;
    line-height: 26px;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 10px;
}




.inner-title {
    font-size: 24px;
    font-weight: 900;
    text-tranform: capitalize
}

.page-tagline {
    font-size: 24px;
    text-transform: uppercase;
    color: rgba(255,255,255,.7)
}

.page-title {
    font-size: 35px;
    font-weight: 900;
    color: #fff
}

.contact-title {
    font-weight: 900;
    font-size: 38px;
    color: #333
}

.btn-common {
    padding: 10px 20px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #fff !important;
    border-radius: 100px;
    box-shadow: 0 2px 2.7px .1px rgba(0,0,0,.24) !important
}

    .btn-common:active, .btn-common:focus, .btn-common:hover {
        box-shadow: 0 4px 4.7px .3px rgba(0,0,0,.24) !important
    }

.btn-border {
    font-weight: 500;
    padding: 9px 20px;
    background: #fff;
    border: 1px solid transparent;
    box-shadow: 0 2px 2.7px .1px rgba(0,0,0,.24) !important
}

    .btn-border:active, .btn-border:focus, .btn-border:hover {
        background-color: #eee !important
    }

.btn-round {
    color: #fff !important
}

.material-icons {
    font-size: 24px;
    line-height: 1
}


.btn.btn-fab, .input-group-btn .btn.btn-fab {
    border-radius: 50%;
    font-size: 24px;
    height: 40px;
    margin-left: 10px;
    min-width: 40px;
    width: 40px;
    padding: 0
}

.btn.disabled,
.btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.section-dark {
    background-color: #f5f5f5;
    z-index: -2
}

a.back-to-top {
    display: none;
    position: fixed;
    bottom: 18px;
    left: 15px;
    text-decoration: none;
}

    a.back-to-top i {
        background-color: #4247a4 !important;
        display: block;
        font-size: 25px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        border-radius: 30px;
        text-align: center;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
        box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28)
    }

    a.back-to-top:focus, a.back-to-top:hover {
        text-decoration: none
    }

.owl-carousel .item {
    margin: 3px
}

    .owl-carousel.item img {
        display: block;
        width: 50%;
        height: auto
    }

.owl-carousel .owl-controls .owl-page {
    display: inline-block
}

    .owl-carousel .owl-controls .owl-page span {
        background: none repeat scroll 100% 0 rgb(193, 193, 193);
        border-radius: 50px;
        display: block;
        height: 12px;
        margin: 5px 7px;
        opacity: .5;
        width: 12px
    }

#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(4, 3, 3, 0.98);
    z-index: 9999999;
    display: flex;
}

.loader {
    top: 50%;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto
}

#loader-1:after, #loader-1:before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 7px solid transparent;
    border-top-color: #4247a4
}

#loader-1:before {
    z-index: 100;
    animation: spin 1s infinite
}

#loader-1:after {
    border: 7px solid #f2f2f2
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}


.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    background: url('../images/lnm.png') no-repeat;
    animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(-900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(-1800deg);
    }
}


.lds-heart {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    transform: rotate(-45deg);
    transform-origin: 40px 40px;
}

    .lds-heart div {
        top: 32px;
        right: 32px;
        position: absolute;
        width: 32px;
        height: 32px;
        background: #fdd;
        animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

        .lds-heart div:after,
        .lds-heart div:before {
            content: " ";
            position: absolute;
            display: block;
            width: 32px;
            height: 32px;
            background: #fdd;
        }

        .lds-heart div:before {
            right: -24px;
            border-radius: 0 50% 50% 0;
        }

        .lds-heart div:after {
            top: -24px;
            border-radius: 50% 50% 0 0;
        }

@keyframes lds-heart {
    0% {
        transform: scale(0.95);
    }

    5% {
        transform: scale(1.1);
    }

    39% {
        transform: scale(0.85);
    }

    45% {
        transform: scale(1);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(0.9);
    }
}


.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-facebook div {
        display: inline-block;
        position: absolute;
        right: 8px;
        width: 16px;
        background: #fff;
        animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    }

        .lds-facebook div:nth-child(1) {
            right: 8px;
            animation-delay: -0.24s;
        }

        .lds-facebook div:nth-child(2) {
            right: 32px;
            animation-delay: -0.12s;
        }

        .lds-facebook div:nth-child(3) {
            right: 56px;
            animation-delay: 0;
        }

@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }

    50%, 100% {
        top: 24px;
        height: 32px;
    }
}


.section-padding {
    padding: 45px 0
}

.no-padding {
    padding: 0 !important
}

.padding-left-none {
    padding-right: 0
}

.padding-right-none {
    padding-left: 0
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

.navbar-brand {
    position: relative
}

    .navbar-brand .ripple-container {
        display: none
    }

    .navbar-brand img {
        width: 41px
    }




.top-nav-collapse {
    background: #fff;
    z-index: 1039;
    box-shadow: 0 3px 6px 3px rgba(0,0,0,.06);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

    .top-nav-collapse .nav-link {
        /*color: #2C2C2C !important;*/
        margin-top: 0
    }

        .top-nav-collapse .nav-link:hover {
            /*color: rgba(0,0,0,.6)*/
        }

    .top-nav-collapse .navbar-brand {
        top: 0
    }

.nav-link .profileimg {
    width: 25px;
    height: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    /*box-shadow: 0 1px 8px #fff;
    border: 3px solid #fff;*/
}

.nav-bg {
    background: #fff
}

    .nav-bg .navbar-nav .nav-link {
        color: #333 !important
    }

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 0 18px 0;
    font-size: 14px;
    color: #2C2C2C;
    font-family: 'Tajawal', 'Roboto', 'Gotham Bold', 'Open Sans','Tajawal',sans-serif;
    margin-top: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #f5d77f ;
    }

.top-nav-collapse.navbar-expand-lg .navbar-nav .nav-link:hover {
    color: #4247a4 !important;
    font-weight: bold;
}

.navbar-expand-lg .navbar-nav .nav-link .ripple-container {
    display: none
}

.navbar {
    padding: 0
}

    .navbar li.active a.nav-link {
        color: #4247a4
    }


@-webkit-keyframes fadeInUpMenu {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@keyframes fadeInUpMenu {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUpMenu {
    -webkit-animation-name: fadeInUpMenu;
    animation-name: fadeInUpMenu
}

.search-side {
    position: relative;
    float: left;
    top: 0;
    left: -20px;
    transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out
}

.search-icon span {
    position: relative;
    display: block;
    cursor: pointer;
    margin-right: 20px
}

    .search-icon span i {
        font-size: 22px !important;
        display: block;
        border-radius: 2px;
        padding: 2px 8px;
        text-align: center;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out
    }

.search-icon:hover i {
    color: #666
}

.navbar-form {
    background: #fff;
    z-index: 9001;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    border: 0;
    width: 100%;
    position: absolute;
    top: 0;
    display: none;
    right: 0;
    height: 60px
}

    .navbar-form .form-group {
        height: 100%;
        width: 100%;
        margin: 10px 22px
    }

    .navbar-form .form-control {
        color: #333;
        border-radius: 0;
        outline: 0;
        font-size: 22px;
        display: inline-block;
        width: 100%;
        height: 100%;
        font-weight: 400;
        line-height: 30px
    }

    .navbar-form .has-feedback .close {
        height: 30px;
        position: absolute;
        cursor: pointer;
        top: 50%;
        left: 0;
        margin-top: -15px;
        line-height: 15px;
        color: #333;
        font-size: 22px
    }

/*.navbar-toggler {
    display: none
}*/

.wpb-mobile-menu {
    display: none
}

.slicknav_menu {
    display: none
}

@media screen and (max-width:768px) {
    .navbar-header {
        width: 100%
    }

    .navbar-brand {
        justify-content: center;
        padding: 0 15px;
        top: 15px
    }

        .navbar-brand .ripple-container {
            display: none
        }

    .top-nav-collapse .navbar-brand {
        top: 15px
    }

    #wpb-mobile-menu {
        display: none
    }

    .slicknav_menu {
        display: block
    }

    .slicknav_nav .active a {
        background: #4247a4;
        color: #fff
    }

    .slicknav_nav .active, .slicknav_nav a:hover {
        color: #4247a4
    }

    .slicknav_nav .dropdown li a.active {
        /*background: #4247a4;
        color: #fff*/
    }


    .slicknav_nav {
        max-height: none !important;
        overflow-y: auto !important;
        height: 100vh;
    }
}

@media (min-width:768px) and (max-width:991px) {
    #nav-main li a.nav-link {
        padding-top: 18px
    }
}

#main-slide .carousel-control {
    display: none;
    transition: all .3s ease-in-out
}

#main-slide .carousel-indicators {
    cursor: pointer
}

#main-slide:hover .carousel-control {
    display: block;
    transition: all .3s ease-in-out;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

#main-slide .carousel-item img {
    position: relative;
    max-height: 640px;
    width: 100%;
    height: 100%;
    height: -webkit-fill-available;
    object-fit: cover;
    object-position: center;
}


#main-slide .carousel-item .carousel-caption-img {
    top: 17%;
    height: auto;
}

    #main-slide .carousel-item .carousel-caption-img img {
        height: auto !important;
    }


#main-slide .carousel-inner .carousel-item::after {
    bottom: 0;
    content: "";
    right: 0;
    position: absolute;
    left: 0;
    top: 0
}

#main-slide .carousel-item .carousel-caption {
    opacity: 0;
    transition: opacity .1s ease 0s;
    z-index: 0
}

    #main-slide .carousel-item .carousel-caption .hero-sub-heading {
        color: #fff
    }

#main-slide .carousel-item.active .carousel-caption {
    opacity: 1;
    transition: opacity .1s ease 0s;
    z-index: 1
}

#main-slide .carousel-caption {
    color: #fff;
    position: absolute;
    top: 15%
}

.slider-2 .hero-heading {
    text-transform: capitalize
}

#main-slide .carousel-control-next, #main-slide .carousel-control-prev {
    opacity: 1;
    box-shadow: none
}

    #main-slide .carousel-control-prev span {
        padding: 15px
    }

    #main-slide .carousel-control-next span {
        padding: 15px
    }

#main-slide .carousel-control {
    top: 45%
}

    #main-slide .carousel-control .fa-angle-left, #main-slide .carousel-control .fa-angle-right {
        position: absolute;
        z-index: 5;
        display: inline-block
    }

    #main-slide .carousel-control .fa-angle-left {
        right: 10px
    }

    #main-slide .carousel-control .fa-angle-right {
        left: 10px
    }

#main-slide .carousel-indicators li {
    width: 30px;
    height: 5px;
    margin-left: 5px;
    margin-right: 5px
}

#main-slide .carousel-control i {
    line-height: 40px;
    font-size: 38px;
    width: 40px;
    height: 40px;
    display: block;
    border-radius: 2px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease
}

    #main-slide .carousel-control i:hover {
        color: #fff;
        opacity: .6
    }

.carousel .carousel-item.active .animated2 {
    animation: 1s ease-in .2s normal both 1 running lightSpeedIn
}

.carousel .carousel-item.active .animated3 {
    animation: 1s ease-in-out .5s normal both 1 running bounceInLeft
}

.carousel .carousel-item.active .animated4 {
    animation: 1s ease-in .5s normal both 1 running flipInX
}

.carousel .carousel-item.active .animated5 {
    animation: 1s ease-in-out .1s normal both 1 running bounceInLeft
}

.carousel .carousel-item.active .animated6 {
    animation: 1s ease-in .5s normal both 1 running bounceIn
}

.carousel .carousel-item.active .animated7 {
    animation: 1s ease-in .5s normal both 1 running bounceIn
}

.carousel .carousel-item.active .animated8 {
    animation: 1s ease-in .8s normal both 1 running bounceInDown
}

.carousel-fade .carousel-inner .carousel-item {
    /*max-height: 700px;*/
    opacity: .8;
    transition-property: opacity
}

.carousel-fade .carousel-inner .active {
    opacity: 1
}

    .carousel-fade .carousel-inner .active.left, .carousel-fade .carousel-inner .active.right {
        right: 0;
        opacity: 0;
        z-index: 1
    }

.carousel-fade .carousel-inner .next.left, .carousel-fade .carousel-inner .prev.right {
    opacity: 1
}

.carousel-fade .carousel-inner .carousel-item::after {
    background: rgba(0,0,0,.2) none repeat scroll 100% 0;
    bottom: 0;
    content: "";
    right: 0;
    position: absolute;
    left: 0;
    top: 0
}

.carousel-fade .carousel-control {
    z-index: 20
}

.slider-title {
    font-size: 70px;
    font-weight: 900
}

.about-single {
    text-align: center;
    padding: 0 15px
}

    .about-single:focus {
        outline: none;
    }

    .about-single i {
        border-radius: 50%;
        font-size: 50px;
        display: inline-block;
        height: 70px;
        line-height: 70px;
        text-align: center;
        width: 70px;
        background: transparent;
        transition: all .2s ease-in-out 0s;
    }

    .about-single i, .about-single img {
        /*border-radius: 50%;
        font-size: 50px;
        display: inline-block;*/
        /*height: 70px;*/
        line-height: 70px;
        text-align: center;
        /*width: 70px;*/
        background: trasparent;
        transition: all .2s ease-in-out 0s
    }




    .about-single:hover {
        cursor: pointer
    }

        .about-single:hover i {
            font-size: 25px;
            color: #fff;
            transition: all .2s ease-in-out 0s;
            box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
            cursor: pointer
        }


.video-gallery {
    width: 100%;
    height: auto;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .video-gallery .overlay-gallery {
        background-color: rgba(0,0,0,.5);
        bottom: 0;
        height: 100%;
        right: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -moz-transition: all .5s ease
    }

    .video-gallery .icon-holder {
        display: table;
        width: 100%;
        height: 100%
    }

        .video-gallery .icon-holder .icon {
            display: table-cell;
            vertical-align: middle
        }

            .video-gallery .icon-holder .icon i {
                font-size: 80px;
                color: #fff;
                transition: all .5s ease;
                -webkit-transition: all .5s ease;
                -moz-transition: all .5s ease
            }

    .video-gallery:hover .icon i {
        color: #fff
    }

.welcome-section h1 {
    line-height: 45px;
    font-size: 30px;
    font-weight: 700
}

.single-service-widget {
    margin: 25px 0
}

    .single-service-widget i {
        font-size: 50px;
        padding-left: 15px;
        line-height: 45px
    }

    .single-service-widget p {
        color: #999
    }

    .single-service-widget h2 {
        margin-top: 0;
        text-transform: capitalize;
        transition: all .3s ease-in-out
    }

    .single-service-widget:hover .pulse-shrink {
        -webkit-animation-name: pulse-shrink;
        animation-name: pulse-shrink;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate
    }

.features-block .media-left i {
    color: #fff;
    line-height: 40px;
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    font-size: 30px;
}

.features-block .media-right i {
    color: #f5c748;
    line-height: 40px;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    padding: 0;
    font-size: 30px;
    background: transparent;
}

.features-block .media-body {
    margin-right: 15px;
    line-height: 19px;
}

    .features-block .media-body p {
        max-height: 38px;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.media-devider {
    background: rgba(153, 153, 153, 0.22);
    height: 100%;
    display: flex;
    width: 1px;
    text-align: center;
}

.media-add {
    border: dashed 2px #d1d1d1;
    background: #fff;
    opacity: 0.5;
}

    .media-add:hover {
        opacity: 1;
    }

@-webkit-keyframes pulse-shrink {
    to {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
}

@keyframes pulse-shrink {
    to {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }
}

.pulse-shrink {
    display: inline-block
}

#Material-portfolio .mix {
    padding-bottom: 30px;
    display: none;
    margin: -2px
}

.portfolio-nav ul.nav {
    float: left
}

    .portfolio-nav ul.nav li a {
        font-size: 15px;
        color: #333;
        background-color: #eee;
        padding: 7px 12px;
        margin: 4px;
        display: block;
        border-radius: 20px;
        text-transform: capitalize;
        cursor: pointer
    }

        .portfolio-nav ul.nav li a:hover {
            background: #2196F3;
            color: #FFF;
            box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
        }

        .portfolio-nav ul.nav li a.active {
            background: #2196F3;
            color: #FFF;
            box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12)
        }

figure {
    position: relative;
    margin: 0;
    overflow: hidden
}

    figure img {
        width: 100%;
        filter: brightness(0.5);
    }

    figure figcaption {
        background: #fff;
        bottom: 0px;
        padding: 0 20px;
        position: absolute;
        width: 100%;
        margin-bottom: 0px;
        opacity: 1;
        min-height: 87px;
    }

        figure figcaption h2 {
            text-transform: capitalize;
            transition: all 0.5s ease 0s
        }

        figure figcaption a.btn {
            float: left;
            position: absolute;
            left: 0px;
            top: 25px;
            width: 20px !important;
            transition: all 0.5s ease 0s
        }

/*figure:hover figcaption {
        transition: all 0.5s ease 0s;
        cursor: pointer;
        opacity: 1;
        margin-bottom: 0px
    }*/
#conatiner-map {
    width: 100%;
    height: 480px
}

.contact-widget-section .single-contact-widget {
    background: #f9f9f9;
    padding: 20px 25px;
    box-shadow: 0 1px 4px rgba(0,0,0,.26);
    height: 260px;
    margin-top: 25px;
    transition: all .3s ease-in-out
}

    .contact-widget-section .single-contact-widget i {
        font-size: 75px
    }

    .contact-widget-section .single-contact-widget h3 {
        font-size: 20px;
        font-weight: 700;
        padding-bottom: 10px
    }

    .contact-widget-section .single-contact-widget p {
        line-height: 16px
    }

    .contact-widget-section .single-contact-widget:hover {
        background: #fff;
        box-shadow: 0 1px 4px rgba(0,0,0,.46);
        cursor: pointer;
        transition: all .3s ease-in-out
    }

#contactForm {
    margin-top: -10px
}

    #contactForm .form-group label.control-label {
        color: #8c8c8c
    }

    #contactForm .form-control {
        font-weight: 500;
        height: auto
    }

.google-map-container {
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

    .google-map-container #google-map-contact {
        height: 300px
    }

.contact-widget-section2 h2 {
    margin-bottom: 30px
}

.contact-widget-section2 .find-widget {
    padding: 10px 0
}

    .contact-widget-section2 .find-widget a {
        color: #333;
        font-size: 14px
    }

    .contact-widget-section2 .find-widget i {
        width: 40px;
        height: 40px;
        color: #fff;
        font-size: 20px;
        text-align: center;
        line-height: 40px;
        margin-left: 15px;
        border-radius: 100px;
        display: inline-block;
        box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28)
    }

.Material-contact-section ul {
    margin: 0;
    padding: 0;
    list-style: none
}

    .Material-contact-section ul li {
        color: #777;
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 28px;
        min-height: 35px;
        width: 100%
    }

        .Material-contact-section ul li i {
            width: 35px;
            background: #f50057;
            height: 35px;
            border: 1px solid #f50057;
            border-radius: 2px;
            line-height: 30px;
            float: right;
            color: #fff;
            text-align: center;
            font-size: 18px;
            top: 4px;
            margin-left: 10px
        }

.Material-our-team-section {
    padding-bottom: 200px
}

.single-team-widget {
    background: #f5f5f5;
    position: relative;
    box-shadow: 0 1px 4px rgba(0,0,0,.26);
    margin-bottom: 20px
}

    .single-team-widget img {
        text-align: center
    }

    .single-team-widget:hover {
        -webkit-box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79);
        -moz-box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79);
        box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79)
    }

    .single-team-widget p {
        color: #999;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 400;
        margin-bottom: 5px
    }

    .single-team-widget .team-member-info {
        height: 130px;
        background: #fff;
        padding: 5px 20px
    }

        .single-team-widget .team-member-info .know-more {
            position: absolute;
            left: 10%;
            bottom: 12%;
            display: none
        }

        .single-team-widget .team-member-info .social-profiles .mdi {
            color: #8c8c8c;
            font-size: 18px;
            padding-left: 5px;
            transition: all .3s ease-in-out
        }

            .single-team-widget .team-member-info .social-profiles .mdi.mdi-twitter:hover {
                transition: all .3s ease-in-out;
                color: #1da1f2
            }

            .single-team-widget .team-member-info .social-profiles .mdi.mdi-facebook:hover {
                transition: all .3s ease-in-out;
                color: #3b5998
            }

            .single-team-widget .team-member-info .social-profiles .mdi.mdi-dribbble:hover {
                transition: all .3s ease-in-out;
                color: #ea4c89
            }

            .single-team-widget .team-member-info .social-profiles .mdi.mdi-linkedin:hover {
                transition: all .3s ease-in-out;
                color: #1769ff
            }

    .single-team-widget:hover {
        cursor: pointer
    }

        .single-team-widget:hover .know-more {
            display: block;
            animation: .4s ease 0s normal none 1 running fadeInUpMenu
        }

.team-single .team-thumb {
    text-align: center
}

    .team-single .team-thumb img {
        border: 4px solid #fff;
        box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28)
    }

.team-single .team-text h3 {
    font-size: 30px;
    color: #404040;
    text-transform: uppercase;
    margin-bottom: 10px
}

.team-single .team-text h5 {
    color: #999;
    margin-bottom: 30px
}

.team-single .social-single {
    margin-top: 30px
}

    .team-single .social-single a i {
        width: 48px;
        font-size: 24px;
        height: 48px;
        text-align: center;
        line-height: 48px;
        display: inline-block;
        background: #5065d8;
        border-radius: 3px;
        margin-left: 10px;
        color: #fff
    }

    .team-single .social-single .mdi.mdi-twitter:hover {
        transition: all .3s ease-in-out;
        background: #1da1f2
    }

    .team-single .social-single .mdi.mdi-facebook:hover {
        transition: all .3s ease-in-out;
        background: #3b5998
    }

    .team-single .social-single .mdi.mdi-dribbble:hover {
        transition: all .3s ease-in-out;
        background: #ea4c89
    }

    .team-single .social-single .mdi.mdi-linkedin:hover {
        transition: all .3s ease-in-out;
        background: #1769ff
    }

.single-about h3 {
    font-size: 20px;
    margin-bottom: 20px
}

.single-about p {
    color: #999
}

#team-slide .owl-carousel .owl-controls .owl-page span {
    background: #ddd
}

#team-slide .owl-carousel .owl-controls .owl-page.active span {
    color: #4247a4 !important
}



.testimonial-item {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px
}

[disabled] {
    cursor: not-allowed;
}

.testimonial-item .img {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 10px auto;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 1px 8px #fff;
    border: 3px solid #fff;
}



.testimonial-item .details {
    text-align: center
}

    .testimonial-item .details h5 {
        font-weight: 700;
        color: #9d9d9d;
        font-size: 20px;
        margin: 15px 0 6px
    }

    .testimonial-item .details span {
        color: rgba(56, 50, 50, 0.58);
    }

    .testimonial-item .details p {
        margin: 5px 0 20px 0;
        color: #707070;
    }

.testimonial-item .owl-carousel .owl-controls .owl-page.active span {
    border: none;
    background: #fff !important;
    opacity: 1
}

.testimonial-item .owl-carousel .owl-controls .owl-page span {
    background: #fff !important
}

.testimonial-carousel .owl-pagination {
    margin-top: 70px
}

    .testimonial-carousel .owl-pagination .owl-page span {
        background: #fff;
        border: 3px solid #f9f9f9;
        width: 15px;
        height: 15px
    }

    .testimonial-carousel .owl-pagination .owl-page.active span {
        background: #fff;
        border: none;
        box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28);
        width: 20px;
        height: 20px;
        opacity: 1
    }

.client {
    border-bottom: 1px solid #e9e9e9
}

    .client .client-logo {
        text-align: center;
        transition: all .2s ease-in-out 0s
    }

        .client .client-logo img {
            transition: all .2s ease-in-out 0s
        }

        .client .client-logo.active, .client .client-logo:hover {
            transition: all .2s ease-in-out 0s
        }

            .client .client-logo.active img, .client .client-logo:hover img {
                cursor: pointer;
                transition: all .2s ease-in-out 0s
            }

.single-blog-post {
    margin-bottom: 2px;
    box-shadow: 0 1px 4px rgba(0,0,0,.26);
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    border-radius: 40px;
    background-color: #4247a4;
}

    .single-blog-post:hover {
        -webkit-box-shadow: 0 3px 10px 3px rgba(114, 114, 128, 0.79);
        -moz-box-shadow: 0 3px 18px 3px rgba(114, 114, 128, 0.79);
        box-shadow: 0 3px 18px 3px rgba(114, 114, 128, 0.79);
        cursor: pointer
    }

    .single-blog-post .featured-image img {
        width: auto;
        height: 100%;
        max-height: 244px;
        object-fit: cover;
        object-position: center;
    }

    .single-blog-post .post-meta {
        padding: 20px 20px;
        position: absolute;
        top: 0;
        color: #fff;
        text-align: center;
    }

    .single-blog-post .featured-image .overlay {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: -webkit-fill-available;
        opacity: 0.6;
        height: 79%;
        background: #000;
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
    }

    .single-blog-post .post-meta .read-more-icon {
        bottom: 100px;
        left: 40px
    }

    .single-blog-post .post-meta a {
        color: #333
    }

        .single-blog-post .post-meta a:hover {
            transition: all .2s ease-in-out
        }

    .single-blog-post .meta-tags {
        /*border-top: 4px solid rgb(245, 198, 68);*/
        padding: 19.2px 20px
    }

        .single-blog-post .meta-tags .comments i {
            font-size: 15px;
            margin-left: 5px
        }

        .single-blog-post .meta-tags .btn-round {
            float: left;
            border-radius: 28px;
            font-size: 24px;
            height: 40px;
            margin: -7px auto;
            min-width: 40px;
            width: 40px
        }

.Material-blog-post-page .blog-post-column .single-blog-post {
    margin-bottom: 40px
}

    .Material-blog-post-page .blog-post-column .single-blog-post .post-meta .post-date {
        position: absolute
    }

        .Material-blog-post-page .blog-post-column .single-blog-post .post-meta .post-date span {
            color: #333;
            font-weight: 700;
            font-size: 16px;
            text-transform: uppercase
        }

    .Material-blog-post-page .blog-post-column .single-blog-post .post-meta .read-more-icon {
        bottom: 166px;
        position: absolute;
        left: 40px
    }

    .Material-blog-post-page .blog-post-column .single-blog-post .post-meta h2 {
        font-size: 19px;
        line-height: 26px;
        margin-top: 35px
    }

.Material-blog-post-page .blog-post-column .post-without-image .featured-image {
    height: 50px;
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

.Material-blog-post-page .blog-post-column .post-without-image .pink-bg {
    background: #5e35b1
}

.Material-blog-post-page .blog-post-column .post-without-image .blue-bg {
    background: #1e88e5
}

.Material-blog-post-page .blog-post-column .post-without-image .aqua-bg {
    background: #00897b
}

.Material-blog-post-page .blog-post-column .quote-post h2 {
    font-style: italic
}

.blog-sidebar-column .single-sidebar-widget {
    box-shadow: 0 1px 4px rgba(0,0,0,.26);
    margin-bottom: 30px;
    background: #fafafa
}

    .blog-sidebar-column .single-sidebar-widget .sidebar-widget-title {
        background: #5065d8;
        padding: 0 20px
    }

        .blog-sidebar-column .single-sidebar-widget .sidebar-widget-title h2 {
            color: #fff;
            font-size: 19px;
            margin: 0;
            font-weight: 700;
            line-height: 48px
        }

.blog-sidebar-column .author-widget .author-bg img {
    width: 100%
}

.blog-sidebar-column .author-widget .author-info {
    padding: 10px 20px;
    background: #fafafa
}

    .blog-sidebar-column .author-widget .author-info .author-intro {
        position: absolute;
        float: left;
        left: 80px;
        top: 106px
    }

        .blog-sidebar-column .author-widget .author-info .author-intro h3 {
            color: #fff;
            font-weight: 700;
            font-size: 20px
        }

    .blog-sidebar-column .author-widget .author-info .author-image {
        position: absolute;
        top: 92px;
        right: 50px
    }

    .blog-sidebar-column .author-widget .author-info .author-bio {
        margin-top: 47px
    }

.blog-sidebar-column .subscribe-widget .social-profiles, .blog-sidebar-column .subscribe-widget .subscribe-box {
    padding: 30px 35px
}

    .blog-sidebar-column .subscribe-widget .subscribe-box .form-group {
        margin-top: 10px
    }

    .blog-sidebar-column .subscribe-widget .subscribe-box button.btn-fab {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        font-size: 14px !important;
        position: absolute;
        left: 24px;
        bottom: 14px;
        z-index: 1111;
        border-radius: 2px
    }

    .blog-sidebar-column .subscribe-widget .subscribe-box .form-control {
        border-radius: 2px !important;
        color: #333;
        font-weight: 700;
        width: 240px
    }

.blog-sidebar-column .subscribe-widget .social-profiles {
    background: #f5f5f5
}

.blog-sidebar-column .instagram-widget .instagram-feed ul {
    list-style: none;
    padding: 15px 15px;
    display: inline-block;
    margin: 0
}

    .blog-sidebar-column .instagram-widget .instagram-feed ul li {
        float: right
    }

        .blog-sidebar-column .instagram-widget .instagram-feed ul li a img {
            width: 106px;
            height: 100px;
            padding: 5px;
            transition: all .2s ease-in-out;
            -webkit-transition: all .2s ease-in-out;
            -moz-transition: all .2s ease-in-out
        }

            .blog-sidebar-column .instagram-widget .instagram-feed ul li a img:hover {
                opacity: .8
            }

.blog-sidebar-column .categories-list {
    margin: 0;
    padding: 20px
}

    .blog-sidebar-column .categories-list li {
        list-style: none;
        line-height: 36px
    }

        .blog-sidebar-column .categories-list li a {
            color: #707070
        }

            .blog-sidebar-column .categories-list li a:hover {
                color: #4247a4
            }

.blog-sidebar-column .flickr-widget .flickr-feed {
    padding: 20px
}

    .blog-sidebar-column .flickr-widget .flickr-feed .owl-pagination {
        text-align: center;
        margin-top: 10px
    }

    .blog-sidebar-column .flickr-widget .flickr-feed .owl-carousel .owl-controls .owl-page span {
        background: 100% 0;
        border: 2px solid #434343
    }

    .blog-sidebar-column .flickr-widget .flickr-feed .owl-carousel .owl-controls .owl-page.active span {
        background: #434343 !important
    }

    .blog-sidebar-column .flickr-widget .flickr-feed .owl-carousel .owl-controls .owl-page.active span {
        border: none
    }

.blog-sidebar-column .owl-carousel .item {
    margin: 0
}

.single-post {
    box-shadow: 0 1px 4px rgba(0,0,0,.26);
    padding: 20px
}

    .single-post h2 {
        font-weight: 500;
        font-size: 26px;
        margin: 30px 0
    }

    .single-post p {
        font-size: 15px;
        line-height: 35px
    }

.post-meta p {
    height: 145px;
    white-space: initial;
    line-height: 2;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-post .single-post-meta {
    margin-top: 20px;
    padding: 30px 0;
    border-top: 1px solid #ddd
}

    .single-post .single-post-meta .post-tag {
        float: right
    }

        .single-post .single-post-meta .post-tag a {
            font-weight: 500;
            font-size: 15px;
            color: #333
        }

            .single-post .single-post-meta .post-tag a:hover {
                opacity: .6
            }

    .single-post .single-post-meta .share-post {
        float: left
    }

        .single-post .single-post-meta .share-post i {
            font-size: 20px;
            margin-left: 10px
        }

            .single-post .single-post-meta .share-post i:hover {
                opacity: .6
            }

.users-comment-section .media {
    border-top: 1px solid #ddd;
    padding-top: 25px;
    margin-top: 20px
}

    .users-comment-section .media:first-child {
        border-top: none
    }

    .users-comment-section .media .media-left {
        padding-left: 30px
    }

        .users-comment-section .media .media-left img {
            box-shadow: 0 1px 4px rgba(0,0,0,.26)
        }

    .users-comment-section .media .media-body h3 {
        margin-top: 0;
        font-weight: 500;
        font-size: 20px
    }

    .users-comment-section .media .media-body p {
        font-size: 15px;
        line-height: 28px
    }

    .users-comment-section .media .media-body a.replay {
        float: left;
        font-size: 16px;
        font-weight: 500
    }

    .users-comment-section .media .media-body .media {
        padding-top: 24px;
        margin-top: 65px;
        border-top: 1px solid #ddd
    }

.comment-box {
    padding: 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

.bg-color-dark {
    background: #1a1a1a;
}

.page-footer {
    background: #596064;
}

    .page-footer .footer-title {
        position: relative;
        color: #fff;
        font-size: 18px;
        line-height: 24px;
        font-weight: 400;
        letter-spacing: .3px;
        margin-bottom: 30px
    }

    .page-footer p {
        color: #d5d5d5 !important;
        line-height: 24px;
        margin: 0
    }

    .page-footer .icon-list {
        list-style: none;
        padding: 0
    }

        .page-footer .icon-list li {
            color: #d5d5d5
        }

            .page-footer .icon-list li a {
                color: #d5d5d5
            }

                .page-footer .icon-list li a:hover {
                    color: #4247a4
                }

            .page-footer .icon-list li i {
                padding-left: 5px;
                vertical-align: -1px
            }

    .page-footer .newsletter-wrapper .form-group {
        margin-bottom: 20px
    }

        .page-footer .newsletter-wrapper .form-group input {
            width: calc(100% - 90px) !important;
            display: inline-block;
            color: #fff;
            padding: 12px 0
        }

    .page-footer .widget {
        margin-top: 10px
    }

        .page-footer .widget .widget-title {
            margin-bottom: 20px;
            font-size: 18px;
            color: #fff
        }

        .page-footer .widget .unordered-list {
            list-style: none;
            padding: 0
        }

            .page-footer .widget .unordered-list li a {
                color: #d5d5d5
            }

                .page-footer .widget .unordered-list li a:hover {
                    color: #4247a4
                }

    .page-footer .image-list {
        padding: 0;
        margin: 0
    }

        .page-footer .image-list li {
            margin-bottom: 15px
        }

            .page-footer .image-list li .overlay {
                float: right;
                width: 70px;
                height: 60px;
                position: relative;
                overflow: hidden;
                text-align: center
            }

                .page-footer .image-list li .overlay figcaption {
                    position: absolute;
                    background: rgba(0,0,0,.6);
                    top: 0;
                    right: 0;
                    margin: 0;
                    width: 100%;
                    opacity: 0;
                    transition: all .3s ease-in-out
                }

                    .page-footer .image-list li .overlay figcaption i {
                        color: #fff;
                        font-size: 18px
                    }

                .page-footer .image-list li .overlay .from-top {
                    position: absolute;
                    top: 50%;
                    right: 0;
                    width: 100%;
                    -webkit-transform: translateY(-80%);
                    -ms-transform: translateY(-80%);
                    transform: translateY(-80%);
                    transition: all .3s ease-in-out
                }

                .page-footer .image-list li .overlay:hover figcaption {
                    opacity: 1;
                    transition: all .3s ease-in-out
                }

                    .page-footer .image-list li .overlay:hover figcaption .from-top {
                        -webkit-transform: translateY(-50%);
                        -ms-transform: translateY(-50%);
                        transform: translateY(-50%);
                        transition: all .3s ease-in-out
                    }

        .page-footer .image-list .post-content {
            margin-right: 85px;
            margin-bottom: 0
        }

            .page-footer .image-list .post-content .post-title {
                margin-bottom: 5px;
                font-weight: 400;
                font-size: 15px;
                margin: 0
            }

                .page-footer .image-list .post-content .post-title a {
                    color: #fff
                }

                    .page-footer .image-list .post-content .post-title a:hover {
                        color: #4247a4
                    }

            .page-footer .image-list .post-content .meta {
                color: #aaa
            }

                .page-footer .image-list .post-content .meta span {
                    text-transform: uppercase;
                    font-size: 12px;
                    line-height: 18px;
                    margin-bottom: 10px
                }

.footer-widget-container a {
    opacity: 0.6;
}

    .footer-widget-container a:hover,
    .footer-widget-container a:active {
        opacity: 1;
    }

.footer-contact-widget p {
    color: #fff;
    line-height: 24px;
    padding: 5px 0
}

    .footer-contact-widget p span {
        font-weight: 700
    }

.footer-contact-widget ul {
    margin: 20px 0;
    padding: 0
}

    .footer-contact-widget ul li {
        float: right;
        list-style: none
    }

        .footer-contact-widget ul li a .mdi {
            font-size: 31px;
            color: #596064;
            width: 40px;
            height: 40px;
            margin-left: 8px;
            display: block;
            background: #f5c645;
            text-align: center;
            line-height: 40px;
            border-radius: 30px;
            transtion: all .3s ease-in-out
        }

            .footer-contact-widget ul li a .mdi:hover {
                transition: all .3s ease-in-out
            }

        .footer-contact-widget ul li a .mdi-facebook {
            transition: all .3s ease-in-out;
            background: #f5c747
        }

            .footer-contact-widget ul li a .mdi-facebook:hover {
                opacity: .9;
                transition: all .3s ease-in-out
            }

        .footer-contact-widget ul li a .mdi-twitter {
            background: #f5c747
        }

            .footer-contact-widget ul li a .mdi-twitter:hover {
                opacity: .9;
                transition: all .3s ease-in-out
            }

        .footer-contact-widget ul li a .mdi-dribbble {
            background: #ea4c89
        }

            .footer-contact-widget ul li a .mdi-dribbble:hover {
                opacity: .9;
                transition: all .3s ease-in-out
            }

        .footer-contact-widget ul li a .mdi-github-circle {
            background: #333
        }

            .footer-contact-widget ul li a .mdi-github-circle:hover {
                opacity: .9;
                transition: all .3s ease-in-out
            }

        .footer-contact-widget ul li a .mdi-linkedin {
            background: #f5c747
        }

            .footer-contact-widget ul li a .mdi-linkedin:hover {
                opacity: .9;
                transition: all .3s ease-in-out
            }

.footer-copyright {
    line-height: 45px;
    background: #515a5f;
    color: #999
}

    .footer-copyright p {
        margin: 22px 0
    }

    .footer-copyright .footer-links ul {
        padding-right: 0;
        float: left;
        margin: 10px 0
    }

        .footer-copyright .footer-links ul li {
            list-style: none;
            float: right
        }

            .footer-copyright .footer-links ul li a {
                color: #999;
                margin-left: 15px;
                transition: all .3s ease-in-out
            }

                .footer-copyright .footer-links ul li a .fa {
                    padding-left: 4px
                }

                .footer-copyright .footer-links ul li a:hover {
                    color: #fff;
                    opacity: .7;
                    transition: all .3s ease-in-out
                }

.work-counter-widget i {
    font-size: 50px;
    color: #4247a4
}

.work-counter-widget .counter {
    z-index: 999999
}

    .work-counter-widget .counter .timer {
        color: #333;
        font-size: 38px;
        margin-top: 15px;
        font-weight: 700
    }

    .work-counter-widget .counter p {
        margin-top: 19px;
        font-size: 16px;
        font-weight: 700
    }

.call-to-action-section {
    padding: 60px 0;
    background: url(../images/cta-bg.jpg) no-repeat scroll center center;
    background-size: cover
}

    .call-to-action-section h1 {
        color: #18191b;
        font-size: 56px;
        font-weight: 700;
        color: #fff
    }

    .call-to-action-section h3 {
        font-size: 24px;
        color: rgba(255,255,255,.7);
        text-transform: uppercase
    }

.page-title-section {
    position: relative;
    background: #fff;
    background: url(../images/header.png) no-repeat scroll center center;
    overflow: hidden;
    z-index: -1;
}

    .page-title-section .title-center {
        padding-top: 65px
    }

.Material-tab ul.nav.nav-tabs {
    padding: 0 25px;
    background: #fff;
    text-align: center;
    border-bottom: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

    .Material-tab ul.nav.nav-tabs .nav-item .nav-link {
        background-color: transparent;
        font-size: 14px;
        line-height: 20px;
        padding: 15px 30px 8px 30px;
        border-radius: 0;
        position: relative;
        border-top: none;
        border-right: none;
        border-left: none;
        border-bottom: 4px solid transparent;
        display: inline-block
    }

        .Material-tab ul.nav.nav-tabs .nav-item .nav-link i {
            font-size: 38px
        }

    .Material-tab ul.nav.nav-tabs li .active {
        color: #fff
    }

.Material-tab .tab-content {
    padding: 24px;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

.Material-tab p {
    text-align: justify
}

.Material-tab-default img {
    width: 100%
}

.Material-tab-default ul.nav.nav-tabs {
    border-bottom: 0
}

    .Material-tab-default ul.nav.nav-tabs li a {
        color: #333;
        font-weight: 700;
        font-size: 18px;
        position: relative;
        border-top: none;
        border-right: none;
        border-left: none;
        border-left: 0;
        border-radius: 0;
        border-bottom: none !important;
        padding: 10px 8px;
        margin-left: 29px;
        margin-top: 0
    }

        .Material-tab-default ul.nav.nav-tabs li a:hover {
            color: #4247a4 !important;
        }

.Material-tab-default .nav-tabs .nav-item.show .nav-link, .Material-tab-default .nav-tabs .nav-link.active {
    color: #4247a4
}

.Material-tab-default .tab-content {
    margin-top: 25px;
    padding: 20px;
    background-color: rgba(245,197,64,.21);
    box-shadow: none;
    border-radius: 33px;
}

.tabs-style-2 .nav-vertical {
    background: #fafafa;
    margin: 25px 0;
    box-shadow: 0 1px 4px rgba(0,0,0,.26)
}

.tabs-style-2 .nav-pills .nav-link {
    font-size: 18px;
    color: #333;
    position: relative;
    border-radius: 0;
    border-bottom: 1px solid #efefef;
    padding: 15px 20px
}

    .tabs-style-2 .nav-pills .nav-link.active, .tabs-style-2 .nav-pills .show > .nav-link {
        background: 100% 0;
        color: #4247a4
    }

.Material-default-accordion .panel-default {
    border: 0;
    box-shadow: -1px 3px 10px rgba(0,0,0,.2)
}

    .Material-default-accordion .panel-default .panel-heading {
        padding: 0;
        margin-bottom: 15px
    }

        .Material-default-accordion .panel-default .panel-heading .panel-title {
            font-size: 18px
        }

            .Material-default-accordion .panel-default .panel-heading .panel-title i {
                margin-left: 5px
            }

        .Material-default-accordion .panel-default .panel-heading .collapsed::after {
            content: "\f415"
        }

        .Material-default-accordion .panel-default .panel-heading a {
            font-weight: 500;
            padding: 15px 20px;
            display: inline-block;
            width: 100%;
            color: #fff;
            position: relative;
            text-decoration: none
        }

            .Material-default-accordion .panel-default .panel-heading a:after {
                font-family: Material Design Icons;
                content: "\f374";
                position: absolute;
                left: 15px;
                font-size: 14px;
                font-weight: 300;
                top: 50%;
                line-height: 1;
                margin-top: -7px
            }

    .Material-default-accordion .panel-default .panel-body {
        padding: 15px
    }

.Material-accordion-2 .panel-default {
    border: 0
}

    .Material-accordion-2 .panel-default .panel-heading {
        padding: 0
    }

        .Material-accordion-2 .panel-default .panel-heading .collapsed::after {
            content: "\f415"
        }

        .Material-accordion-2 .panel-default .panel-heading a {
            font-weight: 500;
            padding: 15px 20px;
            display: inline-block;
            width: 100%;
            color: #333;
            background: #eee !important;
            position: relative;
            text-decoration: none
        }

            .Material-accordion-2 .panel-default .panel-heading a:after {
                font-family: Material Design Icons;
                content: "\f374";
                position: absolute;
                left: 15px;
                font-size: 14px;
                font-weight: 300;
                top: 50%;
                line-height: 1;
                margin-top: -7px
            }

.alert {
    box-shadow: 0 1px 4px 0 rgba(0,0,0,.24)
}

.icon-round {
    width: 50px;
    height: 50px;
    text-align: center;
    display: inline-block;
    line-height: 50px !important;
    border-radius: 50%;
    margin-left: 20px;
    color: #fff;
    box-shadow: 0 0 4px rgba(0,0,0,.14),0 4px 8px rgba(0,0,0,.28)
}

.icon-box {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px !important;
    border-radius: 2px;
    display: inline-block;
    margin-left: 20px;
    color: #fff
}

.icon-common {
    font-size: 48px !important;
    margin-left: 22px
}

.icon-table .single-pricing-table {
    padding: 20px;
    -webkit-box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79);
    -moz-box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79);
    box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79)
}

    .icon-table .single-pricing-table .pricing-table-heading h2 {
        color: #3d6370;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: .1rem;
        margin-top: 30px;
        position: relative;
        width: 100%
    }

        .icon-table .single-pricing-table .pricing-table-heading h2:after {
            border: 1px dashed #eee;
            content: "";
            right: 0;
            position: absolute;
            top: 13px;
            width: 100%;
            z-index: -11111
        }

    .icon-table .single-pricing-table .price {
        margin-top: 20px
    }

        .icon-table .single-pricing-table .price span {
            font-size: 36px;
            font-weight: 700
        }

    .icon-table .single-pricing-table .pricing-item {
        padding: 20px 0
    }

        .icon-table .single-pricing-table .pricing-item ul {
            padding-right: 0
        }

            .icon-table .single-pricing-table .pricing-item ul li {
                list-style: none
            }

                .icon-table .single-pricing-table .pricing-item ul li p strong {
                    color: #325d6a
                }

    .icon-table .single-pricing-table .pricing-button {
        padding: 20px 0
    }

.pricing-table {
    border: 1px solid #e9e9e9;
    box-shadow: 0 2px 10px 2px rgba(114, 114, 128, 0.79)
}

    .pricing-table .pricing-header {
        background-color: #fff
    }

        .pricing-table .pricing-header h1 {
            margin-bottom: 0;
            margin-top: 0;
            color: #333;
            padding: 20px 0;
            text-align: center;
            font-size: 20px;
            text-transform: uppercase
        }

    .pricing-table .pricing-sub {
        background-color: #f7f9fc;
        border-top: 1px solid #e9e9e9;
        border-bottom: 1px solid #e9e9e9
    }

        .pricing-table .pricing-sub h1 {
            color: #333;
            text-align: center;
            margin: 0;
            padding: 25px 0 15px 0;
            font-size: 22px
        }

    .pricing-table .features {
        margin: 0;
        padding: 0
    }

        .pricing-table .features li {
            padding: 15px;
            list-style: none;
            text-align: center;
            background-color: #fff;
            border-bottom: 1px solid #e9e9e9;
            color: #a4a4a4;
            font-size: 13px
        }

    .pricing-table .pricing-footer {
        background-color: #f9fbfc;
        border-top: 0;
        padding: 30px 0;
        text-align: center
    }

.pricing-table-3 .table-header {
    background: #4247a4;
    padding: 30px 0;
    color: #fff
}

    .pricing-table-3 .table-header h3 {
        /*font-size: 30px;*/
        color: #fff
    }

.pricing-table-3 .plan {
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
    background: #D3D3D3 -webkit-gradient(linear, right top, right bottom, from(#D3D3D3), to(#D3D3D3)) no-repeat;
    background: #D3D3D3 -moz-linear-gradient(top, #D3D3D3, #D3D3D3) no-repeat;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#D3D3D3, endColorstr=#D3D3D3) no-repeat;
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#D3D3D3, endColorstr=#D3D3D3)" no-repeat;
}

    .pricing-table-3 .plan .price {
        font-size: 60px
    }

    .pricing-table-3 .plan .period {
        font-size: 18px;
        color: #a4a4a4;
        text-transform: uppercase
    }

.pricing-table-3 .plan-info {
    margin-top: 30px
}

    .pricing-table-3 .plan-info p {
        color: #a4a4a4;
        font-size: 16px;
        line-height: 30px
    }

.pricing-table-3 .button-area {
    padding: 20px 0 20px 0
}

#Material-image-carousel .owl-pagination, .testimonials-carousel .owl-pagination {
    text-align: center;
    /*margin-top: 10px*/
}

#Material-image-carousel .owl-controls, .testimonials-carousel .owl-controls {
    position: absolute;
    top: 45%;
    display: inline-block;
    width: 100%
}

    #Material-image-carousel .owl-controls .owl-buttons div.owl-prev,
    .testimonial-carousel .owl-controls .owl-buttons div.owl-prev,
    .testimonial-carousel .owl-nav .owl-prev {
        right: -42px;
        position: absolute
    }

    #Material-image-carousel .owl-controls .owl-buttons div.owl-next,
    .testimonial-carousel .owl-controls .owl-buttons div.owl-next,
    .testimonial-carousel .owl-nav .owl-next {
        left: -42px;
        position: absolute
    }

.course-carousel .owl-pagination {
    text-align: center;
    margin-top: 10px
}

.owl-theme .owl-buttons div, .owl-theme .owl-nav {
    width: 40px;
    height: 40px;
    font-weight: 600;
    font-size: 12px !important;
    display: inline;
    background: transparent;
    text-align: center;
    /*display: inline-block;*/
    opacity: 1 !important;
    /*border-radius: 0 !important;
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.18),0 2px 5px 0 rgba(0,0,0,.15);*/
    transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out
}


.owl-nav .owl-next,
.owl-nav .owl-prev {
    position: absolute;
    top: 40%;
    opacity: 0.6;
}

.owl-nav .owl-next {
    float: left;
    left: 0;
}


.owl-nav .owl-prev {
    float: right;
    right: 0;
}



.owl-theme .owl-buttons div i, .owl-theme .owl-nav i {
    color: #4247a4 !important;
    font-size: 50px;
    line-height: 40px
}


.owl-theme .owl-nav [class*='owl-']:hover {
    background: transparent;
    color: #FFF;
    text-decoration: none;
    opacity: 1;
}

.owl-theme .owl-nav [class*='owl-']:active, .owl-theme .owl-nav [class*='owl-']:focus {
    outline: none;
}

.touch-slider .owl-controls .owl-buttons div i {
    color: #333;
    display: block
}

    .touch-slider .owl-controls .owl-buttons div i:hover {
        color: #fff !important
    }

.portfolio-details-section .portfolio-details-iamge h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 25px;
    text-transform: uppercase
}

.portfolio-details-section .portfolio-details h2 {
    font-weight: 500;
    margin-top: 30px;
    text-transform: capitalize
}

.portfolio-details-section .portfolio-details p {
    font-size: 15px;
    line-height: 30px
}

.portfolio-details-section .portfolio-details .portfolio-category a {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize
}

.portfolio-details-section .portfolio-details .portfolio-meta li {
    margin: 15px 0
}

    .portfolio-details-section .portfolio-details .portfolio-meta li span {
        display: inline-block;
        width: 130px;
        letter-spacing: 1px;
        color: #202020;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700
    }

    .portfolio-details-section .portfolio-details .portfolio-meta li i {
        font-size: 18px;
        margin-left: 5px
    }

        .portfolio-details-section .portfolio-details .portfolio-meta li i:hover {
            opacity: .6
        }

.Material-error-section h1 {
    font-size: 10em;
    font-weight: 700;
    letter-spacing: .3rem
}

.Material-error-section h2 {
    font-size: 2.5em;
    font-weight: 500;
    color: #999
}



/*image Hover effects*/
.hoverZoom .featured-image {
    overflow: hidden;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.hoverZoom img {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
}

.hoverZoom:hover img {
    filter: none;
    -webkit-filter: none;
    -webkit-transform: scale(1.4);
    transform: scale(1.4);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}


.header-line {
    border-bottom: 0.6vw #f5c540 solid;
    line-height: 1.5vw !important;
    padding-left: 5vw;
    width: fit-content;
}


.carousel-item .parallax {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    -webkit-background-position: center !important;
    -moz-background-position: center !important;
    -o-background-position: center !important;
    background-position: center !important;
    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
    height: 50%;
    height: 50vh;
}

.carousel-item .non-parallax {
    height: -webkit-fill-available;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 100%;
    height: 100vh;
}

.ageindicator {
    position: absolute;
    top: 4px;
    margin: 0 5px;
    padding: 4px;
    font-size: 10px !important;
    background: #4247a4;
    color: #fff;
}


.search-header {
    background: #fff;
    border-radius: 50px;
}

    .search-header .form-control {
        background: none;
        box-shadow: none;
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
        border: 1px solid #eef0f2;
        /*transition: all .35s ease-in-out;*/
    }

        .search-header .form-control:focus {
            box-shadow: none;
            border-top-right-radius: 50px;
            border-bottom-right-radius: 50px;
            border: 1px solid #4247a4 !important;
        }

    .search-header .input-group-append {
        border-top-left-radius: 50px;
        border-bottom-left-radius: 50px;
    }


.go-down {
    width: 60px !important;
    height: 60px !important;
}

    .go-down i {
        right: 11% !important;
        line-height: 4px !important;
        font-weight: 900 !important;
    }



.media.q-and-a .media-left {
    font-size: 15px;
    font-weight: 700;
    line-height: 14px;
}

.media.q-and-a .media-body h2 {
    font-size: 16px;
    color: #596064;
    font-weight: 400;
    text-transform: none;
}

.media.q-and-a .media-body ul {
    list-style-type: none;
    line-height: 36px;
    font-size: 15px;
    padding: 0;
}


.media.q-and-a .media-body li input[type="radio"],
.media.q-and-a .media-body li label {
    cursor: pointer;
}


.media.q-and-a .media-body li label {
    color: #596064;
}


.form-check .form-check-label span {
    display: block;
    position: absolute;
    right: -17px;
    top: 5px;
    transition-duration: .2s
}

.form-check .form-check-label .circle {
    border: 1px solid #f5c748;
    height: 25px;
    width: 25px;
    border-radius: 100%;
    top: 5px;
}

    .form-check .form-check-label .circle .check {
        height: 25px;
        width: 25px;
        border-radius: 100%;
        background-color: #f5c748;
        transform: scale3d(0,0,0);
        right: -1px;
        top: -1px;
    }

.form-check .form-check-input {
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden
}

    .form-check .form-check-input:checked ~ .check, .form-check .form-check-input:checked ~ .circle {
        opacity: 1
    }

    .form-check .form-check-input:checked ~ .check {
        background-color: #f5c748;
    }

    .form-check .form-check-input:checked ~ .circle {
        border-color: #f5c748;
    }

    .form-check .form-check-input:checked .check:before {
        animation: b .5s forwards
    }

    .form-check .form-check-input:checked ~ .circle .check {
        transform: scale3d(.80,.80,1)
    }

    .form-check .form-check-input[disabled] ~ .check, .form-check .form-check-input[disabled] ~ .circle {
        opacity: .26
    }

    .form-check .form-check-input[disabled] ~ .check {
        background-color: #000
    }

    .form-check .form-check-input[disabled] ~ .circle {
        border-color: #000
    }

    .form-check .form-check-input[disabled] + .circle .check {
        background-color: #000
    }

.form-check .form-check-sign {
    vertical-align: middle;
    position: relative;
    top: -2px;
    float: right;
    padding-left: 10px;
    display: inline-block
}

.form-check .form-check-label .circle:before {
    display: block;
    position: absolute;
    right: 3px;
    content: "";
    background-color: rgba(204, 166, 64, 0.74);
    height: 18px;
    width: 18px;
    border-radius: 100%;
    z-index: 1;
    opacity: 0;
    margin: 0;
    top: 3px;
    transform: scale3d(2.3,2.3,1);
}

.form-check .form-check-label .form-check-input:checked + .circle:before {
    animation: c .5s
}

.form-check .form-check-label .form-check-input:checked + .circle .check:before {
    color: #fff;
    box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px -12px 0 11px;
    animation: b .3s forwards
}

.form-check + .form-check {
    margin-top: 0
}

@keyframes b {
    0% {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-25px 2px 0 11px
    }

    50% {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px 2px 0 11px
    }

    to {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px -12px 0 11px
    }
}

@keyframes c {
    0% {
        opacity: 0
    }

    50% {
        opacity: .2
    }

    to {
        opacity: 0
    }
}




.hingeZoom::after {
    content: " ";
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    animation-name: hingeZoom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes hingeZoom {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.4, .4, .4);
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}

@keyframes hingeZoom {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.4, .4, .4);
        transform: scale3d(.4, .4, .4);
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 0;
    }
}


/*#region Chart */

.canvas-con {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    position: relative;
}

.chartLabel {
    position: absolute;
    right: 16%;
    top: 36%;
    font-size: 1rem;
    width: 100%;
    height: auto;
    font-weight: 700;
    z-index: -1;
}

.canvas-con-inner {
    height: 100%;
}

.canvas-con-inner, .legend-con {
    display: inline-block;
    /*position: absolute;*/
}

.legend-con {
    font-family: Gotham, 'Gotham Book', 'Open Sans';
    display: inline-block;
}

    .legend-con ul {
        list-style: none;
    }

    .legend-con li {
        display: flex;
        align-items: center;
        margin-bottom: 4px;
    }

        .legend-con li span {
            display: inline-block;
        }

            .legend-con li span.indicator {
                height: 16px !important;
                width: 16px !important;
                border-radius: 5px;
            }

            .legend-con li span.chart-legend {
                width: 25px;
                height: 25px;
                /*margin-right: 10px;*/
            }

canvas {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}
/*#endregion */

/*#region ProgressBar */


.progress {
    font-size: .75rem;
    display: flex;
    overflow: hidden;
    height: 8px;
    /*margin-bottom: 1rem;*/
    border-radius: 20px;
    border: 1px solid #4247a4;
    background-color: #f5f5f6;
    /*box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);*/
}

.progress-text {
    position: absolute;
    font: bold 14px/26px Arial;
    text-align: center;
    top: 0;
    right: 0;
}


.progress, .progress-bar, .progress-text {
    width: 100%;
    height: 32px;
    line-height: 30px;
}


    .progress .progress-text:first-child {
        z-index: 5;
        color: #c6c6c6;
    }

.progress-bar {
    display: flex;
    flex-direction: column;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background-color: #4247a4;
    justify-content: center;
    height: 32px;
    overflow: hidden;
    position: relative;
    z-index: 10;
    border-radius: 0;
    -moz-transition: width .2s linear;
    -webkit-transition: width .2s linear;
    -o-transition: width .2s linear;
    transition: width .2s linear;
}


.progress .progress-text:last-child {
    z-index: 10;
    color: #fff;
}


/*#endregion */


/*#region FeedBack */

.feedback.card {
    background-color: rgba(245, 197, 64, 0.21);
    border-radius: 33px;
}

.feedback .card-title {
    font-weight: 600;
    margin-bottom: 0;
}

.feedback .card-subtitle, .feedback .card-body {
    font-size: 13px;
}

/*#endregion */


/*#region MyCertificates */

.mycertificate.card {
    background-color: rgba(245,197,64,.21);
    border-radius: 16px;
    margin-bottom: 26px;
}

/*#endregion */


/*#region TimeLine Plugin extend */

.timeline__item {
    cursor: pointer;
}

    .timeline__item:focus {
        outline: none;
    }

    .timeline__item.ongoing::after, .titiboktibok {
        animation: shadow-pulse 1.5s infinite;
    }


.shadow-pulse-white {
    animation: shadow-pulse-white 1.2s infinite;
}

.shadow-pulse-sm {
    animation: shadow-pulse-sm 1.5s infinite;
}

.shadow-pulse-warning {
    animation: shadow-pulse-warning 1.5s infinite;
}

.shadow-pulse-warning-sm {
    animation: shadow-pulse-sm-warning 1.5s infinite;
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(66, 66, 154, 0.5);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}


@keyframes shadow-pulse-white {
    0% {
        box-shadow: 0 0 0 0px #fff;
        transform: scale(1.1);
    }

    50% {
        transform: scale(.8);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
        transform: scale(1.1);
    }
}

@keyframes shadow-pulse-sm {
    0% {
        box-shadow: 0 0 0 0px rgba(66, 66, 154, 0.7);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
}

@keyframes shadow-pulse-sm-warning {
    0% {
        box-shadow: 0 0 0 0 rgb(245, 199, 72);
    }

    100% {
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0);
    }
}

@keyframes shadow-pulse-warning {
    0% {
        box-shadow: 0 0 0 0 rgb(245, 199, 72);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

/*#endregion */


/*#region Override Bootstrap Modal for Enrollment */


.enroll .modal-dialog {
    margin: 0;
}

.enroll .modal-content {
    min-width: 100vw;
    min-height: 100vh;
}

.enroll .course-title {
    color: #4247a4;
    font-weight: 500;
    text-transform: uppercase;
}

/*#endregion */



/*#region feedback widget */

.widget-feedback span {
    font-size: 16px;
    color: #596064;
    font-weight: 400;
    font-family: 'Gotham Book','Open Sans',sans-serif;
}

.radioicon {
    height: 30px;
    width: 30px;
    margin-right: 2px;
    margin-left: 2px;
    border-radius: 100px !important;
}

    .radioicon:hover,
    .radioicon.hover {
        animation: shadow-pulse-sm 1.5s infinite;
    }

        .radioicon:hover i.mdi-emoticon-excited-outline::before,
        .radioicon.active i.mdi-emoticon-excited-outline::before,
        .radioicon.hover i.mdi-emoticon-excited-outline::before {
            content: "\FC4C";
        }

        .radioicon:hover i.mdi-emoticon-happy-outline::before,
        .radioicon.active i.mdi-emoticon-happy-outline::before,
        .radioicon.hover i.mdi-emoticon-happy-outline::before {
            content: "\FC4D";
        }

        .radioicon:hover i.mdi-emoticon-neutral-outline::before,
        .radioicon.active i.mdi-emoticon-neutral-outline::before,
        .radioicon.hover i.mdi-emoticon-neutral-outline::before {
            content: "\FC50";
        }

        .radioicon:hover i.mdi-emoticon-sad-outline::before,
        .radioicon.active i.mdi-emoticon-sad-outline::before,
        .radioicon.hover i.mdi-emoticon-sad-outline::before {
            content: "\FC52";
        }

    .radioicon i {
        font-size: 34px;
        line-height: 30px;
        right: -4%;
        position: absolute;
        left: 0;
    }

/*#endregion */


/*#region Overridde Style for Slider */

.slider .tooltip.in {
    opacity: 1;
}

.slider .tooltip.top .tooltip-arrow {
    bottom: 0;
    right: 50%;
    margin-right: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.slider .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.slider .tooltip.top {
    padding: 5px 0;
}

    .slider .tooltip.top .tooltip-arrow {
        border-top-color: rgba(0, 0, 0, 0.4);
        border-top-color: transparent;
    }

.slider .tooltip-inner {
    background-color: rgba(0, 0, 0, 0.4);
    background-color: transparent;
    color: #596064;
}

.slider-handle {
    width: 25px;
    height: 25px;
    background-color: #4247a4;
    background-image: -webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);
    background-image: -o-linear-gradient(top,#337ab7 0,#2e6da4 100%);
    background-image: linear-gradient(to bottom,#4247a4 0,#313173 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);
}

    .slider-handle:hover {
        animation: shadow-pulse 1.5s infinite;
    }

.slider-track {
    background: #a4a7a9;
}

.slider.slider-horizontal {
    width: 155px;
    height: 20px;
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
}

    .slider.slider-horizontal .slider-track {
        height: 15px;
    }

.slider-selection {
    background: #f5c747;
}

.slider-selection, .slider-track {
    border-radius: 20px;
}


.tooltip-inner::after, .tooltip-inner:after {
    content: '%';
}

.slider.slider-horizontal .slider-handle, .slider.slider-horizontal .slider-tick {
    margin-right: -15px;
}

/*#endregion */


/*#region Custom CheckBox */
.custom-checkbox .form-check, .custom-checkbox label {
    line-height: 1.42857;
    font-size: 16px;
    color: #596064;
    font-weight: 400;
    font-family: 'Tajawal','Libre Franklin','Open Sans',sans-serif;
}


.custom-checkbox .form-check {
    margin-top: 5px;
}

.custom-checkbox .form-check {
    position: relative;
    display: block;
    padding-right: 1.25rem;
    margin-bottom: .5rem;
}

.custom-checkbox .form-check-inline {
    display: inline-flex;
    align-items: center;
    padding-right: 0;
    margin-left: .75rem;
}



.custom-checkbox .form-check, .custom-checkbox .form-check .form-check-label {
    padding-right: 0;
}


    .custom-checkbox .form-check .form-check-label {
        cursor: pointer;
        padding-right: 25px;
        position: relative;
        padding-left: 15px;
    }

    .custom-checkbox .form-check .form-check-input {
        position: absolute;
        margin: 0;
        z-index: -1;
        right: 0;
        pointer-events: none;
        opacity: 0;
        height: 0;
        width: 0;
        overflow: hidden;
    }

    .custom-checkbox .form-check .form-check-sign {
        vertical-align: middle;
        position: relative;
        top: -2px;
        float: right;
        padding-left: 10px;
        display: inline-block;
    }

    .custom-checkbox .form-check .form-check-label span {
        display: block;
        position: absolute;
        right: -6px;
        top: -2px;
        transition-duration: .2s;
    }


    .custom-checkbox .form-check .form-check-sign:before {
        display: block;
        position: absolute;
        right: 0;
        content: "";
        background-color: rgba(0, 0, 0, 0.84);
        height: 28px;
        width: 28px;
        border-radius: 100%;
        z-index: 1;
        opacity: 0;
        margin: 0;
        top: 0;
        transform: scale3d(2.3,2.3,1);
    }

    .custom-checkbox .form-check .form-check-input:not(:checked) + .form-check-sign .check:after,
    .custom-checkbox .form-check .form-check-input:not(:checked) + .form-check-sign:before {
        animation: c .5s;
    }


.custom-checkbox .form-check {
    margin-bottom: .5rem
}

    .custom-checkbox .form-check,
    .custom-checkbox.form-check .form-check-label {
        padding-right: 0
    }

        .custom-checkbox .form-check .form-check-input {
            position: absolute;
            margin: 0;
            z-index: -1;
            right: 0;
            pointer-events: none
        }

        .custom-checkbox .form-check .form-check-sign:before {
            display: block;
            position: absolute;
            right: 0;
            content: "";
            background-color: rgba(0,0,0,.84);
            height: 20px;
            width: 20px;
            border-radius: 100%;
            z-index: 1;
            opacity: 0;
            margin: 0;
            top: 0;
            transform: scale3d(2.3,2.3,1)
        }

        .custom-checkbox .form-check .form-check-sign .check {
            position: relative;
            display: inline-block;
            width: 28px;
            height: 28px;
            border: 3px solid rgb(245, 199, 71);
            overflow: hidden;
            z-index: 1;
            border-radius: 9px;
        }

            .custom-checkbox .form-check .form-check-sign .check:before {
                position: absolute;
                content: "";
                transform: rotate(-45deg);
                display: block;
                margin-top: -1px;
                margin-right: 9px;
                width: 0;
                color: #fff;
                height: 0;
                box-shadow: 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, 0 0 0 0, inset 0 0 0 0;
                animation: checkboxOff .3s forwards;
            }

        .custom-checkbox .form-check .form-check-input:focus + .form-check-sign .check:after {
            opacity: .2
        }

        .custom-checkbox .form-check .form-check-input:checked + .form-check-sign .check {
            background: #fff;
        }

            .custom-checkbox .form-check .form-check-input:checked + .form-check-sign .check:before {
                color: #f5c747;
                box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px -12px 0 11px;
                animation: b .3s forwards
            }

        .custom-checkbox .form-check .form-check-input:checked + .form-check-sign:before {
            animation: c .5s
        }

        .custom-checkbox .form-check .form-check-input:checked + .form-check-sign .check:after {
            animation: c .5s forwards
        }

        .custom-checkbox .form-check .form-check-input:not(:checked) + .form-check-sign .check:after, .form-check .form-check-input:not(:checked) + .form-check-sign:before {
            animation: c .5s
        }

        .custom-checkbox .form-check .rtl .form-check .form-check-sign .check:before {
            margin-left: 10px
        }

        .custom-checkbox .form-check .form-check-input[disabled] + .circle, .form-check .form-check-input[disabled] ~ .form-check-sign .check, fieldset[disabled] .form-check, fieldset[disabled] .form-check .form-check-input {
            opacity: .5
        }

        .custom-checkbox .form-check .form-check-input[disabled] ~ .form-check-sign .check {
            border-color: #000;
            opacity: .26
        }

        .custom-checkbox .form-check .form-check-input[disabled] + .form-check-sign .check:after {
            background-color: rgba(0,0,0,.87);
            transform: rotate(45deg)
        }

        .custom-checkbox .form-check .form-check-input[disabled][checked] + .form-check-sign .check {
            background-color: #000
        }

        .custom-checkbox .form-check .form-check-label {
            cursor: pointer;
            padding-right: 25px;
            position: relative
        }

            .custom-checkbox .form-check .form-check-label span {
                display: block;
                position: absolute;
                right: -4px;
                top: -2px;
                transition-duration: .2s;
            }

            .custom-checkbox .form-check .form-check-label .circle {
                border: 1px solid rgba(0,0,0,.54);
                height: 15px;
                width: 15px;
                border-radius: 100%;
                top: 1px
            }

                .custom-checkbox .form-check .form-check-label .circle .check {
                    height: 15px;
                    width: 15px;
                    border-radius: 100%;
                    background-color: #9c27b0;
                    transform: scale3d(0,0,0)
                }

        .custom-checkbox .form-check .form-check-input {
            opacity: 0;
            height: 0;
            width: 0;
            overflow: hidden
        }

            .custom-checkbox .form-check .form-check-input:checked ~ .check,
            .custom-checkbox .form-check .form-check-input:checked ~ .circle {
                opacity: 1
            }

            .custom-checkbox .form-check .form-check-input:checked ~ .check {
                background-color: #9c27b0
            }

            .custom-checkbox .form-check .form-check-input:checked ~ .circle {
                border-color: #9c27b0
            }

            .custom-checkbox .form-check .form-check-input:checked .check:before {
                animation: b .5s forwards
            }

            .custom-checkbox .form-check .form-check-input:checked ~ .circle .check {
                transform: scale3d(.65,.65,1)
            }

            .custom-checkbox .form-check .form-check-input[disabled] ~ .check, .form-check .form-check-input[disabled] ~ .circle {
                opacity: .26
            }

            .custom-checkbox .form-check .form-check-input[disabled] ~ .check {
                background-color: #000
            }

            .custom-checkbox .form-check .form-check-input[disabled] ~ .circle {
                border-color: #000
            }

            .custom-checkbox .form-check .form-check-input[disabled] + .circle .check {
                background-color: #000
            }

        .custom-checkbox .form-check .form-check-sign {
            vertical-align: middle;
            position: relative;
            top: -2px;
            float: right;
            padding-left: 10px;
            display: inline-block
        }

        .custom-checkbox .form-check .form-check-label .circle:before {
            display: block;
            position: absolute;
            right: -1px;
            content: "";
            background-color: rgba(0,0,0,.84);
            height: 15px;
            width: 15px;
            border-radius: 100%;
            z-index: 1;
            opacity: 0;
            margin: 0;
            top: -1px;
            transform: scale3d(2.3,2.3,1)
        }

        .custom-checkbox .form-check .form-check-label .form-check-input:checked + .circle:before {
            animation: c .5s
        }

        .custom-checkbox .form-check .form-check-label .form-check-input:checked + .circle .check:before {
            color: #fff;
            box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px -12px 0 11px;
            animation: b .3s forwards
        }

        .custom-checkbox .form-check + .form-check {
            margin-top: 0
        }

@keyframes b {
    0% {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-15px 2px 0 11px
    }

    50% {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px 2px 0 11px
    }

    to {
        box-shadow: 0 0 0 10px,-10px -10px 0 10px,-32px 0 0 20px,0 32px 0 20px,5px 5px 0 10px,-20px -12px 0 11px
    }
}

@keyframes c {
    0% {
        opacity: 0
    }

    50% {
        opacity: .2
    }

    to {
        opacity: 0
    }
}


/*#endregion */


/*#region Custom Text */
.custom-text-control {
    border-radius: 1rem !important;
}

    .custom-text-control:focus,
    .custom-text-control:active {
        background-color: #fff;
        border-width: 2px !important;
        outline: none;
        animation: shadow-pulse-sm-warning 1.5s infinite;
    }

/*#endregion */


.welcome {
    height: 100vh;
    background: #fff;
    /*background: url('../images/welcome.jpg');*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

    .welcome h1 {
        font-size: 463% !important;
        color: #565656 !important;
    }

    .welcome hr {
        border: 0;
        border-top: 9px solid #afb0b5;
        width: 200px;
        transition: all 0.2s ease-in-out;
        transition-duration: 0.75s;
        opacity: 1;
        -webkit-animation-name: welcomeline; /* Safari 4.0 - 8.0 */
        -webkit-animation-duration: 3s; /* Safari 4.0 - 8.0 */
        animation-name: welcomeline;
        animation-duration: 3s;
    }



@-webkit-keyframes welcomeline {
    from {
        opacity: 0;
        width: 1px;
    }

    to {
        opacity: 1;
        width: 200px;
    }
}


@keyframes welcomeline {
    from {
        opacity: 0;
        width: 1px;
    }

    to {
        opacity: 1;
        width: 200px;
    }
}


/*#region Background Video */

.background-video-container {
    /* The background property is used for the fading poster image */
    background: 50% 50% / cover no-repeat;
    height: 100%;
    right: 0;
    position: absolute;
    top: 0;
    width: 100%;
}



    .background-video-container::after {
        background-color: rgba(255, 255, 255, 0.45);
        content: '';
        height: 100vh;
        right: 0;
        /*mix-blend-mode: multiply;*/
        position: absolute;
        top: 0;
        width: 100vw;
    }

    .background-video-container .jwplayer {
        transition: opacity 1s ease-in-out;
    }

    .background-video-container.is-fading .jwplayer {
        opacity: 0;
    }

    .background-video-container .jwplayer.jw-flag-aspect-mode {
        height: 100% !important;
    }

    .background-video-container .jw-state-playing {
        opacity: 1;
    }

.jwplayer.jw-stretch-uniform video {
    object-fit: cover;
}

.jw-nextup-container {
    display: none;
}

.jw-reset-text, .jw-reset {
    background-color: transparent !important;
}

.jw-wrapper {
    background-color: #fff !important;
}
/*#endregion */
/*#region Cutom Table */
.customTable, .customTable .dttables {
    border-radius: 30px;
}

    .customTable thead {
        background-color: rgba(245,197,64,.21);
    }

    .customTable tbody tr:nth-of-type(even) {
        background-color: rgba(245,197,64,.21);
    }

    .customTable .dataTables_filter {
        float: left;
    }


    .customTable .filter-header select {
        border-radius: 50px;
        background: #fff;
        padding: 0 10px;
        font-size: 0.9em;
    }

        .customTable .filter-header select:focus {
            outline: none;
            box-shadow: none;
            border: 1px solid #ffc107 !important;
        }

    .customTable .pagination {
        float: left;
    }

    .customTable .page-item:first-child .page-link {
        margin-right: 0;
        border-top-right-radius: 1.25rem;
        border-bottom-right-radius: 1.25rem;
        border: none;
    }

    .customTable .page-item:last-child .page-link {
        border-top-left-radius: 1.25rem;
        border-bottom-left-radius: 1.25rem;
        border: none;
    }

    .customTable .page-link {
        border: none;
    }

    .customTable .page-item.active .page-link {
        background-color: #4247a4;
    }

    .customTable .page-link:focus {
        outline: none;
        box-shadow: none;
    }

    .customTable .dataTables_empty {
        text-align: center;
    }

    .customTable .paginate_button .material-icons {
        line-height: 0;
    }
/*#endregion */
/*#region   FX */
.shineFXhover:hover {
    background-image: linear-gradient(to left,transparent 0,rgba(255,255,255,.2) 50%,transparent 100%);
    background-repeat: no-repeat;
    background-position: 300px;
    animation: shine 5s infinite;
}

.text-gradient:hover {
    font-family: 'Tajawal','Castle T';
    font-weight: 600;
    margin-top: 10px;
    background: -webkit-linear-gradient(right,#B07515,#FFFFD7,#B07515,#FFFFD7,#B07515);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.shineFX-inverted:hover {
    background-image: linear-gradient(to left,transparent 0,rgba(66, 66, 154, 0.05) 50%,transparent 100%);
    background-repeat: no-repeat;
    background-position: 300px;
    animation: shineinverted 5s infinite;
}

.shadowhover {
    cursor: pointer;
}

    .shadowhover:hover {
        box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
    }

.filterfaded {
    filter: opacity(0.4);
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: -300px;
    }

    100% {
        background-position: 300px;
    }
}

@keyframes shineinverted {
    0% {
        background-position: -500px;
    }

    100% {
        background-position: 500px;
    }
}

/*#region CourseResources Extensions */
.stat-indicator-unlock::after {
    content: "\FFE6";
    font: normal normal normal 24px/1 "Material Design Icons";
    top: 45px;
    font-size: 12px;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #f5c747;
    line-height: 1.6;
    color: #4247a4 !important;
    position: absolute;
    left: 43%;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-name: tada;
    animation-iteration-count: infinite;
}

.stat-indicator-done::after {
    content: "\FE6E";
    font: normal normal normal 24px/1 "Material Design Icons";
    top: 45px;
    font-size: 12px;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    background: #f5c747;
    line-height: 1.6;
    color: #4247a4 !important;
    position: absolute;
    left: 43%;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075) !important;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

    .mfp-fade.mfp-bg.mfp-ready {
        opacity: 0.8;
    }

    .mfp-fade.mfp-bg.mfp-removing {
        opacity: 0;
    }


.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    -moz-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-close:hover {
    cursor: pointer !important;
}


/*#endregion */

/*#region ProfileImg */

.ProfileImage {
    border-radius: 25px;
    width: 150px;
    height: 200px;
    overflow: hidden;
}

    .ProfileImage img {
        object-fit: cover;
        object-position: center;
        width: 100%;
        height: 100%;
    }

/*#endregion */

/*#region Custom Scrollbar */

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    border-radius: 8px;
    background-color: #f5c60a;
}

::-webkit-scrollbar {
    width: 5px;
    height: 12px;
    background-color: #eee2cc;
}

::-webkit-scrollbar-thumb {
    background-color: #1a1a1a;
}

/*#endregion */

/*#region Nav-Bar Extension */
.nav-tabs .nav-link.show {
    background-color: transparent;
}

.nav-tabs .nav-link.show,
.nav-tabs .nav-link:hover {
    /*border-bottom: 4px solid #f5c747 !important;*/
}


/*#endregion */


/*#region Assignment */



.btn-circular-img {
    cursor: pointer;
    margin-right: auto;
    margin-left: auto;
    width: 80px;
    height: 80px;
    background-image: url(/resources/images/download.png);
    background-size: cover;
    display: block;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    -moz-box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    margin-bottom: 22px;
}

.btn-circular-img-upload {
    cursor: pointer;
    margin-right: auto;
    margin-left: auto;
    width: 80px;
    height: 80px;
    background-image: url(/resources/images/upload.png);
    background-size: cover;
    display: block;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    -moz-box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    box-shadow: 0 0 12px 0 rgb(255, 255, 255);
    margin-bottom: 22px;
}

.bg-cover {
    background: url(/resources/images/assignment.png) no-repeat;
    background-size: contain;
    background-position: 53%;
    height: 100%;
    width: 100%;
    -webkit-border-top-right-radius: 4px;
    -webkit-border-top-left-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-topleft: 4px;
}

/*#endregion */


/*#region File Container */

.file-container {
    border-radius: 20px;
    overflow: hidden;
}

    .file-container .odd {
        background-color: #ffe8b6;
    }

    .file-container .even {
        background-color: #e6e6e6;
    }

/*#endregion */


/*#region Badge Indicator */

.badge-indicator:after {
    content: attr(pending);
    position: absolute;
    height: 75%;
    top: -.7rem;
    left: -.5rem;
    background: #f3b714;
    width: 75%;
    color: #212529;
    text-align: center;
    line-height: 1.5rem;
    border-radius: 50%;
    -webkit-animation-name: pulse;
    animation-name: pulse;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.badge-warning-outline {
    color: #212529;
    background-color: transparent;
    border: 2px #f5c540 solid;
}

/*#endregion */

/*#region Corner Ribbon */

.corner-ribbon {
    width: 336px;
    background: #4247a4;
    position: absolute;
    top: 25px;
    right: -50px;
    text-align: center;
    font-weight: 700;
    line-height: 50px;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    overflow: hidden;
}

    .corner-ribbon.shadow {
        box-shadow: 0 0 3px rgba(0, 0, 0, .3);
    }
    /* Different positions */

    .corner-ribbon.top-right {
        top: 114px;
        left: -72px;
        right: auto;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-46deg);
        overflow: hidden;
    }

    .corner-ribbon.blue {
        background: #4247a4;
    }



.ribbon {
    position: relative;
    padding: 0 0.5em;
    font-size: 2.000em;
    margin: 0 -.7em 0 0;
    line-height: 1.875em;
    color: #596064 !important;
    border-radius: 30px 0 0 30px;
    background: #f5c645;
    box-shadow: 1px 2px 3px rgba(0,0,0,0.5);
}

    .ribbon:before, .ribbon:after {
        position: absolute;
        content: '';
        display: block;
    }

    .ribbon:before {
        width: 0.469em;
        height: 126%;
        padding: 0 0 0.438em;
        top: 0;
        right: -0.469em;
        background: inherit;
        border-radius: 0 0.313em 0.313em 0;
        z-index: 1;
    }

    .ribbon:after {
        width: 0.313em;
        height: 0.313em;
        background: rgba(0,0,0,0.35);
        bottom: -0.313em;
        right: -0.313em;
        border-radius: 0 0.313em 0.313em 0;
        box-shadow: inset 1px 2px 2px rgba(0,0,0,0.3);
        z-index: 2;
    }

.nomination {
    position: absolute;
    left: 4%;
    width: 70px;
    margin-top: -7px;
}

.imageslider-indicator {
    margin-top: 300px;
    background: rgba(0, 0, 0, 0.07);
    border-radius: 50px;
}


@media (max-width: 600px) {
    .imageslider-indicator {
        margin-top: 270px;
    }

    .nomination {
        width: 60px;
        left: 1%;
    }

    .ribbon {
        line-height: 1.143em;
        padding: 0.5em;
    }

        .ribbon:before, .ribbon:after {
            font-size: 0.714em;
        }
}
/*#endregion */

select.custom-select2 option:disabled {
    visibility: hidden;
    display: none;
}

.carousel-item .overlay {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: -webkit-fill-available;
    opacity: .6;
    background: #000;
    height: -webkit-fill-available;
}

.profile-card .card-up {
    height: 120px;
    overflow: hidden;
    border-top-right-radius: .25rem;
    border-top-left-radius: .25rem;
    background: #4247a4;
}

.profile-card .avatar {
    width: 120px;
    margin-top: -60px;
    overflow: hidden;
    border-radius: 50%;
    background-color: #4247a4;
    height: 125px;
}


/*mobile menu*/
.slicknav_btn {
    z-index: 2;
}

.slicknav_nav {
    position: absolute;
    top: 0px;
    z-index: 1;
}

.widget-icon-sm {
    position: absolute;
    right: 9px;
    font-size: 117px !important;
    top: -6px;
    color: rgba(255, 255, 255, 0.1) !important;
}

.widget-icon-lg {
    position: absolute;
    right: 0px;
    font-size: 192px !important;
    top: 58px;
    color: rgba(66, 66, 154, 0.05) !important;
}

svg.wave {
    pointer-events: none;
    position: absolute;
    bottom: -5px;
    right: 0;
}

.viewer-profile {
    width: 80px;
    height: 85px;
    border-radius: 59px;
    overflow: hidden;
    border: 5px solid rgba(245, 199, 72, 0.11);
    margin: 15px;
}

/*#region playbutton*/
.video-play-button {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 18px 28px 18px 20px;
}

    .video-play-button:before {
        content: "";
        position: absolute;
        z-index: 0;
        right: 50%;
        top: 50%;
        transform: translateX(50%) translateY(-50%);
        display: block;
        width: 55px;
        height: 55px;
        background: -webkit-linear-gradient(right,#d79a36,#FFFFD7,#FFFFD7,#d79a36);
        border-radius: 50%;
        animation: pulse-border 1100ms ease-out infinite;
    }

    .video-play-button:after {
        content: "";
        position: absolute;
        z-index: 1;
        right: 50%;
        top: 50%;
        transform: translateX(50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: -webkit-linear-gradient(right,#d79a36,#FFFFD7,#FFFFD7,#d79a36);
        border-radius: 50%;
        transition: all 200ms;
    }

    .video-play-button span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 19px solid black;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        top: 10px;
        left: 2px;
    }

.video-play-button-noeffect {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #eb2055; */
    border-radius: 50%;
    padding: 18px 28px 18px 20px;
}



    .video-play-button-noeffect:before {
        content: "";
        position: absolute;
        z-index: 0;
        right: 50%;
        top: 50%;
        transform: translateX(50%) translateY(-50%);
        display: block;
        width: 55px;
        height: 55px;
        background: -webkit-linear-gradient(right,#d79a36,#FFFFD7,#FFFFD7,#d79a36);
        border-radius: 50%;
    }

    .video-play-button-noeffect:after {
        content: "";
        position: absolute;
        z-index: 1;
        right: 50%;
        top: 50%;
        transform: translateX(50%) translateY(-50%);
        display: block;
        width: 60px;
        height: 60px;
        background: -webkit-linear-gradient(right,#d79a36,#FFFFD7,#FFFFD7,#d79a36);
        border-radius: 50%;
        transition: all 200ms;
    }

    .video-play-button-noeffect span {
        display: block;
        position: relative;
        z-index: 3;
        width: 0;
        height: 0;
        border-left: 19px solid black;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        top: 10px;
        left: 2px;
    }

@keyframes pulse-border {
    0% {
        transform: translateX(50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}
/*#endregion play buttion*/


.hero-title {
    font-family: 'Tajawal', 'Raleway', 'GothamBold','El Messiri';
    /*margin-top: 25px;*/
    font-size: 2.5em;
}

.card-award {
    height: 180px;
    max-height: 180px;
}

.award-container {
    height: 180px;
    max-height: 180px;
    overflow: hidden;
    cursor: pointer;
}

.advert-container .img-container {
    min-height: 180px;
    overflow: hidden;
}

.hero-subtitle {
    font-family: 'Tajawal','Libre Franklin','Gotham Light','Tajawal';
    font-size: 15px;
}

.card {
    margin-bottom: 15px;
    margin-top: 15px;
}

    .card .card-body {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        padding: 1.25rem;
    }

.footer-pips {
    font-family: 'Gotham Light';
    color: #fff;
}

    .footer-pips h5 {
        font-family: 'Gotham Bold';
        color: #f5c60a;
    }

    .footer-pips h6 {
        font-family: 'Gotham Bold';
        color: #fff;
        font-size: 0.9rem;
        margin: 0;
    }

    .footer-pips p {
        font-family: 'Gotham Light';
        color: #fff;
        margin: 0;
    }


.line-decoration {
    height: 54px;
    width: 5px;
    position: absolute;
    background-color: #f5c60a;
}

.line-decoration2 {
    border-top: 4px #f5c60a solid;
}

.section-title2 {
    font-size: 1.8rem;
    font-family: 'Tajawal','Raleway', 'Gotham Black Regular', 'El Messiri';
}

.section-title3 {
    font-size: 2.1rem;
    font-family: 'Tajawal','Raleway', 'Gotham Black Regular','El Messiri';
}

.text {
    font-size: 1.1em;
}



.sideTitle {
    min-height: 195px;
}



.toolbarNav_mobile {
    position: fixed;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    padding: 0.8em;
    box-shadow: 0 0 0 0.1rem rgba(0,0,0,.15) !important;
    color: #707070;
    background: #fff;
}

    .toolbarNav_mobile p {
        font-size: 0.6em;
        line-height: 1.5em;
    }

.floatThead-container-fixed {
    top: 181px !important;
}

.container-hero {
    width: 100%;
    height: 640px;
    overflow: hidden;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background: url('../images/imageslider/1.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

    .container-hero::before {
        content: '';
        width: 100%;
        height: 640px;
        position: absolute;
        top: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.65);
        border-bottom-right-radius: 50px;
        border-bottom-left-radius: 50px;
    }

p {
    /*font-size: 20px;*/
    margin: 0 0 10px;
}

.hoverZoom a {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    text-decoration: underline;
    text-decoration-line: underline;
    text-decoration-thickness: initial;
    text-decoration-style: initial;
    text-decoration-color: initial;
}

.brandtitle {
    font-family: 'GothamBold';
    font-size: 1.3em;
}

.wow {
    visibility: hidden;
}

.border-radius-20 {
    border-radius: 20px;
}

.card-title {
    font-family: 'Tajawal',Raleway, 'El Messiri';
}

.hero-image-container {
    width: 396px;
    height: auto;
    overflow: hidden;
    z-index: 1;
}

.min-height-4h {
    min-height: 400px;
}

.profileimg {
    width: 23px;
    height: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
}

.navbar.bg-dark {
    color: #f5d77f;
    background-color: #212121 !important;
    box-shadow: 0 4px 20px 0 rgba(0,0,0,.14), 0 7px 12px -5px rgba(33,33,33,.46);
}

.icon-menu.home {
    background: url(../images/d_homeicon.svg) no-repeat;
}

    .icon-menu.home.active,
    .icon-menu.home:hover {
        background: url(../images/homeicon.svg) no-repeat;
    }

.icon-menu.bootcamp {
    background: url(../images/d_bootcampicon.svg) no-repeat;
}

    .icon-menu.bootcamp.active,
    .icon-menu.bootcamp:hover {
        background: url(../images/bootcampicon.svg) no-repeat;
    }

.icon-menu.biggest {
    background: url(../images/d_biggesticon.svg) no-repeat;
}

    .icon-menu.biggest.active,
    .icon-menu.biggest:hover {
        background: url(../images/biggesticon.svg) no-repeat;
    }

.icon-menu.covid {
    background: url(../images/d_covidicon.svg) no-repeat;
}

    .icon-menu.covid.active,
    .icon-menu.covid:hover {
        background: url(../images/covidicon.svg) no-repeat;
    }

.icon-menu.idea {
    background: url(../images/d_ideaicon.svg) no-repeat;
}

    .icon-menu.idea.active,
    .icon-menu.idea:hover {
        background: url(../images/ideaicon.svg) no-repeat;
    }

.icon-menu {
    min-height: 25px;
    min-width: 25px;
    background-position: center !important;
}


.card-advert {
    height: 190px;
    max-height: 190px;
}

.advert-container {
    height: 190px;
    max-height: 190px;
    overflow: hidden;
    cursor: pointer;
}

    .advert-container .img-container {
        min-height: 190px;
        overflow: hidden;
        z-index: 0;
    }

.img-award {
    /*    height: 160px;*/
    max-height: 200px;
    overflow: hidden;
    cursor: pointer;
}

.advert-container .img-container .overlay {
    background: #000;
    opacity: 0.6;
    z-index: 1;
}

    .advert-container .img-container .overlay:hover,
    .advert-container:hover .img-container .overlay {
        background: rgb(45, 48, 111);
        opacity: 0.8;
    }

.img-container-rounded {
    width: 40px;
    border-radius: 50px;
    padding: 6px 10px 6px 10px;
    vertical-align: middle;
    align-items: center;
    align-content: center;
    align-self: center;
}

.advert-container p {
    z-index: 1;
    color: #fff;
    font-weight: bold;
}


.table-image td, .table-image th {
    vertical-align: middle;
}

.w-10 {
    width: 10% !important;
}

.w-9 {
    width: 9% !important;
}

.data-view-toolbox a:hover i {
    border-bottom: 2px solid #ffc107;
    color: #858cff;
}

.bottom-bg-effects {
    min-height: 62vh;
    background: url(../images/wavebgbot.svg) no-repeat;
    background-size: cover;
    background-position: top;
}

    .bottom-bg-effects.ae {
        min-height: 62vh;
        background: url(../images/wavebgbotAE.svg) no-repeat;
        background-size: cover;
        background-position: top;
    }

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        right: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        right: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.modal-dialog-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    max-width: 100%;
}

.modal-content-fullscreen {
    height: auto;
    min-height: 100%;
    border-radius: 0;
}
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.embed-responsive-4by3::before {
    padding-top: 90vh;
}

.modal-backdrop {
    background-color: #000 !important;
}

.ui-select-choices-row:hover .option, .ui-select-choices-row.active .option {
    color: #4247a4;
    cursor: pointer;
}

.selectize-dropdown {
    border: none;
}

.selectize-control.single .selectize-input:after {
    left: 11px;
    margin-top: -1px;
    z-index: -1;
}

.swal2-actions button {
    border-radius: 35px !important;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #4247a4;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div:nth-child(1) {
            right: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(2) {
            right: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(3) {
            right: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div:nth-child(4) {
            right: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-24px, 0);
    }
}


.logotext img {
    width: 190px;
}

.logoimg img {
    width: 60px;
}

.modal-open {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.swal2-popup {
    border-radius: 20px !important;
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
    background: rgba(4, 3, 3, 0.93) !important;
}

.testimonial-photo {
    height: 53px;
    width: 50px;
    overflow: hidden;
    border-radius: 50px;
}

.modal-custom-close {
    left: -20px;
    z-index: 1;
}


timeline-badge {
    box-shadow: none;
    width: 20px;
    height: 20px;
    background-color: #ffc107;
    margin-right: -10px;
    top: 92px;
}

.timeline:before {
    background-color: #f5c540;
}

timeline-panel:before,
timeline-panel:after {
    opacity: 0;
}

timeline-panel .counter {
    font-family: 'Tajawal','Raleway','GothamBold','El Messiri';
    font-size: 8.5em;
    color: rgba(240, 173, 78, 1);
    top: -89px;
    opacity: 0.5;
}

    timeline-panel .counter.odd {
        right: 26%;
    }

    timeline-panel .counter.even {
        left: 26%;
    }

.timeline-event:hover > timeline-badge.warning {
    animation: shadow-pulse-warning 1.5s infinite;
}

.timeline-event:hover > timeline-panel .counter {
    opacity: 1;
}

.cursor-disabled {
    cursor: not-allowed !important;
}

.regform-img-container-top {
    margin-right: 182px;
    margin-top: 50px;
}

.regform-img-container-bottom {
    margin-right: 226px;
    bottom: -73px;
    pointer-events: none;
}

.togglebutton label input[type=checkbox]:checked + .toggle {
    background-color: #fff;
}

    .togglebutton label input[type=checkbox]:checked + .toggle:active:after {
        -webkit-box-shadow: none;
        box-shadow: none;
    }

.checkbox label, .radio label, label {
    font-size: 12px;
}

.togglebutton label input[type=checkbox] + .toggle:active:after, .togglebutton label input[type=checkbox][disabled] + .toggle:active:after {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.text-gradient {
    font-family: 'Tajawal', 'Castle T';
    font-weight: 600;
    margin-top: 10px;
    background: -webkit-linear-gradient(right,#B07515,#FFFFD7,#B07515,#FFFFD7,#B07515);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.new-gallery.card-columns {
    column-count: 4;
    -webkit-column-gap: 2px;
    -moz-column-gap: 2px;
    column-gap: 2px;
}

    .new-gallery.card-columns .card {
        cursor: zoom-in;
    }

    .new-gallery.card-columns .card {
        filter: brightness(0.7);
        -webkit-filter: brightness(0.7);
        -moz-filter: brightness(0.7);
        -o-filter: brightness(0.7);
        -ms-filter: brightness(0.7);
    }

        .new-gallery.card-columns .card:hover {
            filter: none;
            -webkit-filter: none;
            -moz-filter: none;
            -o-filter: none;
            -ms-filter: none;
        }

@media (max-width: 450px) {
    .new-gallery.card-columns {
        column-count: 3;
    }
}


.gallery {
    /* -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    -webkit-column-width: 4;
    -moz-column-width: 4;
    column-width: 4;
    column-gap: 2.5px;
    -moz-column-gap: 2.5px;
    -webkit-column-gap: 2.5px;*/

    display: flex;
    flex-flow: column wrap;
    align-content: space-between;
    /* Your container needs a fixed height, and it 
   * needs to be taller than your tallest column. */
    min-height: 960px;
}

    .gallery .pics {
        cursor: zoom-in;
        width: 24%;
    }

        .gallery .pics img {
            filter: brightness(0.7);
            -webkit-filter: brightness(0.7);
            -moz-filter: brightness(0.7);
            -o-filter: brightness(0.7);
            -ms-filter: brightness(0.7);
        }

        .gallery .pics:hover img {
            filter: none;
            -webkit-filter: none;
            -moz-filter: none;
            -o-filter: none;
            -ms-filter: none;
        }


@media (max-width: 450px) {
    .gallery {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-width: 33%;
        -moz-column-width: 33%;
        column-width: 33%;
    }
}

.bg-lightwarning {
    background-color: #eee2cc;
}

.light-yellow {
    color: #eee2cc;
}

div.customFont-2 {
    bottom: 130px;
}

p.text-cinzel {
    font-family: 'Tajawal', 'Cinzel',serif;
    color: #000;
    font-size: 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 0 18px 0;
    font-size: 14px;
    color: #2C2C2C;
    font-family: 'Tajawal','Cinzel',serif, 'Gotham Bold', 'Open Sans','Tajawal',sans-serif;
    margin-top: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
}

p.KPCustomFont {
    padding-right: 100px;
    padding-left: 100px;
    font-size: 28px;
}

.font-weight-bold {
    font-weight: 600 !important;
}

.MessageBG {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('/Resources/images/MessageBG.jpg') !important;
}
.MessageBG2023 {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url('/Resources/images/MessageBG2023.jpg') !important;
}
.starBG {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #eee2cc;
    background-image: url('/Resources/images/starsBg.png');
}


.btn-raised {
    border-radius: 20px !important;
}

.hero-title {
    font-family: 'Tajawal','Cinzel',serif;
    /* margin-top: 25px; */
    font-size: 2.5em;
}

/*.table th, .table td {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #f5d77f;
}

table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: #f5d77f;
    border-top-color: #f5d77f;
    border-right-color: #f5d77f;
    border-bottom-color: #f5d77f;
    border-left-color: #f5d77f;
}*/

.text-cinzel {
    font-family: 'Tajawal', 'Cinzel',serif;
}

.modal-subtitle {
    font-family: 'Tajawal','Cinzel',serif;
    /* margin-top: 25px; */
    font-size: 1em;
}

.modal-title {
    font-family: 'Tajawal','Cinzel',serif;
    color: #B07515;
    /* margin-top: 25px; */
    font-size: 2.5em;
}

.modal-text {
    font-family: 'Tajawal', 'Libre Franklin',sans-serif;
}

/*ul:hover li a {
    transform: scale(1.5);
    opacity: .8;
    filter: blur(5px);
}

ul li a:hover {
    transform: scale(2);
    opacity: 1;
    filter: blur(0);
}

ul:hover div a {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
}*/

.review-active {
    background-color: white;
}

.kojAward {
    padding-top: 110px;
}

@media screen and (max-width:1920px) {
    div.kpVid-Container {
        top: 200px;
    }

    .kojAward {
        /*padding-top:250px*/
    }

    video.KPVid {
        width: 500px
    }

    img.kp-trophy {
        width: 20%;
        position: relative;
        left: 30px
    }

    p.KPCustomFont {
        padding-right: 300px;
        padding-left: 300px;
        font-size: 30px;
        font-family: 'Tajawal','Cinzel',serif;
    }

    .container {
        max-width: 1800px;
        max-width: calc(100vw - 30%);
    }

    .KojMessage {
        top: 120px;
    }

    p.text-cinzel {
        font-family: 'Tajawal','Cinzel',serif;
        font-size: 26px;
    }
}

@media screen and (max-width:1600px) {
    video.KPVid {
        width: 350px
    }

    .kojAward {
        padding-top: 110px;
    }

    img.kp-trophy {
        width: 20%;
    }

    img.kp-text {
        width: 25%;
    }

    p.KPCustomFont {
        padding-right: 200px;
        padding-left: 200px;
        font-size: 20px;
    }

    p.text-cinzel {
        font-family: 'Tajawal','Cinzel',serif;
        font-size: 20px;
    }

    .container {
        max-width: 1140px
    }

    .KojMessage {
        top: 80px;
    }

    div.customFont-2 {
        bottom: 50px;
    }
}

@media screen and (max-width:1500px) {
    video.KPVid {
        width: 350px
    }

    .kojAward {
        padding-top: 110px;
    }

    img.kp-trophy {
        width: 20%;
    }

    img.kp-text {
        width: 25%;
    }

    p.KPCustomFont {
        padding-right: 200px;
        padding-left: 200px;
        font-size: 20px;
    }

    .container {
        max-width: 1140px
    }

    div.customFont-2 {
        bottom: 60px;
    }
}

@media screen and (max-width:1280px) {
    img.kp-trophy {
        width: 15%;
        top: 60px;
    }

    .kojAward {
        padding-top: 110px;
    }

    img.kp-text {
        width: 25%;
    }

    p.KPCustomFont {
        padding-right: 180px;
        padding-left: 180px;
        font-size: 16px;
    }
}


@media screen and (max-width:770px) {

    .kojAward {
        padding-top: 0px;
        padding-bottom: 70px;
    }

    p.KPCustomFont {
        display: none !important;
    }

    video.KPVid {
        padding-top: 150px
    }

    img.responsive {
        width: 300px
    }

    img.kp-trophy {
        display: none;
    }

    img.kp-text {
        display: none;
    }

    .Kamal-Image {
        display: none;
    }

    div.KPImg {
        /*        background-image: url('../img/kpweb-mob@2x-01.png');*/
        background-image: url('//thekamalprize.com/img/kpweb-mob@2x-01.png');
        background-size: 100%;
    }

    .MessageBG {
        /*        background-image: url('../img/kpweb-mob@2x-01.png');*/
        background-image: url('/Resources/images/KamalBG-Mob.jpg') !important;
        /*background-size: 100%;*/
    }
}

.border-pill-right, .custom-file-label.custom-file-label::after {
    border-top-left-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

.border-pill-left {
    border-top-right-radius: 20px !important;
    border-bottom-right-radius: 20px !important;
}

.btn {
    box-shadow: none !important;
}



.profileimg .img-fluid {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    pointer-events: none;
    display: block;
}



.avatar {
    position: relative;
    display: inline-block;
    width: 2.625rem;
    height: 2.625rem;
    border-radius: .3125rem
}

    .avatar:not(img) {
        background-color: #fff
    }

.avatar-img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    pointer-events: none;
    border-radius: .3125rem
}

.avatar-initials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-size: 1.09375rem;
    font-weight: 600;
    pointer-events: none;
    text-transform: uppercase;
    border-radius: .3125rem
}

.avatar-centered {
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto
}

.avatar-circle {
    border-radius: 50%
}

    .avatar-circle .avatar-img, .avatar-circle .avatar-initials {
        border-radius: 50%
    }


.avatar-border-lg {
    border: .1875rem solid #fff
}


.avatar-sm {
    width: 2.1875rem;
    height: 2.1875rem
}

.avatar-sm-initials {
    width: 1.8rem;
    height: 1.8rem;
    border: 1px solid #fff;
}

    .avatar-sm-initials .avatar-initials {
        font-size: .7rem
    }

.avatar-sm.avatar-circle .avatar-status {
    bottom: -3.5px;
    left: -3.5px
}

.avatar-sm.avatar-circle .avatar-sm-status {
    bottom: -.08203rem;
    left: -.08203rem
}

.avatar-sm.avatar-circle .avatar-lg-status {
    bottom: -.35547rem;
    left: -.35547rem
}

.avatar-status-success {
    color: #fff;
    background-color: #005bc3;
}

.avatar-status {
    position: absolute;
    bottom: -8.4px;
    left: -8.4px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
    text-align: center;
    vertical-align: baseline;
    border: .125rem solid #fff;
    width: 21px;
    height: 21px;
    line-height: 1;
    font-size: .71094rem;
    border-radius: 50%;
}

.avatar-sm-status {
    bottom: -4.2px;
    left: -4.2px;
    width: .82031rem;
    height: .82031rem;
    font-size: .4375rem;
}

.avatar.avatar-circle .avatar-status {
    bottom: -3.5px;
    left: -3.5px;
}



.dropdown-menu {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: .75rem;
    border: none;
}

.navbar-nav .dropdown-menu {
    border-radius: .75rem;
    position: absolute;
    box-shadow: 0 10px 40px 10px rgba(140,152,164,.175);
}

.dropdown-menu-right {
    left: 0;
    right: auto;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #121314;
    text-decoration: none;
    background-color: rgb(130 148 204 /10%);
}

.dropdown-item.active, .dropdown-item:active {
    color: #121314;
    text-decoration: none;
    background-color: rgb(130 148 204 /10%);
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #8c98a4;
    pointer-events: none;
    background-color: transparent
}

.dropdown-item {
    font-size: .8125rem;
}



/*mobile nav*/
.mobileNav {
    position: fixed;
    top: 0;
    right: -1px;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

    .mobileNav .modal-dialog {
        position: fixed;
        margin: auto;
        width: 320px;
        height: 100%;
        -webkit-transform: translate3d(0%, 0, 0);
        -ms-transform: translate3d(0%, 0, 0);
        -o-transform: translate3d(0%, 0, 0);
        transform: translate3d(0%, 0, 0);
        right: 0;
    }

    .mobileNav .modal-content {
        height: 100%;
        overflow-y: auto;
    }


    .mobileNav .list-group.bg-dark .list-group-item {
        background-color: transparent;
    }


.read-more {
    max-height: 180px;
    overflow: hidden;
}


.backToTop {
    display: inline-block;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
}

    .backToTop i.mdi::before {
        font-size: 45px;
        line-height: 1;
    }

    .backToTop.show {
        opacity: 0.8 !important;
        visibility: visible;
    }

.modal-backdrop.show {
    opacity: 0.9;
}


.judges .card, .judges .card-body {
    border-radius: 0px !important;
}

.judges .card {
    padding: 0px;
    /*background: linear-gradient(90deg, #A77515,#FFFFCE, #A77515, #FFFFCE,#A77515);*/
    min-height: 371px;
    max-height: 371px;
    max-width: 250px;
}

    .judges .card .card-img {
        min-height: 371px;
        max-height: 371px;
        min-width: 283px;
        object-fit: cover;
        object-position: center;
        border-radius: 0px;
        border: 2px solid #E4D59A;
    }

    .judges .card .card-body {
        position: absolute;
        bottom: 1px;
        min-height: 130px;
        /*background: linear-gradient( 178deg, transparent, #000);*/
        width: 100%;
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }

.judges .cizel-gradient, #judgeDetails .cizel-gradient {
    background: -webkit-linear-gradient(right,#B07515,#FFFFD7,#B07515,#FFFFD7,#B07515);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Cinzel',serif;
}

.judges .gradient-animation {
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

    .judges .gradient-animation .card-body,
    .judges .active .card .card-img,
    .judges .gradient-animation.card .card-img {
        filter: saturate(0);
    }

@keyframes gradient {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


#judgeDetails .card-body {
    position: absolute;
    bottom: 2px;
    min-height: 116px;
    background: linear-gradient( -178deg, transparent 15%, rgba(0, 0, 0, 0.7), #000);
    width: 100%;
    border-radius: 12px;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    width: 98.4%;
}

#judgeDetails .img-judge-container {
    padding: 0px;
    border-radius: 0px;
    overflow: hidden;
    max-width: 302px;
}

#judgeDetails .img-judge {
    min-height: 443px;
    max-height: 492px;
    max-width: 408px;
    object-fit: cover;
    border-radius: 0px;
    padding: 0px;
}

.judgeName {
    color: #FDFECE;
    line-height: 27px;
    font-size: 1.125rem;
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
}

.judgePosition {
    color: #ffffff;
    line-height: 10px;
    font-size: 0.75rem;
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
}

.judgeNameModal {
    color: black;
    font-size: 2.875rem;
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
}

.judgePositionModal {
    color: black;
    font-size: 1.813rem;
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
}

.judgeDescriptionModal {
    color: black;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
}



.masonry {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fill, minmax(150px,1fr));
    grid-auto-rows: 5px;
}

.masonry-item {
    cursor: zoom-in;
}

.masonry-item {
    filter: brightness(0.7);
    -webkit-filter: brightness(0.7);
    -moz-filter: brightness(0.7);
    -o-filter: brightness(0.7);
    -ms-filter: brightness(0.7);
}

    .masonry-item:hover {
        filter: none;
        -webkit-filter: none;
        -moz-filter: none;
        -o-filter: none;
        -ms-filter: none;
    }
.corner-ribbon1 {
    width: 96px;
    background: #FDFECE;
    position: absolute;
    top: 9px;
    right: -31px;
    text-align: center;
    font-weight: 200;
    line-height: 14px;
    font-size: 10px;
    letter-spacing: 1px;
    color: #f0f0f0;
    transform: rotate(-150deg);
    -webkit-transform: rotate(45deg);
    overflow: hidden;
}

.tkpBG2023 {
    background-color: #FDFECE
}

.tkpBtn2023 {
    background-color: #E7D89D;
}

.tkpTextHead2023 {
    color: #FDFECE;
}

.tkpTextSubTitle2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 13px;
}

.tkpTextCardHeader2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 19px;
    color: #353A40;
}

.tkpTextCardHeaderAwards2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 40px;
    color: #353A40;
}

.tkpTextDivHeader2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #353A40;
}

.tkpTextDivFooter2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #353A40;
}

.tkpTextCardBody2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 12px;
    color: #353A40;
}

.tkpTittle2023 {
    font-family: 'Tajawal', 'Libre Franklin', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #FDFECE;
}

.tkpBorderTopGold {
    border-top: thin dashed #E5D69B;
}

.newRibbon {
    --f: 0px;
    --r: 15px;
    --t: -13px;
    position: absolute;
    inset: var(--t) calc(-1*var(--f)) auto auto;
    padding: 0 10px var(--f) calc(10px + var(--r));
    clip-path: polygon(0 0,100% 0,100% calc(100% - var(--f)),calc(100% - var(--f)) 100%, calc(100% - var(--f)) calc(100% - var(--f)),0 calc(100% - var(--f)), var(--r) calc(50% - var(--f)/2));
    background: #FDFECE;
    box-shadow: 0 calc(-1*var(--f)) 0 inset #0005;
}

.owl-item.active.center {
    transform: scale(1.1, 1.1);
    margin-right: 45px;
    margin-left: 45px;
}

.owl-stage-outer {
    position: relative;
    z-index: 10;
    height: 35.75rem;
}
.mySwiper {
    max-width: 1200px;
    padding-bottom: 80px !important;
}

    .mySwiper .swiper-slide {
        width: 300px;
        height: 220px;
        opacity: 0.1;
    }

        .mySwiper .swiper-slide.swiper-slide-duplicate {
            opacity: 0.1;
        }

        .mySwiper .swiper-slide.swiper-slide-next, .mySwiper .swiper-slide.swiper-slide-prev {
            opacity: 0.4;
        }

        .mySwiper .swiper-slide.swiper-slide-active {
            opacity: 1;
        }

            .mySwiper .swiper-slide.swiper-slide-active .kb-item {
                cursor: pointer;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
            }

            .mySwiper .swiper-slide.swiper-slide-active .kb-item-banner {
                transform: scale(1.5);
                transition: all 30s;
            }

.swiper-pagination {
    bottom: 0 !important;
}

    .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff;
    }

.kb-item {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    -webkit-box-reflect: below 5px -webkit-linear-gradient(bottom, rgba(255, 0, 0, 0.2) 0%, transparent 32px, transparent 100%);
}

.kb-banner-holder {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    overflow: hidden;
}

.kb-item-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

.kb-item-logo {
    width: 100px;
    height: 100px;
    position: absolute;
    object-fit: contain;
    border-radius: 10px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
    background-color: #fff;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.15);
}

.kb-item-name {
    color: #333;
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
    font-size: 20px;
}



#starshine {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.shine {
    display: block;
    position: absolute;
    top: 50%;
    right: 50%;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAlgAAAJYCAMAAACJuGjuAAADAFBMVEX///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////+/LkhhAAAA/3RSTlMAAQIDBAUGBwgJCgsMDQ4PEBESExQVFhcYGRobHB0eHyAhIiMkJSYnKCkqKywtLi8wMTIzNDU2Nzg5Ojs8PT4/QEFCQ0RFRkdISUpLTE1OT1BRUlNUVVZXWFlaW1xdXl9gYWJjZGVmZ2hpamtsbW5vcHFyc3R1dnd4eXp7fH1+f4CBgoOEhYaHiImKi4yNjo+QkZKTlJWWl5iZmpucnZ6foKGio6SlpqeoqaqrrK2ur7CxsrO0tba3uLm6u7y9vr/AwcLDxMXGx8jJysvMzc7P0NHS09TV1tfY2drb3N3e3+Dh4uPk5ebn6Onq6+zt7u/w8fLz9PX29/j5+vv8/f7rCNk1AAAbWElEQVR4AezcS8uU9QOHcf3/ayFWYyHixlnYAREHa9GhGCSxFjIgFthhxI1Y+RRibmwQEcRirIWIiynosBAHsRYiDG7sEMxGnoXII+LGgqmFWIueQNyIXcHNj3sffO/d9XkJ1wu4lvwXesQETdBqE6gJHROoCS+bQE3omUBNeM8EasKHJlAThiZogr4wQRM0NkET9LMJmqB5EzRBMxM0QX+boAliiZT3EA8bQXmP8pgRlNembQTlPclTRlBeh44RlPciLxlBeZvYZATl9egZQXmv8boRlNenbwTlvcO7RlDe+3xgBOUNGBhBeUc4YgTlDRkaQXmnOGUE5Y343AjKGzM2gvK+5TsjKG/CxAjK+5GfjKC8KVMjKG+BBSMo7wY3jKC8GTMjKO8P/jSC8hZZNILy/gEjKO4B4EEzKK0FtMygtNXAajMorQ1eQZS3AdhgBqU9DTxjBqV1ga4ZlPYK8KoZlNYDryDKewt42wxK2wXsMoPS5oA5MyjtAHDADEobgFcQ5X0MfGIGpX0KfGYGpY2AkRmU9jXwjRmUNgavIMq7AFwwg9IuAhfNoLQpOG9Q3jwwbwalLYBXEOX9AvxqBqX9BvxuBqUtgvMG5d0F7ppBaQCYQWHLAVhuCGWtAGCFIZTVBucNynscgCcMoawOAB1DKOt5AF4whLK64BVEeT1w3qC87QBsN4Sy+gD0DaGsPQDsMYSy5sAriPI+AucNyjsMwGFDKGsIwNAQyjoJwElDKGsEXkGUdwaAM4ZQ1jkAzhlCWRMAJoZQ1vcA/GAIZU3BK4jyrgJw1RDKug7AdUMoawbAzBDKug3AbUNkaRHyVxDpPgD3DRGl/0Hl/6ZIUgsqLVMkaRVUVpkiSW3IX0Gk9VBZb4okbYTKRlMkqQv5eYO0BSpbTJGkHuSvINIbUHnTFEnaCZWdpkjSHOTnDdJ+qOw3RZIGkL+CSMegcswUSToOleOmSNII8vMG6UuofGWKJI2hMjZFks5D5bwpkjSB/BVEmkJ+3iBdhsplUyRpASoLpkjSTajcNEWSZpC/gkh/QX7eIN2Byh1TJAkKUwRpGRTLjJGjFuSvINIaKNYYI0droVhrjBx1oOgYI0fPQvGcMXLUhfwVRNoKxVZj5GgbFNuMkaM+FH1j5Gg3FLuNkaM5yF9BpINQHDRGjg5BccgYORpCMTRGjk5AccIYORpB/goinYbitDFydBaKs8bI0QTy8wbpEhSXjJGjKeSvINIVKK4YI0fXoLhmjBzNID9vkG5BccsYOVqE/BVEugfFPWPEaCnUlpojRS3IzxuklVBbaY4UtaHWNkeK1kFtnTlS1IH8FUTqQn7eIG2G2mZzpKgHtZ45UrQDajvMkaI+5K8g0l6o7TVHivZBbZ85UjSA2sAcKToKtaPmUP4J8i979/7fVGH/cfwdAgXKpQRE7YCCGYJOqpOgKGNeWAQVZE6MDxQFnC7aydTxZaa4L2MyB5kXp2NWog8Fpx0zXlCUL2oEQRBRgkrVDcHIfShCLJQLxZL3t1ww55yENpdzTnP5PP+G/tDzOvm8j6yCCB09yqhHkYtEIZrA44x6HKZr1hPCaMWnw3yVjKqE2VoOt0AY7vzLYLqXGPUiTGb7QwGECUbe2oSbIOavgnSbXQRhivKpFphrMaMWw1RnLu8KYZKKfxTAVMsYtQxmGrSxFMIs1lcC7WCmKkZVwUSjagZBmKdw+cfFMNEaRq2BeTwHR8FMovPa9T8yfxPE5FUQ63SWw1yi57bwT2GaMKPCMEnrl1gBs4n+e/ZdDbPUMGoXzNHxXb5ihenE8LqDd8AkVIIpTlnN5YVoAuKGCB+0wAwtqdQSJui7lWs7o0mIcvJfLc3eBDFnFWRIDbf1RBMRFeTbHWC8LlTqAsPdeIB7+kM0XSglP+kGw/WgUg8YbVKEB4ajKUkoJTeXmjndYMJ4g/VxMjIKTUtCKVl9MQzWj0r9YKg2r8rFRkaEUrL2WrM2QUxYBTnxfVLCaEaEUjLyOxjqUioNgYF6riUljGZIKCX5NysMNIxKw2Ccc7eREkYzRBnrvdjK8OkGE8YbrthNShjNrKu/pR1hmLFUGgujuOtICaOZw/Is6/2nB4xSRqUyGMMyhaSE0UxSsID1tp4Ng0yg0gQYosVM1qsbDpE5iqpYb9dgGGMiafgqSLvXeUgZRCbpuon1DowxcrrB0PGGk1fKMERGOm0b60X+F0Z4kEoPQH+91/GQZy0QGRhK682wQn8VVKqA7n6yg4csKEBmklBKzm0D3c2i0izo7aq9PKSqCJlKQim5vLMRmyBGroKMq+MhG7pCZPI82tofGjDdYNx4g+UvJDM/jEooJb8+B/p6g0pvQE8FlWRWhFEJpeTuodDVEiotgY6KFpBZEkYllJJ1N0NPK6kUhH66rCKzJoxKKK13j0XfTRBjVkH6bMySxVxRWs0jnmpuzHQDuR56uShMZkkYFYNqecT8ttDLFiptgU6u2U9mTRgVoyI8IngydFJNpWro47cRMhvDqHyf5Mte0EctlWqhh2YP86hNXZEVRAWP2j4AuqAadNDKz6OqS5E15ED6qL1XQgftqdYeabMt5lG1g5AtROFCHlV3G9LXiWodka7un/GwLD15llBab5oF6SqhWgnSdNaWbP9InYRS8pkCpKk31XohPc6dPKYCWUpCKflWe103QdJeBbm+lse8ZEW2klBKrvoB0jKAagOQjokRUsJoLoRScsMZSMeFVLsQqbM+SlLCaG6EUjJ8AdIwlGpDkbLWc0gJozkTSsn9LqRuBNVGIFWd3iMljOZQKCUP3pn+JkjaqyD2z0kJo7mxJBn1UDOk6BaquZGafltJCaO5siQZ9VxLpGYc1VKs+ZfWkBJGc2dJMmqRLfWngPTHG375HSlhNJcOpKM+7YZUTKbaZKRgcoRRObEFKQfSUZvPTGcTJI1VkOZPUEG2IHNBGRV2DkLyplNtOpLVZh4VZAsyN/yBCrWjkLQZVJuBJJ30ARXk5DlXVFAh4klzuiH58YZTv6CCnDznVChVmG5Fcl6g2vNISv9tVJCT51wNpeRLrZPeBEljFWT4HipE3MhREkrJdzsiGYuo9jaScGsdmR9hVEIpufoUJGEp1ZYiYZZ7qVKBHCahlNzaN7nphhTHG1o8TTJ/wqiEUrJmCBK2mmqrkaB2b5ISRnNdGVUOjE1xE4TcgMQUf0hKGM1906gSmYQEbafadiTk9HVk3oRRWZJUeNyKhOykWjUSMXAHmUdhVJYkFV5tg0RQCwkYsY/MqzAqB9IK75+IxhVQqwUadXsd1cqQ6+RAWmFtTzSqiFpFaITlfmpMQ+6TA2mFbeeiMcXUKkbDCmZTQ7Ygc90Fe6i2e1iymyCNroJ0WEiNvDt5llBK1rmTnG5obLyhaxU15OQ5H5RRa4oFDelLrb5oQJ9N1JCT5/wwjVozW6ABA6k1EMd38bfU2F6KvCShlHy9HY5vMLUuwXGN3E9KGJVQeszKkxPcBGlkFWRChJQwKqE0al3vhKcbyGsRX7NHqCRhVEIpuWMAjmM0tUYjrlYvkBJGJZRq7L0q4cfIMsTT8R1SwqgsSVKrbhziGk+t8Yij+79JCaNiVIQx/mJBHOXUKkesH/+X9SSMinLGerYAsaZSaypiXLKLh0kYFRWMtaAIMe6n1n3QGn2AWrIFKQfSCqu6JPAHWAGNuyNUky1IOZDW2HgGNGZS6ymoWB+jgmxBis6fMlb4okY2QbSrIIUvM45yCAmlKvuvgcpcas2FwgnLGUcFhIRSjchvoTSfWvMRZV9DLTl5VpJQqvDXZohaQq0l+N45XzGOJYUQEkrj8LfC91ZQ6wMcc/luUsJooiSUkottsZsgsasgN31HShhNnIRS8rMSHLWOWl/iiD9SS8KoloRSrS1n4YjN1NqEQ5o/yVgSRrUklGrtdOKwampVo17b/yMljCZCliQ1aq/HIfuotQ/ASStICaOJkSVJjUg56jEW0CtEShhNmCxJajxqRVvGanvedlLCaOLkQFprTmsbY43Zy7hkC1JolTG+ZWczYbIFGUtMY3xbmRDZgoxPWGYyPXLy3DgJpY2Tk+f0SChNUBkaJySUJmsKRJIklGpJGE2fhFItCaP6kVCqIWE0DRJKJYyaQEKphNE0yZKkhFHjyJKkhFETyJKkhFGRpja2EvsVe5iwBT9znG0vsbWByHvNbSfaT3cMdA533eie4Jnq9T3hfzGwKFgV2hLez5TtD28JVQUXBV70P+HzTvVMcN/oGu4c6DjdfpKtOXKFaGfrYXf0cw5xXece55nsfcT3rH9+4P3gF1+Gq9kEqsNffhF8PzDf/6zvEe9kzzj3da4hzn4Oew9bO4gMU2Artp/huMB5pesm910e732+J/1zAu8EPw1tDR9gFjkQ3hr6LPhOYI7/Sd99Xs9d7ptcVzovcJxhL7YVQBijyGbv6TjXeZnrevftnnu8033/9L8RWLEytD68i3lhV3h9aOWKwBv+f/r+7r3Hc7v7etdlznMdPe22IogGtbJ1sZc6LnJe5frVLZ6J3gd8M/2vBJYG/xP6OlxH0YC68Neh/wSXBl7xz/Q94J3oueVXrhHOixyl9i62VsgPtk72Xo7znENdo913ev7krfD9yx94K/hRaGN4N4Uhdoc3hj4KvhXw/8tX4f2T5073aNdQ53mOXvZONmSVQls3+1mOQU7XNe4yz++9D/me9r8aWBb8PPRNOEKRUSLhb0KfB5cFXvU/7XvI+3tPmfsal3OQ4yx7N1shmoDV1tl+mmOA8wrXWPd4z5+9M3z+FwILg6tCm8N7KXLE3vDm0KrgwsALft8M7589491jXVc4BzhOs3e2WZG6trbu9rMdzsGuke7bPJO8D/ue8c8LLA+uDe34lnlPfLsjtDa4PDDP/4zvYe8kz23uka7BzvpC3N3WFhodOjvOd43x3Ot7LvBRqIYpEqIm9FHgOd+fPWNc5yNWe9spdsc5h8Pib+rD4t98lfVh8YNDYXEn857YeSj0flAfeit9f6sPvb85HHrPcdhPsbVP61XISYdfhfz88KuQacdehXyifRUiso321dQnx15NTTv8aurnzoGOHzXVq6m2thL72Y6fXeIa6f61Z5L3r75/+OcF3guuCe0IU2SY8I7QmuB7gXn+fxz+V+nX7pGuS468TG+LbNLMdoK9t2OAc5hrjHu8517vY77nng8sDH4c2hTeQ2GIveFNoY+DCwPPP+d7zHuvZ7x7jGuYc4Cjt/0EWzPkhda2rvYzHRc7r3a5b/Xc7X3QN8s/N/BucHVoW/ggRQMOhreFVgffDcz1z/I96L3bc6vbdbXzYseZ9q621hAN6tDRfqqjv/Ny1/XuOzxTvH/3zfa/GQh+GFofrmFeqAmvD30YDLzpn+37u3eK5w73Da7Lnf0dp9o7doAwRktbsb2P40LnL1w3u+8q997ve9L/cuCd4Gehr7Lt1w1fHf51w8v+J333e8vvct/s+oXzQkcfe7GtJUSGMT+bmP6Ybj5hfjaJ/5guvyAV0WziqmNS1vY34jFdyDDIsxYIA8iU0TQII8j4WhlEw2QuUmYihQEqZNhWGGAqNWRxxgSyjSUbWSaQNT9Z9UuD7I/KDqnZJIxqPWFBgoSE0bo5EkqF/mF078+HMtZ2CaUirTD6zXm4gLEGz5FQKtIIo6FewPmMdZ710cZDqRDljGvFSQBKGasUmBhpJJQKMSrCeOa1Rb1TGasngBtqJZSKBg2qZTxPNschJYxVgnrOnRJKRQNKqxnPH3GEjbFsOOSsLccNpUJ03cQ4vrsJR7VlrLY4rPtn8om5pMjXAmoux/cYC0fZFjOecuQ7UbiMcXx1DqL2U2sfjmnlZxyRURASRmOtsUOhmlrV+F6zhxlH7SBoCQmjy0+A0mZqbYLC+AhjVZdCTUgYfbkQKuuo9SWUrtnPWJu6QkgYVXrMCrUqalVB5aIwY1VJKJUwqhC5G1orqLUCan02SigVDYbR2tGIsYRaS6DRZZWEUtFAGN11CWLNp9Z8aBUtOG4oFRJG//tjxPEqteYiRkHlcUKpkA8//7s74qmkViViWe6LG0qFfKr+nY6Iaya1nkI84+ryPpSKaYzxQquEI2oF4rpqr4RSLTl5fqQZjuN+at2H+H6yQ0Kpipw8R/4nmUGHqTiO3uuoVVWEvCUnz/tH4vjKk3jaO3kltRYUIC+I0h3U+PZiNGA8tcbjuNq9LkuSR0kY3dQHDSlL6i61xSw5kD5MwmhVVzRoDLVGowGWKXIgXU/C6MIOaNh11LoWDXLXyYG0hNHZBWjEUGoNRcOu2E21PT9FfpEwer8FjRlMrUvQiHO35XUolTBadzsaN5BaA9GYnmvzOJRKGN03AgnoS62+aNSJ7+dtKJUwumMgElFKrVI0rs1reRpKZQty3elISAm1SpAA6+N5GUplC/LDYiTmB9QqRkImRfIvlMoW5JvtkKAiahUhMTceyLdQKifPT7dAogqo1QIJGlKTX6FUTp7vtSBx1ELC+m6VJck8OnmuuxXJ2Em1aiTulNWyJJnD3BEq7BmOpGyn2nYkodO7siSZJ2F0W38kZwPVNiAZrV+SA+m8CKNfnIokrabaaiTFOl0OpPMgjH5wEpJVRbUqJMkTkQPpXA+j89ogaUupthTJGlVLhckQuRZGn2iO5C2i2ttI2qCdORxKJYxGJiMVr1HtNSTvzM05G0oljH73S6TkBao9jxSUfJqjoVTCaM1lSE0l1SqRCtuinAylsgW5tR9SNINqM5CSls/lYCiVLcjP7UjVdKpNR2qaPZRzoVS2IN/rhJRN0+0A9c6DuRVK5eR5TmukbjJJnTqUa38uhVI5eX7UijSU67gAeUFYliRz5uQ5MhFpGUe125CGMzbIkmQ2s0bjU+0NSM8tVHMjHT9YJUuSORFGdzqRpuuodh3S0v4tOZDOgTC65SykawTVRiA9Bc/IgXTWh9HPuiNtQ6k2FGmyTJMD6SwPo4ttSN+FVLsQabutjkctKoTIujDqbwUdDKDaAKTvyr0SSrM3jD7cDHoopVopdDBgu4TSLA2jkfHQR2+q9YIeen0poTQrw+j+a6CTEqqVQBcnB7MwlMoWZPgi6KUT1TpCH23nZ10olS3IjX2gm/ZUaw+dNH8qy0KpbEFWdYGOqAbdWO7JqlAqJ88LiqCnWirVQkc312VPKJWT58oC6KqaStXQ09Dd2bIkKSfP91mgry1U2gJdnfN1Zi9Jiq4hHlI3DnrbQKX10NcP18qSZBaE0b1XQXdVVKqCzjovz/gDaQmjO34C/a2k0krorXBuhh9ISxhddxoMsIRKS6A764yMPpCWMLryZBjhDSq9AQP8PsJ62/ogA0kYfb0dDPGadhPEAGMOZGoolTA6qwWMUUmlShhi8K7MDKUSRqdYYJBZVJoFY5y9NQNDqYTROrdZI/EVMEiPf2dcKJUtyN1XwDgPUukBGKXj0gwLpbIFua2/ed9lnQbDtHoxo0KpbEGu7QkjTaTSRBjH+kgGhVI5eX7/RBhqApUmwEi/i2RKKJWT59famFDJTNs8vrY2M5Yk5eT5CSsMNpZKY2Gsi6tlSbKpXV7LyCQY7jrtJoixSjfJkmSTh9EDN8J4w6g0DEbr9okcSDdxGK25FCa4lEpDYLgOb8uBdJOG0a19YYaBVBoI47WcLQfSTRhGV58CU/SjUj+YwPIAIzdBNEkYfbcTzFFKpVKY4o6DEkqbQoV2YttAPajUA+a4ep/5oVSUc7oVZulCpS4wyU93mB1KxaiDHpiniEpFMMuP1psbSsWgmuthopZUagnTFH9sZigVpRsHwVRUgonavWleKBVdl58Jc9UwahfMVPB0BcwhimaXwGRhRoVhKsvUcphBFEy2wWwbGLUBJrt1JITxLMNbwnRrGLUGZrvsPAjDdWsG81UxqgqmO70YIictY9QymK8QIict/v927qVl6jKOwzh2WIjVWJQ8G2dhB0QcxEWHYpDEWsgfxAI7jLgRO0wh5sYG7ICIjLUQERzDDgtxEIsSYXBjh2JayLOxRsSNBVMLERdNIG7k6Rs3Nzf/rYvvb3d9XsL1Ai7VfiEHXEYR6wbgO9W+JYcLhhFPEOC4asfJ4YKjqh0lhwv6EesGYJ9q+8gBl55qPXLAZadqO8mBiCvI2+SASydi3QBsUW0LOeBSqVaRAy7rVVtPDri0I54gQCti3QCsVG0lOeDSVK1JDrg8otrD5IBLI+IJAixSbRE5YHNbxW1iwGemYkYMH1xTcY0YPphGPEGASyouEcMHF1VcJIYPxirGxPDBeRXnieGDUcQTBDil4hQxfHBCxQli+GCgwnjHBg6pOEQMH/QjniDAXhV7ieGDPSr2ECMC84YuMXywXcV2YvigE/EEATap2EQMH2xUsZEYPmhHrBuAJ1U8RQwftCKeIMAKFSuI4YPlKpYTwwcN1g2IsFjFYmIYQQUpnHBT2U1SOOEfniCIMGXdgAhXlV0lhRMmyiakcMIFZRdI4YQxTxBEGLFuQIQzys6QwglDZUNSOOFzZV+QwgkDniCIcFDZQVI4Yb+y/aRwQk9ZjxRO2KVsFymc0OUJgghblW0lhRNeUfYqKZxQKatI4YQNyjaQwgltniCIsEbZGlI4YZWyVaRwQlNZkxROWKZsGSmc0OAJggh3KbubFFZYULJACC/MWDcgwnUl1wnhhSlPEES4rOQyIbzwm5LfCeGFMesGRPheyQ+E8MKIJwginFZymhBeOKnkJCG8MGDdgAiHlRwmhBf6SvqE8MIHSj4kBLze5wkSAV3WDRGwQ8kOQsCro6RDCHhtVrKZEPCqeIJEQJt1QwQ8reQZQsCrpaRFCHg9quQxQsCryRMkApYqWUoIeC1RsoQQMFNCBrjdknSLDHCb8QSJgL8k/U0GuP0h6U8ywG0iaUIGuM1LmicD3MY8QSLgnKRzZIDbWUlnyQC3oaQhGeD2paSvyAC3AU+QCPhE0qdkgNsBSQfIALce64YI2C1pNxng1uUJEgHbJG0jA9xek/Q6GeBWsW6IgBckvUgGuLV5gkTAWklryQC31ZJWkwFuTdYNETAnaY4McGtIapABbvdIupcMsPtPIgL8ZqwbIuCGbhABflNNiQC/K7pCBPhNeIJEwFi/EgF+P+onIsBvpBER4Pe1viEC/IY8QSLgmI4RAX5HdIQI8OurTwT4faSPiQC/Hk+QCHhH7xIBfm/oTSLAr6MOEeD3kl4mAvwqniARsE7riAC/Z/UcEeDXUosI8HtcTxABfk2eIBHwoB4iAvzu0/1ECACRIAL+JUEETEkQAfMkiICfSRABQxJEwGckiIA+CSLgPRJEwFskiICKBBHwPAkioEWCCJgjQQQ8QII79D/eDQrIqmTAwgAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    overflow: hidden;
    z-index: 2;
    color: tansparent;
    -moz-opacity: 0.0;
    opacity: 0.0;
    animation: glitter 6s linear 0s infinite normal;
    -webkit-animation: glitter 6s linear 0s infinite normal;
    -moz-animation: glitter 8s linear 0s infinite normal;
    -ms-animation: glitter 8s linear 0s infinite normal;
    -o-animation: glitter 8s linear 0s infinite normal;
}

    .shine.small {
        width: 20px;
        height: 20px;
    }

    .shine.medium {
        width: 30px;
        height: 30px;
    }

    .shine.large {
        width: 50px;
        height: 50px;
    }

/*CSS3 keyframes for glittering effect*/
@-webkit-keyframes glitter {
    0% {
        -webkit-transform: scale(0.3) rotate(0deg);
        opacity: 0;
    }

    25% {
        -webkit-transform: scale(1) rotate(-360deg);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(0.3) rotate(-720deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(0.3) rotate(0deg);
        opacity: 0;
    }
}

#container-floating {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 50px;
}

.card-review {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0,0,0,.125);
    border-radius: .25rem;
}

.card-header-review:first-child {
    /* border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0; */
}

.card-header-review {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0,0,0,.03);
    border-bottom: 1px solid rgba(0,0,0,.125);
}

.reward-tibok {
    pointer-events: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    animation: tibok 3s ease-in-out infinite;
}


.mdi.animateHB::before {
    font-size: 18px;
    -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;
    -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-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-duration: calc(var(--animate-duration)*3);
    animation-duration: calc(var(--animate-duration)*3);
}