@charset "UTF-8";
.countdown {
    font-family: arial;
    text-transform: uppercase
}

.countdown>div {
    display: inline-block
}

.countdown>div>span {
    display: block;
    text-align: center
}

.countdown-container {
    margin: 0 3px
}

.countdown-container .countdown-heading {
    font-size: 11px;
    margin: 3px;
    color: #666
}

.countdown-container .countdown-value {
    font-size: 50px;
    background: #6273c9;
    padding: 10px;
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, .4)
}


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */

@-webkit-keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    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);
        transform: translate3d(0, -30px, 0)
    }
    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);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0%,
    20%,
    53%,
    80%,
    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);
        transform: translate3d(0, -30px, 0)
    }
    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);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

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

@keyframes flash {
    0%,
    50%,
    to {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -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)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-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)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    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 shake {
    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)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: 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)
    }
}

.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)
    }
}

.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)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    0%,
    11.1%,
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
    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)
    }
}

.bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -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);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: 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);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: 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);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: 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);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0%,
    60%,
    75%,
    90%,
    to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: 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);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.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)
    }
}

.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

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

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

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

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

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

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%,
    45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -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)
    }
}

.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)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

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

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

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

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

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

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

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

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

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

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

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

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

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

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

.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)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }
    to {
        opacity: 0;
        -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)
    }
}

.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)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

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

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

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

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

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

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

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

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

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

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

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

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

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

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

.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)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-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
    }
}

.animated.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)
    }
}

.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)
    }
}

.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
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -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
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    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 lightSpeedIn {
    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)
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

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

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

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

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

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

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

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

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

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

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

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

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

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

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

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

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

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

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

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

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

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

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

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

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

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

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

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

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

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

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

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

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

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    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)
    }
}

.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)
    }
}

.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)
    }
}

.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
    }
}

.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)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.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
    }
}

.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-transform-origin: center bottom;
        transform-origin: center bottom;
        -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-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-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);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

@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);
        -webkit-transform-origin: left center;
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.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);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

@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);
        -webkit-transform-origin: right center;
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.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-transform-origin: center bottom;
        transform-origin: center bottom;
        -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-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

@-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)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

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

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

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

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

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

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

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

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

.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)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

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

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

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

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

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

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

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

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

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

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

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

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

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

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

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

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

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

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

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

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

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

