.mac .animated,
.win .animated {
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

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

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

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {

    0%,
    100%,
    20%,
    53%,
    80% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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%,
    100%,
    20%,
    53%,
    80% {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {

    0%,
    100%,
    50% {
        opacity: 1
    }

    25%,
    75% {
        opacity: 0
    }
}

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

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 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)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 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)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {

    0%,
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }

    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }

    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }

    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }

    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }

    10%,
    20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }

    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }

    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }

    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }

    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    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(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes jello {
    11.1% {
        -webkit-transform: none;
        transform: none
    }

    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(.39063deg) skewY(.39063deg);
        transform: skewX(.39063deg) skewY(.39063deg)
    }

    88.8% {
        -webkit-transform: skewX(-.19531deg) skewY(-.19531deg);
        transform: skewX(-.19531deg) skewY(-.19531deg)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceIn {

    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -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)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {

    0%,
    100%,
    20%,
    40%,
    60%,
    80% {
        -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)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes bounceInDown {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInLeft {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInRight {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes bounceInUp {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {

    0%,
    100%,
    60%,
    75%,
    90% {
        -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)
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.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)
    }

    100% {
        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)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

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

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        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)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes fadeInUpShort {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpShort {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 40%, 0);
        transform: translate3d(0, 40%, 0)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

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

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1
    }

    100% {
        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
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1
    }

    100% {
        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) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -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) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }

    100% {
        -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) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }

    100% {
        -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) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -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) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -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);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

@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);
        opacity: 1
    }

    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        opacity: 1
    }

    100% {
        -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: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        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: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        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: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        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: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        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: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1
    }
}

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

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

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

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }

    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

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

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

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

@-webkit-keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

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

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

    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }

    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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)
    }

    100% {
        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
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 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
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        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: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

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

.mac .animate,
.mac .animate2,
.win .animate,
.win .animate2 {
    opacity: 0
}

.ie8 .animate,
.ie8 .animate2,
.ie9 .animate,
.ie9 .animate2 {
    opacity: 1
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Thin.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Thin-lt.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Roman.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Roman-lt.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Bold.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: 'Helvetica Neue CE';
    src: url(../fonts/Helvetica-Neue-CE-Bold-lt.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: sf_pro_displaymedium;
    src: url(../fonts/sfpro/fontsfree-net-sfprodisplay-medium-webfont.woff2) format("woff2"), url(../fonts/sfpro/fontsfree-net-sfprodisplay-medium-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: sf_pro_displayregular;
    src: url(../fonts/sfpro/fontsfree-net-sfprodisplay-regular-webfont.woff2) format("woff2"), url(../fonts/sfpro/fontsfree-net-sfprodisplay-regular-webfont.woff) format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

:focus {
    outline: 0
}

body {
    font-family: 'Helvetica Neue CE', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #252525;
    overflow-x: hidden;
    counter-reset: my-sec-counter
}

@media (max-width:1400px) and (min-width:1300px) and (min-height:900px) {
    body {
        font-size: 11.485px
    }
}

@media (max-width:1025px) {
    body {
        font-size: 12px;
        overflow-x: hidden
    }
}

@media (max-width:767px) {
    body {
        font-size: 14px
    }
}

.open-menu body {
    overflow: hidden
}

.loadjs {
    overflow: hidden
}

h1 {
    font-weight: 700;
    font-size: 8.125em;
    margin-bottom: .514em;
    line-height: 1
}

h1 span {
    display: block;
    font-size: .346em
}

@media (max-width:1025px) {
    h1 {
        font-size: 5em
    }
}

@media (max-width:992px) {
    h1 {
        font-size: 4.5em
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 3.375em
    }
}

h2 {
    font-weight: 700;
    font-size: 2.875em;
    margin-bottom: .5em;
    text-transform: uppercase;
    font-style: italic;
    color: #ff0f00;
    line-height: .8
}

h2 span {
    display: block;
    line-height: 1;
    padding-left: 3em;
    margin-top: -.225em;
    z-index: 2
}

@media (max-width:1399px) {
    h2 span {
        margin-top: -.15em
    }
}

@media (max-width:992px) {
    h2 span {
        padding-left: 2em
    }
}

@media (max-width:767px) {
    h2 span {
        margin-top: -.075em;
        font-size: .75em
    }
}

h2 .main-h {
    z-index: 0;
    color: rgba(255, 15, 0,0.9);
    font-size: 1.73913em;
    line-height: .8;
    padding-left: 0;
    margin: 0;
    margin-bottom:5px;
}

@media (max-width:767px) {
    h2 .main-h {
        color: #ff0f00;
    }
}

@media (max-width:1025px) {
    h2 {
        font-size: 2.25em
    }
}

@media (max-width:767px) {
    h2 {
        font-size: 1.85em
    }

    h2 span {
        padding-left: .5em
    }

    h2 span br {
        display: none
    }

    h2 .main-h {
        padding-left: 0;
        font-size: 1em
    }
}

h3 {
    font-size: 2.25em;
    font-weight: 700;
    margin-bottom: .8em
}

@media (max-width:1025px) {
    h3 {
        font-size: 2em
    }
}

@media (max-width:767px) {
    h3 {
        font-size: 1.75em
    }
}

h4 {
    font-size: 1.875em;
    font-weight: 500
}

h5 {
    font-size: 1.375em;
    font-weight: 500
}

a {
    color: #ff0f00;
    transition: .2s
}

a:hover {
    color: #ffc00f
}

p {
    font-size: 1.25em;
    margin-bottom: 1em
}

@media (max-width:767px) {
    p {
        font-size: 1.125em
    }
}

.container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 0 20px
}

@media (min-width:992px) {
    .container {
        padding: 0 5em
    }
}

@media (min-width:1200px) {
    .container {
        padding: 0 10.247%
    }
}

.block,
.section {
    position: relative;
    padding: 5em 0
}

@media (max-width:1025px) {

    .block,
    .section {
        padding: 4em 0
    }
}

@media (max-width:992px) {

    .block,
    .section {
        padding: 3em 0
    }
}

@media (min-width:767px) {
    .mobile-only {
        display: none !important
    }
}

.sec-cta {
    z-index: 1;
    position: relative
}

.twocol-row {
    display: flex;
    flex-wrap: wrap
}

.col-50 {
    width: 50%
}

@media (max-width:992px) {
    .col-50 {
        width: 100%
    }
}

.col-60 {
    width: 60%
}

@media (max-width:992px) {
    .col-60 {
        width: 100%
    }
}

.col-40 {
    width: 40%
}

@media (max-width:992px) {
    .col-40 {
        width: 100%
    }
}

.col-30 {
    width: 33.33%;
    display: flex
}

@media (max-width:767px) {
    .col-30 {
        width: 100%
    }
}

.uline {
    position: relative
}

.uline:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: #fff;
    transition: .3s;
    z-index: 1
}

.uline:hover {
    text-decoration: none
}

.uline:hover:after {
    width: 100%
}

.wrapper {
    position: relative;
    z-index: 1
}

@media (min-width:1025px) {
    .wrapper {
        padding-left: 6.25em
    }
}

.content {
    position: relative
}

.sec-header {
    padding-left: 3em
}

.sec-header h2 {
    margin-bottom: 1.15em;
    position: relative;
    display: inline-block
}

@media (max-width:992px) {
    .sec-header {
        padding-left: 0
    }

    .sec-header h2 {
        margin-bottom: 1em
    }
}

@media (max-width:767px) {
    .sec-header h2 {
        margin-bottom: .75em
    }
}

.innerhero--section {
    padding: 0
}

.innerhero--section .hero--bg {
    position: relative;
    overflow: hidden
}

.innerhero--section .hero--bg img {
    width: 100%
}

.innerhero--section .hero--bg:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/hero/inner-bg-shadow.png) no-repeat top
}

.sec-bg {
    overflow: hidden
}

.bg--section--btm {
    background-color: #FFF;
    padding: 10.625em 0 20.8125em
}

.bg--section--btm:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about/about-section-bg.png) no-repeat center;
    background-size: cover
}

.bg--section--btm .story__wrap {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
    padding-top: 0
}

.bg--section--btm .story__wrap .twocol-row {
    padding: 0 0 0 17em
}

@media (max-width:1025px) {
    .bg--section--btm .story__wrap .twocol-row {
        padding: 0 0 0 15em
    }
}

@media (max-width:992px) {
    .bg--section--btm .story__wrap .twocol-row {
        padding: 0 0 0 9em
    }
}

@media (max-width:767px) {
    .bg--section--btm .story__wrap .twocol-row {
        padding: 0
    }
}

.bg--section--btm .story__wrap .twocol-row .content {
    padding: 0
}

.bg--section--btm .story__wrap .twocol-row .content p {
    font-size: 1.1875em;
    width: 100%;
    max-width: 456px;
    color: #050f41
}

.bg--section--btm .story__wrap .highlight {
    max-width: 430px
}

@media (max-width:767px) {
    .bg--section--btm .story__wrap .highlight {
        max-width: 100%
    }
}

@media (max-width:1199px) {
    .bg--section--btm {
        padding: 8.75em 0 20em
    }
}

@media (max-width:992px) {
    .bg--section--btm {
        padding: 7.5em 0 18.75em
    }
}

@media (max-width:767px) {
    .bg--section--btm {
        padding: 4.375em 0 11.25em
    }
}

.bg--section--top {
    margin-top: -15.625em;
    padding-top: 0
}

@media (max-width:767px) {
    .bg--section--top {
        margin-top: -9.375em
    }
}

#buttonTop {
    background: #ce180c;
    width: 3.5em;
    height: 3.5em;
    text-align: center;
    border-radius: 4px;
    position: fixed;
    bottom: 80px;
    right: 30px;
    transition: .5s;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: rotate(180deg);
    cursor: pointer;
    -webkit-animation: ft04 2s infinite;
    animation: ft04 2s infinite;
    display: flex;
    align-items: center;
    justify-content: center
}

@media (max-width:767px) {
    #buttonTop {
        width: 3em;
        height: 3em;
        right: 12px
    }
}

#buttonTop.show {
    opacity: .5;
    visibility: visible
}

#buttonTop.show:hover {
    opacity: 1
}

@-webkit-keyframes ft04 {
    0% {
        -webkit-transform: rotate(180deg) translate(0, 0)
    }

    20% {
        -webkit-transform: rotate(180deg) translate(0, 5px)
    }

    40% {
        -webkit-transform: rotate(180deg) translate(0, 0)
    }
}

@keyframes ft04 {
    0% {
        transform: rotate(180deg) translate(0, 0)
    }

    20% {
        transform: rotate(180deg) translate(0, 5px)
    }

    40% {
        transform: rotate(180deg) translate(0, 0)
    }
}

button {
    -webkit-appearance: button;
    width: auto;
    border: 0;
    box-shadow: none;
    background: 0 0;
    outline: 0;
    background: 0 0;
    border-radius: 0;
    cursor: pointer
}

button:focus {
    outline: 0
}

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

.anchor {
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    border-radius: 0;
    padding: .75em 2em;
    justify-content: center;
    font-size: .875em;
    font-weight: 700;
    text-transform: uppercase;
    background: 0 0;
    border: 0 solid #000;
    min-width: 12.8571em;
    z-index: 1;
    font-style: italic;
    margin-left: .425em;
    -webkit-backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale
}

.anchor span {
    z-index: 1;
    letter-spacing: .1em
}

.anchor img {
    margin-right: .75em
}

@media (max-width:767px) {
    .anchor img {
        max-width: 1.375em
    }
}

.anchor:after,
.anchor:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #ce180c 0, #ff0f00 100%);
    transform: matrix(1, 0, -.25, 1, 0, 0);
    transition: .5s;
    z-index: -1
}

.anchor:after {
    left: 50%;
    width: 0%;
    background: #ffc00f;
    transform: matrix(1, 0, -.25, 1, 0, 0) translate(-50%, 0);
    z-index: 0
}

.anchor:hover {
    text-decoration: none;
    color: #fff
}

.anchor:hover span {
    animation-duration: .3s;
    animation-name: slidein
}

.anchor:hover:after {
    width: 100%
}

@media (max-width:767px) {
    .anchor {
        font-size: .75em;
        min-width: 11em;
        padding: .5em 1.5em
    }
}

@keyframes slidein {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.toggle-menu {
    display: none;
    position: relative;
    width: 3.25em;
    height: 3.25em;
    padding: .625em;
    transform: rotate(0);
    transition: .5s ease-in-out;
    cursor: pointer;
    z-index: 99;
    background: #ff0f00
}

.toggle-menu a {
    position: relative;
    display: block;
    width: 2em;
    height: 2em
}

.toggle-menu a span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #fff;
    opacity: 1;
    left: 0;
    transform: rotate(0);
    transition: .25s ease-in-out
}

.toggle-menu a span:nth-child(1) {
    top: .375em
}

.toggle-menu a span:nth-child(2),
.toggle-menu a span:nth-child(3) {
    top: 1em
}

.toggle-menu a span:nth-child(4) {
    top: 1.625em;
    width: 65%
}

.toggle-menu a:hover span:nth-child(4) {
    width: 100%
}

.toggle-menu.open {
    background: 0 0
}

.toggle-menu.open a span {
    background: #fff
}

.toggle-menu.open a span:nth-child(4) {
    width: 0%
}

.toggle-menu.open a:hover span:nth-child(4) {
    width: 0%
}

.toggle-menu.open span:nth-child(1) {
    top: 1em;
    width: 0%;
    left: 50%
}

.toggle-menu.open span:nth-child(2) {
    transform: rotate(45deg)
}

.toggle-menu.open span:nth-child(3) {
    transform: rotate(-45deg)
}

.toggle-menu.open span:nth-child(4) {
    top: 1em;
    width: 0;
    left: 50%
}