@font-face {
    font-family: Poppins LT;
    src: url(/assets/fonts/Poppins-Light.eot);
    src: url(/assets/fonts/Poppins-Light.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/Poppins-Light.woff2) format("woff2"), url(/assets/fonts/Poppins-Light.woff) format("woff"), url(/assets/fonts/Poppins-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Poppins B;
    src: url(/assets/fonts/Poppins-Bold.eot);
    src: url(/assets/fonts/Poppins-Bold.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/Poppins-Bold.woff2) format("woff2"), url(/assets/fonts/Poppins-Bold.woff) format("woff"), url(/assets/fonts/Poppins-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Poppins SM;
    src: url(/assets/fonts/Poppins-SemiBold.eot);
    src: url(/assets/fonts/Poppins-SemiBold.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/Poppins-SemiBold.woff2) format("woff2"), url(/assets/fonts/Poppins-SemiBold.woff) format("woff"), url(/assets/fonts/Poppins-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Poppins MD;
    src: url(/assets/fonts/Poppins-Medium.eot);
    src: url(/assets/fonts/Poppins-Medium.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/Poppins-Medium.woff2) format("woff2"), url(/assets/fonts/Poppins-Medium.woff) format("woff"), url(/assets/fonts/Poppins-Medium.ttf) format("truetype");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Poppins;
    src: url(/assets/fonts/Poppins-Regular.eot);
    src: url(/assets/fonts/Poppins-Regular.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/Poppins-Regular.woff2) format("woff2"), url(/assets/fonts/Poppins-Regular.woff) format("woff"), url(/assets/fonts/Poppins-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Source Sans Pro;
    src: url(/assets/fonts/SourceSansPro-SemiBold.eot);
    src: url(/assets/fonts/SourceSansPro-SemiBold.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/SourceSansPro-SemiBold.woff2) format("woff2"), url(/assets/fonts/SourceSansPro-SemiBold.woff) format("woff"), url(/assets/fonts/SourceSansPro-SemiBold.ttf) format("truetype");
    font-weight: 600;
    font-style: normal
}

@font-face {
    font-family: Source Sans Pro;
    src: url(/assets/fonts/SourceSansPro-Light.eot);
    src: url(/assets/fonts/SourceSansPro-Light.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/SourceSansPro-Light.woff2) format("woff2"), url(/assets/fonts/SourceSansPro-Light.woff) format("woff"), url(/assets/fonts/SourceSansPro-Light.ttf) format("truetype");
    font-weight: 300;
    font-style: normal
}

@font-face {
    font-family: Source Sans Pro;
    src: url(/assets/fonts/SourceSansPro-Bold.eot);
    src: url(/assets/fonts/SourceSansPro-Bold.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/SourceSansPro-Bold.woff2) format("woff2"), url(/assets/fonts/SourceSansPro-Bold.woff) format("woff"), url(/assets/fonts/SourceSansPro-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Source Sans Pro;
    src: url(/assets/fonts/SourceSansPro-Regular.eot);
    src: url(/assets/fonts/SourceSansPro-Regular.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/SourceSansPro-Regular.woff2) format("woff2"), url(/assets/fonts/SourceSansPro-Regular.woff) format("woff"), url(/assets/fonts/SourceSansPro-Regular.ttf) format("truetype");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: glm;
    src: url(/assets/fonts/glm.eot);
    src: url(/assets/fonts/glm.eot#iefix) format("embedded-opentype"), url(/assets/fonts/glm.ttf) format("truetype"), url(/assets/fonts/glm.woff) format("woff"), url(/assets/fonts/glm.svg#glm) format("svg");
    font-weight: 400;
    font-style: normal
}

.glm {
    font-family: glm!important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    -webkit-font-feature-settings: normal;
    font-feature-settings: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.glm_close:before {
    content: "\E904"
}

.glm_left-quote:before {
    content: "\E900"
}

.glm_right-quote:before {
    content: "\E901"
}

.glm_calendar:before {
    content: "\E902"
}

.glm_placeholder:before {
    content: "\E903"
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body,
html {
    font-family: Poppins;
    font-weight: 400;
    font-style: normal
}

body {
    width: 100%
}

h1 {
    font-size: 54px
}

h2 {
    font-size: 3em
}

h3 {
    font-size: 2em
}

h4 {
    font-size: 1.875em
}

h5 {
    font-size: 1.5625em
}

h6 {
    font-size: 1.125em
}

.container {
    margin: 0 auto;
    max-width: 1200px;
    width: 100%
}

.allCapes {
    text-transform: uppercase
}

.text-right {
    text-align: right
}

.text-left {
    text-align: left
}

.float-left {
    float: left
}

.float-right {
    float: right
}

.services-info {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px
}

.services-info .service-info-img {
    width: 50%;
    display: inline-block
}

.services-info .service-info-img img {
    max-width: 100%
}

.services-info .service-info-img.float-right {
    text-align: right
}

.services-info .service-info-img.float-center {
    float: none
}

.services-info .service-info-content {
    width: 50%;
    display: inline-block;
    float: left;
    padding-left: 20px
}

.services-info .service-info-content .content-head {
    font-size: 24px;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px
}

.services-info .service-info-content .content-head:after {
    content: "";
    display: block;
    margin: 20px auto 0 0;
    height: 4px;
    width: 75px;
    background: #011eff
}

.services-info .service-info-content .content-head.color-blue {
    color: #011eff;
    font-weight: 400
}

.services-info .service-info-content .content-head.color-blue strong {
    font-weight: 700;
    display: block;
    margin-bottom: 10px
}

.services-info .service-info-content .content-head.color-blue:after {
    display: none
}

.services-info .service-info-content p {
    text-align: left
}

.services-info .service-info-content.text-right {
    padding-left: 0;
    padding-right: 20px
}

.services-info .service-info-content.text-right .content-head:after {
    margin-left: auto;
    margin-right: 0
}

.services-info .service-info-content.text-right p {
    text-align: right!important
}

.services-info .service-info-content.float-center {
    float: none
}

.services-info.full_width {
    width: 100%
}

.services-info.full_width .service-info-img {
    width: auto
}

.services-info.full_width .service-info-content {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin-top: 20px
}

.about-info .services-info {
    display: inline-block;
    width: 100%
}

.about-info .services-info .service-info-img {
    width: 15%
}

.about-info .services-info .service-info-content {
    width: 85%
}

.about-info .services-info .service-info-content strong {
    font-weight: 600
}

.about-info .services-info .service-info-content.full-width {
    width: 100%
}

.work_with_glm_content .col-2 {
    float: left;
    padding-right: 20px
}

.work_with_glm_content .col-2:nth-child(2) {
    padding-left: 20px;
    padding-right: 0
}

.work_with_glm_content .col-2 .service-info-content {
    width: 100%;
    padding-left: 0
}

.text-center {
    text-align: center
}

.text-center p {
    text-align: center!important
}

.contact_us_block .col-2 {
    display: inline-block;
    float: none
}

.contact_us_block .col-2,
.contact_us_block .content-block {
    width: 49%;
    vertical-align: middle
}

.contact_us_block .content-block h3 {
    font-weight: 400;
    text-transform: none;
    font-size: 30px;
    line-height: 1.5
}

.contact_us_block+.services-info {
    display: inline-block;
    width: 100%;
    margin-top: 40px
}

.contact_us_block+.services-info .content-head {
    font-size: 24px;
    color: #222;
    font-weight: 600;
    margin-bottom: 20px
}

.contact_us_block+.services-info .content-head:after {
    content: "";
    display: block;
    margin: 20px auto 0 0;
    height: 4px;
    width: 75px;
    background: #011eff
}

.contact_us_block+.services-info .content-head+h4 {
    font-size: 24px;
    margin-top: 20px;
    display: inline-block;
    width: 100%
}

.contact_us_block+.services-info .col-3 {
    padding-left: 0;
    padding-right: 20px;
    float: left;
    width: 30%;
    margin-top: 40px
}

.contact_us_block+.services-info .col-3.first-child {
    width: 40%
}

.contact_us_block+.services-info .col-3:last-child {
    padding-right: 0
}

.contact_us_block+.services-info .col-3 p {
    margin-bottom: 0!important
}

.contact_us_block+.services-info .col-3 .subcontent-head {
    color: #011eff;
    margin-bottom: 20px!important
}

.contact_us_block+.services-info .col-3 a {
    color: #111;
    text-decoration: none
}

.contact_us_block+.services-info .col-3 address {
    margin-bottom: 20px
}

.contact_us_block+.services-info .col-3 address p {
    margin-bottom: 0
}

.contact_us_block+.services-info .col-3 address .subcontent-head {
    margin-bottom: 20px
}

.color-blue {
    color: #011eff
}

.full_width {
    width: 100%
}

.col-2 {
    width: 50%
}

.col-3 {
    width: 33.33333%
}

.email-us {
    text-decoration: none;
    color: #222
}

.emailUs_block {
    display: inline-block;
    width: 100%;
    padding: 80px 0;
    text-align: center;
    background: #f2f2f2
}

.slick-slider {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list,
.slick-slider {
    position: relative;
    display: block
}

.slick-list {
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-loading .slick-list {
    background: #fff url(/assets/_/node_modules/slick-carousel/slick/ajax-loader.gif) 50% no-repeat
}

@font-face {
    font-family: slick;
    src: url(/assets/_/node_modules/slick-carousel/slick/fonts/slick.eot);
    src: url(/assets/_/node_modules/slick-carousel/slick/fonts/slick.eot?#iefix) format("embedded-opentype"), url(/assets/_/node_modules/slick-carousel/slick/fonts/slick.woff) format("woff"), url(/assets/_/node_modules/slick-carousel/slick/fonts/slick.ttf) format("truetype"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfont id='slick' horiz-adv-x='512'%3E%3Cfont-face font-family='slick' units-per-em='512' ascent='480' descent='-32'/%3E%3Cglyph unicode='→' d='M241 113l130 130c4 4 6 8 6 13s-2 9-6 13L241 399c-3 3-7 5-12 5s-10-2-13-5l-29-30c-4-3-6-7-6-12s2-10 6-13l87-88-87-88c-4-3-6-8-6-13s2-9 6-12l29-30c3-3 8-5 13-5s9 2 12 5zm234 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29s-77 9-110 29c-34 20-60 46-80 80-20 33-29 70-29 110s9 77 29 110c20 34 46 60 80 80 33 20 70 29 110 29s77-9 110-29c34-20 60-46 80-80 20-33 29-70 29-110z'/%3E%3Cglyph unicode='←' d='M296 113l29 30c4 3 6 7 6 12s-2 10-6 13l-87 88 87 88c4 3 6 8 6 13s-2 9-6 12l-29 30c-3 3-8 5-13 5s-9-2-12-5L141 269c-4-4-6-8-6-13s2-9 6-13l130-130c3-3 7-5 12-5s10 2 13 5zm179 143c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29s-77 9-110 29c-34 20-60 46-80 80-20 33-29 70-29 110s9 77 29 110c20 34 46 60 80 80 33 20 70 29 110 29s77-9 110-29c34-20 60-46 80-80 20-33 29-70 29-110z'/%3E%3Cglyph unicode='•' d='M475 256c0-40-9-77-29-110-20-34-46-60-80-80-33-20-70-29-110-29s-77 9-110 29c-34 20-60 46-80 80-20 33-29 70-29 110s9 77 29 110c20 34 46 60 80 80 33 20 70 29 110 29s77-9 110-29c34-20 60-46 80-80 20-33 29-70 29-110z'/%3E%3Cglyph unicode='a' d='M475 439V311c0-5-1-9-5-13s-8-5-13-5H329c-8 0-13 3-17 11-3 7-2 14 4 20l40 39c-28 26-62 39-100 39-20 0-39-4-57-11-18-8-33-18-46-32-14-13-24-28-32-46-7-18-11-37-11-57s4-39 11-57c8-18 18-33 32-46 13-14 28-24 46-32 18-7 37-11 57-11 23 0 44 5 64 15 20 9 38 23 51 42 2 1 4 3 7 3s5-1 7-3l39-39c2-2 3-3 3-6 0-2-1-4-2-6-21-25-46-45-76-59-29-14-60-20-93-20-30 0-58 5-85 17s-51 27-70 47c-20 19-35 43-47 70s-17 55-17 85 5 58 17 85 27 51 47 70c19 20 43 35 70 47s55 17 85 17c28 0 55-5 81-15 26-11 50-26 70-45l37 37c6 6 12 7 20 4 8-4 11-9 11-17z'/%3E%3C/font%3E%3C/defs%3E%3C/svg%3E"#slick) format("svg");
    font-weight: 400;
    font-style: normal
}

.slick-next,
.slick-prev {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
    border: none
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
    background: transparent;
    color: transparent;
    outline: none
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
    opacity: 1
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
    opacity: .25
}

.slick-next:before,
.slick-prev:before {
    font-family: slick;
    font-size: 20px;
    line-height: 1;
    color: #fff;
    opacity: .75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: -25px
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px
}

.slick-prev:before {
    content: "\2190"
}

[dir=rtl] .slick-prev:before {
    content: "\2192"
}

.slick-next {
    right: -25px
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto
}

.slick-next:before {
    content: "\2192"
}

[dir=rtl] .slick-next:before {
    content: "\2190"
}

.slick-dotted.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    margin-bottom: 4px;
}
.clients--slider.slick-dots li{
    margin: 0 2px;
}

.slick-dots li,
.slick-dots li button {
    height: 20px;
    width: 20px;
    cursor: pointer;

}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px
}

.slick-dots li button:focus,
.slick-dots li button:hover {
    outline: none
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
    opacity: 1
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "\2022";
    width: 20px;
    height: 20px;
    font-family: slick;
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: #000;
    opacity: .25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    color: #000;
    opacity: .75
}

header {
    width: 100%;
    position: fixed;
    top: 25px;
    left: 0;
    z-index: 1;
    transition: all .5s
}

header.sticky {
    position: fixed;
    top: 0
}

header.sticky .header--container {
    max-width: 100%
}


header.conference .header--container {
    box-shadow: unset
}

/*header.conference nav {
    background-color: transparent
}
*/
/*header.conference nav .sub--menu li,
header.conference nav .sub--menu li a {
    color: #fff
}*/

header.conference nav .sub--menu li.dropdown li a {
    color: #222
}

header .header--container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .38);
    transition: all .5s
}

header nav {
    width: 100%;
    background-color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

header nav .glm--logo.hide {
    display: none
}

header nav .sub--menu {
    display: flex;
    justify-content: space-between;
    align-items: center
}

header nav .sub--menu li {
    font-family: Poppins MD;
    margin-left: 30px;
    font-size: 1em;
    color: #222;
    font-weight: 600;
    padding: 10px 0
}

header nav .sub--menu li a {
    color: #222;
    text-decoration: none;
    outline: none
}

header nav .sub--menu li.dropdown {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    cursor: pointer
}

header nav .sub--menu li.dropdown:before {
    content: " ";
    background-color: #ffe21f;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px
}

header nav .sub--menu li.dropdown:hover .dropdown--menu {
    display: block
}

header nav .sub--menu li.dropdown .dropdown--menu {
    display: none;
    min-width: 170px;
    position: absolute;
    top: 36px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .38)
}

header nav .sub--menu li.dropdown .dropdown--menu li {
    width: 100%;
    padding: 15px 20px;
    text-align: left;
    margin: 0
}

.fake--header {
    width: 100%;
    height: 112px
}

.banner-1 {
    width: 100%
}

.banner--wrap .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
}

.banner--wrap .banner img {
    width: 100%
}

.banner--wrap .banner .banner--content {
    position: absolute
}

.banner--wrap .banner .banner--content .banner--text {
    font-family: Poppins B;
    font-size: 3em;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 55px
}

.banner--wrap .banner .banner--content .banner--text span {
    color: #011eff;
    display: block
}

.upcoming--events-wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch
}

.upcoming--events-wrap .events-left,
.upcoming--events-wrap .events-right {
    width: 50%;
    /*max-width: 600px;*/
    padding: 28px;
}

.upcoming--events-wrap .events-left .events--inner,
.upcoming--events-wrap .events-right .events--inner {
    width: 100%;
    max-width: 600px;
}

.upcoming--events-wrap .events-left {
    background-color: #eff0f1;
    position: relative
}

.upcoming--events-wrap .events-left:after {
    content: "";
    display: block;
    position: absolute;
    border-left: 8px solid #eff0f1;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    left: 100%;
    top: calc(50% - 8px)
}

.upcoming--events-wrap .events-left .events--inner {
    margin-left: auto
}

.upcoming--events-wrap .events-left .events--inner .upcoming--events--header {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px
}

.upcoming--events-wrap .events-left .events--inner .upcoming--events--title {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 35px
}

.upcoming--events-wrap .events-left .events--inner p {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #111;
    line-height: 20px;
    margin-bottom: 40px
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap,
.upcoming--events-wrap .events-left .events--inner .event--details-wrap li {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap li:first-child {
    margin-right: 45px
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap li .glm {
    font-size: 25px;
    width: 25px;
    margin-right: 20px
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap li .event--details {
    font-size: 16px;
    color: #111
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap li .event--details span:first-child {
    font-weight: 600;
    display: block;
    padding-bottom: 5px
}

.upcoming--events-wrap .events-right {
    background-color: #011eff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.upcoming--events-wrap .events-right .events--inner {
    margin-right: auto;
    padding: 0 30px
}

.upcoming--events-wrap .events-right .events--inner .countdown--title {
    font-family: Source Sans Pro;
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px
}

.upcoming--events-wrap .events-right .events--inner .countdown {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container {
    margin: 0;
    display: flex;
    flex-direction: column-reverse
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-heading {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #fff
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-value {
    background-color: transparent;
    padding: 0;
    text-shadow: none;
    font-size: 72px;
    color: #fff;
    font-family: Poppins;
    font-weight: 600
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom:after {
    content: ".";
    font-family: Source Sans Pro;
    font-size: 48px;
    margin-left: 20px;
    position: absolute;
    top: 0;
    right: -40px
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative
}

.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom:after {
    content: ":";
    font-family: Source Sans Pro;
    font-size: 48px;
    margin-left: 20px;
    position: absolute;
    top: 10px;
    right: -40px
}

.upcoming--events-wrap .events-right .events--inner .book_seat_link {
    display: block;
    width: 100%;
    background-color: #fff;
    margin-top: 20px;
    padding: 15px 0;
    text-align: center;
    border-radius: 4px;
    font-size: 20px;
    color: #011eff;
    font-weight: 600;
    text-decoration: none
}

.upcoming--events-wrap .events-right .events--inner .book_seat_link.book_seat_link--transparent {
    background: transparent;
    color: #fff;
    border: 1px solid #fff
}

.upcoming--events-wrap .events-right .events--inner .btn-grp {
    display: inline-block;
    width: 100%;
    margin-top: 10px
}

.upcoming--events-wrap .events-right .events--inner .btn-grp .btn_col_2 {
    width: 48%;
    margin-right: 2%;
    display: inline-block
}

.upcoming--events-wrap .events-right .events--inner .btn-grp .btn_col_2:last-child {
    margin-right: 0
}

.tour--details-wrap {
    padding: 80px 0;
    background-color: #fff;
    background-repeat: no-repeat
}

.tour--details-wrap.first--con {
    background-image: url(/assets/images/circle-1.png);
    background-position: 0 40px
}

.tour--details-wrap.second--con {
    background-image: url(/assets/images/circle-2.png);
    background-position: 100% 40px
}

.tour--details-wrap .tour--details-title {
    text-align: center;
    font-size: 24px;
    color: #222;
    font-weight: 600;
    margin-bottom: 80px
}

.tour--details-wrap .tour--details-title:after {
    content: "";
    display: block;
    margin: 20px auto 0;
    height: 4px;
    width: 75px;
    background: #011eff
}

.tour--details-wrap .tour--card {
    width: calc(100% - 240px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
        align-items: center;
    justify-content: center;
}

.tour--details-wrap .tour--card .tour--details {
    width: 51%
}
.tour--details-wrap.second--con .tour--card .tour--details{
    padding-left: 40px;
}

.tour--details-wrap .tour--card .tour--details .upcoming--events--title {
    font-size: 36px;
    font-weight: 600;
    color: #111;
    margin-bottom: 35px
}

.tour--details-wrap .tour--card .tour--details p {
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #111;
    line-height: 20px;
    margin-bottom: 40px
}

.tour--details-wrap .tour--card .tour--details .event--details-wrap,
.tour--details-wrap .tour--card .tour--details .event--details-wrap li {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.tour--details-wrap .tour--card .tour--details .event--details-wrap li:first-child {
    margin-right: 25px
}

.tour--details-wrap .tour--card .tour--details .event--details-wrap li .glm {
    font-size: 20px;
    width: 20px;
    margin-right: 10px
}

.tour--details-wrap .tour--card .tour--details .event--details-wrap li .event--details {
    font-size: 14px;
    color: #111
}

.tour--details-wrap .tour--card .tour--details .event--details-wrap li .event--details span:first-child {
    font-weight: 600;
    display: block;
    padding-bottom: 5px
}

.tour--details-wrap .tour--card .tour--details .read_more_link {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    color: #011eff;
    border: 2px solid #011eff;
    padding: 20px 50px;
    text-align: center;
    text-decoration: none;
    margin-top: 50px;
    border-radius: 6px
}

.tour--details-wrap .tour--card .tour--details .read_more_link:hover {
    background-color: #011eff;
    color: #eff0f1
}

.tour--details-wrap .tour--card .card--img {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2)
}

.tour--details-wrap .tour--card .card--img-wrap-1 {
    position: relative
}

.tour--details-wrap .tour--card .card--img-wrap-1:before {
    content: url(/assets/images/shape-1.png);
    width: 140px;
    height: 258px;
    position: absolute;
    top: -15%;
    left: -25%
}

.tour--details-wrap .tour--card .card--img-wrap-2 {
    position: relative
}

.tour--details-wrap .tour--card .card--img-wrap-2:after {
    content: url(/assets/images/shape-2.png);
    width: 140px;
    height: 258px;
    position: absolute;
    top: -15%;
    right: -25%
}

.clients--wrap {
    /*background-image: url(/assets/images/clients-bg.jpg);*/
    position: relative;
    background: #fff;
    margin-bottom: 40px;
}
.clients--wrap.clients--wrap--blue{
    background: url(/assets/images/clients-bg.jpg);
    margin-bottom: 0;
}
.clients--wrap .clients--container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0
}

.clients--wrap .clients--main .clients--title {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    text-align: center
}

.clients--wrap .clients--main .clients--slider {
    margin: 30px 0
}

.clients--wrap .clients--main .clients--slider img {
    margin: 0 65px;
    outline: none;
    border: 0
}

.clients--wrap .clients--main .clients--slider .slick-track {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.clients--wrap .clients--main .clients--slider .slick-dots {
    bottom: -80px
}

.clients--wrap .clients--main .clients--slider .slick-dots li button:before {
    color: #c9c9c9;
    font-size: 40px;
    opacity: .5
}

.clients--wrap .clients--main .clients--slider .slick-dots li.slick-active button:before {
    color: #011eff;
    opacity: 1
}

.clients--wrap .more--clients-wrap {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #fff;
    width: 18.5%;
    height: 100%;
    padding: 50px 0;
    font-size: 36px;
    font-weight: 300;
    color: #000;
    font-family: Source Sans Pro;
    display: flex;
    align-items: center;
    justify-content: center
}

.testimonial--wrap {
    padding: 80px 0;
    background-color: #fff
}

.testimonial--wrap .testimonial--main {
    width: 700px;
    margin: 0 auto
}

.testimonial--wrap .testimonial--main .testimonial--title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    text-align: center
}

.testimonial--wrap .testimonial--main .testimonial--title:after,
.testimonial--wrap .testimonial--main .testimonial--title:before {
    font-family: glm;
    font-size: 40px;
    color: #eff0f1
}

.testimonial--wrap .testimonial--main .testimonial--title:before {
    content: "\E900"
}

.testimonial--wrap .testimonial--main .testimonial--title:after {
    content: "\E901"
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap {
    width: 100%;
    margin: 30px auto
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap .testimonial--content {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #222;
    text-align: center;
    margin: 0 20px
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap .testimonial--content strong {
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
    width: 100%
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap .slick-dots {
    margin: 10px 0;
    bottom: -50px
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap .slick-dots li button:before {
    color: #c9c9c9;
    font-size: 40px;
    opacity: 1
}

.testimonial--wrap .testimonial--main .testimonial--card-wrap .slick-dots li.slick-active button:before {
    color: #011eff
}

.eventsPhotos--wrap {
    width: 100%;
    padding: 20px 0 0
}

.eventsPhotos--wrap .eventsPhotos--title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    text-align: center;
    margin-bottom: 40px
}

.eventsPhotos--wrap .eventsPhotos--main {
    display: flex;
    justify-content: flex-start;
    align-items: stretch
}

.eventsPhotos--wrap .eventsPhotos--main li {
    width: 20%
}

.eventsPhotos--wrap .eventsPhotos--main li img {
    width: 100%
}

footer {
    background-color: #eff0f1;
    padding: 100px 0
}

footer .footer--wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

footer .footer--wrap ul li {
    font-size: 16px;
    color: #222;
    padding-bottom: 5px
}

footer .footer--wrap ul li a {
    color: #222;
    text-decoration: none;
    outline: none
}

footer .footer--wrap ul li:first-child {
    font-size: 18px;
    font-weight: 600;
    padding-bottom: 20px
}

.slick-dotted.slick-slider {
    margin-bottom: 0
}

.banner--wrap .slick-dots {
    width: auto;
    top: 50%;
    bottom: unset;
    left: unset;
    right: 0;
    display: flex;
    flex-direction: column;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.banner--wrap .slick-dots li button:before {
    color: #c9c9c9;
    font-size: 40px;
    opacity: 1
}

.banner--wrap .slick-dots li.slick-active button:before {
    color: #011eff
}

.conference--top-wrap {
    padding-top: 112px;
    background-image: url(/assets/images/about_us_banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px
}
.conference--top-wrap{
    background-image: url(/images/about_us_banner.png);
}

.conference--top-wrap.height-570 {
    padding-top: 0
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left .conference--details-wrap li {
    margin-right: 25px
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li .conference--details span:first-child {
    font-weight: 600;
    display: block;
    padding-bottom: 5px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li:nth-child(odd) {
    margin-bottom: 50px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li:nth-child(2n) {
    margin-top: 50px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li img {
    display: block;
    width: 148px;
    margin: 0 auto 10px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%)
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li img:hover {
    -webkit-filter: unset;
    filter: unset
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li .speaker--name {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 20px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li .speaker--desi {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 300;
    margin-bottom: 5px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li .company--name {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 300;
    font-style: italic;
    margin-top: 10px
}

.conference--tab-wrap .conference--tab-main .tab--panel .keypoints--wrap {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start
}

.conference--tab-wrap .conference--tab-main .tab--panel .keypoints--wrap .keypoints-img {
    width: 400px;
    margin-right: 40px
}

.conference--tab-wrap .conference--tab-main .tab--panel .keypoints--wrap p {
    margin-bottom: 15px
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap .attend-img {
    width: 557px;
    margin-right: 40px
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul li .glm {
    font-size: 45px;
    margin-right: 30px
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul li div {
    font-family: Source Sans Pro;
    color: #111
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul li div h4 {
    font-size: 24px;
    margin-bottom: 5px
}

.conference--tab-wrap .conference--tab-main .tab--panel .why--wrap ul li div span {
    font-size: 18px
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap {
    display: flex;
    justify-content: flex-start;
    align-items: stretch
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap .who-img {
    width: 557px;
    margin-right: 40px
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap ul {
    margin-bottom: 50px
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap ul:last-child {
    margin-bottom: 0
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap ul li {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    line-height: 20px
}

.conference--tab-wrap .conference--tab-main .tab--panel .who--wrap ul li:first-child {
    font-weight: 600
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap .media--main {
    width: 100%
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap .media--main .media--title {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap .media--main ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap .media--main ul li {
    margin-right: 100px
}

.conference--tab-wrap .conference--tab-main .tab--panel .media--wrap .media--main ul li:last-child {
    margin-right: 0
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 35px
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table {
    width: calc((100% - 50px)/2)
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li {
    border: 1px solid #d7d7d7;
    font-family: Source Sans Pro;
    color: #111
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li.title {
    font-size: 24px;
    padding: 25px 0;
    text-align: center
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li.table {
    display: flex;
    justify-content: space-between;
    align-items: stretch
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .timing {
    width: 25%;
    border-right: 1px solid #d7d7d7;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 0;
    text-align: center
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .event {
    width: 75%;
    font-size: 18px;
    padding: 15px;
    line-height: 20px;
    font-weight: 600
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .event p {
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .event ul {
    list-style: circle;
    padding: 10px 15px
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .event ul li {
    border: none;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px
}

.conference--tab-wrap .conference--tab-main .tab--panel .agenda--wrap .agenda--time-wrap .time--table li .event ul li:last-child {
    margin-bottom: 0
}

.breadcrumbs {
    font-family: Source Sans Pro;
    font-size: 16px;
    margin-bottom: 25px
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
    outline: none;
    margin-right: 5px
}

.breadcrumbs a.inner_page:before {
    content: "/";
    margin-right: 5px
}

.book--your-seatFloat {
    width: 100%;
    background-color: #011eff;
    padding: 15px 0;
    position: fixed;
    left: 0;
    bottom: 0
}

.book--your-seatFloat .book--your-seat-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left {
    width: 300px
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown--title {
    font-family: Source Sans Pro;
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container {
    margin: 0;
    display: flex;
    flex-direction: column-reverse
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container .countdown-heading {
    font-family: Source Sans Pro;
    font-size: 12px;
    color: #fff;
    text-align: center
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container .countdown-value {
    background-color: transparent;
    padding: 0;
    text-shadow: none;
    font-size: 30px;
    color: #fff;
    font-family: Poppins;
    font-weight: 600;
    text-align: center
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.days .days-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.days .days-bottom:after {
    content: ".";
    font-family: Source Sans Pro;
    font-size: 30px;
    margin-left: 10px;
    position: absolute;
    top: 0;
    right: -20px
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.hours .hours-bottom,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.hours .minutes-bottom,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.minutes .hours-bottom,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.minutes .minutes-bottom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.hours .hours-bottom:after,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.hours .minutes-bottom:after,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.minutes .hours-bottom:after,
.book--your-seatFloat .book--your-seat-wrap .book--your-seat-left .countdown .countdown-container.minutes .minutes-bottom:after {
    content: ":";
    font-family: Source Sans Pro;
    font-size: 30px;
    margin-left: 10px;
    position: absolute;
    top: 5px;
    right: -20px
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-right {
    width: calc(100% - 350px)
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-right .book--seat-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-right .book--seat-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-right input {
    width: 100%;
    margin-right: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 6px;
    border: 0;
    outline: none;
    font-family: Source Sans Pro;
    font-size: 16px;
    color: #000
}

.book--your-seatFloat .book--your-seat-wrap .book--your-seat-right .book--seat-btn {
    width: auto;
    padding: 8px 20px;
    background-color: #ffe21f;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-right: 0
}

footer.stuck--down {
    margin-bottom: 118px
}

.overlay {
    background-color: rgba(0, 0, 0, .76);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 100
}

.modal,
.overlay {
    display: none;
    position: fixed
}

.modal {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    background-color: #fff;
    z-index: 110;
    padding: 50px;
    font-family: Source Sans Pro
}

.modal .modal--top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px
}

.modal .modal--top .modal--info {
    width: calc(100% - 50px)
}

.modal .modal--top .modal--info img {
    display: block;
    width: 148px;
    margin-bottom: 10px
}

.modal .modal--top .modal--info .speaker--name {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 20px
}

.modal .modal--top .modal--info .speaker--desi {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 300;
    margin-bottom: 5px
}

.modal .modal--top .modal--info .company--name {
    font-family: Source Sans Pro;
    font-size: 18px;
    color: #111;
    font-weight: 300;
    font-style: italic;
    margin-top: 10px
}

.modal .modal--top .glm_close {
    font-size: 30px;
    cursor: pointer
}

.modal .modal--content p {
    font-size: 18px;
    color: #111;
    line-height: 20px;
    margin-bottom: 25px
}

.modal .modal--content p:last-child {
    margin-bottom: 0
}

.book_seat_link--transparent {
    border-radius: 4px;
    border: 2px solid #fff;
    text-decoration: none;
    color: #fff;
    background: transparent;
    text-align: center;
    padding: 15px 35px
}

.coming-soon {
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 100px 0
}

.coming-soon,
.coming-soon img,
.sponsor-block {
    display: inline-block
}

.sponsor-block {
    width: 100%
}

.sponsor-block-content {
    width: 47%;
    display: inline-block;
    float: left;
    margin-bottom: 50px;
    margin-right: 3%;
    text-align: left
}

.sponsor-block-content-title {
    padding: 20px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    width: 100%
}

.sponsor-block-content-list {
    border: 1px solid #ccc;
    padding: 20px;
    text-align: left;
    min-height: 911px
}

.sponsor-block .sponsor-block-content:nth-child(3) .sponsor-block-content-list,
.sponsor-block .sponsor-block-content:nth-child(4) .sponsor-block-content-list {
    min-height: 594px
}

.sponsor-block-content-list li {
    margin-bottom: 25px;
    display: inline-block;
    width: 100%;
    line-height: 1.4;
    padding-left: 15px;
    background: url(/assets/images/bullet_point.png) no-repeat;
    background-position: 0 8px
}

.grey {
    background: #9a9a9a
}

.gold {
    background: #fee68e
}

.light-grey {
    background: #e6e6e8
}

.pink {
    background: #ffcfb9
}

.clearfix {
    clear: both;
    display: table;
    content: ""
}

.sponsor-block .sponsor-block-content:nth-child(2n) {
    margin-right: 0
}

.who-should-attend {
    display: inline-block;
    width: 100%;
    margin-bottom: 80px
}

.services-info .service-info-content.full-width {
    width: 100%;
    padding-left: 0
}

.who-should-attend ul {
    display: inline-block;
    width: 100%;
    width: 32%;
    float: left;
    margin-right: 1%;
    margin-top: 20px
}

.who-should-attend ul:last-child {
    margin-right: 0
}

.who-should-attend ul.full-width {
    width: 100%
}

.who-should-attend ul li {
    display: inline-block;
    width: 100%;
    background: url(/assets/images/bullet_point.png) no-repeat;
    background-position: 0 4px;
    padding-left: 20px;
    margin-bottom: 20px
}

.highlights strong {
    color: #011eff;
    display: block;
    margin-bottom: 10px;
    font-weight: 600
}

.who-should-attend .highlights li {
    padding-left: 65px;
    position: relative;
    margin-bottom: 40px
}

.highlights li img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%)
}

.services-info .service-info-content.full-width.bg-quoted {
    background: url(/assets/images/quotation-marks2.png) no-repeat;
    padding: 40px 15%;
    text-align: center;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
    background-size: 100% 100%;
    line-height: 1.6
}

.conference--top-wrap .conference--top-main {
    padding: 75px 0 30px
}

.conference--top-wrap .conference--top-main .conference--title-wrap {
    display: flex;
    justify-content: space-between;
    align-content: flex-start
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left {
    width: 60%;
    width: 70%;
    display: flex;
    align-items: left;
    justify-content: flex-start;
    flex-direction: column
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left .conference--details-wrap {
    flex-direction: row
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left .conference--details-wrap li {
    margin-right: 35px
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left .conference--details-wrap li:last-child {
    margin-right: 0
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left .conference-title {
    margin-bottom: 20px
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--title {
    font-size: 36px;
    line-height: 45px;
    font-weight: 600;
    color: #fff
}

.subConference--title {
    color: #fff;
    display: inline-block;
    width: 100%;
    margin: 10px 0 20px
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column
}

.conference--top-wrap .conference--top-main .conference--title-wrap ul.conference--details-wrap {
    justify-content: flex-start
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 40px
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li .glm {
    font-size: 25px;
    width: 25px;
    margin-right: 20px;
    color: #fff
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li .conference--details {
    font-size: 16px;
    color: #fff
}

.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li .conference--details span:first-child,
.conference--top-wrap .conference--top-main .conference--title-wrap .conference--details-wrap li .conference--details span:nth-child(2) {
    font-weight: 600;
    display: block;
    padding-bottom: 5px
}

.conference--tab-wrap .conference--tab-main {
    margin-top: -200px;
    width: 100%;
    background-color: #fff;
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2)
}

.conference--tab-wrap .conference--tab-main .tab--nav-main {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .2)
}

.conference--tab-wrap .conference--tab-main .tab--nav-main li .tablinks {
    position: relative;
    min-width: 200px;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    padding: 20px 0;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none
}

.conference--tab-wrap .conference--tab-main .tab--nav-main li .tablinks.active {
    font-weight: 600
}

.conference--tab-wrap .conference--tab-main .tab--nav-main li .tablinks.active:after {
    content: " ";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background-color: #011eff
}

.conference--tab-wrap .conference--tab-main .tab--panel {
    display: none;
    padding: 50px 40px;
    background-color: #fff
}

.conference--tab-wrap .conference--tab-main .tab--panel.active {
    display: block
}

.conference--tab-wrap .conference--tab-main .tab--panel P {
    font-size: 18px;
    color: #111;
    font-family: Source Sans Pro;
    text-align: justify;
    line-height: 24px;
    margin-bottom: 20px
}

.conference--tab-wrap .conference--tab-main .tab--panel P:last-child {
    margin-bottom: 0
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul:last-child {
    margin-bottom: 0
}

.conference--tab-wrap .conference--tab-main .tab--panel .speaker--wrap ul li {
    width: 180px;
    cursor: pointer
}

.conference--top-wrap .conference--top-main {
    padding: 25px 0 30px
}
#menu,
.menu-bar{
    display: none;
}

.clients--info{
    display: flex;
    padding: 20px 0;
}
.clients--info .col-3{
    width: 33.33%;
    display: inline-block;;
    color: #fff;
}
.clients--info h2{
    font-size: 80px;
    line-height: 1.5;
    font-weight: 600;
}
.clients--info .col-3 span{
   font-size: 22px;
    display: inline-block;
    width: 100%;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.5;
}
.clients--info h2 small{
    font-size: 30px;
    vertical-align: middle;
    display: inline-block;
    top:-5px;
    margin-left: 5px;
    position: relative;
}
.over-lap{
    position: absolute;
    top:0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset!important;
        animation: unset!important;
        transition: none!important
    }
}

@media only screen and (max-width:1200px) {
    body,html{
        overflow-x: hidden;
    }
    .container {
        width: 90%;
        margin: 0 auto
    }
    header.conference {
    position: fixed;
    top: 0
}

    .banner--wrap,
    .fake--header{
        display: none
    }
    header nav .sub--menu{
        width: 100%;
    }
    .upcoming--events-wrap .events-right .events--inner .btn-grp .btn_col_2{
        width: 100%;
        margin-bottom: 5px;
    }
    .upcoming--events-wrap {
        width: 100%
    }
    .upcoming--events-wrap .events-left,
    .upcoming--events-wrap .events-right {
        width: 100%;
        padding: 28px 30px
    }
    .tour--details-wrap {
        padding: 20px
    }
    .tour--details-wrap.first--con,
    .tour--details-wrap.second--con {
        background-size: 50%
    }
    .tour--details-wrap .tour--details-title {
        margin-bottom: 40px
    }
    .tour--details-wrap .tour--card {
        width: 100%;
        flex-direction: row;
        align-items: center;
    }
    .tour--details-wrap .tour--card .tour--details {
        width: 100%
    }
    .tour--details-wrap.second--con .tour--card .tour--details{
        padding-left: 50px;
    }
    .tour--details-wrap .tour--card .tour--details .read_more_link {
        padding: 20px
    }
    .tour--details-wrap .tour--card .card--img-wrap-1 {
        width: 100%;
        margin-bottom: 20px
    }
    .tour--details-wrap .tour--card .card--img-wrap-1 img {
        width: 100%
    }
    .tour--details-wrap .tour--card .card--img-wrap-2 {
        width: 100%;
        margin-bottom: 20px
    }
    .tour--details-wrap .tour--card .card--img-wrap-2 img {
        width: 100%
    }
    .clients--wrap .more--clients-wrap {
        display: none
    }
    .testimonial--wrap {
        padding: 20px 0
    }
    .eventsPhotos--wrap {
        width: 90%;
        margin: 0 auto
    }
    .eventsPhotos--wrap .eventsPhotos--title {
        margin-bottom: 20px
    }
    .eventsPhotos--wrap .eventsPhotos--main {
        flex-wrap: wrap
    }
    .eventsPhotos--wrap .eventsPhotos--main li {
        width: 20%;
    }
    footer {
        padding: 20px 0
    }
    footer .footer--wrap {
        flex-wrap: wrap
    }
    footer .footer--wrap img {
        width: 150px;
        align-self: center
    }
    footer .footer--wrap ul {
        margin-bottom: 20px
    }
    footer .footer--wrap ul li:first-child{
        font-size: 16px;
    }
    footer .footer--wrap ul li{
        font-size: 14px;
    }

    /* contact page */
    .contact_us_block .col-2 img{
        width: 100%;
    }
    .contact_us_block .content-block{
        padding-left: 40px;
    }
    .contact_us_block .content-block h3{
        font-size: 24px;
    }
    .contact_us_block+.services-info .col-3 .subcontent-head{
        font-size: 16px;
    }
    .conference--tab-wrap .conference--tab-main .tab--panel p{
        font-size: 14px;
    }


    /* Home page */
    .banner--wrap, .fake--header{
        display: block;
    }

    .upcoming--events-wrap .events-left, 
    .upcoming--events-wrap .events-right{
        width: 50%;
    }
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-value{
    font-size: 50px;
}
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom:after {
    top: 0px;
    right: -30px
}


}
@media only screen and (max-width:995px) {
    header nav .sub--menu{
        position: fixed;
        top: 0;
        right: -250px;
        bottom: 0;
        background: rgba(0,0,0,0.9);
        z-index: 1;
        width:80%;
        max-width: 250px;
        height: 100vh;
        display: inline-block;
        padding-top: 50px;
        transition: all .25s ease-in-out;
    }
   
    header nav .sub--menu li{
        width: 100%;
        text-align: center;
        margin:0;
        color: #fff;
        padding: 20px 0;
    }
     header nav .sub--menu li a{
        color: #fff;
     }
    /* header.conference nav{
        position: relative;
     }*/
     #menu{
        opacity: 0;
     }
     .menu-bar svg{
        display: inline-block;
        width: 20px;
        fill: #000;
        transition:all .25s ease;
        -webkit-transition:all .25s ease;
     }
    
     .menu-bar:after{
        content: '';
        background: rgba(256,256,256,0.9);
        position: fixed;
        top:0;
        right: 0;
        left: 0;
        bottom: 0;
        z-index: -1;
        opacity: 0;
        visibility: hidden;
        transition: all .25s ease-in;
     }
     #menu{
        display: none;
     }
      #menu:checked ~ nav .menu-bar:after{
        visibility: visible;
        opacity: 1;
        z-index: 0
     }
      #menu:checked ~ nav .sub--menu{
        right: 0;
      }
      .menu-bar{
        display: inline-block;
        color: #000;
        cursor: pointer;
      }
      #menu:checked ~ nav .menu-bar svg{
        transform: translate(0,-50%) rotate(-90deg);
        z-index: 1;
        position: absolute;
        top: 50%;
        left: 20%;
      }
      .sticky .menu-bar svg,
      #menu:checked ~ nav .menu-bar svg{
        fill: #000 !important;
        
      }
      

      /*  Home page */

      .banner--wrap .banner .banner--content .banner--text{
        display: inline-block;
        font-size: 2em;
        line-height: 1.5;
      }
.upcoming--events-wrap .events-left .events--inner .upcoming--events--header{
    font-size: 20px;
    margin-bottom: 15px;
}
.upcoming--events-wrap .events-left .events--inner .upcoming--events--title{
    font-size: 30px;
    margin-bottom: 20px;
}
.upcoming--events-wrap .events-left .events--inner p{
    margin-bottom: 20px;
}
.upcoming--events-wrap .events-left .events--inner .event--details-wrap li:first-child,
.upcoming--events-wrap .events-left .events--inner .event--details-wrap, 
.upcoming--events-wrap .events-left .events--inner .event--details-wrap li{
    flex-direction: column;
    margin-right: 0;
    width: 100%;
    margin-bottom: 10px;
}

.upcoming--events-wrap .events-left .events--inner .event--details-wrap li .event--details{
    display: inline-block;
    width: 100%;
    text-align: left;
}
.tour--details-wrap .tour--card .tour--details .upcoming--events--title{
    font-size: 24px;
    
}
      /* contact page design */
      .conference--tab-wrap .conference--tab-main .tab--panel{
        padding: 25px 20px;
      }
      .contact_us_block .content-block h3{
        font-size: 20px;
      }

      .contact_us_block+.services-info .content-head{
        font-size: 20px;
      }
      .contact_us_block+.services-info .content-head+h4{
        margin-top: 10px;
      }
      .contact_us_block+.services-info .col-3{
        margin-top: 20px;
      }

      footer .footer--wrap ul{
        width: 50%;
      }
      .contact_us_block+.services-info{
        margin-top: 25px;
        margin-bottom: 0px;
      }
      .conference--top-wrap{
        height: 430px;
      }

      /* service page */
      .services-info .service-info-img{

      }
      .services-info .service-info-content .content-head{
        font-size: 20px;
        margin-bottom: 10px;
      }
      .conference--tab-wrap .conference--tab-main .tab--panel p{
        font-size: 14px;
        line-height: 1.5;
        margin-bottom:10px;
      }
.upcoming--events-wrap .events-right .events--inner{
    padding: 0;
}
      .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container{
        align-content: center;
        justify-content: center;
        text-align: center;
      }
      .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-value{
    font-size: 30px;
}
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-heading,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom{
    text-align: center;
    display: inline-block;
    width: 100%;
}
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom:after,
.upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom:after {
    right: -20px;
}
.banner--wrap .banner .banner--content{
    top:45%;
}
}

@media only screen and (max-width:767px) {
    .mobile-hide{
        display: none;
    }
    .banner--wrap .banner .banner--content .banner--text{
        font-size: 1.2em;
    }
    .testimonial--wrap .testimonial--main {
        width: 100%
    }
    .eventsPhotos--wrap .eventsPhotos--main li {
        width: 50%
    }
    .about-info .services-info .service-info-img,
    .about-info .services-info .service-info-content{
        width: 100%;
        text-align:left;
        padding: 0;
    }
    .about-info .services-info .service-info-img img{
        width: 15%;
        margin: 0 auto;
        margin-bottom: 10px;
    }
    footer .footer--wrap img{
    margin-bottom: 30px;
}
      footer .footer--wrap{

            flex-wrap: wrap;
            flex-direction: column;
            justify-content: center;
            align-items: center;
      }
    footer .footer--wrap ul{
        text-align: center;
        margin-bottom: 30px;
    }
    footer .footer--wrap ul{
        width: 100%;
    }
/* home page */
.banner--wrap .banner img{
    height: 50vh;
}
.upcoming--events-wrap{
    flex-direction: column;
}
.upcoming--events-wrap .events-left, .upcoming--events-wrap .events-right{
    width: 100%;
}
.upcoming--events-wrap .events-left:after{
    left: 50%;
    top:auto;
    bottom: -10px;
    transform: translate(-50%,0) rotate(90deg);
}

.tour--details-wrap .tour--card{
    flex-direction: column;
}
.banner--wrap .banner .banner--content{
    top: 45%;
}
.banner--wrap .banner .banner--content .banner--text{
    line-height: 1.2;
}
.tour--details-wrap .tour--card .tour--details{
    margin-bottom: 20px;
}
.tour--details-wrap.second--con .tour--card .tour--details{
    padding-left: 0;
}
.clients--wrap .clients--main .clients--slider img{
    margin:0 30px;
    width: 100px;
}
    /* contact page */
    .contact_us_block .col-2, .contact_us_block .content-block{
        width: 100%;
    }
    .contact_us_block .content-block{
        padding-left: 0;
        padding: 10px 0;
    }
    .contact_us_block+.services-info .col-3.first-child,
    .contact_us_block+.services-info .col-3{
        width: 100%;
    }


    /* work with GLM */ 
    .work_with_glm_content .col-2:nth-child(2),
    .work_with_glm_content .col-2{
        width: 100%;
        padding-left: 0;
    }

    /* service page */
    .services-info .service-info-content.text-right,
    .services-info .service-info-content,
    .services-info .service-info-img{
        width: 100%;
        padding: 0;
        margin: 10px 0;
        text-align: left;
    }
    .conference--top-wrap{
        height: 400px;
        padding-top: 100px;
    }
    .conference--top-wrap .conference--top-main{
        padding: 20px 0 25px;
    }
    .conference--top-wrap .conference--top-main .conference--title-wrap .conference--title-left{
        width: 100%;
    }
    .conference--top-wrap .conference--top-main .conference--title-wrap .conference--title{
        font-size: 31px;
        width: 100%;
        text-align: center;
    }
    .conference--tab-wrap .conference--tab-main .tab--panel p{
        text-align: left !important;
    }
    .conference--tab-wrap .conference--tab-main .tab--panel p .email-us{
        display: inline-block;
        width: 100%;
        text-align: center;
    }
    .services-info .service-info-content.text-right .content-head:after{
        margin-left: 0;
    }
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-value{
        font-size: 20px;
    }
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container .countdown-heading{
        font-size: 14px;
    }
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.days .days-bottom:after,
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .hours-bottom:after,
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.hours .minutes-bottom:after,
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .hours-bottom:after,
    .upcoming--events-wrap .events-right .events--inner .countdown .countdown-container.minutes .minutes-bottom:after {
        right: -20px;
        top:-10px;
    }
    .clients--info{
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
        padding:0;
    }
    .clients--info .col-3{
        width: 100%;
        margin-bottom: 40px;
    }
    .clients--info .col-3 span{
        margin-bottom: 0px;
    }
    .clients--info h2{
        font-size: 50px;
    }
    .clients--info .col-3 span{
        font-size: 16px;
    }
    .services-info{
        margin-bottom: 40px;
    }
    .contact_us_block+.services-info .col-3 .subcontent-head{
        margin-bottom: 10px !important;
    }
}

@media only screen and (max-width:320px) {
    .eventsPhotos--wrap .eventsPhotos--main li {
        width: 100%
    }
}