@media (max-width:1199px) {
    .toggle-menu {
        display: block;
        font-size: .875em;
        position: absolute;
        right: 5.5em;
        left: auto;
        top: 0;
        bottom: 0;
        margin: auto 0
    }
}

@media (max-width:992px) {
    .toggle-menu {
        right: 30px
    }
}

@media (max-width:767px) {
    .toggle-menu {
        position: relative;
        right: 0;
        left: auto;
        top: 0
    }
}

.cs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: rgba(206, 24, 12, 0.95); /* Red color with opacity */
    /*padding: 2.5em 0 0;*/
}


/* ***************************************

.cs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: .5s;
    padding: 2.5em 0 0
}

.cs-header:after {
    content: '';
    position: absolute;
    width: 100%;
    z-index: -1;
    height: 100%;
    left: 0;
    top: -100%;
    transition: .5s;
    background: #ce180c
}



.cs-header.sticky {
    padding: .75em 0
}

.cs-header.sticky:after {
    top: 0
}
**************************/
.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width:767px) {
    .header__wrapper {
        align-items: center
    }
}

.brand-logo {
    position: relative;
    z-index: 99;
    align-items: center
}

.brand-logo a {
    display: flex;
    width: 15.3125em;
    height: 8.4375em;
    align-items: center
}

.brand-logo img {
    width: 80%;
    height: auto
}

@media (max-width:1025px) {
    .brand-logo a {
        width: 12em;
        height: 6.75em
    }
}

@media (max-width:767px) {
    .brand-logo a {
        width: 9em;
        height: 5em
    }
}

.top__menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 9
}

.top__menu li {
    padding: 0 2em;
    border-right: 1px solid #fff
}

.top__menu li:last-child {
    border-right: 0
}

.top__menu a {
    color: #fff;
    font-size: .875em;
    font-weight: 600;
    letter-spacing: .1em
}

.top__menu a:hover {
    color: #fff
}

@media (max-width:1199px) {
    .links-wrap {
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: #ce180c;
        transition: 1s;
        padding: 10em 0 0;
        display: flex;
        flex-direction: column;
        overflow: auto
    }

    .links-wrap.active {
        right: 0
    }
}

@media (max-width:767px) {
    .links-wrap {
        right: auto;
        left: 100%;
        width: 100%;
        padding: 7em 0 0
    }

    .links-wrap.active {
        left: 0
    }
}

.main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 15px;
}

.main-menu li {
    position: relative;
    margin: .25em 0 2em 2.375em
}

@media (max-width:1199px) {
    .main-menu li {
        margin: 0
    }
}

.main-menu li:first-child {
    margin-left: 0
}

.main-menu li.current_page_item a,
.main-menu li.current_page_parent a {
    text-decoration: none;
    color: #ffc00f
}

@media (min-width:992px) {

    .main-menu li.current_page_item a:before,
    .main-menu li.current_page_parent a:before {
        transform: scale(1)
    }
}

.main-menu a {
    display: block;
    font-style: italic;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    transition: .5s
}

.main-menu a:before {
    content: '';
    position: absolute;
    bottom: -1.25em;
    left: 0;
    right: 0;
    background: url(../svg/link-icon.svg) no-repeat;
    background-size: contain;
    width: 1.22em;
    height: 1.166em;
    margin: 0 auto;
    transform: scale(0) rotate(180deg);
    transition: .5s
}

.main-menu a.active,
.main-menu a:hover {
    text-decoration: none;
    color: #ffc00f
}


@media (min-width:992px) {

    .main-menu a.active:before,
    .main-menu a:hover:before {
        transform: scale(1)
    }
}



@media (max-width:1199px) {
    .main-menu li {
        width: 100%
    }

    .main-menu li.active {
        background: #ff0f00
    }

    .main-menu li.active a {
        color: #ffc00f
    }

    .main-menu a {
        font-size: 1.125em;
        padding: .625em 1.375em
    }

    .main-menu a:before {
        display: none
    }
}

@media (max-width:767px) {
    .main-menu a {
        font-size: 1em;
        padding: .5em 1.25em
    }
}

.top-links {
    display: flex;
    justify-content: flex-end;
    margin: .625em 0 1.75em
}

@media (max-width:1025px) {
    .top-links {
        margin: .625em 0 1em;
        position: relative;
        z-index: 10
    }
}

@media (max-width:767px) {
    .top-links {
        margin: 0 20px 1em;
        justify-content: space-between;
        flex-direction: column
    }
}

.cs-lang {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0
}

@media (max-width:767px) {
    .cs-lang {
        justify-content: flex-end
    }
}

.cs-lang li {
    padding: 0 2em 0 0;
    position: relative
}

.cs-lang li:before {
    content: '';
    position: absolute;
    top: 48%;
    right: 0;
    width: 1.0625em;
    height: 1px;
    margin-right: .5em;
    background: #8b93b8
}

@media (max-width:1199px) {
    .cs-lang li:before {
        background: #fff
    }
}

.cs-lang li:last-child {
    padding: 0
}

@media (max-width:1199px) {
    .cs-lang li:last-child {
        padding-right: 1em
    }
}

.cs-lang li:last-child:before {
    content: normal
}

@media (max-width:992px) {
    .cs-lang li img {
        width: 22px;
        height: 16px
    }
}

.top-btns {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0
}

@media (max-width:767px) {
    .top-btns {
        order: 2;
        flex-direction: column;
        align-items: flex-start
    }
}

.top-btns li {
    margin-right: 2em
}

@media (max-width:1199px) {
    .top-btns li {
        margin-right: .75em
    }
}

@media (max-width:767px) {
    .top-btns li {
        margin-right: 0;
        margin-top: .625em
    }
}

.top-btns li:last-child {
    margin-right: 2.3125em
}

@media (max-width:1199px) {
    .top-btns li:last-child {
        margin-right: 1em
    }
}

.top-btns li a {
    color: #ffc00f;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    position: relative;
    transition: .3s;
    display: flex;
    align-items: center
}

@media (max-width:992px) {
    .top-btns li a {
        font-size: .875em
    }
}

.top-btns li a img {
    width: 2.1875em;
    max-height: 1.75em;
    margin-right: .5625em
}

@media (max-width:992px) {
    .top-btns li a img {
        margin-right: .25em;
        width: 1.875em;
        max-height: 1.375em
    }
}

.top-btns li a:hover {
    color: #fff;
    text-decoration: none
}

.contact-btn {
    padding-left: 2.5em
}

.contact-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.125em;
    height: .9375em;
    transform: translate(0, -50%);
    background: url(../svg/contact-icon.svg) no-repeat;
    background-size: contain
}

.cs-footer {
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 10px;
    background-size: cover;
    background-position: center top
}

.cs-footer:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 64em;
    background: #ec1c24 url(../images/footer/pattern.png) no-repeat center center;
    background-size: cover;
    opacity: .65
}

.cs-footer a {
    transition: .3s
}

.cs-footer p {
    margin: 0
}

@media (max-width:1025px) {
    .cs-footer {
        padding: 4em 0;
            background-size: 100% 100%;
    }
}

@media (min-width:1025px) {
    .footer__wrapper {
        padding: 0 10px
    }
}

.copy-text {
    padding: 0 0 3em;
    overflow: hidden;
    text-align: center
}

.copy-text p {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    font-size: .75em;
    letter-spacing: .125em
}

.copy-text p:after,
.copy-text p:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 1px;
    margin: 0 0 0 1.5em;
    background: rgba(190, 209, 230, .32)
}

.copy-text p:before {
    margin: 0 1.5em 0 0;
    left: auto;
    right: 100%
}

@media (max-width:1025px) {
    .copy-text {
        padding: 0 0 2em
    }
}

@media (max-width:1025px) {
    .copy-text p {
        letter-spacing: .065em;
        font-size: .875em
    }
}

.footer__social {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center
}

.footer__social li {
    padding: 0 .75em
}

.footer__social li a {
    display: block
}

.footer__social li a svg {
    width: 2.2em;
    height: 2.2em;
    transition: .3s;
    fill: #fff
}

.footer__social li a .st0 {
    fill: #fff
}

.footer__social li a path {
    fill: #fff;
    transition: .3s
}

.footer__social li a:hover path {
    fill: #ffc00f
}

@media (max-width:767px) {
    .footer__social {
        font-size: 1.375em
    }
}

.qlinks__wrapper {
    padding: 0 0 5em;
    display: none
}

@media (max-width:1025px) {
    .qlinks__wrapper {
        padding: 0 0 3em
    }
}

@media (max-width:767px) {
    .qlinks__wrapper {
        padding: 0 0 2em;
        font-size: 1.05em
    }
}

.qlink__menu {
    text-align: center;
    padding: 0 0 4em
}

.qlink__menu a {
    color: #fff;
    display: inline-block;
    font-size: 1.125em;
    text-transform: uppercase;
    font-weight: 700;
    position: relative;
    padding-right: 1.5em
}

.qlink__menu a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: -3%;
    width: .625em;
    height: .625em;
    border-style: solid;
    border-color: #fff;
    border-width: .125em .125em 0 0;
    display: inline-block;
    transform-origin: 10% 10%;
    transform: rotate(135deg);
    transition: .5s
}

@media (max-width:767px) {
    .qlink__menu a:after {
        top: 32%;
        right: -1%;
        width: .5em;
        height: .5em;
        border-width: .1125em .1125em 0 0
    }
}

.qlink__menu a:hover {
    color: #ffc00f;
    text-decoration: none
}

.qlink__menu a:hover:after {
    border-color: #ffc00f
}

.qlink__menu.active a:after {
    transform: rotate(-45deg);
    right: 3%;
    top: .875em
}

@media (max-width:1025px) {
    .qlink__menu {
        padding: 0 0 3em
    }
}

@media (max-width:767px) {
    .qlink__menu {
        padding: 0 0 2em
    }
}

.footer__qlinks {
    padding: 0 10%
}

.footer__qlinks p {
    font-weight: 700;
    font-size: .9375em;
    line-height: 2.25;
    text-transform: uppercase;
    margin-bottom: 2em
}

@media (max-width:1025px) {
    .footer__qlinks {
        padding: 0 5%
    }

    .footer__qlinks p {
        margin-bottom: 1em
    }
}

@media (max-width:992px) {
    .footer__qlinks {
        padding: 0
    }
}

@media (max-width:767px) {
    .footer__qlinks p {
        margin-bottom: 0
    }
}

.qlinks__col {
    padding: 0 2em;
    width: 25%;
    position: relative
}

@media (max-width:992px) {
    .qlinks__col {
        padding: 0 1em
    }
}

@media (max-width:767px) {
    .qlinks__col {
        width: 50%;
        padding: 0
    }
}

.qlinks__list {
    list-style-type: none;
    margin: 0;
    padding: 0
}

.qlinks__list a {
    display: inline-block;
    line-height: 1.75;
    position: relative;
    color: #fff
}

@media (max-width:767px) {
    .qlinks__list a {
        font-size: .875em
    }
}

.qlinks__list a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 0;
    background: #fff;
    transition: .3s;
    z-index: 1
}

.qlinks__list a:hover {
    color: #fff;
    text-decoration: none
}

.qlinks__list a:hover:after {
    background: #fff;
    width: 100%;
    height: 1px
}

@media (max-width:767px) {
    .qlinks__list {
        padding: 0 0 1em
    }
}

.qlinks__list.show {
    display: block
}

.hero--section {
    padding: 0;
    height: 100vh;
    position: relative
}

@media (max-width:1500px) and (min-width:1200px) and (min-height:999px) {
    .hero--section {
        height: 56.25em
    }
}

@media (max-width:1025px) {
    .hero--section {
        height: 64em
    }
}

@media (max-width:767px) {
    .hero--section {
        height: 40em
    }
}

.hero__slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative
}

.hero__slider .swiper-container {
    width: 100%
}

.hero__slider .swiper-slide {
    overflow: hidden
}

.hero__slider .swiper-slide-active .hero__caption h2 {
    transform: translate(0, 0);
    opacity: 1;
    transition-delay: 1s
}

.hero__slider .swiper-slide-active .hero__caption .h-cta {
    transform: translate(0, 0);
    opacity: 1;
    transition-delay: 1.3s
}

.hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center
}

.hero__img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/hero/tour-map.png) no-repeat;
    background-size: cover;
    z-index: 1
}

.hero__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/hero/shadow.png) no-repeat;
    z-index: 2
}

.hero__img img {
    width: 100%;
    height: auto
}

@media (max-width:1700px) and (min-width:1400px) and (min-height:800px) {
    .hero__img img {
        width: auto;
        height: 100%
    }
}

@media (max-width:1400px) and (min-width:1200px) and (min-height:700px) {
    .hero__img img {
        width: auto;
        height: 100%
    }
}

@media (max-width:1500px) and (min-width:1200px) and (min-height:999px) {
    .hero__img {
        height: 56.25em
    }
}

@media (max-width:1025px) {
    .hero__img {
        height: 64em
    }

    .hero__img img {
        position: absolute;
        top: 0;
        left: 50%;
        width: auto;
        height: 100%;
        transform: translate(-50%, 0)
    }
}

@media (max-width:767px) {
    .hero__img {
        height: 42em
    }
}

.hero__caption {
    position: absolute;
    top: 50%;
    left: 17.7%;
    width: 32em;
    color: #fff;
    transform: translate(0, -50%);
    z-index: 9
}

.hero__caption h1 {
    margin: 0
}

.hero__caption h2 {
    text-transform: unset;
    color: #fff;
    font-size: 3.125em;
    line-height: 1;
    transform: translate(0, 5em);
    opacity: 0;
    transition: .8s;
    transition-delay: 1s
}

.hero__caption .h-cta {
    transform: translate(0, 5em);
    opacity: 0;
    transition: .8s;
    transition-delay: 1s
}

@media (max-width:1025px) {
    .hero__caption {
        left: 12%
    }

    .hero__caption h2 {
        font-size: 2.5em
    }
}

@media (max-width:767px) {
    .hero__caption {
        padding: 0 30px;
        left: 0;
        width: 100%
    }

    .hero__caption h2 {
        font-size: 1.75em
    }
}

.hero-qlinks {
    position: absolute;
    bottom: 2.25em;
    left: 13.7%;
    z-index: 2;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap
}

.hero-qlinks li {
    padding: 0 3.75em;
    border-right: 1px solid rgba(255, 255, 255, .75)
}

.hero-qlinks li:last-child {
    border-right: 0
}

.hero-qlinks a {
    display: block;
    color: #fff
}

.hero-qlinks a:hover {
    text-decoration: none;
    color: #ffc00f
}

.hero-qlinks p {
    font-size: 1em;
    width: 5.2em;
    line-height: 1.2;
    position: relative;
    margin: 0;
    padding-bottom: 1.5em
}

.hero-qlinks p:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: .75em;
    height: .375em;
    background: url(../svg/arrow.svg) no-repeat;
    background-size: contain
}

@media (max-width:1025px) {
    .hero-qlinks {
        left: 7%
    }
}

@media (max-width:767px) {
    .hero-qlinks {
        left: 0
    }

    .hero-qlinks li {
        padding: 0 1em;
        width: 50%
    }

    .hero-qlinks li:first-child {
        padding-left: 2em
    }

    .hero-qlinks a {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center
    }

    .hero-qlinks p {
        width: calc(100% - 4em);
        padding: 0
    }

    .hero-qlinks p:after {
        content: normal
    }
}

.q-icon {
    display: block;
    margin-bottom: 1.5em
}

.q-icon img {
    width: 4.625em;
    height: 4.625em
}

@media (max-width:767px) {
    .q-icon {
        width: 3.5em;
        margin-bottom: 0
    }

    .q-icon img {
        width: 3.5em;
        height: 3.5em
    }
}

.hero-video {
    width: 100%;
    height: 100%;
    overflow: hidden
}

.hero-video iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0
}

.hero-video .hero__caption h2 {
    transform: translate(0, 0);
    opacity: 1;
    transition-delay: 1s
}

.hero-video .hero__caption .h-cta {
    transform: translate(0, 0);
    opacity: 1;
    transition-delay: 1.3s
}

.story--section {
    color: #051147;
    position: relative;
    height: 60.625em;
    background-repeat: no-repeat;
    background-position: center
}

@media (min-width:767px) {
    .story--section {
        padding: 4em 0
    }
}

@media (min-width:992px) {
    .story--section {
        padding: 0
    }
}

@media (max-width:1025px) {
    .story--section {
        height: 43.584em
    }
}

@media (max-width:992px) {
    .story--section {
        height: auto
    }
}

@media (max-width:767px) {
    .story--section {
        background-size: cover;
        background-size: 120% 100%
    }
}

.story__wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 10.3125em
}

@media (max-width:1199px) {
    .story__wrap {
        padding-top: 6.25em
    }
}

@media (max-width:992px) {
    .story__wrap {
        padding-top: 0
    }
}

.story__wrap .content {
    padding: 0 0 0 17em
}

@media (max-width:1025px) {
    .story__wrap .content {
        padding: 0 0 0 15em
    }
}

@media (max-width:992px) {
    .story__wrap .content {
        padding: 0 0 0 9em
    }
}

@media (max-width:767px) {
    .story__wrap .content {
        padding: 0
    }
}

.story__wrap p {
    font-weight: 300;
    width: 70%;
    margin-bottom: 1.75em;
    font-size: 1.1875em
}

@media (max-width:1025px) {
    .story__wrap p {
        width: 80%;
        margin-bottom: 1.25em
    }
}

@media (max-width:992px) {
    .story__wrap p {
        width: 70%
    }
}

@media (max-width:767px) {
    .story__wrap p {
        width: 100%
    }
}

.story__wrap .highlight {
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    position: relative;
    margin-bottom: 1.47em;
    font-size: 1.25em;
    color: #FFF;
    line-height: 1.45
}

.story__wrap .highlight:before {
    content: '';
    position: absolute;
    right: 100%;
    top: .625em;
    width: 2.5em;
    height: 2px;
    margin-right: 2em;
    background: #FFF
}

@media (max-width:992px) {
    .story__wrap .highlight {
        width: 70%
    }

    .story__wrap .highlight:before {
        width: 2em;
        margin-right: 1.5em
    }
}

@media (max-width:767px) {
    .story__wrap .highlight {
        width: 100%;
        font-size: 1.125em
    }

    .story__wrap .highlight:before {
        content: normal
    }

    .story__wrap .highlight br {
        display: none
    }
}

@media (max-width:992px) {
    .story__wrap {
        position: relative;
        transform: none;
        left: 0;
        top: 0
    }
}

.amenities--section {
    background: #0d546f;
    color: #fff;
    position: relative
}

@media (min-width:1025px) {
    .amenities--section {
        padding: 8.75em 0 5em
    }
}

.amenities--section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat
}

.amenities--section .amenities--bg {
    background-image: url(../images/amenities/amenities-bg.jpg);
    background-size: cover;
    -webkit-background-size: cover;
    opacity: .4;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.amenities--section h2 {
    color: #fff;
    position: relative
}

.amenities--section h2:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../images/header-dots.png) no-repeat;
    background-size: contain;
    width: 8.8695em;
    height: 8.717em;
    transform: translate(-50%, -50%);
    z-index: 0
}

.amenities--section h2 .main-h {
    color: rgba(181, 216, 239, .5)
}

@media (min-width:1025px) {
    .amenities--section .twocol-row {
        margin-left: -6.25em
    }
}

.amenities--section .content {
    padding-left: 11.65em;
    width: 45%;
    padding-bottom: 5em
}

@media (max-width:1025px) {
    .amenities--section .content {
        padding-left: 10em;
        padding-bottom: 3em
    }
}

@media (max-width:992px) {
    .amenities--section .content {
        padding-left: 4.5em;
        padding-bottom: 1em;
        width: 70%
    }
}

@media (max-width:767px) {
    .amenities--section .content {
        padding-left: 0;
        padding-bottom: 0;
        width: 100%
    }
}

.amenities--section .content p {
    font-weight: 300
}

.pass-wrap {
    padding: 0 0 0 18em
}

@media (max-width:1025px) {
    .pass-wrap {
        padding-left: 10em
    }
}

@media (max-width:992px) {
    .pass-wrap {
        padding-left: 4.5em
    }
}

@media (max-width:767px) {
    .pass-wrap {
        padding-left: 0
    }
}

.pass-days {
    list-style: none;
    padding: 0;
    margin: 0
}

@media (max-width:992px) {
    .pass-days {
        margin-bottom: .75em
    }
}

.pass-days li {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1.25em;
    position: relative;
    line-height: 1.1
}

.pass-days li:before {
    position: absolute;
    top: 50%;
    right: 100%;
    width: 10em;
    height: 2px;
    margin-right: 2em;
    background: #ffc00f;
    font-size: 16px
}

.pass-days li:first-child:before {
    content: ''
}

@media (max-width:1367px) {
    .pass-days li:before {
        width: 5em
    }
}

@media (max-width:992px) {
    .pass-days {
        display: flex;
        flex-wrap: wrap
    }

    .pass-days li {
        font-size: 1.25em;
        margin: 0;
        padding: 0 .75em .75em
    }

    .pass-days li:before {
        top: 32%;
        width: 2em;
        margin-right: .75em
    }
}

@media (max-width:767px) {
    .pass-days li {
        font-size: 1em;
        width: 50%;
        padding: 0 1em 1em 0
    }

    .pass-days li:first-child:before {
        content: normal
    }
}

.pass-info {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    height: 100%
}

.pass-info p {
    font-weight: 700;
    font-size: 1.5em
}

@media (max-width:992px) {
    .pass-info {
        padding: 4em 0 0 4.5em
    }

    .pass-info p {
        margin-bottom: 2em
    }
}

@media (max-width:767px) {
    .pass-info {
        padding: 2em 0 0
    }

    .pass-info p {
        font-size: 1.25em
    }
}

.pass-details {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap
}

.pass-details li {
    width: 25%
}

.pass-details span {
    display: block;
    font-size: 5em;
    color: #00aeef;
    font-weight: 700;
    line-height: 1
}

@media (max-width:1025px) {
    .pass-details span {
        font-size: 4em
    }
}

.pass-details span i {
    color: #d2daff;
    font-style: normal;
    font-weight: 300;
    font-size: .225em;
    margin: 0 0 0 .25em
}

@media (max-width:992px) {
    .pass-details span i {
        font-size: .3em
    }
}

.pass-details .p-title {
    font-size: .9375em;
    font-weight: 300;
    color: #d2daff;
    padding-bottom: 1em;
    margin-bottom: 2em;
    position: relative
}

.pass-details .p-title:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.625em;
    height: 1px;
    background: #566fbb
}

@media (max-width:992px) {
    .pass-details .p-title {
        font-size: 1.125em;
        margin-bottom: 1em
    }
}

@media (max-width:767px) {
    .pass-details li {
        width: 50%;
        padding: 0 1em 2em 0
    }
}

.pass--points {
    padding-left: 0;
    margin-bottom: 0
}

.pass--points li {
    list-style-type: none;
    margin-bottom: 1em;
    font-size: 1.3125em
}

@media (max-width:767px) {
    .pass--points li {
        font-size: 1.125em
    }
}

.pass--points li img {
    margin-right: .375em
}

.busroutes--section {
    background: #00aeef;
    position: relative;
    overflow: hidden
}

@media (min-width:992px) {
    .busroutes--section {
        padding: 7em 0
    }
}

@media (min-width:767px) {
    .busroutes--section {
        padding: 7.25em 0
    }
}

.busroutes--section:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 130%;
    transform: translate(0, -50%);
    background: radial-gradient(ellipse at 30%, #fff 20%, rgba(255, 255, 255, 0) 100%)
}

@media (max-width:1199px) {
    .busroutes--section:before {
        top: 35%
    }
}

.busroutes--section .wrapper {
    padding-right: 13em
}

@media (max-width:992px) {
    .busroutes--section .wrapper {
        padding-right: 0
    }
}

.busroutes--section .sec-header {
    display: flex;
    justify-content: space-between;
    align-items: center
}

@media (max-width:767px) {
    .busroutes--section .sec-header {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width:992px) {
    .busroutes--section .r-cta {
        margin: 0 0 .5em .5em
    }
}

@media (max-width:767px) {
    .busroutes--section .r-cta {
        margin: 0
    }
}

.busroutes--section .r-cta a {
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase
}

.routes-slider .swiper-slide {
    width: 75.5%
}

@media (max-width:767px) {
    .routes-slider {
        padding: 0 20px
    }

    .routes-slider .swiper-slide {
        width: 100%
    }
}

.route-slide {
    padding: 0 3em 0 3em
}

@media (max-width:1025px) {
    .route-slide {
        padding: 0 3em 0 3em
    }
}

@media (max-width:767px) {
    .route-slide {
        padding: 0
    }
}

.route__img {
    position: relative;
    display: block
}

.route__img img {
    width: 100%;
    height: auto
}

.route__caption {
    position: absolute;
    bottom: 2.5em;
    right: 0
}

.route__caption h3 {
    font-size: 3.125em;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin: 0 0 .375em
}

.route__caption h3 span {
    font-style: italic;
    text-transform: uppercase;
    display: block;
    text-align: right;
    font-size: .36em;
    color: #ffc00f
}

@media (max-width:1025px) {
    .route__caption h3 {
        font-size: 2.5em
    }
}

@media (max-width:992px) {
    .route__caption {
        bottom: 1.25em
    }

    .route__caption h3 {
        font-size: 2em
    }
}

@media (max-width:767px) {
    .route__caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: auto;
        padding: 1.5em
    }

    .route__caption h3 {
        font-size: 1.85em
    }
}

.slide-count {
    position: absolute;
    top: 0;
    right: 100%;
    font-size: .6875em;
    font-weight: 700;
    line-height: 1;
    display: flex;
    margin: -.75em 2em 0 0;
    transform-origin: 100% 100%;
    transform: rotate(-90deg)
}

@media (max-width:1199px) {
    .slide-count {
        font-size: 1em
    }
}

@media (max-width:767px) {
    .slide-count {
        display: none
    }
}

@media all and (-ms-high-contrast:none) {
    .slide-count {
        top: 13px
    }
}

.slide-no {
    color: #ff0f00;
    position: relative;
    display: flex;
    align-items: center;
    padding-right: 3.75em
}

@media all and (-ms-high-contrast:none) {
    .slide-no {
        padding-right: 5em
    }
}

@media (max-width:992px) {
    .slide-no {
        padding-right: 2.75em
    }
}

.slide-no:after {
    content: '';
    background: #a1b5c5;
    display: inline-block;
    width: 3.63em;
    margin: 0 1em;
    height: 1px;
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    margin: auto
}

@media (max-width:992px) {
    .slide-no:after {
        width: 2.75em
    }
}

.slide-total {
    color: #a1b5c5
}

.zoomIcon {
    position: absolute;
    top: 2em;
    right: 2em;
    width: 1.375em;
    height: 1.375em;
    background: url(../svg/zoom-icon.svg) no-repeat;
    background-size: contain;
    z-index: 2
}

@media (max-width:767px) {
    .zoomIcon {
        top: 1em;
        right: 1em;
        width: 2em;
        height: 2em
    }
}

.social--section {
    padding-bottom: 0;
    overflow: hidden
}

.social--section h2 {
    margin-bottom: .5em
}

.social--section .content {
    color: #3c3f46
}

.social--section .content p {
    margin-bottom: 2em
}

.social--section .content a:hover {
    text-decoration: none
}

@media (max-width:420px) {
    .social--section .side-img img {
        height: 223px
    }
}

.s-imglist {
    display: flex
}

@media (max-width:767px) {
    .s-imglist {
        flex-wrap: wrap
    }
}

.side-img {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative
}

.side-img img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: auto;
    height: 100%;
    z-index: 0
}

@media (max-width:992px) {
    .side-img {
        margin: -7em 0 0;
        height: auto
    }

    .side-img img {
        position: relative;
        left: 0;
        transform: none;
        width: 100%;
        height: auto
    }
}

@media (max-width:767px) {
    .side-img {
        margin: 0
    }
}

.s-bigimg {
    width: 24.75em;
    height: 19.375em;
    margin-right: .75em;
    overflow: hidden
}

.s-bigimg img {
    width: 100%;
    height: auto
}

@media (max-width:767px) {
    .s-bigimg {
        margin: 0 0 1em;
        width: 100%;
        height: 17.5em
    }
}

.s-smallimg {
    margin: 0 0 1em
}

.s-smallimg .img {
    width: 15.375em;
    height: 10.4375em;
    margin-bottom: .75em;
    overflow: hidden
}

.s-smallimg img {
    width: 100%;
    height: auto
}

@media (max-width:767px) {
    .s-smallimg {
        margin: 0;
        display: flex;
        justify-content: space-between;
        width: 100%
    }

    .s-smallimg .img {
        width: calc(50% - .3em);
        height: 7em;
        margin-bottom: 0
    }
}

.s-list {
    display: flex;
    flex-wrap: wrap;
    margin: .25em 0 0
}

.s-list a {
    display: block
}

.s-list a:hover {
    text-decoration: none
}

@media (max-width:767px) {
    .s-list a {
        padding: .5em 0
    }
}

.s-link {
    color: #3c3f46;
    margin-right: .625em;
    line-height: 1
}

.s-link:before {
    display: inline-block;
    content: '';
    width: .8em;
    height: .8em;
    margin-right: .625em;
    background-repeat: no-repeat;
    background-size: contain
}

.s-link:hover {
    color: #ce180c
}

.s-facebook:before {
    background-image: url(../svg/social/facebook.svg)
}

.s-instagram:before {
    background-image: url(../svg/social/instagram.svg)
}

.s-twitter:before {
    background-image: url(../svg/social/twitter.svg)
}

.featured--section {
    background: #f3f8fb
}

.featured--section .featured--bg {
    background-repeat: no-repeat;
    background-size: cover;
    opacity: .4;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.f-tabs {
    position: relative;
    z-index: 3
}

.f-tabs .nav-tabs {
    padding-left: 9em;
    margin-bottom: 2.5em;
    border-bottom: 0
}

@media (max-width:992px) {
    .f-tabs .nav-tabs {
        padding-left: 3.5em
    }
}

@media (max-width:767px) {
    .f-tabs .nav-tabs {
        padding-left: 0
    }
}

.f-tabs .nav-item {
    padding: 0 3em 0
}

@media (max-width:1025px) {
    .f-tabs .nav-item {
        padding: 0 1.5em 0
    }
}

@media (max-width:767px) {
    .f-tabs .nav-item {
        padding: 0 .5em 0;
        margin-bottom: 1em
    }
}

.f-tabs .nav-link {
    font-size: 1.25em;
    font-style: italic;
    text-transform: uppercase;
    color: #90a9e7;
    border: 0;
    padding: 0 0 .5em;
    position: relative
}

@media (max-width:767px) {
    .f-tabs .nav-link {
        font-size: .85em
    }
}

.f-tabs .nav-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 0;
    width: 0%;
    background: #ff0f00;
    transition: .5s
}

.f-tabs .nav-link:hover {
    color: #051147
}

.f-tabs .nav-link.active {
    color: #051147;
    border: 0;
    background: 0 0
}

.f-tabs .nav-link.active:before {
    width: 90%;
    height: 2px
}

#nav-shuttle .combo-slider:before {
    bottom: -14px;
    top: auto;
    transform: none
}

.combo-slider {
    width: 75%;
    margin: 0 0 0 auto;
    padding-left: 2.8125em;
    position: relative
}

.combo-slider .swiper-container {
    padding: 4em 0 6.25em;
    margin-bottom: 3.75em
}

.combo-slider .swiper-slide {
    width: 48.25em;
    padding: 0 1em
}

.combo-slider .swiper-slide:first-child {
    padding-left: 0
}

.combo-slider:before {
    content: '';
    position: absolute;
    top: 47%;
    left: 0;
    width: 1px;
    height: 16.25em;
    transform: translate(0, -50%);
    background: #00aeef
}

@media (max-width:767px) {
    .combo-slider .card__detail {
        min-height: 14.5em
    }
}

.combo-slider .combo-card {
    overflow: hidden
}

@media (max-width:1025px) {
    .combo-slider {
        width: 82%;
        padding-left: 3em
    }

    .combo-slider .swiper-container {
        padding: 0 0 5.25em;
        margin-bottom: 1.75em
    }
}

@media (max-width:992px) {
    .combo-slider {
        width: 95%
    }

    .combo-slider .swiper-slide {
        width: 40em
    }
}

@media (max-width:767px) {
    .combo-slider {
        width: 100%;
        padding: 0 30px
    }

    .combo-slider:before {
        content: normal
    }

    .combo-slider .swiper-slide {
        width: 40em
    }
}

@media (max-width:767px) {
    .combo-slider .swiper-slide {
        width: auto;
        padding: 0
    }
}

.combo-card {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    box-shadow: 0 0 1em rgba(255, 255, 255, .4)
}

.combo-card h3 {
    font-size: 2.5em;
    margin-bottom: 1em
}

@media (max-width:1025px) {
    .combo-card h3 {
        font-size: 2.25em;
        margin-bottom: 1em
    }
}

@media (max-width:992px) {
    .combo-card h3 {
        margin-bottom: .75em
    }
}

@media (max-width:767px) {
    .combo-card h3 {
        margin-bottom: .5em;
        font-size: 1.65em
    }
}

.card__img {
    width: 20em;
    height: 21.5625em
}

.card__img img {
    width: 100%;
    height: auto
}

@media (max-width:992px) {
    .card__img {
        width: 16.667em;
        height: 17.917em
    }
}

@media (max-width:767px) {
    .card__img {
        width: 100%;
        height: 15em;
        overflow: hidden
    }
}

.card__detail {
    width: calc(100% - 20em);
    text-align: center;
    padding: 2.5em 1em
}

@media (max-width:992px) {
    .card__detail {
        width: calc(100% - 16.7em);
        padding: 1.5em 1em
    }
}

@media (max-width:767px) {
    .card__detail {
        width: 100%
    }
}

.card__detail .card__price {
    margin-bottom: 0
}

.card__text {
    margin-bottom: .75em;
    line-height: 1;
    font-size: 1.125em
}

@media (max-width:1025px) {
    .card__text {
        font-size: 1em
    }
}

.card__days {
    padding-bottom: 1em;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .875em;
    color: #ffc00f;
    margin-bottom: 3em;
    position: relative;
    letter-spacing: 3px
}

.card__days:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #ffc00f;
    width: 1.5em;
    height: 2px
}

@media (max-width:992px) {
    .card__days {
        margin-bottom: 2em
    }
}

@media (max-width:767px) {
    .card__days {
        margin-bottom: 1em
    }
}

.card__price {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.5em;
    color: #ec282e;
    margin-bottom: .5em
}

@media (max-width:1025px) {
    .card__price {
        font-size: 1.25em
    }
}

@media (max-width:767px) {
    .card__price {
        font-size: 1.125em
    }
}

.card__type {
    line-height: 1;
    font-size: .8125em;
    margin: 0
}

.swiper-scrollbar-drag {
    width: 2.125em !important;
    height: 2.125em;
    border: 1px solid #565656;
    background: #fff;
    border-radius: 100%
}

.swiper-scrollbar-drag:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: #565656;
    transform: translate(-50%, -50%)
}

.swiper-container-horizontal>.swiper-scrollbar {
    left: 1em;
    bottom: 0;
    z-index: 50;
    height: 34px;
    background: 0 0
}

.swiper-container-horizontal>.swiper-scrollbar:before {
    content: '';
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #565656
}

@media (max-width:767px) {
    .swiper-container-horizontal>.swiper-scrollbar {
        left: .7em
    }
}

.c-title {
    position: absolute;
    top: 60%;
    left: -2em;
    text-transform: uppercase;
    color: #fff;
    font-size: .875em;
    margin: 0;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    font-weight: 700
}

.shuttle--card.combo-slider {
    padding-right: 4em
}

@media (max-width:767px) {
    .shuttle--card.combo-slider {
        padding-right: 30px
    }
}

.shuttle--card .card__detail {
    text-align: left;
    padding: 4em 3.375em 1.25em
}

@media (max-width:1199px) {
    .shuttle--card .card__detail {
        padding: 1.5625em 1.25em .9375em
    }
}

@media (max-width:1199px) {
    .shuttle--card h3 {
        font-size: 1.9em
    }
}

@media (max-width:992px) {
    .shuttle--card h3 {
        font-size: 1.65em
    }
}

@media (max-width:767px) {
    .shuttle--card h3 {
        font-size: 1.45em
    }
}

.shuttle--card .shuttle--ul {
    display: flex
}

@media (max-width:767px) {
    .shuttle--card .shuttle--ul {
        flex-direction: column
    }
}

.shuttle--card .shuttle--ul ul {
    list-style-type: decimal;
    width: 50%;
    margin-bottom: 0
}

@media (max-width:767px) {
    .shuttle--card .shuttle--ul ul {
        width: 100%
    }
}

@media (max-width:992px) {
    .shuttle--card .shuttle--ul ul {
        padding-left: 1.5625em
    }
}

.shuttle--card .shuttle--ul ul li {
    line-height: 1.2;
    margin-bottom: .83em;
    font-size: 1.125em
}

@media (max-width:1199px) {
    .shuttle--card .shuttle--ul ul li {
        font-size: 1.0625em
    }
}

.passes--section {
    padding: 8em 0 5em;
    background: #00aeef
}

@media (min-width:1025px) {
    .passes--section {
        height: 60.625em
    }
}

@media (max-width:992px) {
    .passes--section {
        padding: 4em 0
    }
}

.passes--section:after,
.passes--section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150%;
    background: radial-gradient(ellipse at 20% 12%, rgba(255, 255, 255, .95) 7%, rgba(255, 255, 255, 0) 50%);
    z-index: 0
}

.passes--section:after {
    width: 100%;
    height: 250%;
    background: radial-gradient(ellipse at 80% 15%, rgba(255, 255, 255, .5) 0, rgba(255, 255, 255, 0) 20%);
    z-index: 0
}

.passes--section .sec-header h2 {
    margin: 0
}

.package-card {
    width: 23.625em;
    height: 23.8125em;
    box-shadow: 0 0 4.5em rgba(39, 38, 57, .4)
}

@media (max-width:767px) {
    .package-card {
        box-shadow: 0 0 2em rgba(39, 38, 57, .2);
        width: 100%;
        height: 21em
    }
}

.package-img {
    width: 100%;
    height: 17.8125em;
    overflow: hidden
}

.package-img img {
    width: 100%;
    height: auto
}

@media (max-width:767px) {
    .package-img {
        height: 15em
    }
}

.package-slider .swiper-slide-active .package-stats li {
    opacity: 1;
    transform: translateY(0)
}

.package-slider .swiper-slide-active .package-stats li:nth-of-type(1) {
    transition-delay: .2s
}

.package-slider .swiper-slide-active .package-stats li:nth-of-type(2) {
    transition-delay: .3s
}

.package-slider .swiper-slide-active .package-stats li:nth-of-type(3) {
    transition-delay: .4s
}

.package-slider .swiper-slide-active .package-stats li:nth-of-type(4) {
    transition-delay: .5s
}

.package-slider .swiper-slide-active .package-stats li:nth-of-type(5) {
    transition-delay: .6s
}

.package-slider .swiper-slide-active .package-price {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .5s
}

.package-slider .swiper-slide-active .package-price span {
    opacity: 1;
    transform: translateX(0);
    transition-delay: .6s
}

.package-slider .swiper-slide-active .package-cta div {
    opacity: 1;
    transform: translateX(0)
}

.package-slider .swiper-slide-active .package-cta div:nth-of-type(1) {
    transition-delay: .2s
}

.package-slider .swiper-slide-active .package-cta div:nth-of-type(2) {
    transition-delay: .3s
}

@media (max-width:767px) {
    .package-slider .swiper-slide {
        display: flex;
        flex-wrap: wrap
    }
}

.package-caption {
    padding: 1em 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    height: 6em
}

.package-caption p {
    font-size: 1em;
    color: #051147;
    margin: 0;
    line-height: 1
}

.package-caption .card-title {
    font-weight: 700;
    font-size: 1.25em;
    margin-bottom: .5em
}

.package-slide {
    display: flex;
    justify-content: center;
    position: relative;
    width: 76%;
    height: 23.8125em;
    margin: 5em auto 1em
}

@media (max-width:992px) {
    .package-slide {
        height: 23em;
        width: 88%
    }
}

@media (max-width:767px) {
    .package-slide {
        height: auto;
        flex-flow: column;
        margin: 2em 0;
        width: 100%
    }
}

.package-stats {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 96%;
    width: 10em
}

@media (max-width:992px) {
    .package-stats {
        left: 84%
    }
}

.package-stats p {
    color: #d2daff;
    font-size: .9375em;
    line-height: 1;
    margin-bottom: 1.5em;
    position: relative
}

.package-stats p span {
    padding: .727em 0 1.090em;
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.466em
}

.package-stats p:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 2.66em;
    height: 1px;
    background: #566fbb
}

.package-stats li {
    transform: translateY(6.25em);
    transition: .7s transform 1s, .5s opacity 0s;
    opacity: 0
}

@media (min-width:767px) {
    .package-stats li:last-child p {
        margin-bottom: 0
    }

    .package-stats li:last-child p span {
        padding-bottom: 0
    }

    .package-stats li:last-child p:before {
        content: normal
    }
}

@media (max-width:767px) {
    .package-stats {
        display: flex;
        flex-wrap: wrap;
        left: 0;
        width: 100%;
        position: relative;
        order: -1
    }

    .package-stats li {
        width: 50%
    }

    .package-stats p {
        color: #051147
    }

    .package-stats p span {
        padding: .125em 0 .5em
    }
}

.package-price {
    position: absolute;
    bottom: 0;
    left: 0;
    line-height: 1;
    font-size: 2.5em;
    font-weight: 700;
    font-style: italic;
    text-align: right;
    color: #ff0f00;
    transform: translateX(-3em);
    transition: .7s transform 1s, .5s opacity 0s;
    opacity: 0
}

.package-price span {
    transform: translateX(-3em);
    transition: .7s transform 1s, .5s opacity 0s;
    opacity: 0;
    display: block;
    margin-top: .125em;
    font-size: .5em;
    color: #fff
}

@media (max-width:992px) {
    .package-price {
        font-size: 2em
    }
}

@media (max-width:767px) {
    .package-price {
        position: relative;
        text-align: left
    }
}

.package-base {
    width: 78%;
    margin: 0 auto
}

.package-base img {
    width: 100%;
    height: auto
}

@media (max-width:767px) {
    .package-base {
        width: 100%;
        order: -1
    }
}

.package-cta {
    margin-top: 1.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center
}

.package-cta div {
    transform: translateY(-3em);
    transition: .7s transform 1s, .5s opacity 0s;
    opacity: 0;
    margin: 0 .375em
}

@media (max-width:767px) {
    .package-cta {
        margin-top: 0
    }

    .package-cta div {
        margin-bottom: .5em
    }
}

.package-nav .swiper-button-next,
.package-nav .swiper-button-prev {
    width: 1.875em;
    height: 1.875em;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url(../svg/slider-arrow.svg);
    margin: 0;
    right: 4em;
    left: auto
}

.package-nav .swiper-button-prev {
    left: 4em;
    right: auto;
    transform: rotate(180deg)
}

@media (max-width:992px) {
    .package-nav .swiper-button-prev {
        left: 2em
    }

    .package-nav .swiper-button-next {
        right: 2em
    }
}

@media (max-width:767px) {

    .package-nav .swiper-button-next,
    .package-nav .swiper-button-prev {
        top: 30%
    }

    .package-nav .swiper-button-prev {
        left: 30px
    }

    .package-nav .swiper-button-next {
        right: 30px
    }
}

.packagecard-slider {
    width: 23.625em;
    position: absolute;
    left: 50%;
    top: 10.5em;
    transform: translate(-50%, 0);
    z-index: 3
}

@media (max-width:1025px) {
    .packagecard-slider {
        top: 9.5em
    }
}

@media (max-width:992px) {
    .packagecard-slider {
        top: 9em
    }
}

@media (max-width:767px) {
    .packagecard-slider {
        position: relative;
        width: 100%;
        left: 0;
        transform: none;
        top: 0;
        margin: 2em 0
    }
}

.virtualtour--section {
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 42em
}

@media (min-width:767px) {
    .virtualtour--section {
        height: 60.625em
    }
}

.virtualtour--section h2 {
    margin-bottom: .75em
}

.virtualtour--section .r-cta {
    margin-left: 8.65em
}

.location--section {
    overflow: hidden;
    height: 50em;
    background-color: #bc2a2c;
    background-size: cover
}

@media (min-width:1199px) {
    .location--section {
        height: 60.625em
    }
}

@media (min-width:1200px) {
    .location--section {
        padding: 7em 0
    }
}

@media (max-width:1199px) {
    .location--section {
        height: 43em
    }
}

@media (max-width:992px) {
    .location--section {
        height: 32em
    }
}

@media (max-width:767px) {
    .location--section {
        height: 43em
    }
}

.location--section .location--bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

@media (max-width:1199px) {
    .location--section .location--bg img {
        width: 100%
    }
}



.location--section h2 {
    margin-bottom: .75em;
    position: relative
}

.location--section h2:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: url(../images/header-dots.png) no-repeat;
    background-size: contain;
    width: 8.8695em;
    height: 8.717em;
    transform: translate(-50%, -50%);
    z-index: 0
}

.location--section h2 span {
    color: #fff
}

.location--section h2 .main-h {
    color: rgba(255, 255, 255, .4)
}

.location--section .r-cta {
    margin-left: 8.65em
}

.about--section {
    background-color: #cceffc;
    padding: 10.625em 0 10em
}

@media (max-width:767px) {
    .about--section {
        padding: 4em 0 2.5em
    }
}

.about--section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about/about-section-bg.png) no-repeat center;
    background-size: cover;
    -webkit-background-size: cover
}

.about--section .story__wrap {
    position: inherit;
    top: auto;
    left: auto;
    transform: none;
    padding-top: 0
}

.about--section .story__wrap .twocol-row {
    padding: 0 0 0 17em
}

@media (max-width:1025px) {
    .about--section .story__wrap .twocol-row {
        padding: 0 0 0 15em
    }
}

@media (max-width:992px) {
    .about--section .story__wrap .twocol-row {
        padding: 0 0 0 9em
    }
}

@media (max-width:767px) {
    .about--section .story__wrap .twocol-row {
        padding: 0
    }
}

.about--section .story__wrap .twocol-row .content {
    padding: 0
}

.about--section .story__wrap .twocol-row .content p {
    font-size: 1.1875em;
    width: 100%;
    max-width: 24em;
    color: #050f41
}

.about--section .story__wrap .highlight {
    max-width: 400px
}

@media (max-width:767px) {
    .about--section .story__wrap .highlight {
        max-width: 100%
    }
}

.key--figures {
    padding: 0
}

.key--figures .figures--text {
    width: 100%;
    padding: 9.375em 0 17.5em 0
}

@media (max-width:767px) {
    .key--figures .figures--text {
        position: relative;
        top: auto;
        transform: none;
        padding-top: 5em;
        padding-bottom: 2.5em
    }
}

.key--figures .sec-header h2 {
    margin-bottom: 1.8em
}

.key--figures .sec-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0
}

.figures--list {
    padding-right: 5em;
    display: flex;
    flex-wrap: wrap
}

@media (max-width:1199px) {
    .figures--list {
        padding-right: 0
    }
}

.figures--list .figure--number {
    width: 33.3%;
    padding: 0 1.25em 0 3.125em;
    margin-bottom: 3.75em;
    position: relative;
    display: flex
}

.figures--list .figure--number:last-child:after,
.figures--list .figure--number:nth-child(3n):after {
    display: none
}

@media (max-width:767px) {
    .figures--list .figure--number {
        width: 100%;
        padding: 0
    }

    .figures--list .figure--number:nth-child(3n):after {
        display: block
    }
}

.figures--list .figure--number:after {
    content: '';
    width: 1px;
    height: 6.125em;
    background-color: #0099d7;
    position: absolute;
    top: 1.875em;
    right: 1.25em
}

@media (max-width:767px) {
    .figures--list .figure--number:after {
        width: 80%;
        height: 1px;
        top: auto;
        bottom: -1.875em;
        right: 0;
        left: 0;
        margin: 0 auto
    }
}

.figures--list .f--left--text,
.figures--list .f--right--text {
    color: #363466;
    text-transform: uppercase;
    font-size: 1em;
    letter-spacing: 3.5px;
    text-align: right;
    width: 5.625em;
    line-height: 1.25;
    font-family: sf_pro_displaymedium
}

@media (max-width:767px) {

    .figures--list .f--left--text,
    .figures--list .f--right--text {
        letter-spacing: 1.5px
    }
}

.figures--list .f--right--text {
    text-align: left;
    width: 8.75em;
    margin-top: 4.6875em;
    margin-left: -2.1875em
}

.figures--list .f--middle--number {
    color: #ce180c;
    line-height: 1;
    font-weight: 400;
    padding: 0 10px
}

.figures--list .f--middle--number i {
    font-size: 3.125em
}

.figures--list .f--middle--number i.counter-value {
    font-size: 5em
}

@media (max-width:767px) {
    .figures--list .f--middle--number i.counter-value {
        font-size: 4.375em
    }
}

.mission--section {
    background-color: #00aeef;
    padding: 10.625em 0 1.875em
}

@media (max-width:767px) {
    .mission--section {
        padding: 5em 0 1.875em
    }
}

.mission--section:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/about/mission-bg.png) no-repeat top;
    background-size: cover
}

.mission--section .mission--list {
    display: flex;
    flex-wrap: wrap;
    padding-right: 12.5em;
    padding-left: 3em
}

@media (max-width:767px) {
    .mission--section .mission--list {
        padding: 0
    }
}

.mission--section .mission--text {
    width: 33%;
    padding: 0 3.375em 0 4em;
    margin-bottom: 3.75em
}

@media (max-width:767px) {
    .mission--section .mission--text {
        width: 100%;
        padding: 0 1.5em 0 4em
    }
}

.mission--section .mission--text .mission--heading {
    position: relative;
    padding: 1.35em 0;
    font-size: 1.375em;
    color: #348ac7;
    font-weight: 700
}

.mission--section .mission--text .mission--heading:after {
    counter-increment: my-sec-counter;
    content: "0" counter(my-sec-counter);
    font-size: 4.2em;
    line-height: 1;
    position: absolute;
    left: -.76em;
    top: 0;
    z-index: -1;
    font-weight: 400;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(5, 15, 65, .1);
    font-family: 'Russo One', sans-serif
}

@media all and (-ms-high-contrast:none) {
    .mission--section .mission--text .mission--heading:after {
        color: rgba(54, 52, 102, .125)
    }
}

.mission--section .mission--text p {
    font-size: 1.125em;
    color: #050f41
}

.mission--section .mission--text p:last-child {
    margin-bottom: 0
}

.discover--video {
    background-color: #0c5476;
    padding: 0
}

.discover--video .sec-bg img {
    opacity: .4
}

.discover--video .video--wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10.625em 0 6.25em 0
}

@media (max-width:767px) {
    .discover--video .video--wrapper {
        padding: 5em 0 1.875em
    }
}

.discover--video h2 {
    margin-bottom: 115px;
    color: #fff
}

@media (max-width:767px) {
    .discover--video h2 {
        margin-bottom: 25px
    }
}

.discover--video h2 .main-h {
    color: rgba(181, 216, 239, .5);
    background: 0 0;
    -webkit-background-clip: inherit;
    -webkit-text-fill-color: inherit
}

.discover--video h2::before {
    display: none
}

.discover--video .video--bg {
    display: flex;
    align-items: center;
    justify-content: center
}

.discover--video .video--bg a {
    position: relative;
    overflow: hidden
}

.discover--video .video--bg a:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, .695116) 0, rgba(0, 0, 0, .0508578) 75%)
}

.discover--video .video--bg a>img {
    transition: .5s
}

.discover--video .video--bg a:hover>img {
    transform: scale(1.05)
}

.discover--video .play--button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    margin: auto
}

.discover--video .play--button img {
    width: 100%
}

.sub--section {
    padding: 0 0 0 18em
}

@media (max-width:767px) {
    .sub--section {
        padding: 0
    }
}

.sub--section .highlight {
    max-width: 430px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
    position: relative;
    margin-bottom: 1.75em
}

.sub--section .highlight:before {
    content: '';
    position: absolute;
    right: 100%;
    top: .625em;
    width: 2.5em;
    height: 2px;
    margin-right: 2.5em;
    background: #FFF
}

@media (max-width:767px) {
    .sub--section .highlight:before {
        display: none
    }
}

.route--section {
    /* ////////////////////////////// margin-top: -4.6875em; */
    padding-bottom: 0
}

@media (max-width:767px) {
    .route--section {
        margin-top: -9.375em;
    }
}

.route--section .route--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding-right: 6.25em;
    margin: 0px;
    padding-left: 9.375em
}

@media (max-width:1199px) {
    .route--section .route--list {
        padding-right: 0;
        padding-left: 2.25em
    }
}

@media (max-width:992px) {
    .route--section .route--list {
        padding: 0
    }
}

.route--section .route--text {
    width: 33%;
    padding: 0 5em 0 5.5em;
    margin: 0px;
}

.route--section .route--text:nth-child(n+10) .route--heading:after {
    content: counter(my-sec-counter)
}

@media (min-width:767px) {
    .route--section .route--text:nth-child(3n+1) {
       margin-top: 0px;
        margin: 0px;
    }

    .route--section .route--text:nth-child(3n+3) {
       /* margin-top: -8.125em*/
    }
}

@media (max-width:1199px) {
    .route--section .route--text {
        padding: 0 2.5em 0 4.5em;
        margin: 0px;
    }
}

@media (max-width:992px) {
    .route--section .route--text {
        padding: 0 1.375em 0 3.75em;
        margin: 0px;
    }
}

@media (max-width:767px) {
    .route--section .route--text {
        width: 100%;
        padding: 0 1.75em 0 3.5em;
        margin: 0px;
       /* margin-bottom: 3.75em*/
    }
}

.route--section .route--text .route--heading {
    position: relative;
    padding: 1em 0 .85em;
    font-size: 1.875em;
    line-height: 1.15;
    color: #0a2332;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
}

@media (max-width:1199px) {
    .route--section .route--text .route--heading {
        padding: .65em 0 .65em;
        font-size: 1.25em
    }
}

.route--section .route--text .route--heading:after {
    counter-increment: my-sec-counter;
    content: "0" counter(my-sec-counter);
    font-size: 4.2em;
    line-height: 1;
    position: absolute;
    left: -.76em;
    top: 0;
    z-index: -1;
    font-weight: 400;
    font-style: normal;
    color: transparent;
    font-family: 'Russo One', sans-serif;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: rgba(181, 216, 239, .6)
}

@media all and (-ms-high-contrast:none) {
    .route--section .route--text .route--heading:after {
        color: rgba(181, 216, 239, .35)
    }
}

@media (max-width:1199px) {
    .route--section .route--text .route--heading:after {
        font-size: 3.5em
    }
}

.route--section .route--text p {
    font-size: 1.125em;
    color: #050f41
}

.route--section .route--text p:last-child {
    margin-bottom: 0
}

.route--section .route--text img {
    margin-bottom: 2em;
    max-width: 100%
}

@media (max-width:767px) {
    .route--section .route--text img {
        width: 100%
    }
}

.route--section .route--text .btn--center {
    width: 100%
}

@media (max-width:1199px) {
    .route--section .route--text .btn--center {
        max-width: 100%
    }
}

.route--section .bus_route_load_more,
.route--section .loader--list {
    margin-top: -3.5em
}

@media (max-width:767px) {

    .route--section .bus_route_load_more,
    .route--section .loader--list {
        margin-top: 0
    }
}

.loader--list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3em
}

.route--slider {
    padding-left: 4.625em
}

@media (max-width:767px) {
    .route--slider {
        padding-left: 0
    }
}

.route--detail--section .container {
    padding-right: 0
}

@media (max-width:767px) {
    .route--detail--section .container {
        padding-right: 30px
    }
}

.route--detail--section .route--slider img {
    width: 100%
}

.route--detail--section .route--slider .swiper-button-next,
.route--detail--section .route--slider .swiper-button-prev {
    width: 3.5em;
    height: 3.5em;
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s
}

.route--detail--section .route--slider .swiper-button-next img,
.route--detail--section .route--slider .swiper-button-prev img {
    width: 1.25em
}

.route--detail--section .route--slider .swiper-button-next:hover,
.route--detail--section .route--slider .swiper-button-prev:hover {
    background: #000
}

.route--detail--section .route--slider .swiper-button-next img {
    transform: rotate(180deg)
}

.section--map {
    padding-bottom: 0;
    padding-top: 2.6875em
}

@media (max-width:767px) {
    .section--map iframe {
        height: 37.5em
    }
}

.tours--section {
    background-color: #f6ffff;
    padding: 10em 0 8.75em
}

@media (max-width:767px) {
    .tours--section {
        padding: 3.75em 0 2.5em
    }
}

.tours--section .sec-header {
    padding-left: 5em
}

@media (max-width:767px) {
    .tours--section .sec-header h2 {
        font-size: 1.5em
    }

    .tours--section .sec-header h2 span {
        padding-left: 0;
        text-align: left;
        line-height: 1.2
    }
}

@media (max-width:767px) {
    .tours--section .sec-header {
        padding-left: 0
    }
}

.tours--section .tours--s--bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .5;
    background-repeat: no-repeat;
    background-position: bottom
}

.tours--section h2 span {
    text-align: center
}

.tours--section .tours--card {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.tours--section .t--card--info {
    width: 25.5%;
    text-align: center;
    padding-top: .75em;
    border-radius: 16px
}

@media (max-width:767px) {
    .tours--section .t--card--info {
        width: 100%;
        margin-bottom: 1.25em
    }
}

.tours--section .t--card--info:first-child {
    width: 20.25%
}

.tours--section .t--card--info .card--heading {
    font-size: 1.875em;
    height: 2.5em;
    text-transform: uppercase;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    position: relative
}

@media (max-width:1199px) {
    .tours--section .t--card--info .card--heading {
        font-size: 1.5625em
    }
}

@media (max-width:992px) {
    .tours--section .t--card--info .card--heading {
        font-size: 1.1875em
    }
}

@media (max-width:767px) {
    .tours--section .t--card--info .card--heading {
        font-size: 1.5625em
    }
}

.tours--section .t--card--info .card--heading::after {
    content: '';
    position: absolute;
    bottom: .25em;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 2.3em;
    height: 2px
}

.tours--section .t--card--info .info--1--line {
    height: 6.625em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #d5d1d1
}

@media (max-width:767px) {
    .tours--section .t--card--info .info--1--line:before {
        content: attr(data-title);
        text-transform: uppercase;
        color: #041448;
        font-weight: 700;
        font-size: 1.1875em
    }
}

.tours--section .t--card--info .info--2--line {
    height: 6.625em;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #d5d1d1
}

@media (max-width:767px) {
    .tours--section .t--card--info .info--2--line:before {
        content: attr(data-title);
        text-transform: uppercase;
        color: #041448;
        font-weight: 700;
        font-size: 1.1875em
    }
}

.tours--section .t--card--info .info--line {
    padding: 1.25em 0 2.5em
}

.tours--section .t--card--info .info--line .text--18 {
    margin-top: 1em
}

@media (max-width:992px) {
    .tours--section .t--card--info .info--line {
        padding: .625em 0 1.875em
    }

    .tours--section .t--card--info .info--line .text--18 {
        margin-top: .75em
    }
}

@media (max-width:767px) {
    .tours--section .t--card--info .info--line:before {
        content: attr(data-title);
        text-transform: uppercase;
        color: #041448;
        font-weight: 700;
        font-size: 1.1875em
    }
}

.tours--section .t--card--info .text--21 {
    font-size: 1.3125em
}

.tours--section .t--card--info .text--21 span {
    font-size: .85714em
}

@media (max-width:1199px) {
    .tours--section .t--card--info .text--21 {
        font-size: 1.25em
    }

    .tours--section .t--card--info .text--21 span {
        font-size: .85em
    }
}

@media (max-width:992px) {
    .tours--section .t--card--info .text--21 {
        font-size: 1.0625em
    }
}

.tours--section .t--card--info .text--18 {
    font-size: 1.125em;
    line-height: 1.3
}

@media (max-width:1199px) {
    .tours--section .t--card--info .text--18 {
        font-size: 1em
    }
}

@media (max-width:992px) {
    .tours--section .t--card--info .text--18 {
        font-size: .875em
    }
}

.tours--section .t--card--info:nth-child(2) {
    border: 2px solid #ff0f00;
    background-color: #fff;
    margin-right: 1.5%
}

@media (max-width:767px) {
    .tours--section .t--card--info:nth-child(2) {
        margin-right: 0
    }
}

.tours--section .t--card--info:nth-child(2) .card--heading {
    color: #ff0f00
}

.tours--section .t--card--info:nth-child(2) .card--heading::after {
    background-color: #ff0f00
}

.tours--section .t--card--info:nth-child(3) {
    border: 2px solid #3ad156;
    background-color: #fff;
    margin-right: 1.5%
}

@media (max-width:767px) {
    .tours--section .t--card--info:nth-child(3) {
        margin-right: 0
    }
}

.tours--section .t--card--info:nth-child(3) .card--heading {
    color: #3ad156
}

.tours--section .t--card--info:nth-child(3) .card--heading::after {
    background-color: #3ad156
}

.tours--section .t--card--info:last-child {
    border: 2px solid #2f55a6;
    background-color: #fff
}

.tours--section .t--card--info:last-child .card--heading {
    color: #2f55a6
}

.tours--section .t--card--info:last-child .card--heading::after {
    background-color: #2f55a6
}

.tours--section .text--card {
    text-align: left;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent
}

@media (max-width:767px) {
    .tours--section .text--card {
        display: none
    }
}

.tours--section .text--card .info--1--line:last-child {
    border-bottom: 0
}

.tours--section .text--card .text--18 {
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: #041448
}

.tours--section .text--card .text--18 svg {
    width: 1.6em;
    margin-right: .875em;
    max-height: 1.875em
}

@media (max-width:992px) {
    .tours--section .text--card .text--18 svg {
        width: 1.5em;
        margin-right: .1875em
    }
}

@media (max-width:992px) {
    .tours--section .text--card .text--18 {
        font-size: .8125em
    }
}

.tours--twocol .story__wrap .twocol-row {
    padding: 0
}

.tours--twocol .story__wrap .twocol-row .content {
    padding-left: 17em
}

@media (max-width:1025px) {
    .tours--twocol .story__wrap .twocol-row .content {
        padding: 0 0 0 15em
    }
}

@media (max-width:992px) {
    .tours--twocol .story__wrap .twocol-row .content {
        padding: 0 0 0 9em
    }
}

@media (max-width:767px) {
    .tours--twocol .story__wrap .twocol-row .content {
        padding: 0
    }
}

.tours--twocol .story__wrap .twocol-row .content p.highlight {
    max-width: 520px
}

.tours--twocol .left--content {
    padding-left: 5em
}

@media (max-width:992px) {
    .tours--twocol .left--content {
        padding-left: 4.375em;
        margin-top: .5em
    }
}

@media (max-width:767px) {
    .tours--twocol .left--content {
        padding-left: 0
    }
}

.tours--twocol .left--content h3 {
    font-size: 1.25em;
    font-weight: 700;
    color: #051147;
    text-transform: uppercase
}

@media (max-width:767px) {
    .tours--twocol .left--content h3 {
        font-size: 1.125em
    }
}

.form--section {
    margin-top: -18em
}

@media (max-width:767px) {
    .form--section {
        margin-top: -10em
    }
}

.form--section .form-box {
    padding: 0 10.75em
}

@media (max-width:1199px) {
    .form--section .form-box {
        padding: 0 7.5em
    }
}

@media (max-width:767px) {
    .form--section .form-box {
        padding: 0
    }
}

.form--section .form--wrap {
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    -moz-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    padding: 4.875em 3.3125em 2.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative
}

@media (max-width:767px) {
    .form--section .form--wrap {
        padding: 2.5em 1.5625em .625em
    }
}

.form--section .form-group {
    width: 100%;
    margin-bottom: 1.875em
}

@media (min-width:992px) {
    .form--section .form-group {
        width: calc(50% - 4.156em)
    }
}

.form--section .form-control {
    font-size: 1.3em;
    color: #252525;
    border: 1px solid #e1e0e0;
    border-radius: 4px;
    height: auto;
    background-color: #f8f8f8;
    padding: .725em 1em;
    resize: none;
    line-height: 1
}

.form--section .form-control:focus {
    box-shadow: none
}

.form--section .form-control::placeholder {
    opacity: 1;
    color: #252525
}

@media (max-width:767px) {
    .form--section .form-control {
        font-size: 1em
    }
}

.form--section .full--width {
    width: 100% !important;
    position: relative
}

.form--section .full--width .ajax-loader {
    position: absolute;
    top: .875em;
    left: 12.5em
}

@media (max-width:767px) {
    .form--section .full--width .ajax-loader {
        font-size: .7em;
        top: .75em
    }
}

.form--section .input-group {
    margin-bottom: 1.5em
}

.form--section textarea.form-control {
    height: 160px
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
    border: 2px solid red
}

.thanks {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 9
}

.thanks .thanks--inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: #fff
}

.thanks .thanks--inner .thanks--icon {
    width: 9.375em;
    margin-bottom: 2.5em
}

.thanks .thanks--inner .thanks--icon svg * {
    fill: green
}

.thanks .thanks--inner .thanks--message {
    text-align: center
}

.ticket--passes {
    padding-top: 5.625em;
    padding-bottom: 0
}

.ticket--passes:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 60.9375em;
    background: #cceffc url(../images/about/about-section-bg.png) no-repeat center;
    background-size: cover
}

@media (max-width:767px) {
    .ticket--passes:after {
        max-height: 53.125em
    }
}

.ticket--passes .f-tabs .nav-tabs {
    border-bottom: 0;
    margin-bottom: 3.25em
}

@media (max-width:767px) {
    .ticket--passes .sec-header {
        padding-left: 0
    }
}

@media (min-width:1025px) {
    .ticket--passes .sec--text {
        padding-left: 6.75em
    }
}

.ticket--passes .twocol-row {
    padding: 0 0 0 18em
}

@media (max-width:767px) {
    .ticket--passes .twocol-row {
        padding: 0
    }
}

.ticket--passes .twocol-row .content p {
    font-size: 1.1875em;
    width: 100%;
    max-width: 456px;
    color: #050f41
}

.sec--cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 10.8125em;
    margin-top: 2.5em
}

@media (max-width:1199px) {
    .sec--cards {
        padding: 0 5em
    }
}

@media (max-width:992px) {
    .sec--cards {
        padding: 0
    }
}

.sec--cards .card--list {
    width: calc(50% - 1.5em);
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    -moz-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    padding: 3.125em 1.5625em;
    margin-bottom: 5.625em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    transition: .5s
}

@media (max-width:1199px) {
    .sec--cards .card--list {
        padding: 2.5em 1.125em
    }
}

@media (max-width:767px) {
    .sec--cards .card--list {
        width: 100%;
        padding: 1.875em 1.5625em;
        margin-bottom: 2.1875em
    }
}

.sec--cards .card--list:hover {
    background-color: #ff0f00;
}

.sec--cards .card--list:hover .card--pricing .price--list+.price--list {
    border-left: 2px solid #ffc00f
}

.sec--cards .card--list:hover .card--pricing .card__price {
    color: #fff
}

.sec--cards .card--list:hover .anchor {
    color: #252525
}

.sec--cards .card--list:hover .anchor:after,
.sec--cards .card--list:hover .anchor:before {
    background: linear-gradient(to right, #fff 0, #fff 100%)
}

.sec--cards h3 {
    font-size: 2.5em;
    margin-bottom: 1.32em;
    line-height: 1
}

@media (max-width:1199px) {
    .sec--cards h3 {
        font-size: 1.875em
    }
}

.sec--cards .card__detail {
    width: 100%;
    padding: 0
}

.sec--cards .card--pricing {
    margin-bottom: 3.125em;
    display: flex;
    justify-content: center
}

@media (max-width:1199px) {
    .sec--cards .card--pricing {
        margin-bottom: 1.875em
    }
}

.sec--cards .card--pricing .price--list+.price--list {
    padding-left: 3.625em;
    margin-left: 3.625em;
    border-left: 2px solid #cecece;
    transition: .5s
}

@media (max-width:767px) {
    .sec--cards .card--pricing .price--list+.price--list {
        padding-left: 1.375em;
        margin-left: 1.375em
    }
}

.sec--cards .card--pricing .card__price {
    font-size: 1.75em;
    transition: .5s;
    line-height: 1.65;
    padding-bottom: 4px
}

@media (max-width:992px) {
    .sec--cards .card--pricing .card__price {
        font-size: 1.3125em
    }
}

.sec--cards .pass--list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3.4375em
}

@media (max-width:1199px) {
    .sec--cards .pass--list {
        margin-bottom: 1.875em
    }
}

.sec--cards .pass--list .available--list {
    padding: 0 1.25em;
    margin-bottom: 1.15em;
    color: #252525;
    font-size: .75em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    border-right: 1px solid #252525
}

@media (max-width:1199px) {
    .sec--cards .pass--list .available--list {
        padding: 0 .75em
    }
}

@media (max-width:992px) {
    .sec--cards .pass--list .available--list {
        font-size: .625em
    }
}

.sec--cards .pass--list .available--list:last-child {
    border-right: 0
}

.sec--cards .costum--cards.card--list {
    padding: 0 2.875em 3.125em 2.875em
}

@media (max-width:767px) {
    .sec--cards .costum--cards.card--list {
        padding: 0 1.5625em 1.875em 1.5625em
    }
}

.sec--cards .costum--cards .card__days {
    background-color: #ffc00f;
    font-size: 1.125em;
    font-weight: 700;
    color: #ffc00f;
    padding-bottom: 0;
    height: 4.22em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    margin: 0 -2.56em 2.777em
}

@media (max-width:767px) {
    .sec--cards .costum--cards .card__days {
        margin-bottom: 1.875em
    }
}

.sec--cards .costum--cards .card__days::before {
    display: none
}

.sec--cards .costum--cards .card--pricing {
    margin-bottom: 2.1875em
}

.sec--cards .costum--cards .tour--list {
    background-color: #f6f6f6;
    margin-bottom: 1.25em;
    padding: .6875em 2.5em;
    font-size: 1em
}

.sec--cards .costum--cards .tour--list .tour--info {
    border-bottom: 1px solid #c8c8c8;
    padding: .5625em 0;
    display: flex;
    justify-content: space-between
}

.sec--cards .costum--cards .tour--list .tour--info:last-child {
    border-bottom: 0
}

.sec--cards .costum--cards .tour--list .tour--name {
    color: #4f4f4f
}

.section--faq {
    padding: 7.1875em 0 3.75em
}

@media (max-width:992px) {
    .section--faq {
        padding: 5em 0 3.75em
    }
}

@media (max-width:992px) {
    .section--faq {
        padding: 3.75em 0 3.75em
    }
}

.section--faq .sec-header {
    padding-left: 6.25em
}

@media (max-width:1199px) {
    .section--faq .sec-header {
        padding-left: 3.125em
    }
}

@media (max-width:992px) {
    .section--faq .sec-header {
        padding-left: 0
    }
}

.section--faq .sec-header h2 {
    font-size: 2.875em;
    margin-bottom: 1.304em
}

@media (max-width:1199px) {
    .section--faq .sec-header h2 {
        font-size: 2.5em
    }
}

@media (max-width:992px) {
    .section--faq .sec-header h2 {
        font-size: 2.25em
    }
}

@media (max-width:767px) {
    .section--faq .sec-header h2 {
        font-size: 1.25em;
        line-height: 1.3
    }
}

.faq__accordian {
    padding: 0 6.25em;
    margin-bottom: 2em
}

@media (max-width:1199px) {
    .faq__accordian {
        padding: 0 3.125em
    }
}

@media (max-width:992px) {
    .faq__accordian {
        padding: 0
    }
}

.faq__accordian .card {
    border: 0;
    margin-bottom: .4375em;
    -webkit-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    -moz-box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    box-shadow: 0 0 20px 0 rgba(77, 77, 87, .2);
    overflow: hidden;
    border-radius: 10px
}

.faq__accordian .card-header {
    background: #fff;
    padding: 0;
    margin: 0;
    border: 0
}

.faq__accordian .card-header h3 {
    font-size: 1em;
    margin: 0;
    line-height: 1
}

.faq__accordian .card-header a {
    padding: 1em 2.5em 1em 1.5em;
    display: block;
    position: relative;
    color: #051147;
    font-weight: 600;
    transition: .4s;
    font-size: 1.25em;
    text-transform: uppercase
}

@media (max-width:767px) {
    .faq__accordian .card-header a {
        padding: 1em 2.5em 1em 1em;
        line-height: 1.3;
        font-size: 1.125em
    }
}

.faq__accordian .card-header a:hover {
    text-decoration: none
}

.faq__accordian .card-header a:before {
    content: '';
    position: absolute;
    top: 1em;
    right: 1em;
    display: inline-block;
    width: 0;
    height: 0;
    border: solid #051147;
    border-width: 0 2px 2px 0;
    padding: .25em;
    transform: rotate(45deg);
    transition: .5s
}

@media (max-width:767px) {
    .faq__accordian .card-header a:before {
        top: 1.2em
    }
}

.faq__accordian .card-header a[aria-expanded=true] {
    background-color: #ffc00f
}

.faq__accordian .card-header a[aria-expanded=true]:before {
    transform: rotate(135deg)
}

.card-body {
    background-color: #ffc00f;
    padding: 0 1.875em 1.75em;
    margin-top: -5px
}

@media (max-width:767px) {
    .card-body {
        padding: 0 1.25em 1em
    }
}

.card-body p {
    line-height: 1.45;
    font-size: 1.1875em;
    color: #051147
}

.card-body p:last-child {
    margin: 0
}

@media (max-width:767px) {
    .card-body p {
        font-size: 1.1125em
    }
}

.general--section {
    padding: 0;/*7.1875em 0 3.75em*/
    margin-top: 105px;
}

@media (max-width:992px) {
    .general--section {
        padding: 0 0 3.75em
    }
}

@media (max-width:992px) {
    .general--section {
        padding: 0 0 3.75em
    }
}

.general--section .sec-header {
    padding-left: 6.25em
}

@media (max-width:1199px) {
    .general--section .sec-header {
        padding-left: 3.125em
    }
}

@media (max-width:992px) {
    .general--section .sec-header {
        padding-left: 0
    }
}

.general--section .sec-header h2 {
    font-size: 2.875em;
    margin-bottom: 1.304em
}

@media (max-width:1199px) {
    .general--section .sec-header h2 {
        font-size: 2.5em
    }
}

@media (max-width:992px) {
    .general--section .sec-header h2 {
        font-size: 2.25em
    }
}

@media (max-width:767px) {
    .general--section .sec-header h2 {
        font-size: 1.5em;
        line-height: 1.3
    }
}

.general--text {
    padding: 0 6.25em
}

@media (max-width:1199px) {
    .general--text {
        padding: 0 3.125em
    }
}

@media (max-width:992px) {
    .general--text {
        padding: 0
    }
}

.general--block {
    margin-bottom: 3.5em
}

.general--block h4 {
    font-size: 1.25em;
    font-weight: 700;
    color: #050f41;
    margin-bottom: .75em
}

.general--block p {
    font-size: 1.1875em;
    color: #050f41;
    margin-bottom: .5em
}

.general--block p:last-child {
    margin-bottom: 0
}

.combo--ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.combo--ul .combo--li {
    width: calc(50% - 15px);
    margin-bottom: 1.875em
}

@media (max-width:767px) {
    .combo--ul .combo--li {
        width: 100%
    }
}

.combo--ul .combo--li .combo-card {
    background-color: #f2fbfe
}

.combo--ul .combo--li .card__img {
    width: 23.75em;
    height: auto
}

@media (max-width:1199px) {
    .combo--ul .combo--li .card__img {
        width: 16.5em;
        height: 19em
    }
}

@media (max-width:992px) {
    .combo--ul .combo--li .card__img {
        width: 13em;
        height: 15em
    }
}

@media (max-width:767px) {
    .combo--ul .combo--li .card__img {
        width: 100%;
        height: 18em
    }
}

.combo--ul .combo--li .card__detail {
    width: calc(100% - 23.95em);
    padding: 3.75em 1em 1.25em
}

@media (max-width:1199px) {
    .combo--ul .combo--li .card__detail {
        width: calc(100% - 16.5em);
        padding: 1.5625em 1em 1.25em
    }
}

@media (max-width:992px) {
    .combo--ul .combo--li .card__detail {
        width: calc(100% - 13em);
        padding: 1.125em 1em .75em
    }
}

@media (max-width:767px) {
    .combo--ul .combo--li .card__detail {
        width: 100%;
        padding: 1.5625em 1em 1.5625em
    }
}

.combo--ul h3 {
    font-size: 1.875em;
    margin-bottom: .74em
}

@media (max-width:1199px) {
    .combo--ul h3 {
        font-size: 1.5625em;
        margin-bottom: .75em
    }
}

@media (max-width:992px) {
    .combo--ul h3 {
        font-size: 1.25em;
        margin-bottom: .5em
    }
}

@media (max-width:992px) {
    .combo--ul h3 {
        font-size: 1.625em
    }
}

.combo--ul .card__days {
    margin-bottom: 2.5em;
    letter-spacing: 2px
}

@media (max-width:1199px) {
    .combo--ul .card__days {
        margin-bottom: 1em;
        padding-bottom: .75em
    }
}

@media (max-width:992px) {
    .combo--ul .card__days {
        margin-bottom: .75em;
        padding-bottom: .5em
    }
}

.combo--ul .card__text {
    line-height: 1.55;
    margin-bottom: 1.2em
}

@media (max-width:992px) {
    .combo--ul .card__text {
        font-size: .85em;
        line-height: 1.25;
        margin-bottom: .85em
    }
}

.combo--ul .card__price {
    margin-bottom: .38em
}

@media (max-width:992px) {
    .combo--ul .card__price {
        font-size: 1em
    }
}

.combo--ul .card__price+.sec--btn {
    margin-top: 3.125em
}

@media (max-width:1199px) {
    .combo--ul .card__price+.sec--btn {
        margin-top: 1.5625em
    }
}

@media (max-width:992px) {
    .combo--ul .card__price+.sec--btn {
        margin-top: 1.125em
    }
}

.combo--ul .card__type {
    letter-spacing: 1.5px
}

.combo--ul .sec--btn {
    margin-top: 1.875em
}

@media (max-width:1199px) {
    .combo--ul .sec--btn {
        margin-top: 1.25em
    }
}

@media (max-width:992px) {
    .combo--ul .sec--btn {
        margin-top: .75em
    }
}

@media (max-width:992px) {
    .combo--ul .anchor {
        padding: .65em 1.5em;
        font-size: .75em
    }
}

.combo--savers {
    margin-top: -18.375em
}

@media (max-width:767px) {
    .combo--savers {
        margin-top: -9.375em
    }
}

#notfound {
    position: relative;
    padding: 10em 0 8em 0
}

#notfound .notfound {
    width: 100%;
    line-height: 1.4;
    text-align: center
}

#notfound .notfound-404 {
    position: relative;
    height: 220px;
    margin: 0 auto 60px;
    z-index: -1
}

@media (max-width:480px) {
    #notfound .notfound-404 {
        height: 148px;
        margin: 0 auto 10px
    }
}

#notfound h1 {
    font-size: 236px;
    font-weight: 500;
    margin: 0;
    color: #ce180c;
    text-transform: uppercase;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

@media (max-width:767px) {
    #notfound h1 {
        font-size: 148px
    }
}

@media (max-width:480px) {
    #notfound h1 {
        font-size: 86px
    }
}

#notfound h2 {
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    color: #051147;
    background: #fff;
    padding: 10px 5px;
    margin: auto;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 600px
}

@media (max-width:480px) {
    #notfound h2 {
        font-size: 16px
    }
}

.blog--section {
    padding-bottom: 2.5em
}

.blog-post-section {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -3em
}

@media (max-width:1100px) {
    .blog-post-section {
        margin: 0 -1.5em
    }
}

.blog-post-box {
    height: 100%;
    padding-bottom: 2em;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2)
}

.blog__litem {
    width: 33.33%;
    padding: 0 3.25em 4.375em
}

@media (max-width:1100px) {
    .blog__litem {
        padding: 0 1.5em 3em
    }
}

@media (max-width:992px) {
    .blog__litem {
        width: 50%
    }
}

@media (max-width:767px) {
    .blog__litem {
        width: 100%
    }
}

.blog__heading {
    margin-bottom: 5em
}

@media (max-width:1100px) {
    .blog__heading {
        margin-bottom: 3em
    }
}

@media (max-width:767px) {
    .blog__heading {
        margin-bottom: 15px
    }
}

.blog__heading h3 {
    font-weight: 700;
    font-size: 2.875em;
    margin-bottom: .5em;
    text-transform: uppercase;
    font-style: italic;
    color: #ce180c;
    line-height: .8
}

@media (max-width:1025px) {
    .blog__heading h3 {
        font-size: 2.25em
    }
}

@media (max-width:767px) {
    .blog__heading h3 {
        font-size: 1.85em
    }
}

.blog-post-image {
    margin-bottom: 1em;
    width: 100%;
    height: 17.125em;
    overflow: hidden;
    position: relative
}

.blog-post-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    z-index: 0;
    transition: .3s
}

@media (max-width:1100px) {
    .blog-post-image img {
        position: static;
        transform: none
    }
}

.blog-post-image span {
    position: absolute;
    bottom: 0;
    background: #ce180c;
    padding: 1em 1.5em;
    color: #fff;
    font-weight: 400;
    font-size: 1em;
    left: 0
}

@media (max-width:1100px) {
    .blog-post-image span {
        bottom: 1.4em
    }
}

@media (max-width:992px) {
    .blog-post-image span {
        bottom: 0
    }
}

@media (max-width:767px) {
    .blog-post-image {
        height: auto
    }
}

.blog-post-heading {
    padding: .75em 1em .15em;
    margin-bottom: 0;
    overflow: hidden
}

@media (max-width:767px) {
    .blog-post-heading {
        height: auto
    }
}

.blog-post-heading h3 {
    font-size: 1.25em;
    line-height: 1.5;
    margin-bottom: 0;
    color: #050f41
}

.blog-post-heading h3 a {
    color: #ce180c;
    font-style: italic
}

.blog-post-heading h3 a:hover {
    text-decoration: none;
    color: #ce180c
}

.blog-post-content {
    padding: .75em 1em 0
}

.blog-post-content p {
    font-size: 1.1875em;
    line-height: 1.5;
    color: #050f41;
    font-weight: 300
}

.blog-post-button {
    padding: 0 1em
}

.blog-post-button a {
    color: #050f41;
    font-weight: 700;
    transition: .5s;
    font-size: 1.125em
}

.blog-post-button a:hover {
    color: #ce180c;
    text-decoration: none
}

.blog-listing-pagination {
    display: flex;
    width: 100%;
    justify-content: center
}

.blog-listing-pagination ul {
    display: inline-flex;
    justify-content: center;
    list-style-type: none;
    margin: 0;
    padding: 0
}

.blog-listing-pagination li {
    margin: 0 6px;
    display: flex
}

.blog-listing-pagination a {
    padding: .65em 1em;
    border: solid 1px #e0e0e0;
    border-radius: 6px;
    color: #050f41;
    font-size: 1em;
    transition: .3s
}

.blog-listing-pagination a:hover {
    background: #ce180c;
    color: #fff;
    text-decoration: none
}

.blog-listing-pagination a.active {
    background: #050f41;
    color: #fff
}

.arrow_left {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(135deg);
    margin-left: 4px
}

.arrow_right {
    border: solid #000;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    margin-right: 4px
}

.blog-listing-pagination a:hover .arrow_left,
.blog-listing-pagination a:hover .arrow_right {
    border: solid #fff;
    border-width: 0 2px 2px 0
}

.logged-in-as {
    display: none
}

.blog-detail-main {
    display: flex;
    flex-wrap: wrap
}

.blog-detail-left {
    width: 67%;
    margin-right: 8%
}

@media (max-width:1100px) {
    .blog-detail-left {
        width: 70%;
        margin-right: 5%
    }
}

@media (max-width:992px) {
    .blog-detail-left {
        width: 70%;
        margin-right: 2%
    }
}

@media (max-width:767px) {
    .blog-detail-left {
        width: 100%;
        margin-right: 0
    }
}

.blog-detail-right {
    width: 25%
}

@media (max-width:992px) {
    .blog-detail-right {
        width: 28%
    }
}

@media (max-width:767px) {
    .blog-detail-right {
        width: 100%;
        margin-top: 3em
    }
}

.blog-detail-image {
    width: 100%;
    height: 30em;
    overflow: hidden;
    position: relative
}

@media (max-width:1100px) {
    .blog-detail-image {
        height: auto
    }
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

@media (max-width:1100px) {
    .blog-detail-image img {
        width: 100%;
        height: auto;
        position: static;
        transform: none
    }
}

.blog-detail-heading {
    width: 100%;
    margin: 2.5em 0
}

@media (max-width:767px) {
    .blog-detail-heading {
        margin: 1.5em 0 0 0
    }
}

.blog-detail-heading h2 {
    color: #ce180c;
    font-weight: 600;
    font-size: 2em;
    letter-spacing: 0;
    line-height: 1.25
}

@media (max-width:767px) {
    .blog-detail-heading h2 {
        font-size: 22px
    }
}

.share__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5em
}

.blog-detail-anchors {
    display: flex;
    width: 50%;
    margin: 1.25em 0 0 0
}

@media (max-width:767px) {
    .blog-detail-anchors {
        width: 100%
    }
}

.blog-detail-anchors a {
    color: #050f41;
    text-transform: uppercase;
    margin: 0 1.5em 0 0
}

.blog-detail-anchors a:hover {
    color: #ce180c
}

.blog-detail-share-icons {
    display: flex;
    width: 50%;
    justify-content: flex-end;
    margin: 1em 0 0 0
}

@media (max-width:767px) {
    .blog-detail-share-icons {
        width: 100%;
        justify-content: flex-start;
        margin-top: 1.5em
    }
}

.blog-detail-share-icons ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex
}

.blog-detail-share-icons li {
    margin: 0 10px
}

@media (max-width:767px) {
    .blog-detail-share-icons li:first-child {
        margin-left: 0
    }
}

.blog-detail-share-icons li a {
    display: inline-block;
    transition: .5s
}

.blog-detail-share-icons li a:hover {
    opacity: .5
}

.blog-detail-share-icons a.share {
    margin: .625em .3125em 0 0;
    display: block
}

.blog-detail-share-icons a.share img {
    width: 1.4375em;
    height: 1.625em
}

.blog-detail-share-icons a img {
    width: 1.875em;
    height: 1.875em
}

.blog-detail-content {
    float: left;
    width: 100%;
    border-top: solid 1px #e7e7e7;
    padding: 1.875em 0 0 0
}

.blog-detail-content p {
    font-size: 1.15em;
    color: #050f41;
    margin: 0 0 1.5em 0;
    line-height: 1.8;
    width: 100%;
    font-weight: 400
}

.inner-blog-detail-content {
    background: #6f587e;
    width: 100%;
    padding: 4em;
    margin-bottom: 2em;
    text-align: center
}

.inner-blog-detail-content p {
    color: #fff;
    margin: 0
}

@media (max-width:767px) {
    .inner-blog-detail-content {
        padding: 2em
    }
}

.indicators-cont {
    display: flex;
    width: 100%;
    padding: 1.5em 0;
    border: solid 1px #e7e7e7;
    border-left: 0;
    margin: .75em 0 0 0;
    border-right: 0;
    justify-content: space-between
}

.indicators-cont a {
    text-transform: uppercase;
    color: #050f41;
    font-size: 1em
}

.indicators-cont a:hover {
    color: #ce180c
}

.post-block {
    display: flex;
    width: 100%;
    padding: 4em 0;
    flex-wrap: wrap;
    align-items: center
}

.post-image {
    width: 10em;
    height: 10em;
    margin: 0 2.5em 0 0
}

.post-image img {
    width: 100%;
    height: 100%
}

.post-content {
    width: 69%;
    font-style: italic
}

@media (max-width:1100px) {
    .post-content {
        width: 65%
    }
}

@media (max-width:992px) {
    .post-content {
        width: 55%
    }
}

@media (max-width:767px) {
    .post-content {
        width: 100%;
        margin-top: 2em
    }
}

.post-content p {
    margin: 0 0 1.375em 0;
    font-size: 1.0625em;
    color: #666;
    font-weight: 400;
    line-height: 30px;
    float: left;
    width: 100%
}

.post-content h1 {
    text-transform: uppercase;
    font-weight: 500;
    color: #050f41;
    font-size: 1.5em;
    letter-spacing: 0;
    margin-bottom: 0;
    display: inline-block
}

.comment-section {
    width: 100%
}

.comment-section form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between
}

.comment-head {
    padding: 0 0 1.6875em 0;
    border-bottom: solid 1px #e7e7e7;
    width: 100%;
    margin: 0 0 2.1875em 0
}

.comment-head h1 {
    text-transform: uppercase;
    font-weight: 600;
    color: #050f41;
    font-size: 1.25em;
    letter-spacing: 0
}

.comment-box {
    display: flex;
    margin: 0 0 3.75em 0
}

.comment-box.inner {
    margin-left: 6.25em;
    width: auto
}

@media (max-width:767px) {
    .comment-box.inner {
        margin-left: 2em
    }
}

.comment-image {
    width: 6.3125em;
    height: 6.3125em
}

.comment-image img {
    width: 100%;
    height: 100%
}

.comment-detail {
    width: 80%;
    margin: 0 0 0 1.5625em
}

.comment-detail h1 {
    text-transform: uppercase;
    font-weight: 600;
    color: #050f41;
    margin: 0 0 1.875em 0;
    font-size: 1.125em;
    letter-spacing: 0;
    width: 100%
}

.comment-detail span {
    font-size: 1.0625em;
    color: #050f41;
    font-weight: 400;
    line-height: inherit;
    text-transform: capitalize
}

.comment-detail a {
    color: #050f41;
    text-transform: uppercase;
    border: solid 1px #ccc;
    padding: .5em .9375em;
    margin: 0 0 0 1.25em;
    font-size: .8125em;
    transition: .3s
}

.comment-detail a:hover {
    text-decoration: none;
    background: #ce180c;
    color: #fff
}

.comment-detail a i {
    position: relative;
    width: 1em;
    height: 1em;
    margin-right: 2em
}

.comment-detail a i:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    background: url(../images/blog/svg/reply-all-button.svg) no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
    transform: translate(0, -30%)
}

.comment-detail p {
    color: #666;
    font-weight: 400;
    line-height: 29px;
    margin: 1.875em 0 0 0;
    width: 100%;
    font-size: 1.0625em
}

input.comment-field {
    width: 49%;
    margin: 0 0 2.1875em 0;
    padding: .9375em;
    border: solid 1px #e7e7e7;
    color: #999
}

@media (max-width:767px) {
    input.comment-field {
        width: 100%
    }
}

.fa-user {
    position: relative;
    width: 1em;
    height: 1em;
    margin-right: 2em
}

.fa-user:after {
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    background: url(../images/blog/svg/avatar.svg) no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
    transform: translate(0, -30%)
}

.fa-comments {
    position: relative;
    width: 1em;
    height: 1em;
    margin-right: 2em
}

.fa-comments:after {
    content: '';
    position: absolute;
    left: 0;
    top: 35%;
    background: url(../images/blog/svg/speech-bubble.svg) no-repeat;
    background-size: contain;
    width: 1.5em;
    height: 1.5em;
    transform: translate(0, -30%)
}

textarea.comment-field {
    width: 100%;
    margin: 0 0 2.1875em 0;
    padding: .9375em;
    border: solid 1px #e7e7e7;
    color: #999;
    height: 180px;
    resize: none
}

input.comment-submit {
    padding: .875em 2.5em;
    background: #050f41;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer
}

input:focus,
textarea:focus {
    outline: 0
}

.search-cont {
    margin-bottom: 3.125em
}

.search-cont form {
    display: flex;
    flex-wrap: wrap
}

.side__head {
    text-transform: uppercase;
    font-weight: 600;
    margin: 0;
    padding: 0 0 1.25em 0;
    color: #050f41;
    font-size: 1.25em;
    letter-spacing: 0;
    width: 100%;
    position: relative;
    line-height: .7
}

.search-field {
    border: solid 1px #e7e7e7;
    padding: .4375em .625em;
    width: 70%
}

.search-submit {
    padding: .75em;
    background: #3a3a3a;
    color: #fff;
    border: none;
    text-transform: capitalize;
    font-weight: 400;
    cursor: pointer;
    width: 30%;
    letter-spacing: 1px;
    transition: .3s
}

.search-submit:hover {
    background: #ce180c
}

.category-cont {
    margin-bottom: 3.125em
}

.category-cont ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none
}

.category-cont li {
    width: 100%;
    padding: 1.0625em 0;
    border-bottom: dashed 1px #999;
    display: flex;
    justify-content: space-between
}

.category-cont a {
    color: #050f41;
    text-transform: capitalize;
    font-size: 1em;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 24px;
    transition: .3s
}

@media (max-width:767px) {
    .category-cont a {
        font-size: 1.25em
    }
}

.category-cont a:hover {
    color: #ce180c;
    text-decoration: none
}

.category-cont span {
    background: #f4f4f4;
    padding: .3125em;
    border: none;
    border-radius: 5px;
    font-size: .875em;
    font-weight: 500
}

.recent-post-cont {
    margin-bottom: 3.125em
}

.recent-post-cont ul {
    padding: 0;
    margin: 0;
    list-style-type: none
}

.recent-post-cont li {
    display: flex;
    padding: 1.375em 0;
    border-bottom: solid 1px #e7e7e7
}

.r-post-image {
    width: 6.25em;
    height: 6.25em;
    margin: 0 1.25em 0 0
}

.r-post-image img {
    width: 100%
}

.r-post-content {
    width: 68%
}

.r-post-content a {
    color: #050f41;
    font-size: 1.25em;
    text-transform: capitalize;
    font-weight: 500;
    width: 100%;
    display: block;
    transition: .3s
}

@media (max-width:992px) {
    .r-post-content a {
        font-size: 1em
    }
}

@media (max-width:767px) {
    .r-post-content a {
        font-size: 1.25em;
        min-height: auto;
        margin-bottom: .5em
    }
}

.r-post-content a:hover {
    color: #ce180c;
    text-decoration: none
}

.r-post-content p {
    text-transform: uppercase;
    color: #667083;
    font-weight: 400;
    word-spacing: 4px;
    width: 100%
}