﻿@charset "UTF-8";

body {
    overflow: hidden;
}

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

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

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

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        -webkit-transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        transition-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}

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

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }

    25%, 75% {
        opacity: 0;
    }
}

@keyframes flash {
    0%, 50%, 100% {
        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);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

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

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-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);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        -ms-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1);
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        -ms-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        -ms-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1);
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        -ms-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        -ms-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }

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

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

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-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);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }

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

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

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

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

.swing {
    -webkit-transform-origin: top center;
    -ms-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);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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;
        -ms-transform: none;
        transform: none;
    }

    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

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

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

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-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%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

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

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

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

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-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%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }

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

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

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-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%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }

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

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

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-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%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }

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

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

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-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%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }

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

    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-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);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}

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

@-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);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }

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

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

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

    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-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);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-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);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }

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

    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-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);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }

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

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

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

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

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

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

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

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-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-transition-timing-function: ease-in;
        transition-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-transition-timing-function: ease-in;
        transition-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);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

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

    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-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);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

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

.flipInX {
    -webkit-backface-visibility: visible !important;
    -ms-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-transition-timing-function: ease-in;
        transition-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-transition-timing-function: ease-in;
        transition-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);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }

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

    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-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);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

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

.flipInY {
    -webkit-backface-visibility: visible !important;
    -ms-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);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-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);
        -ms-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-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    -ms-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);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-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);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

@-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);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }

    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }

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

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-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;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }

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

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-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;
        -ms-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);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-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);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-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);
        -ms-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);
        -ms-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;
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-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);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-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);
        -ms-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);
        -ms-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-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);
        -ms-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);
        -ms-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-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);
        -ms-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);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-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;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    /*font-family: open sans, helvetica neue, Helvetica, Arial, sans-serif;*/
    font-family: 'Titillium Web', sans-serif;
    font-size: 17px;
    line-height: 25px;
    letter-spacing: normal;
    font-weight: 400;
    background: #fcfcfc;
    color: #788;
}

#main_logo {
    margin-top: 2px;
    text-align: center;
    margin-left: 0px;
    margin-right: 0px;
}

    #main_logo img {
        height: 60px;
        max-height: 60px;
    }

img {
    height: auto;
    max-width: 100%;
}

mark {
    color: #fcfcfc;
    background: rgba(34, 171, 166, .8);
}

hr {
    display: block;
    line-height: 25px;
    margin: 30px 0;
    position: relative;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    color: #303030;
}

h1 {
    font-size: 3.2em;
    line-height: 44px;
    margin: 0 0 44px;
}

h2 {
    font-size: 2.6em;
    font-weight: 300;
    line-height: 42px;
    margin: 0 0 32px;
}

h3 {
    font-size: 1.8em;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 24px;
    margin-bottom: 33px;
}

h4,
h5,
h6 {
    letter-spacing: normal;
    margin: 0 0 14px;
}

h4 {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 27px;
}

h5 {
    font-size: .72em;
    font-weight: 600;
    line-height: 18px;
}

h6 {
    font-size: 1em;
    font-weight: 400;
    line-height: 18px;
}

p {
    line-height: 25px;
    margin: 0 0 20px;
    text-align: justify;
}

a {
    color: #6e6ab2;
    text-decoration: none;
    transition: all .3s linear;
    -webkit-transition: all .3s linear;
}

    a:hover,
    a:focus,
    a:active,
    .btn:hover,
    .btn:focus,
    .btn:active {
        text-decoration: none;
        outline: 0;
        box-shadow: none;
        transition: all .2s linear;
        -webkit-transition: all .2s linear;
    }

iframe {
    border: 0;
    margin: 0;
    overflow: hidden;
    width: 100%;
    height: auto;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: rgba(34, 171, 166, .8);
}

::selection {
    text-shadow: none;
    color: #fff;
    background: #6e6ab2;
}

.selection {
    text-shadow: none;
    color: #fff !important;
    background: #6e6ab2 !important;
    padding: 3px 10px;
}

.selection-gray {
    text-shadow: none;
    color: #555 !important;
    background: #eee !important;
    padding: 3px 10px;
}

.main-text {
    text-shadow: none;
    color: #22aba6 !important;
}

.hr {
    margin: 20px 0 10px;
    border-top: 1px solid #22aba6;
}

.animated {
    opacity: 0;
}

.activate {
    opacity: 1;
}

.back-to-top {
    z-index: 99999;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 50px;
    position: fixed;
    bottom: -100px;
    right: 15px;
    cursor: pointer;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    overflow: hidden;
    background: #6e6ab2;
    color: #fcfcfc;
}

    .back-to-top:hover {
        background: #22aba6;
        -webkit-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background: #fcfcfc;
}

#status {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(../images/preloader.gif);
    background-repeat: no-repeat;
    background-position: center;
    margin: -45px 0 0 -45px;
}

.custom-bg {
    position: relative;
    -webkit-backface-visibility: visible !important;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.custom-bg2 {
    background-position: -9999px center;
    background-size: auto;
}

@media(min-width:992px) {
    .custom-bg2 {
        background-repeat: no-repeat;
    }
}

.custom-bg .section-title,
.custom-bg p,
.custom-bg .feature-list,
.custom-bg .box-title {
    color: rgba(254, 254, 254, .9);
}

.custom-bg.parallax {
    background-attachment: fixed;
}

@media(max-width:767px) {
    .custom-bg.parallax {
        background-attachment: scroll !important;
    }
}

.bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #453951;
    opacity: .6;
}

.half {
    position: absolute;
    right: 0;
    top: 0;
    width: 54%;
    height: 100%;
    background-color: rgba(255, 255, 255, .9);
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
}

.half-2 {
    left: 0;
    right: auto;
    width: 30%;
    background-color: #fcfcfc;
    border-radius: 0;
    z-index: 1;
}

.white-box {
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    padding: 25px 20px 30px;
}

@media(max-width:767px) {
    .half {
        width: 100%;
        border-radius: 0;
    }
}

#wrapper {
    background: #fcfcfc;
}

.rs-canvas {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.block {
    display: block !important;
}

.inline-block {
    display: inline-block !important;
}

.dtable {
    display: table;
}

.relative {
    position: relative;
}

.br0 {
    border-radius: 0 !important;
}

.br2 {
    border-radius: 2px !important;
}

.br4 {
    border-radius: 4px !important;
}

.br6 {
    border-radius: 6px !important;
}

.br8 {
    border-radius: 8px !important;
}

.op8 {
    opacity: .8 !important;
}

.op6 {
    opacity: .6 !important;
}

.op4 {
    opacity: .4 !important;
}

.op2 {
    opacity: .2 !important;
}

.raleway {
    /*font-family: raleway, Arial, sans-serif*/
}

.uppercase {
    text-transform: uppercase;
}

.unstyled {
    list-style: none;
    padding: 0 0 10px 20px;
}

.pull-center {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
    clear: both;
    text-align: center;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

@media(max-width:767px) {
    .xs-pull-center {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
        clear: both;
        text-align: center;
    }

    .xs-text-center {
        text-align: center !important;
    }
}

@media(max-width:991px) {
    .sm-pull-center {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
        clear: both;
        text-align: center;
    }

    .sm-text-center {
        text-align: center !important;
    }

    .showcase-img {
        margin-bottom: 30px;
        text-align: center;
    }
}

.mb0 {
    margin-bottom: 0 !important;
}

.mb5 {
    margin-bottom: 5px !important;
}

.mb10 {
    margin-bottom: 10px !important;
}

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

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

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

.mb30 {
    margin-bottom: 30px !important;
}

.mb35 {
    margin-bottom: 35px !important;
}

.mb40 {
    margin-bottom: 40px !important;
}

.mb50 {
    margin-bottom: 50px !important;
}

.mt0 {
    margin-top: 0 !important;
}

.mt5 {
    margin-top: 5px !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.mt35 {
    margin-top: 35px !important;
}

.mt40 {
    margin-top: 40px !important;
}

.mt50 {
    margin-top: 50px !important;
}

.pb0 {
    padding-bottom: 0 !important;
}

.m0 {
    margin: 0 !important;
}

@media(max-width:991px) {
    .sm-pb0 {
        padding-bottom: 0 !important;
    }

    .sm-pb20 {
        padding-bottom: 20px !important;
    }
}

.mr40 {
    margin-right: 40px !important;
}

.ex-grid {
    width: 100%;
    height: 60px;
    background-color: #ededed;
}

    .ex-grid p {
        text-align: center;
        font-size: 18px;
        line-height: 28px;
        padding-top: 16px;
    }

.megamenu .ex-grid {
    height: 40px;
    background-color: #22aba6;
}

    .megamenu .ex-grid p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 0;
        padding: 10px;
    }

@media(max-width:767px) {
    .ex-grid {
        margin-bottom: 10px;
    }
}

.br-dashed:after {
    content: "";
    display: block;
    height: 1px;
    background-color: transparent;
    border-bottom: 1px dashed #788;
    width: 80px;
    margin: 15px auto 18px;
}

.no-border {
    border: none !important;
}

.full-width {
    width: 100%;
}

.full-height {
    height: 100%;
}

.box-shadow {
    box-shadow: 0 0 10px rgba(30, 30, 30, .3);
}

.main-color {
    color: #22aba6 !important;
}

.main-bg {
    background-color: #22aba6 !important;
}

.color-white {
    color: #fcfcfc !important;
}

.color-blue {
    color: #1375a3 !important;
}

.color-blue-2 {
    color: #34aadc !important;
}

.color-green {
    color: #208d1c !important;
}

.color-sea {
    color: #22aba6 !important;
}

.color-orange {
    color: #d18b21 !important;
}

.color-red {
    color: #b54321 !important;
}

.color-red-2 {
    color: #c75c5c !important;
}

.color-yellow {
    color: #fcc813 !important;
}

.color-dark {
    color: #444 !important;
}

.color-default {
    color: #788 !important;
}

.bg-blue {
    background-color: #1375a3 !important;
}

.bg-blue-2 {
    background-color: #34aadc !important;
}

.bg-green {
    background-color: #208d1c !important;
}

.bg-sea {
    background-color: #22aba6 !important;
}

.bg-orange {
    background-color: #d18b21 !important;
}

.bg-red {
    background-color: #b54321 !important;
}

.bg-red-2 {
    background-color: #c75c5c !important;
}

.bg-yellow {
    background-color: #fcc813 !important;
}

.bg-dark {
    background-color: #444 !important;
}

.bg-dark-gray {
    background-color: #788 !important;
}

.bg-light-gray {
    background-color: #aaa !important;
}

.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    list-style: none;
}

    .menu li {
        display: inline-block;
        float: left;
    }

    .menu a {
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
        z-index: 10;
    }

    .menu > li > a {
        padding: 20px 12px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        position: relative;
        color: #87754d;
        display: block;
        font-size: 15px;
        letter-spacing: -0.5px;
        outline: medium none;
        cursor: pointer;
    }

@media(min-width:768px) {
    .menu > li > a:hover {
        color: #87754d;
        background: #eeeeee;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .menu > .first > a::before {
        left: 0;
    }
}

.menu .submenu,
.menu .submenu .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 999999;
    min-width: 150px;
    /*background: rgba(30, 30, 30, .9)*/
}

.menu .submenu {
    top: 65px;
    /*border: 3px solid #dddddd;*/
    background-color: white;
}

    .menu .submenu .submenu {
        left: 160px;
        top: inherit;
        margin-top: -1px;
    }

    .menu .submenu li {
        clear: both;
        width: 100%;
        font-size: 15px;
    }

        .menu .submenu li a {
            width: 100%;
            /*padding: 8px 15px;*/
            padding: 4px 15px;
            border-bottom: solid 0.5px #efefef;
            display: inline-block;
            float: left;
            clear: both;
            text-decoration: none;
            color: #87754d;
            cursor: pointer;
            font-size: 15px;
        }

            .menu .submenu li a:hover {
                background: #87754d;
                color: white;
            }

.menu li a > .fa {
    display: block;
    float: left;
    width: 16px;
    margin: 0 10px 0 -4px;
    font-size: 16px;
    line-height: inherit;
    text-align: center;
}

.menu li a > .fa-single {
    float: none;
    margin: 0;
}

.menu li a > .fa-icon {
    position: relative;
    top: -1px;
    float: none;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0 -5px 0 5px;
    font-size: 8px;
    font-weight: 100;
    line-height: 1;
    text-align: right;
}

.menu li li a > .fa-icon {
    top: 0;
    float: right;
    display: block;
    line-height: inherit;
}

.megamenu {
    position: absolute;
    display: none;
    min-width: 25%;
    top: 75px;
    font-size: 12px;
    z-index: 999999;
    padding: 25px 15px 5px;
    background: rgba(30, 30, 30, .9);
    color: #e8e8e8;
    border-top: 1px solid #22aba6;
    border-bottom: 1px solid #22aba6;
}

.megamenu-list {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}

    .megamenu-list > li {
        width: 100%;
        padding: 4px 0;
        float: none;
    }

    .megamenu-list li:last-child {
        width: 100%;
        padding: 4px 0;
    }

    .megamenu-list > .title {
        font-size: 13px;
        color: #22aba6;
        padding: 0 0 6px;
        text-transform: uppercase;
        font-weight: 600;
    }

.megamenu .tab-content {
    padding: 0;
}

.megamenu .nav-tabs > li {
    margin-bottom: 25px;
    display: block;
}

    .megamenu .nav-tabs > li > a {
        font-size: 13px;
        text-transform: uppercase;
        padding: 5px 10px;
        color: #ccc;
        -webkit-transition: all .6s ease-in;
        transition: all .6s ease-in;
    }

        .megamenu .nav-tabs > li.active > a,
        .megamenu .nav-tabs > li.active > a:hover,
        .megamenu .nav-tabs > li.active > a:focus,
        .megamenu .nav-tabs > li > a:hover,
        .megamenu .nav-tabs > li > a:focus {
            color: #22aba6;
            background-color: transparent;
            border: none;
            border-bottom-color: transparent;
            border-left: 1px solid #22aba6;
            text-indent: 10px;
            -webkit-transition: all .3s ease-in;
            transition: all .3s ease-in;
        }

.megamenu a {
    font-size: 12px;
    -webkit-transition: color .4s ease-in;
    transition: color .4s ease-in;
    color: #e8e8e8;
}

.menu li li a:hover,
.menu li > .megamenu a:hover {
    color: #22aba6;
}

.megamenu.megamenu-half {
    width: 50%;
}

.megamenu.full {
    width: 100%;
    left: 0;
}

.megamenu.two_three {
    width: 66.66%;
    left: 0;
}

.megamenu.three_four {
    width: 75%;
    left: 0;
}

@media(min-width:992px) and (max-width:1199px) {
    .megamenu.megamenu-half {
        width: 70%;
    }

    .megamenu.two_three {
        width: 100%;
    }

    .megamenu.three_four {
        width: 100%;
    }
}

@media(min-width:768px) and (max-width:991px) {
    .megamenu.megamenu-half {
        width: 100%;
    }

    .megamenu.two_three {
        width: 100%;
    }

    .megamenu.three_four {
        width: 100%;
    }
}

.menu > li > .megamenu.left {
    left: 0;
}

.menu > li > .megamenu.right {
    right: 0;
}

.menu > .right {
    float: right;
}

    .menu > .right > .megamenu {
        right: 0;
    }

    .menu > .right > a {
        padding: 25px 0 25px 20px;
    }

.menu > li > a.last {
    padding-right: 10px !important;
}

.menu > li > a.last-2 {
    padding-right: 0 !important;
}

@media(min-width:768px) and (max-width:991px) {
    .menu > .first > a {
        padding-left: 0;
    }
}

.megamenu .row {
    width: 100%;
    margin: 15px 0 0;
}

    .megamenu .row:first-child {
        margin-top: 0;
    }

    .megamenu .row:before,
    .megamenu .row:after {
        display: table;
        content: "";
        line-height: 0;
    }

    .megamenu .row:after {
        clear: both;
    }

.megamenu [class*=col-] {
    display: block;
    width: 100%;
    min-height: 1px;
    float: left;
    padding: 0 10px;
    margin-bottom: 20px;
}

.megamenu .col-1 {
    width: 8.33333333%;
}

.megamenu .col-2 {
    width: 16.66666667%;
}

.megamenu .col-3 {
    width: 25%;
}

.megamenu .col-4 {
    width: 33.33333333%;
}

.megamenu .col-5 {
    width: 41.66666667%;
}

.megamenu .col-6 {
    width: 50%;
}

.megamenu .col-7 {
    width: 58.33333333%;
}

.megamenu .col-8 {
    width: 66.66666667%;
}

.megamenu .col-9 {
    width: 75%;
}

.megamenu .col-10 {
    width: 83.33333333%;
}

.megamenu .col-11 {
    width: 91.66666667%;
}

.megamenu .col-12 {
    width: 100%;
}

.menu .toggle-menu {
    display: none;
    width: 100%;
    height: 50px;
    cursor: pointer;
    color: #788;
    background: #fcfcfc;
}

.toggle-menu .title {
    margin: 10px 0 0;
    float: left;
    text-transform: uppercase;
}

.toggle-menu .icon {
    margin: 17px 0;
    float: right;
}

    .toggle-menu .icon i {
        margin-bottom: 3px;
        display: block;
        width: 20px;
        height: 2px;
        background: #788;
    }

@media(max-width:767px) {
    .container {
        padding-right: 0px;
        padding-left: 0px;
        margin-right: auto;
        margin-left: auto;
        background: none;
    }

    .social-icon {
        display: none;
    }

    .logo_menu {
        position: absolute;
        top: 0px;
        z-index: 99999;
    }

    .main-header {
        height: 65px !important;
    }

    .menu > li {
        display: none;
        width: 100%;
        background-color: white;
    }

    .menu > .toggle-menu {
        display: block;
        margin-top: 5px;
        background-color: white;
        height: 60px;
    }

    .toggle-menu .icon {
        margin: 20px 15px;
        float: right;
    }

    .toggle-menu .title {
        margin: 10px 15px 0;
        float: left;
        text-transform: uppercase;
    }

    .menu > li > a {
        text-transform: uppercase;
        font-size: 13px;
    }

    .menu > li > a,
    .menu > .right > a {
        padding: 15px 25px;
    }

        .menu > li > a:hover {
            color: #22aba6;
        }

    .menu a {
        width: 100%;
        color: #788;
    }

    .menu .submenu > li > a,
    .menu p {
        color: #788;
    }

    .submenu,
    .submenu .submenu {
        width: 100% !important;
        left: 0;
        position: static !important;
        border: none;
    }

    .menu .submenu {
        border-top: none;
        border-bottom: none;
    }

    .submenu li {
        border: none;
    }

    .submenu > li > a {
        padding-left: 40px !important;
    }

    .megamenu {
        width: 100% !important;
        position: static;
        border-top: none;
        border-bottom: none;
        padding: 20px 0 0 50px;
        background-color: transparent;
    }

        .megamenu [class*=col-] {
            float: none;
            display: block;
            width: 100% !important;
        }

        .megamenu .nav-tabs {
            margin-bottom: 20px;
        }

        .megamenu .row,
        .megamenu .row:first-child [class*=col-]:first-child {
            margin-top: 0;
        }

    .menu > li > .submenu > li > a {
        padding-left: 40px !important;
    }

    .menu > li > .submenu > li > .submenu > li > a {
        padding-left: 62px !important;
    }

    .menu > li > .submenu > li > .submenu > li > .submenu > li > a {
        padding-left: 80px !important;
    }
}

.menu li > .submenu:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: 0 0;
}

.menu li > .submenu:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 24px;
}

.menu li li > .submenu {
    top: 0;
    margin: 0 0 0 18px;
    left: 156px;
}

    .menu li li > .submenu:after {
        top: 0;
        right: 100%;
        bottom: auto;
        left: auto;
        width: 8px;
        height: 100%;
    }

    .menu li li > .submenu:before {
        top: 15px;
        right: 100%;
        bottom: auto;
        left: auto;
        border-top: 5px solid transparent;
        border-right: 5px solid rgba(30, 30, 30, .8);
        border-bottom: 5px solid transparent;
    }

.header-wrapper {
    z-index: 9999;
    position: relative;
    width: 100%;
    margin: 0;
    background: #fcfcfc;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

@media(min-width:992px) {
    .menu-fixed .main-header {
        z-index: 9999;
        width: 100%;
        left: 0;
        background: rgba(250, 250, 250, .95);
        box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    }
}

@media(max-width:991px) {
    .menu-fixed .main-header {
        position: relative !important;
    }

    #undefined-sticky-wrapper {
        height: auto !important;
    }
}

.logo {
    display: block;
    margin-top: 14px;
    text-align: center;
}

@media(min-width:768px) {
    .header-wrapper .navbar-right {
        margin-right: 0 !important;
    }
}

@media(max-width:991px) {
    .header-wrapper .navbar-right {
        float: none !important;
    }
}

@media(max-width:767px) {
    .logo img {
        width: auto;
    }

    .header-top .logo {
        background-color: #333;
        padding: 15px 0;
    }
}

@media(min-width:992px) {
    .header-top .header-wrapper {
        background: 0 0;
    }

    .header-top #undefined-sticky-wrapper {
        height: auto !important;
    }

    .header-top .main-header {
        position: fixed;
        z-index: 9999;
        width: 100%;
        left: 0;
        top: 0;
        background-color: transparent;
        -webkit-backface-visibility: hidden;
    }

    .header-top .menu-fixed .main-header {
        background-color: rgba(20, 20, 20, .8);
        border-top: none;
    }

    .header-top .logo {
        opacity: .9;
    }

    .header-top .menu > li > a {
        color: #e8e8e8;
        font-size: 13px;
        text-transform: uppercase;
    }
}

#onepage.menu > li > a {
    text-shadow: none;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    color: #e8e8e8;
}

@media(max-width:767px) {
    #onepage > li:last-child > a {
        padding: 15px 25px 40px;
    }
}

@media(max-width:991px) {
    #onepage.menu > li > a {
        color: #788;
    }

        #onepage.menu > li > a:hover,
        #onepage.menu > .current > a {
            color: #22aba6;
        }
}

@media(min-width:992px) {
    #onepage.menu > li > a::before,
    #onepage.menu .current > a::before {
        position: absolute;
        top: 25px;
        left: 20px;
        overflow: hidden;
        max-width: 0;
        color: #22aba6;
        content: attr(data-hover);
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }

    #onepage.menu > li > a:hover::before,
    #onepage.menu > li > a:focus::before,
    #onepage.menu .current > a::before {
        max-width: 100%;
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }
}

.top-bar {
    background: #87754d;
    color: #fff;
    padding: 0px 0;
}

    .top-bar p {
        margin-bottom: 0;
        color: #fff;
        vertical-align: middle;
    }

.tob-bar a {
    color: #fff;
}

.top-bar a:hover,
.top-bar a:focus {
    color: #22aba6;
}

.top-bar.main-bg p,
.top-bar.main-bg a,
.top-bar.main-bg .fa {
    color: #fafafa;
}

    .top-bar.main-bg a:hover,
    .top-bar.main-bg a:focus {
        color: rgba(240, 240, 240, .7);
    }

.top-bar .social-icon li:last-child {
    margin-right: 0;
}

.top-bar .social-icon {
    margin-right: -8px;
}

    .top-bar .social-icon a .fa {
        color: #fff;
    }

    .top-bar .social-icon a:hover .fa {
        color: #fcfcfc;
    }

@media(max-width:767px) {
    .top-bar .pull-left,
    .top-bar .pull-right {
        float: none !important;
        text-align: center;
    }

    .top-bar .pull-left {
        margin-bottom: 0px;
        background-color: #87754d;
    }

    .top-bar .social-icon,
    .pull-left .topbar-info:last-child {
        margin-right: 0;
    }
}

.top-border {
    border-top: 0px solid #22aba6;
}

.fix-lh {
    line-height: 28px;
}

.topbar-info {
    margin-right: 20px;
}

    .topbar-info .fa {
        margin-right: 5px;
        color: #fcfcfc;
        /*background-color: #22aba6;*/
        padding: 3px;
        border-radius: 4px;
        width: 20px;
        height: 20px;
        text-align: center;
        font-size: 13px;
    }

@media(max-width:360px) {
    .topbar-info .fa {
        display: none;
    }
}

.top-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .top-menu > li {
        padding: 0 10px;
        display: inline-block;
    }

    .top-menu li:last-child {
        padding-right: 0;
    }

    .top-menu li .fa {
        margin-right: 5px;
    }

.boxedcontainer {
    max-width: 1170px;
    margin: auto;
    padding: 0 30px;
}

.tp-banner-container {
    width: 100%;
    position: relative;
    padding: 0;
}

.tp-banner {
    width: 100%;
    position: relative;
}

.tp-banner-fullscreen-container {
    width: 100%;
    position: relative;
    padding: 0;
}

.small_thin_grey.alt1 {
    color: #566;
    font-size: 15px;
}

#main-slider .slides > li {
    height: 550px;
    position: relative;
}

#main-slider {
    height: 550px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .3);
}

.flex-full-height #main-slider,
.flex-full-height #main-slider .slides > li {
    height: 100%;
}

.flexslider {
    margin: 0;
    background: 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}

.flex-content .animated {
    opacity: 0;
}

.flex-content .activate {
    opacity: 1;
}

.flexslider .bg-layer {
    opacity: .5;
}

.flexslider {
    position: relative;
}

.flex-direction-nav {
    position: relative;
}

    .flex-direction-nav a:before {
        content: "" !important;
    }

    .flex-direction-nav .fa {
        color: #fcfcfc;
        background-color: rgba(20, 20, 20, .4);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        text-align: center;
        padding-top: 6px;
    }

    .flex-direction-nav .flex-next .fa {
        padding-left: 3px;
    }

    .flex-direction-nav .flex-prev .fa {
        padding-right: 2px;
    }

    .flex-direction-nav a {
        text-align: center;
        margin: 0;
        top: auto;
        bottom: 10px !important;
    }

    .flex-direction-nav .flex-prev {
        right: 58px !important;
        left: auto !important;
    }

    .flex-direction-nav .flex-next {
        right: 12px !important;
    }

.flex-middle {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.flex-title {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fcfcfc;
    margin: 0 0 15px;
    line-height: 1.3em;
}

.flex-bordered {
    border: 3px solid #fcfcfc;
    padding: 10px 20px;
    display: inline-block;
}

.br-top-bottom {
    padding: 7px 0;
    margin-bottom: 30px;
    position: relative;
}

    .br-top-bottom::before,
    .br-top-bottom::after {
        content: "";
        display: block;
        width: 150px;
        height: 1px;
        border-top: 3px solid #22aba6;
        position: absolute;
        left: 0;
    }

    .br-top-bottom::before {
        top: 0;
    }

    .br-top-bottom::after {
        bottom: 0;
    }

.flex-subtitle {
    font-size: 21px;
    line-height: 1.5em;
    font-weight: 500;
    margin: 0 0 15px;
    color: #fcfcfc;
}

.flex-p {
    color: #fcfcfc;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.flex-btn {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 14px;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}

.flex-btn1 {
    color: #fafafa;
    background-color: rgba(34, 171, 166, .7);
    border: 1px solid rgba(34, 171, 166, .7);
}

.flex-btn2 {
    color: #22aba6;
    border: 1px solid #22aba6;
}

.flex-btn:hover,
.flex-btn:focus {
    background-color: #22aba6;
    color: #fafafa;
    border: 1px solid #22aba6;
    -webkit-transition: all .6s ease-in;
    transition: all .6s ease-in;
}

@media(max-width:767px) {
    #main-slider .slides > li,
    #main-slider {
        height: 400px;
    }

    .flex-title {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .flex-subtitle {
        font-size: 18px;
    }
}

@media(min-width:768px) and (max-width:991px) {
    #main-slider .slides > li,
    #main-slider {
        height: 460px;
    }
}

.titlebar {
    /*padding: 20px 0;*/
    padding: 2px 0;
    background-color: #22aba6;
}

    .titlebar .page-title {
        font-size: 26px;
        line-height: 36px;
        text-transform: none;
        font-weight: 500;
        margin: 0;
        padding: 9px 0;
        letter-spacing: normal;
        color: rgba(254, 254, 254, .9);
        /*font-family: raleway*/
    }

    .titlebar .breadcrumb {
        padding: 20px 0;
        margin: 0;
        list-style: none;
        border-radius: 0;
        background: 0 0;
    }

.breadcrumb > li > a {
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, .8);
}

    .breadcrumb > li > a:hover {
        color: #fff;
    }

.breadcrumb > li {
    display: block;
    float: left;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: normal;
    color: rgba(255, 255, 255, .6);
}

    .breadcrumb > li + li:before {
        content: "/";
        padding: 0 5px;
        color: rgba(255, 255, 255, .6);
    }

.breadcrumb > .active {
    color: rgba(255, 255, 255, .6);
}

@media(max-width:767px) {
    .titlebar .page-title {
        line-height: 40px;
    }

    .titlebar {
        text-align: center;
    }

        .titlebar .page-title {
            float: none !important;
            padding: 9px 0 0;
        }

        .titlebar .breadcrumb {
            float: none !important;
            display: inline-block;
            padding: 15px 0 10px;
        }
}

.titlebar.titlebar1 {
    background: url(../images/shadow.png) no-repeat top center;
    background-color: #87754d;
}

.titlebar.titlebar2 {
    background: #404040;
}

    .titlebar.titlebar2 .page-title {
        color: #eee;
    }

.titlebar.titlebar3 {
    background-color: none;
}

.titlebar.titlebar4 {
    background-color: #f3f3f3;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06);
}

    .titlebar.titlebar4 .page-title,
    .titlebar.titlebar4 .breadcrumb > li > a {
        color: #666;
    }

        .titlebar.titlebar4 .breadcrumb > li > a:hover,
        .titlebar.titlebar2 .breadcrumb > li > a:hover,
        .titlebar.titlebar3 .breadcrumb > li > a:hover {
            color: #22aba6;
        }

.titlebar4 .breadcrumb > li,
.titlebar4 .breadcrumb > li + li:before,
.titlebar4 .breadcrumb > .active {
    color: #888;
}

.titlebar-center .page-title {
    line-height: 40px;
}

.titlebar-center {
    text-align: center;
}

    .titlebar-center .page-title {
        float: none !important;
        padding: 9px 0 0;
    }

    .titlebar-center .breadcrumb {
        float: none !important;
        display: inline-block;
        padding: 15px 0 10px;
    }

.section {
    padding: 40px 0;
}

.section-2 {
    padding: 35px 0;
}

.section-3 {
    padding: 4px 0;
    margin: 40px 0;
}

.section-4 {
    padding: 60px 0 55px;
}

.section-5 {
    padding: 50px 0 0;
}

.section-6 {
    padding: 30px 0 20px;
}

.section-7 {
    padding: 0 0 50px;
}

.section-8 {
    padding: 70px 0 40px;
}

.section-9 {
    padding: 40px 0 55px;
}

.large-padding {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-full-width {
    padding-left: 15px;
    padding-right: 15px;
}

@media(min-width:768px) {
    .section-full-height {
        height: 100%;
    }
}

.section-gray {
    position: relative;
    background-color: #f3f3f3;
}

    .section-gray.top-shadow {
        background: url(../images/shadow.png) no-repeat top center;
        background-color: #f3f3f3;
    }

.section-dark {
    position: relative;
    background-color: #404040;
}

    .section-dark p,
    .section-dark .section-title,
    .section-dark .feature-list,
    .section-dark .box-title,
    .section-dark .nav-tabs > li > a {
        color: #efefef;
    }

.section-boxed {
    padding: 40px 30px;
}

    .section-boxed .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

.intro-section {
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    height: 450px;
    box-shadow: 0 0 20px rgba(0, 0, 0, .25);
}

    .intro-section.testimonials-section {
        padding: 70px 0;
        margin-bottom: 0;
        min-height: 450px;
        overflow-y: hidden;
    }

@media(max-width:767px) {
    .intro-section,
    .intro-section.testimonials-section {
        padding: 30px 0;
    }
}

.custom-section {
    background-color: #6e6ab2;
}

    .custom-section.cs2 {
        background: url(../images/shadow.png) no-repeat top center;
        /*background-color: #6e6ab2;*/
        background-color: #87754d;
    }

    .custom-section .section-title {
        margin: 0 0 30px;
        color: rgba(254, 254, 254, .9);
    }

    .custom-section p {
        color: rgba(254, 254, 254, .9);
    }

    .custom-section .btn {
        border-radius: 0;
    }

    .custom-section .btn-primary {
        color: rgba(254, 254, 254, .9);
        border: 1px solid rgba(254, 254, 254, .9);
        background-color: transparent;
        padding: 8px 12px;
        font-weight: 600;
        text-transform: uppercase;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

        .custom-section .btn-primary:hover {
            color: #22aba6;
            background-color: rgba(254, 254, 254, .9);
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
        }

    .custom-section .alpha {
        color: rgba(254, 254, 254, .9);
    }

.section-title {
    font-size: 32px;
    font-weight: 400;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
    line-height: 36px;
}

@media(max-width:640px) {
    .section-title {
        line-height: 50px;
        margin-bottom: 50px;
    }
}

.section-title.st2 {
    font-size: 28px;
    margin-bottom: 0;
}

.section-title.st3 {
    font-size: 30px;
    margin-bottom: 30px;
}

.section-title.st4 {
    font-size: 26px;
    margin-bottom: 0;
    text-align: left;
}

.section-title-2 {
    margin-bottom: 40px;
    padding: 0 0 5px;
    border-bottom: 2px solid #e1e1e1;
    position: relative;
    font-size: 30px;
    color: #606060;
    font-weight: 400;
    text-align: left;
}

    .section-title-2:after {
        width: 7%;
        height: 2px;
        display: block;
        content: '';
        background-color: #22aba6;
        position: absolute;
        bottom: -2px;
        left: 0%;
    }

    .section-title-2.st-2 {
        font-size: 26px;
    }

    .section-title-2.st-3 {
        font-size: 28px;
        padding: 0 0 10px;
    }

.section-title-3 {
    font-size: 34px;
    font-weight: 600;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    line-height: 40px;
}

    .section-title-3.st2 {
        font-size: 32px;
        line-height: 36px;
    }

    .section-title-3.tshadow {
        text-shadow: 2px 2px 4px #333;
    }

@media(max-width:640px) {
    .section-title-3 {
        line-height: 52px;
        margin-bottom: 40px;
    }
}

.section-subtitle {
    padding: 0 60px;
    margin-bottom: 60px;
    text-align: center;
}

@media(max-width:991px) {
    .section-subtitle {
        padding: 0;
    }
}

.box-content {
    text-align: center;
}

#vticker-services .box-content {
    padding: 10px 0;
}

.box-content h3 {
    margin: 20px 0 14px;
    font-size: 18px;
    font-weight: 400;
    color: #555;
}

.box-content img {
    width: 100px;
    height: 100px;
}

.box-content .big {
    display: block;
    font-size: 54px;
    color: #22aba6;
}

.box-content .box {
    display: inline-block;
    font-size: 70px;
    color: #22aba6;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 25px;
    width: 130px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

    .box-content .box:hover {
        border: 1px solid #22aba6;
        -webkit-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }

.box-content.square {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 30px 10px 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

    .box-content.square:hover {
        border: 1px solid #22aba6;
    }

.box-content-2 .fa {
    float: left;
    display: block;
    margin-right: 25px;
    font-size: 35px;
    color: #414655;
    padding: 18px;
    background-color: #fcfcfc;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.box-content-2:hover .fa {
    color: #22aba6;
    box-shadow: inset 1px 1px 4px #333;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.box-content-2 .box-title-2 {
    margin: 0 0 10px 95px;
    font-size: 18px;
    font-weight: 600;
    color: #353433;
}

.box-content-2 p {
    margin: 0 0 0 95px;
}

.box-content-3 {
    padding: 20px 10px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
}

    .box-content-3 p,
    .box-content-3 .fa,
    .box-content-3 .box-title {
        color: #fcfcfc;
    }

    .box-content-3 .read-more {
        color: #fcfcfc;
        display: block;
        margin-top: 20px;
    }

    .box-content-3 p {
        margin-bottom: 0;
    }

@media(min-width:768px) {
    .br-box {
        border-right: 1px dashed #788;
        padding-top: 30px;
        padding-bottom: 10px;
    }

        .br-box.last {
            border-right: none;
        }

        .br-box .box-content {
            padding: 0 10px;
        }
}

.box-colored {
    color: rgba(254, 254, 254, .9);
    text-align: center;
    padding: 0;
}

.row-box-colored {
    margin-left: 0;
    margin-right: 0;
}

.box-colored .box-title {
    margin: 25px 0 0;
    color: rgba(254, 254, 254, .9);
    font-size: 21px;
}

.box-colored.box1 {
    background-color: #1f9e9a;
}

.box-colored.box2 {
    background-color: #22aba6;
}

.box-colored.box3 {
    background-color: #25b8b2;
}

.box-colored.box4 {
    background-color: #26c0bb;
}

.box-colored .view {
    padding: 45px 30px;
}

    .box-colored .view .descr {
        color: rgba(254, 254, 254, .9);
        font-weight: 500;
        font-size: 14px;
        padding: 40px 20px 0;
    }

.box-colored:hover .default {
    opacity: 0;
}

@media(max-width:767px) {
    .box-colored .view .mask {
        display: none;
    }

    .box-colored:hover .default {
        opacity: 1;
    }

    .box-colored {
        margin: 15px 0;
    }
}

@media(max-width:767px) {
    .xs-box {
        padding-bottom: 30px;
    }

    .xs-box2 {
        padding-bottom: 40px;
    }

    .xs-box3 {
        padding-bottom: 50px;
    }
}

@media(max-width:991px) {
    .sm-box {
        padding-bottom: 30px;
    }

    .sm-box2 {
        padding-bottom: 40px;
    }

    .sm-box3 {
        padding-bottom: 50px;
    }
}

.vticker-selector ul {
    list-style: none;
}

.box-left {
    display: block;
    float: left;
}

    .box-left .fa {
        font-size: 42px;
        color: #22aba6;
        -webkit-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }

.col-sm-4:hover .box-left .fa {
    color: #789;
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transition: all .8s ease-out;
    transition: all .8s ease-out;
}

.box-left img {
    width: 50px;
    height: 50px;
}

.box-right {
    margin-left: 68px;
}

.feature-list {
    width: 100%;
    float: left;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
    list-style: none;
}

    .feature-list:before,
    .feature-list:after {
        display: table;
        content: '';
    }

    .feature-list:after {
        clear: both;
    }

    .feature-list li {
        width: 50%;
        float: left;
        text-align: left;
        margin: 0;
        padding: 0;
        line-height: 200%;
    }

    .feature-list.feature-list-2 li {
        margin-bottom: 8px;
    }

    .feature-list .fa {
        margin-right: 5px;
        color: #22aba6;
    }

@media(max-width:660px) {
    .feature-list li {
        width: 100%;
        float: none;
    }
}

.box-title {
    margin: 15px 0 20px;
    font-size: 20px;
    font-weight: 600;
    color: #6e6ab2;
}

    .box-title.bt2 {
        margin: 0 0 25px;
        font-size: 20px;
        color: #555;
    }

    .box-title.bt3 {
        margin: 0 0 10px;
    }

    .box-title.bt4 {
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .box-title.bt5 {
        font-size: 16px;
    }

.box-title-3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(32, 32, 32, .8);
}

.contact-info a {
    color: #788;
}

    .contact-info a:hover {
        color: #22aba6;
    }

.contact-info .fa {
    margin-right: 10px;
    color: #22aba6;
}

.contact-info p {
    margin: 0 0 12px;
}

    .contact-info p:last-child {
        margin: 0;
    }

.about-section .about {
    margin: 0 0 20px;
}

.about-img {
    text-align: center;
    margin-bottom: 20px;
}

    .about-img img {
        width: 220px;
        border-radius: 50%;
        margin-top: 10px;
    }

@media(min-width:768px) {
    .about-canvas {
        text-align: right;
    }
}

.box-about {
    background-color: rgba(34, 171, 166, .7);
    padding: 40px;
    box-shadow: 0 0 15px rgba(20, 20, 20, .4);
}

.team-section .tab-content {
    padding: 50px 0 20px;
}

.team-section img {
    border: 1px solid #22aba6;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}

.team-section .box-team:hover img {
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.team-section h3 {
    margin: 0 0 4px;
    font-size: 19px;
    color: #666;
    font-weight: 500;
}

    .team-section h3 a {
        color: #788;
        margin-left: 20px;
    }

.team-section h5 {
    margin-bottom: 14px;
    color: #22aba6;
    font-weight: 400;
    font-size: 13px;
}

.team-image {
    position: relative;
    width: 180px;
    height: 180px;
    text-align: center;
    display: block;
    float: left;
}

.team-info {
    margin-left: 215px;
    padding-top: 20px;
}

.team-links {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .8);
    opacity: 0;
    text-align: center;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}

.team-section .box-team:hover .team-links {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

.team-links .social-icon {
    position: relative;
    top: 74px;
}

    .team-links .social-icon .fa {
        font-size: 17px;
        padding: 8px;
        width: 32px;
        height: 32px !important;
    }

    .team-links .social-icon > li {
        margin: 2px;
    }

@media(max-width:991px) {
    .box-team {
        text-align: center;
    }

    .team-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .team-info {
        margin-left: 0;
        padding-top: 20px;
    }
}

.contact-section,
.contact-section .section-title,
.contact-section .box-title {
    color: rgba(254, 254, 254, .9);
    text-align: left;
}

    .contact-section .box-title {
        font-weight: 500;
    }

    .contact-section .nav-tabs {
        border-bottom: none;
    }

        .contact-section .nav-tabs > li > a {
            color: rgba(254, 254, 254, .9);
            border-radius: 2px;
            margin-right: 5px;
        }

.form-subscribe input[type=email] {
    height: 40px;
}

.contact-section .nav-tabs > li.active > a {
    background-color: #6e6ab2;
}

.contact-section .tab-content {
    padding: 0;
}

.contact-section .form input[type],
.contact-section .form textarea {
    padding: 8px;
    margin-bottom: 5px;
    color: #fff;
    background: 0 0;
    border: solid 1px #fff;
    border-radius: 2px;
}

.contact-section .form input[type=submit] {
    width: auto;
    padding: 8px 20px;
    background: #6e6ab2;
    border: none;
    height: auto;
    border-radius: 2px;
}

    .contact-section .form input[type=submit]:hover {
        background: #22aba6;
    }

.contact-section .form input:focus,
.contact-section .form textarea:focus {
    border: 1px solid #22aba6;
    background: 0 0 !important;
}

.contact-section .has-success .form-control {
    border: 1px solid #5da35d !important;
}

.contact-section .has-error .form-control {
    border: 1px solid #a94442 !important;
}

.contact-section .form-message-error {
    color: #fff !important;
}

.contact-section .alert {
    border-color: transparent;
    opacity: .8;
    border-radius: 0 !important;
}

.contact-section ::-webkit-input-placeholder {
    color: #fcfcfc;
    font-weight: 400;
}

.contact-section ::-moz-placeholder {
    color: #fcfcfc;
    opacity: 1;
    font-weight: 400;
}

.contact-section :-ms-input-placeholder {
    color: #fcfcfc;
    font-weight: 400;
}

.contact-section address {
    font-size: 15px;
    color: rgba(254, 254, 254, .9);
    font-weight: 500;
}

    .contact-section address .fa {
        width: 30px;
        height: 30px;
        background-color: #6e6ab2;
        color: rgba(254, 254, 254, .9);
        text-align: center;
        padding-top: 8px;
        margin-right: 10px;
        border-radius: 5px;
    }

.contact-p,
.custom-bg-p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}

.stats-section .timer {
    color: #22aba6;
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 600;
}

.stats-section .box-content h3 {
    margin-bottom: 0;
}

.stats-section .fa {
    color: #666;
}

.box-content.stats {
    display: block;
    background-color: rgba(0, 0, 0, .1);
    padding: 40px 20px;
}

    .box-content.stats h3 {
        color: #fcfcfc;
    }

@media(max-width:767px) {
    .stats-section .box-content {
        margin-bottom: 40px;
    }

    .box-content.stats {
        background: 0 0;
        padding: 0;
    }
}

.testimonials-section {
    padding: 50px 0;
    color: #fcfcfc;
}

    .testimonials-section blockquote h5 {
        color: #22aba6;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        margin: 30px 0 6px;
    }

    .testimonials-section blockquote p {
        color: rgba(254, 254, 254, .9);
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
    }

    .testimonials-section blockquote {
        border: none;
        padding: 0;
        margin: 0;
    }

        .testimonials-section blockquote footer .small {
            font-size: 13px;
            line-height: 24px;
        }

        .testimonials-section blockquote footer:before,
        .testimonials-section blockquote .small:before {
            content: none;
        }

    .testimonials-section .quote-testimonials {
        text-align: center;
        margin-bottom: 20px;
    }

        .testimonials-section .quote-testimonials i {
            font-size: 32px;
            color: #22aba6;
        }

#owl-testimonials .owl-controls {
    margin-top: 15px;
}

.bg-testimonials {
    background: url(../images/demo/testimonials.jpg) repeat top center;
    position: relative;
}

.client {
    position: relative;
    width: 100%;
    height: 160px;
}

.c-img {
    position: absolute;
    right: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all .7s ease-out;
    transition: all .7s ease-out;
}

    .c-img.on {
        opacity: .8;
        -webkit-transition: all .7s ease-out;
        transition: all .7s ease-out;
    }

@media(max-width:991px) {
    .clients-section img {
        margin-bottom: 20px;
    }
}

.plans.plans-2 .plan {
    width: 100%;
}

@media(max-width:991px) {
    .plans.plans-2 .plan {
        margin-bottom: 30px;
    }
}

.plans {
    text-align: center;
}

.plan {
    width: 33.33%;
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    border-top: 3px solid #22aba6;
}

@media(max-width:767px) {
    .plan {
        width: 100%;
        margin-bottom: 30px !important;
        margin-top: 0 !important;
    }
}

.plan:hover h2 {
    color: #22aba6;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.plan-basic {
    margin-right: -5px;
    margin-top: 60px;
}

.plan-professional {
    margin-top: 0;
}

.plan-enterprise {
    margin-left: -5px;
    margin-top: 60px;
}

.plan-header {
    padding: 45px 30px 30px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}

.plan-price {
    font-size: 65px;
    color: #22aba6;
    margin-bottom: 20px;
}

.plan h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #555;
    font-weight: 400;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.plan-features {
    padding: 10px 30px 30px;
    line-height: 27px;
}

    .plan-features ul .plan-feature-header {
        margin: 20px 0;
        font-size: 20px;
        font-weight: 400;
        color: #555;
        letter-spacing: 2px;
    }

.plan-feature-highlight {
    color: #453951;
}

.plan-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .plan-features ul li {
        margin-bottom: 15px;
    }

.plan-feature-off {
    text-decoration: line-through;
    color: #adb7bd;
}

.plan-popular {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #adb7bd;
    margin-bottom: 36px;
}

.plan-curency {
    vertical-align: super;
    font-size: 30px;
}

.plan-period {
    font-size: 14px;
}

#portfolio-isotope {
    display: block;
}

.portfolio-filter {
    text-align: center;
    margin: 20px 0 50px;
}

    .portfolio-filter.filter-2 {
        text-align: left;
        margin: 0 0 50px;
    }

    .portfolio-filter li {
        display: inline-block;
        padding: 0;
        margin-top: 10px;
    }

    .portfolio-filter ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .portfolio-filter li a {
        border: none;
        background: 0 0;
        padding: 8px 12px;
        font-size: 14px;
        color: #22aba6;
        border-radius: 1px;
        color: #788;
        -webkit-transition: all .5s ease-in;
        transition: all .5s ease-in;
    }

        .portfolio-filter li a .fa {
            margin-right: 5px;
        }

        .portfolio-filter li a:hover,
        .portfolio-filter li a:focus,
        .portfolio-filter li a.active {
            color: #fcfcfc;
            background-color: #22aba6;
            -webkit-transition: all .3s ease-in;
            transition: all .3s ease-in;
        }

@media(max-width:767px) {
    .portfolio-filter li {
        margin-bottom: 5px;
    }
}

.portfolio-container {
    width: 100%;
    text-align: center;
}

.portfolio {
    overflow: visible !important;
    margin: 0 auto;
}

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

.portfolio-full-width [class*=col] {
    padding: 0;
}

.portfolio-full-width .portfolio-inner-item {
    margin-bottom: 0;
}

.portfolio-inner-item {
    margin: 0 0 30px;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.portfolio-text .portfolio-inner-item {
    margin-bottom: 0;
}

.portfolio-text {
    margin-bottom: 50px;
}

.portfolio-info {
    background-color: inherit;
    text-align: center;
}

.portfolio-info-title {
    font-size: 22px;
    margin: 25px 0 20px;
    padding: 0 15px;
    font-weight: 400;
    color: #444;
}

    .portfolio-info-title:after {
        content: "";
        display: block;
        height: 1px;
        background-color: #22aba6;
        width: 14%;
        margin-left: 43%;
        margin-top: 14px;
        -webkit-transition: all .5s linear;
        transition: all .5s linear;
    }

.portfolio-info-text {
    color: gray;
}

.portfolio-text:hover .portfolio-info-title:after {
    width: 50%;
    margin-left: 25%;
}

.view {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

    .view .mask {
        width: 100%;
        height: 100%;
        position: absolute;
        overflow: hidden;
        top: 0;
        left: 0;
        text-align: center;
        background-color: rgba(69, 57, 81, .8);
        opacity: 0;
        -webkit-transition: all .3s ease-in .4s;
        transition: all .3s ease-in .4s;
    }

    .view .mask-bordered {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 1px solid #fcfcfc;
        padding: 15px;
        opacity: 0;
        -webkit-transform: scale(2);
        -ms-transform: scale(2);
        transform: scale(2);
        -webkit-transition: all .3s ease-in .1s;
        transition: all .3s ease-in .1s;
    }

    .view .project-actions {
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all .3s ease-in-out .2s;
        transition: all .3s ease-in-out .2s;
    }

        .view .project-actions .fa {
            padding: 15px;
            border-radius: 50%;
            background-color: rgba(20, 20, 20, .3);
            color: #f8f8f8;
            margin: 7px;
            -webkit-transition: all .6s ease-in;
            transition: all .6s ease-in;
        }

        .view .project-actions a:hover .fa,
        .view .project-actions a:focus .fa {
            background-color: #22aba6;
            box-shadow: inset 2px 1px 4px rgba(0, 0, 0, .6);
            -webkit-transition: all .3s ease-in;
            transition: all .3s ease-in;
        }

    .view img {
        display: block;
        position: relative;
        -webkit-transition: all .4s ease-in-out .5s;
        transition: all .4s ease-in-out .5s;
    }

    .view .project-title {
        color: rgba(254, 254, 254, .9);
        text-align: center;
        position: relative;
        font-size: 24px;
        font-weight: 500;
        padding: 5px 15px 0;
        margin: 25px 0 20px;
        opacity: 0;
        -webkit-transform: scale(10);
        -ms-transform: scale(10);
        transform: scale(10);
        -webkit-transition: all .4s ease-in-out .1s;
        transition: all .4s ease-in-out .1s;
    }

    .view .descr {
        font-size: 14px;
        font-weight: 600;
        position: relative;
        color: #22aba6;
        padding: 0 15px;
        margin-bottom: 25px;
        text-align: center;
        opacity: 0;
        -webkit-transform: scale(10);
        -ms-transform: scale(10);
        transform: scale(10);
        -webkit-transition: all .4s linear;
        transition: all .4s linear;
    }

    .view .info {
        display: inline-block;
        padding: 15px;
        background: rgba(0, 0, 0, .2);
        color: rgba(254, 254, 254, .9);
        font-size: 32px;
        border-radius: 50%;
        text-align: center;
        opacity: 0;
        -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all .4s ease-in;
        transition: all .4s ease-in;
    }

        .view .info:hover,
        .view .info:focus {
            background: #22aba6;
            -webkit-transition: all .3s ease-in;
            transition: all .3s ease-in;
        }

        .view .info.middle {
            position: relative;
            top: 50%;
        }

    .view:hover .mask,
    .view:focus .mask {
        opacity: 1;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .view:hover .mask-bordered,
    .view:focus .mask-bordered {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .view:hover img,
    .view:focus img {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }

    .view:hover .project-title,
    .view:focus .project-title,
    .view:hover .project-actions,
    .view:focus .project-actions {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: .1s;
        transition-delay: .1s;
    }

    .view:hover .descr,
    .view:focus .descr {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        -webkit-transition-delay: .2s;
        transition-delay: .2s;
    }

    .view:hover .info,
    .view:focus .info {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition-delay: .3s;
        transition-delay: .3s;
    }

        .view:hover .info.middle,
        .view:focus .info.middle {
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }

@media(max-width:767px) {
    .view .descr,
    .view .project-title {
        display: none;
    }

    .view:hover .info {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.portfolio-single.style3 .project-info,
.portfolio-single.style2 .project-info {
    margin-top: 25px;
}

.project-image iframe {
    width: 100%;
}

@media(max-width:991px) {
    .project-image iframe {
        margin-bottom: 30px;
    }
}

.project-title {
    color: #555;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
}

.project-subtitle {
    color: #444;
}

    .project-subtitle.spread {
        margin-right: 40px;
        vertical-align: top;
        display: inline-block;
    }

.project-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .project-details li {
        margin-bottom: 15px;
    }

        .project-details li:last-child {
            margin-bottom: 0;
        }

        .project-details li span {
            margin-right: 10px;
            font-weight: 700;
        }

        .project-details li .fa {
            margin-right: 10px;
            color: #22aba6;
        }

.project-share {
    margin: 40px 0 35px;
}

#owl-project .owl-controls {
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}

.blog-item .blog-caption {
    padding: 16px 20px 13px;
}

.blog-item .post-title {
    margin-bottom: 3px;
    font-size: 20px;
    color: #444;
    font-weight: 500;
}

    .blog-item .post-title.pt1 {
        margin-bottom: 6px;
        font-size: 22px;
        color: #555;
    }

    .blog-item .post-title.pt2 {
        font-size: 27px;
        margin: 3px 0 6px;
        color: #666;
    }

    .blog-item .post-title.pt3 {
        font-size: 22px;
        margin-bottom: 5px;
        color: #555;
    }

.blog-post-title {
    font-size: 30px;
    font-weight: 400;
    color: #666;
    margin: 0 0 2px;
}

.blog-item .sub-post-title {
    margin: 0 0 15px;
}

    .blog-item .sub-post-title span {
        margin-right: 15px;
        font-size: 12px;
        color: #6e6ab2;
    }

    .blog-item .sub-post-title a:hover {
        text-decoration: none;
        color: #453971;
    }

.sub-post-title .fa {
    margin-right: 5px;
}

.blog-item {
    margin: 0 0 30px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.related-posts .blog-item {
    margin: 0;
}

@media(max-width:767px) {
    .related-posts .blog-item {
        margin: 0 0 30px;
    }
}

#blog-posts.list .blog-item {
    margin: 0 0 30px;
}

.blog-item .full-image {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

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

.blog-item .media .author-img {
    width: 170px;
    height: 170px;
}

.read-more {
    color: #6e6ab2;
    text-transform: lowercase;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

    .read-more:after {
        content: '\f178';
        font-family: fontawesome;
        display: inline-block;
        margin-left: 5px;
        width: 20px;
        font-size: 14px;
        vertical-align: middle;
    }

    .read-more:hover,
    .read-more:focus {
        color: #453971;
    }

.comment-post button {
    margin-top: 10px;
}

.shop-product {
    border: 1px solid #ddd;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}

    .shop-product:hover {
        border: 1px solid #22aba6;
    }

.shop-image {
    position: relative;
}

    .shop-image img {
        margin-bottom: 1px;
    }

@media(max-width:767px) {
    .shop-image {
        display: block;
        margin-left: auto !important;
        margin-right: auto !important;
        clear: both;
        text-align: center;
    }
}

.shop-actions {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background: #f9f9f9;
}

.shop-product:hover .shop-actions {
    opacity: 1;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}

.shop-actions p {
    padding: 20px 10px;
}

.shop-actions .see {
    margin-right: 5px;
}

.shop-actions .rating-system.rate-product {
    margin-top: 30px;
}

.btn.see .fa,
.btn.add .fa {
    margin-right: 0;
}

.shop-actions .btn.see,
.shop-actions .btn.add {
    border-radius: 2px;
}

.shop-description {
    background-color: #f9f9f9;
    padding: 20px;
}

    .shop-description h4 {
        margin-bottom: 4px;
        text-align: center;
        font-size: 17px;
        color: #555;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 2px;
    }

.shop-price {
    color: #22aba6;
    font-size: 18px;
    padding-top: 7px;
    display: inline-block;
    text-decoration: none;
}

.shop-price-off {
    text-decoration: line-through;
    color: #adb7bd;
    font-size: 16px;
    margin-right: 4px;
}

.shop-offer {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #b32439;
    color: #fcfcfc;
    display: inline-block;
    padding: 20px 10px 10px 20px;
    border-radius: 3px;
}

.toolbar-shop {
    margin-bottom: 35px;
}

    .toolbar-shop .btn .fa {
        margin-right: 0;
    }

.shop-ordering {
    display: inline-block;
    margin-right: 15px;
}

.sidebar.shop-sidebar .sidebar-widget {
    margin-bottom: 30px;
}

.shop-sidebar .irs {
    margin-bottom: 17px;
}

.shop-sidebar .categories li {
    padding-bottom: 10px !important;
}

.shop-sidebar .top-rated-products {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .shop-sidebar .top-rated-products li {
        clear: both;
        margin-bottom: 25px;
    }

    .shop-sidebar .top-rated-products .product-image {
        float: left;
        width: 75px;
        height: 75px;
        display: block;
    }

    .shop-sidebar .top-rated-products h5 {
        margin-bottom: 4px;
        padding-top: 10px;
    }

        .shop-sidebar .top-rated-products h5 a {
            font-size: 17px;
            font-weight: 400;
            color: #666;
            -webkit-transition: all .3s linear;
            transition: all .3s linear;
        }

            .shop-sidebar .top-rated-products h5 a:hover {
                color: #22aba6;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
            }

    .shop-sidebar .top-rated-products .product-info {
        margin-left: 90px;
    }

.list .shop-product .col-md-3,
.list .shop-product .col-md-4 {
    padding: 0;
}

.list .shop-product {
    margin: 0 0 30px;
    background: #f9f9f9;
}

    .list .shop-product:hover {
        border: 1px solid #ddd;
    }

.list .shop-description {
    padding: 20px 10px;
}

.list .shop-image img {
    height: auto;
}

.list .shop-description h4 {
    text-align: left;
    font-size: 21px;
    margin-bottom: 12px;
}

.list .rate-product,
.shop-description-product .rate-product {
    display: inline-block;
}

.rate-product + small {
    margin-left: 5px;
}

.list .shop-description p {
    margin: 20px 0 15px;
}

.list .shop-description a {
    margin-top: 15px;
    margin-right: 10px;
    border-radius: 2px;
}

    .list .shop-description a i {
        margin-right: 5px;
    }

.list .price {
    margin: 0 0 7px;
}

#owl-shop .owl-buttons {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -16px;
}

#owl-shop .owl-controls {
    margin-top: 0;
}

#owl-shop .owl-buttons div {
    margin: 0;
    color: #fcfcfc;
    border: none;
    background: rgba(0, 0, 0, .7);
    opacity: 0;
    border-radius: 0;
    text-align: center;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

#owl-shop:hover .owl-buttons div {
    opacity: 1;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

#owl-shop .owl-prev {
    position: absolute;
    left: 0;
}

#owl-shop .owl-next {
    position: absolute;
    right: 0;
}

#owl-shop {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

    #owl-shop .owl-item-shop img {
        width: 100%;
    }

@media(max-width:991px) {
    #owl-shop .owl-buttons div {
        opacity: .9;
    }

    #owl-shop {
        margin-bottom: 20px;
    }
}

.shop-description-product {
    padding: 10px 0;
}

    .shop-description-product h3 {
        margin-bottom: 12px;
        font-size: 26px;
        color: #666;
    }

    .shop-description-product small {
        vertical-align: sub;
    }

    .shop-description-product .shop-prices {
        margin: 15px 0 22px;
    }

.shop-prices .stock {
    margin-left: 50px;
}

    .shop-prices .stock .fa {
        margin-right: 5px;
        color: #22aba6;
    }

.shop-description-product .btn {
    margin-top: 10px;
}

.shop-section .tab-content img {
    border-radius: 5px;
    margin-bottom: 10px;
}

@media(max-width:991px) {
    .shop-section .tab-content img {
        margin-bottom: 20px;
    }
}

.shop-section .tab-content h4 {
    color: #444;
    margin: 25px 0;
}

    .shop-section .tab-content h4:first-child {
        margin-top: 0;
    }

.tab-content.shop {
    padding: 25px 0;
}

.shop-comment {
    margin-bottom: 35px;
    border-bottom: 1px dashed #778898;
}

    .shop-comment:last-child {
        margin-bottom: 0;
    }

    .shop-comment .author cite {
        text-transform: capitalize;
        margin-right: 15px;
    }

    .shop-comment .date {
        font-size: 12px;
    }

    .shop-comment .rate-review {
        margin: 8px 0 6px;
    }

.shop-specifications ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.shop-specifications .title {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 10px;
}

    .shop-specifications .title:first-child {
        margin: 0 0 10px;
    }

.shop-specifications li {
    color: #444;
    margin-bottom: 3px;
}

    .shop-specifications li > span {
        margin-left: 15px;
        color: #888;
        font-size: 13px;
    }

@media(min-width:768px) and (max-width:991px) {
    .shop-section .nav-tabs.shop-sidebar > li {
        float: none;
        margin-bottom: 5px;
    }

    .shop-section .nav-tabs.shop-sidebar {
        border-bottom: none;
    }

        .shop-section .nav-tabs.shop-sidebar li a {
            border-radius: 2px;
        }
}

.shop-section.cart #shop-cart-table {
    margin: 0 0 30px;
}

#shop-cart-table {
    margin: 35px 0;
}

    #shop-cart-table .product img {
        width: 90px;
        height: 90px;
        margin-right: 20px;
    }

    #shop-cart-table td {
        vertical-align: middle;
    }

    #shop-cart-table tr td:last-child {
        width: 40px;
    }

    #shop-cart-table tr:last-child th {
        vertical-align: middle;
    }

    #shop-cart-table .span100 {
        width: 100px;
    }

    #shop-cart-table .span40 {
        width: 40px;
    }

@media(max-width:767px) {
    .table-responsive {
        border: none;
        margin-bottom: 20px;
    }

    #shop-cart-table .product {
        white-space: normal;
    }

        #shop-cart-table .product img {
            margin-right: 0;
            margin-bottom: 10px;
        }
}

.shop-section.confirmation .well ul,
.shop-section.account .tab-content ul {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}

    .shop-section.confirmation .well ul li,
    .shop-section.account .tab-content ul li {
        margin-bottom: 10px;
        color: #333;
    }

    .shop-section.confirmation .well ul span,
    .shop-section.account .tab-content ul span {
        margin-left: 10px;
        color: #888;
        font-size: 13px;
    }

.shop-section.confirmation .well h3 {
    margin: 0 0 20px;
    font-size: 22px;
    color: #555;
}

#shop-confirmation-table {
    margin: 35px 0;
    vertical-align: middle;
}

    #shop-confirmation-table td,
    #shop-confirmation-table th {
        padding-top: 20px;
        padding-bottom: 20px;
    }

@media(max-width:767px) {
    #shop-confirmation-table {
        margin: 0 0 35px;
    }
}

.shop-section .main-title,
.password-recovery .main-title {
    font-size: 19px;
    color: #4c4c4c;
    margin-bottom: 15px;
    font-weight: 500;
}

.shop-section.checkout .tab-content {
    padding: 25px 0 20px;
}

.shop-section.checkout #shop-confirmation-table {
    margin: 0 0 30px;
}

#shop-account-table {
    margin-top: 0;
    vertical-align: middle;
}

    #shop-account-table td,
    #shop-account-table th {
        padding-top: 20px;
        padding-bottom: 20px;
    }

.shop-section.account .tab-content {
    padding-top: 0;
}

    .shop-section.account .tab-content img {
        border-radius: 10px;
        width: 130px;
        height: 130px;
        display: block;
    }

@media(max-width:767px) {
    .shop-section.checkout .form .forgot {
        display: block;
        margin-bottom: 15px;
    }
}

.shop-section.account .edit {
    margin-top: 20px;
    display: block;
}

.page-login .connect {
    margin-bottom: 15px;
}

    .page-login .connect i {
        margin-right: 5px;
    }

    .page-login .connect.f {
        margin-right: 5px;
        background: #677fb5;
    }

    .page-login .connect.t {
        margin-right: 5px;
        background: #70c2e9;
    }

.page-login a.connect:hover {
    background: #453971;
}

@media(max-width:767px) {
    .page-login a.forgot {
        display: block;
        margin-bottom: 15px;
    }
}

.password-recovery .well .or {
    margin: 20px 0;
}

.password-recovery .well {
    padding-top: 30px;
    padding-bottom: 30px;
}

.page-contact iframe {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.page-contact .box-title {
    margin-top: 0;
}

.page-faq .tab-content {
    padding-top: 0;
}

.page-sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .page-sitemap ul li ul {
        margin-top: 8px;
        margin-left: 15px;
    }

    .page-sitemap ul li {
        margin-bottom: 10px;
        padding-left: 16px;
    }

        .page-sitemap ul li:before {
            content: '\f054';
            font-family: fontawesome;
            display: inline-block;
            margin-left: -16px;
            width: 16px;
            color: #22aba6;
            font-size: 14px;
        }

        .page-sitemap ul li a {
            color: #788;
        }

            .page-sitemap ul li a:hover {
                color: #22aba6;
            }

.page-sitemap .col-sm-6 {
    margin-bottom: 30px;
}

.page-404 .text-404 {
    font-size: 280px;
    font-weight: 700;
    line-height: 100%;
    display: block;
    text-align: center;
    color: #ccc;
}

.page-404 {
    padding: 100px 0 110px;
}

    .page-404 .over-404 {
        position: absolute;
        top: 50%;
        width: 100%;
    }

    .page-404 .section-title {
        font-weight: 600;
        color: #666;
        font-size: 40px;
    }

.content-404 {
    position: relative;
    text-align: center;
}

@media(max-width:767px) {
    .page-404 .text-404 {
        font-size: 130px;
        margin-bottom: 30px;
    }

    .page-404 .over-404 {
        position: relative;
        top: 0;
        width: 100%;
    }

    .page-404 {
        padding: 50px 0;
    }

        .page-404 .section-title {
            font-size: 36px;
            margin-bottom: 30px;
            line-height: 46px;
        }
}

.page-blank {
    position: relative;
    width: 100%;
    height: 100%;
}

    .page-blank #wrapper {
        width: 100%;
        height: 100%;
    }

    .page-blank .page-404 {
        position: relative;
        top: 50%;
        padding: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

@media(max-width:767px) {
    .page-blank .page-404 {
        position: relative;
        top: 0;
        padding: 50px 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .page-blank #wrapper {
        width: auto;
        height: auto;
    }
}

.custom-table {
    vertical-align: middle;
}

    .custom-table td,
    .custom-table th {
        padding: 20px 8px !important;
    }

.section-title-3.events {
    font-size: 32px;
    line-height: 34px;
    color: rgba(254, 254, 254, .9);
    text-align: left;
    font-weight: 400;
    margin-bottom: 16px;
}

    .section-title-3.events.date {
        font-size: 24px;
        line-height: 26px;
        margin-bottom: 30px;
    }

.events-p {
    font-size: 15px;
    color: rgba(254, 254, 254, .9);
}

.events #onepage .current a {
    color: #453971;
    padding-top: 10px;
}

.event-title {
    padding: 0 0 14px;
}

    .event-title.ev2 {
        padding: 20px 0 14px;
    }

    .event-title a {
        margin-right: 30px;
        font-size: 15px;
    }

.events .section-title-2 {
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .event-title small {
        display: block;
    }
}

.img-careers {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}

.text-careers {
    margin-top: 30px;
}

.job-careers {
    text-align: center;
    display: block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .job-careers .fa {
        color: #788;
        margin-bottom: 10px;
    }

    .job-careers:hover .fa,
    .job-careers:hover .box-title {
        color: #22aba6;
        -webkit-transition: all .4s ease;
        transition: all .4s ease;
    }

@media(max-width:991px) {
    .text-careers {
        margin-top: 10px;
    }
}

.page-pricing .box-content {
    text-align: left;
}

    .page-pricing .box-content h3 {
        font-size: 19px;
        margin: 20px 0 18px;
    }

.page-clients blockquote {
    background: 0 0;
    font-size: 14px;
    border-left: 3px solid #22aba6;
    margin-bottom: 0;
}

    .page-clients blockquote .box-title {
        margin: 0 0 20px;
    }

    .page-clients blockquote cite {
        color: #22aba6;
    }

.page-clients .section-title {
    text-align: left;
    font-size: 30px;
}

.clients-bg {
    background: #f6f6f6;
    text-align: center;
}

@media(max-width:767px) {
    .clients-bg img {
        margin-bottom: 20px;
    }

    .intro-section.testimonials-section {
        height: auto;
    }
}

.clients-intro {
    margin-top: 50px;
}

@media(max-width:991px) {
    .clients-intro {
        margin-top: 30px;
    }
}

.page-services .tab-content {
    padding: 0 5px 20px;
}

.page-maintenance #wrapper {
    background: 0 0;
}

.page-maintenance .section-full-height {
    padding-top: 90px;
    padding-bottom: 60px;
}

.page-maintenance .copy-rights {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 13px;
}

.page-maintenance .section-title {
    font-weight: 500;
    color: rgba(254, 254, 254, .9);
}

.page-maintenance p {
    color: rgba(254, 254, 254, .9);
    line-height: 28px;
    font-size: 16px;
}

.page-maintenance .contact-info .fa {
    padding: 10px;
    color: #fcfcfc;
    background-color: rgba(34, 171, 166, .7);
    width: 35px;
    height: 35px;
    border-radius: 5px;
}

.page-maintenance .contact-info a {
    color: rgba(254, 254, 254, .9);
}

    .page-maintenance .contact-info a:hover {
        color: #22aba6;
    }

@media(min-width:992px) {
    .page-maintenance #wrapper {
        height: 100%;
    }
}

@media(max-width:991px) {
    .page-maintenance .section-full-height {
        padding-top: 80px;
    }
}

@media(max-width:767px) {
    .page-maintenance .contact-info p {
        margin-bottom: 30px;
        text-align: left;
    }

    .page-maintenance .section-full-height {
        padding-top: 50px;
        padding-bottom: 70px;
    }

    .page-maintenance .copy-rights {
        left: 15px;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.init-countdown .countdown {
    display: inline-block;
    border-bottom: 4px solid #22aba6;
    padding: 40px 50px 30px;
    color: #444;
    font-weight: 500;
    background: rgba(255, 255, 255, .1);
    width: 230px;
    margin-bottom: 35px;
}

.init-countdown .counter {
    display: block;
    font-size: 80px;
    color: #22aba6;
}

.init-countdown .time {
    display: block;
    text-transform: uppercase;
    margin-top: 60px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgba(254, 254, 254, .9);
}

.mfp-bg,
.mfp-wrap {
    z-index: 999999;
}

.mfp-counter {
    width: 50px;
    text-align: right;
}

.mfp-close {
    color: #fcfcfc;
    cursor: pointer;
}

    .mfp-close:hover {
        color: #22aba6;
        cursor: pointer;
    }

.mfp-zoom-out-cur .header-wrapper {
    z-index: 0 !important;
}

button.mfp-arrow {
    background-color: rgba(0, 0, 0, .6);
}

.mfp-arrow-left:before {
    border-right: none;
}

.mfp-arrow-left:after {
    border-right: 20px solid #fcfcfc;
    margin-left: 25px;
}

.mfp-arrow-right:before {
    border-left: none;
}

.mfp-arrow-right:after {
    border-left: 20px solid #fcfcfc;
}

@media(max-width:767px) {
    .sidebar {
        margin-top: 60px;
    }

    .sidebar-2 {
        margin-bottom: 60px;
    }
}

@media(min-width:768px) {
    .space-right {
        padding-right: 25px;
    }

    .space-left {
        padding-left: 25px;
    }
}

@media(max-width:991px) {
    .sidebar-3 {
        margin-top: 60px;
    }

    .page-sidebars {
        margin-bottom: 50px;
    }
}

.page-sidebars {
    padding: 0 20px;
}

.sidebar-widget {
    margin-bottom: 40px;
    overflow: hidden;
    display: block;
    position: relative;
}

@media(max-width:767px) {
    .sidebar .sidebar-widget:last-child {
        margin-bottom: 10px;
    }
}

.sidebar-widget .tab-content {
    padding: 25px 0 0;
}

.sidebar-widget .sidebar-title {
    margin: 0 0 25px;
    font-size: 19px;
    font-weight: 400;
    color: #444;
}

.sidebar-widget .input-group input {
    width: 100%;
    padding: 5px;
    opacity: .8;
    text-indent: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.sidebar-widget input:hover,
.sidebar-widget input:focus {
    opacity: 1;
}

.sidebar-widget input:focus,
.sidebar-widget input:active {
    border: 1px solid #22aba6;
}

.sidebar-widget .input-group .btn {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    background-color: #22aba6;
    border: 1px solid #22aba6;
    text-align: center;
    -webkit-transition: all .5s ease-in;
    transition: all .5s ease-in;
}

    .sidebar-widget .input-group .btn:hover,
    .sidebar-widget .input-group .btn:focus {
        background-color: rgba(34, 171, 166, .8);
        -webkit-transition: all .4s ease-in;
        transition: all .4s ease-in;
    }

    .sidebar-widget .input-group .btn .fa {
        margin-right: 0;
    }

.sidebar-widget .tags a,
.blog-item .tags a,
.footer-widget .tags a {
    display: inline-block;
    margin: 0 0 5px;
    padding: 5px 10px;
    border-radius: 1px;
    background-color: #22aba6;
    font-size: 12px !important;
    line-height: 1.4em !important;
    color: #fcfcfc;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    -webkit-transition: all .7s linear;
    transition: all .7s linear;
}

    .sidebar-widget .tags a:hover,
    .blog-item .tags a:hover,
    .footer-widget .tags a:hover {
        background-color: #453951;
        -webkit-transition: all .3s linear;
        transition: all .3s linear;
        color: #fcfcfc;
    }

.sidebar-widget .tags i,
.blog-item .tags i,
.footer-widget .tags i {
    margin-right: 5px;
}

.sidebar-widget .categories {
    padding: 0;
    list-style: none;
}

    .sidebar-widget .categories li {
        padding-bottom: 20px;
    }

        .sidebar-widget .categories li:last-child {
            padding-bottom: 0;
        }

        .sidebar-widget .categories li a {
            color: #788;
        }

        .sidebar-widget .categories li:hover a,
        .sidebar-widget .categories .active a {
            color: #22aba6;
            text-decoration: none;
        }

        .sidebar-widget .categories li span {
            background-color: #22aba6;
            color: #fcfcfc;
            padding: 5px 10px;
            margin-right: 5px;
            border-radius: 1px;
            -webkit-transition: all .3s linear;
            transition: all .3s linear;
        }

        .sidebar-widget .categories li:hover span,
        .sidebar-widget .categories .active span {
            background-color: #453951;
            -webkit-transition: all .2s linear;
            transition: all .2s linear;
        }

.sidebar-widget .latest-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-widget .latest-posts li {
        clear: both;
        margin-bottom: 25px;
    }

    .sidebar-widget .latest-posts .image-post {
        float: left;
        width: 70px;
        height: 70px;
        display: block;
    }

        .sidebar-widget .latest-posts .image-post img {
            width: 70px;
            height: 60px;
        }

    .sidebar-widget .latest-posts h5 {
        margin-bottom: 8px;
    }

        .sidebar-widget .latest-posts h5 a {
            font-size: 16px;
            font-weight: 400;
            -webkit-transition: all .3s linear;
            transition: all .3s linear;
        }

            .sidebar-widget .latest-posts h5 a:hover {
                text-decoration: none;
                color: #453951;
                -webkit-transition: all .2s linear;
                transition: all .2s linear;
            }

    .sidebar-widget .latest-posts .info-post {
        margin-left: 85px;
        padding-top: 5px;
    }

        .sidebar-widget .latest-posts .info-post span {
            font-size: 13px;
        }

.navigation-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 5px;
}

.navigation-sidebar li a {
    display: block;
    color: #789;
    padding: 10px 0 10px 10px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

.navigation-sidebar li .fa {
    margin-right: 10px;
    margin-left: 10px;
    color: #777;
}

.navigation-sidebar .active a,
.navigation-sidebar .current a,
.navigation-sidebar li a:hover,
.navigation-sidebar li a:focus {
    border-left: 2px solid #453971;
    color: #453971;
    padding-left: 20px;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}

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

    .jobs-list > li {
        margin-bottom: 10px;
    }

        .jobs-list > li > a {
            color: #788;
        }

            .jobs-list > li > a:hover,
            .jobs-list > li > a:focus,
            .jobs-list > li > a.active {
                color: #22aba6;
            }

        .jobs-list > li.job-location {
            margin: 45px 0 22px;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 500;
        }

            .jobs-list > li.job-location:after {
                content: "";
                display: block;
                height: 1px;
                width: 30px;
                margin-top: 5px;
                border-top: 1px dashed #22aba6;
            }

            .jobs-list > li.job-location:first-child {
                margin: 8px 0 25px;
            }

.form-control {
    border-radius: 2px;
    background-color: #fcfcfc;
    border: 1px solid #bbb;
}

    .form-control:focus {
        background-color: #fefefe;
        border-color: #22aba6;
        outline: 0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(34, 171, 166, .9);
    }

.form-message-error {
    color: #df1111;
    font-size: 12px;
    font-weight: 500;
}

.form {
    width: 100%;
}

    .form input[type],
    .form textarea {
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        font-size: 14px;
        outline: none;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
        color: #788;
        background: #fdfdfd;
        border: solid 1px #bbb;
    }

        .form input[type]:focus,
        .form textarea:focus {
            border: solid 1px #22aba6;
            background-color: #fff;
        }

    .form input[type=submit] {
        width: 35%;
        height: 30px;
        margin-top: 10px;
        border: none;
        cursor: pointer;
        -webkit-transition: background .1s linear;
        transition: background .1s linear;
        background: #22aba6;
        color: #fcfcfc;
    }

        .form input[type=submit]:hover,
        .form input[type=submit]:focus {
            background: rgba(34, 171, 166, .9);
        }

    .form.form-2 .required,
    p > .required,
    .form-required {
        color: #c51010;
        font-weight: 400;
        vertical-align: middle;
        font-size: 13px;
    }

p.required {
    margin: 10px 0 0;
}

.form.form-2 label {
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}

.form.form-2 input {
    margin-top: 5px !important;
}

.form.form-2 .form-control {
    height: 40px;
}

    .form.form-2 .form-control:focus {
        border-color: #22aba6;
        outline: 0;
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(34, 171, 166, .8);
    }

.form.form-2 select.form-control {
    margin-top: 5px;
    color: #788;
    padding: 5px;
    border: 1px solid #bbb;
}

.form.form-2 textarea.form-control {
    height: auto;
}

.form.form-2 input[type=radio],
.form.form-2 input[type=checkbox] {
    width: auto;
    margin-right: 5px;
}

.form.form-2 .remember {
    display: inline-block;
    margin-right: 15px;
}

.form-group {
    position: relative;
}

.has-feedback label ~ .form-control-feedback {
    top: 30px;
}

.form-icon:after {
    content: "\f140";
    font-family: fontawesome;
    font-size: 15px;
    position: absolute;
    right: 14px;
    top: 5px;
}

.form-icon.icon-user:after {
    content: "\f007";
}

.form-icon.icon-email:after {
    content: "\f0e0";
}

.form-icon.icon-message:after {
    content: "\f039";
}

.progress {
    border-radius: 2px;
    box-shadow: none;
    height: 25px;
    margin-bottom: 15px;
    background-color: #f2f2f2;
}

.progress-bar {
    text-align: left;
    background-color: #22aba6;
    text-indent: 2px;
    line-height: 23px;
    color: #fcfcfc;
}

.progress-bar-animate {
    -webkit-transition: width 1.5s ease;
    transition: width 1.5s ease;
}

.progress-bar span {
    margin-left: 10px;
}

.progress-bar .fa {
    margin-right: 8px;
}

.progress .progress-bar-info {
    background-color: #5bc0de !important;
}

.progress .progress-bar-danger {
    background-color: #d9534f !important;
}

.progress .progress-bar-warning {
    background-color: #f0ad4e !important;
}

.progress .progress-bar-success {
    background-color: #5cb85c !important;
}

.progress .progress-bar-primary {
    background-color: #428bca !important;
}

.table th,
.table td {
    padding: 12px !important;
}

.panel-group .panel {
    border-radius: 0;
}

.panel-group .panel-default {
    border-radius: 0;
    border: none;
}

    .panel-group .panel-default .panel-heading {
        color: #fcfcfc;
        background: #22aba6;
        border-color: #22aba6;
        border-top-right-radius: 0;
        border-top-left-radius: 0;
        padding: 8px 15px;
    }

    .panel-group .panel-default .panel-body {
        border-top: none !important;
        border-bottom: 1px solid #22aba6;
        background: #f9f9f9;
    }

    .panel-group .panel-default .panel-title {
        color: #fcfcfc;
    }

        .panel-group .panel-default .panel-title a {
            display: block;
        }

.panel.panel-2 .panel-heading {
    color: #fcfcfc;
    background: #22aba6;
    border-color: #22aba6;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}

.panel.panel-2 .panel-body {
    border-top: none !important;
    border-bottom: 1px solid #22aba6;
    background: #f9f9f9;
}

.panel.panel-3 .panel-heading {
    color: #fcfcfc;
    background: #22aba6;
    border: 1px solid #22aba6;
}

.panel.panel-3 .panel-body {
    border: 1px solid #22aba6;
    background: #f9f9f9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.panel-group.panel-group-2 .panel {
    border-radius: 5px !important;
}

.panel.panel-4 {
    box-shadow: none;
    background-color: #fcfcfc;
}

    .panel.panel-4 .panel-heading {
        color: #555;
        background-color: #fcfcfc;
        border-color: #fcfcfc;
        padding: 5px 0 5px 20px;
        margin-bottom: 20px;
        border-left: 1px solid #22aba6;
        border-radius: 0;
        transition: all .5s ease-in-out;
        -webkit-transition: all .5s ease-in-out;
    }

        .panel.panel-4 .panel-heading:hover {
            border-left: 2px solid #22aba6;
            padding: 5px 0 5px 35px;
            transition: all .3s ease-in-out;
            -webkit-transition: all .3s ease-in-out;
        }

    .panel.panel-4 .panel-body {
        background-color: #fcfcfc;
        border-top: none !important;
        padding: 0 0 0 20px;
    }

    .panel.panel-4 .panel-title a {
        color: #555;
        display: block;
    }

        .panel.panel-4 .panel-title a:hover {
            color: #22aba6;
        }

.tab-content {
    padding: 20px 5px;
}

.nav-tabs {
    border-bottom: 1px solid #87754d;
}

    .nav-tabs > li {
        float: left;
        margin-bottom: -1px;
    }

        .nav-tabs > li > a {
            border: none;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            /*border-top-left-radius: 2px;*/
            color: #788;
        }

            .nav-tabs > li > a:hover {
                border-color: #eee #eee #ddd;
            }

            .nav-tabs > li.active > a,
            .nav-tabs > li.active > a:hover,
            .nav-tabs > li.active > a:focus,
            .nav-tabs > li > a:hover,
            .nav-tabs > li > a:focus {
                color: #fcfcfc;
                background-color: #87754d;
                border: none;
                border-bottom-color: transparent;
            }

    .nav-tabs.vertical {
        border-bottom: none;
    }

        .nav-tabs.vertical li {
            float: none;
            margin-bottom: 10px;
        }

            .nav-tabs.vertical li a {
                border-radius: 2px;
            }

@media(max-width:767px) {
    .nav-tabs > li {
        float: none;
        margin-bottom: 5px;
    }

    .nav-tabs {
        border-bottom: none;
    }

        .nav-tabs > li > a {
            border-radius: 2px;
        }
}

.btn {
    border-radius: 2px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    margin-bottom: 3px;
}

    .btn:hover {
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }

    .btn .fa {
        margin-right: 5px;
    }

.btn-default {
    color: #fcfcfc;
    background-color: #22aba6;
    border-color: #22aba6;
}

    .btn-default:hover,
    .btn-default:active,
    .open .dropdown-toggle.btn-default {
        color: #22aba6;
        background: 0 0;
        border: 1px solid #22aba6;
    }

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #fcfcfc;
    background-color: #22aba6;
}

.voyo-btn {
    border-radius: 0;
    color: #22aba6;
    background-color: transparent;
    border-color: #22aba6;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}

    .voyo-btn:hover,
    .voyo-btn:focus {
        color: #fff;
        background-color: #22aba6;
        border-color: #22aba6;
        -webkit-transition: all .2s linear;
        transition: all .2s linear;
    }

    .voyo-btn.icon i.fa,
    .btn.icon i.fa {
        margin-right: 5px;
    }

.btn.rounded {
    border-radius: 3px;
}

.voyo-btn-2,
.voyo-btn-3 {
    border-radius: 0;
    color: #fcfcfc;
    background: #22aba6;
    padding: 10px 16px;
    border: none;
}

    .voyo-btn-2:hover,
    .voyo-btn-2:focus,
    .voyo-btn-2:active {
        color: #fcfcfc;
        background-color: #453951 !important;
    }

    .voyo-btn-3:hover,
    .voyo-btn-3:focus,
    .voyo-btn-3:active {
        color: #fcfcfc;
        background: #1f9490;
    }

.btn-gray {
    background: #a5b3b4;
    border: 1px solid #9eadae;
    color: #fff;
}

    .btn-gray:hover,
    .btn-gray:focus,
    .btn-gray:active {
        background: #889899;
        border: 1px solid #809192;
        color: #fff;
    }

.btn-dark {
    background: #1b1f24;
    border: 1px solid #191d21;
    color: #a5afb8;
}

    .btn-dark:hover,
    .btn-dark:focus,
    .btn-dark:active {
        background: #16191d;
        border: 1px solid #14171a;
        color: #9ca7b1;
    }

.btn-purple {
    color: #fff;
    background-color: #852b99;
    border: 1px solid #842b88;
}

    .btn-purple:hover,
    .btn-purple:focus,
    .btn-purple:active {
        background-color: #6d1b81;
        color: #fff;
        border: 1px solid #6a1a77;
    }

.btn.btn-bg {
    color: #fcfcfc;
    border: none;
    padding: 8px 14px;
}

    .btn.btn-bg:hover,
    .btn.btn-bg:focus,
    .btn.btn-bg:active {
        background-color: #555 !important;
        color: #fcfcfc;
    }

.btn.facebook {
    background-color: #677fb5;
}

.btn.twitter {
    background-color: #70c2e9;
}

.btn.google-plus {
    background-color: #bc7067;
}

.btn.behance {
    background-color: #42a9fb;
}

.btn.pinterest {
    background-color: #d8545d;
}

.btn.flickr {
    background-color: #ff3ba4;
}

.btn.dribbble {
    background-color: #e299c2;
}

.btn.linkedin {
    background-color: #3daccf;
}

.btn.skype {
    background-color: #5ecbf3;
}

.btn.github-alt {
    background-color: #6c93bb;
}

.btn.instagram {
    background-color: #b99682;
}

.btn.soundcloud {
    background-color: #ff8b45;
}

.tooltip-inner {
    padding: 5px 10px;
    border-radius: 0;
}

.alert.alert-2 {
    border-radius: 0;
    color: #fcfcfc;
}

    .alert.alert-2 p {
        color: #fcfcfc;
    }

    .alert.alert-2 .fa {
        display: block;
        float: left;
        margin: 5px 20px 15px 5px;
    }

    .alert.alert-2.alert-dismissable .close {
        opacity: .5;
    }

    .alert.alert-2 a {
        color: rgba(255, 255, 255, .7);
        -webkit-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out;
    }

        .alert.alert-2 a:hover,
        .alert.alert-2 a:focus {
            color: #fff;
            -webkit-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
        }

.alert.alert-3 {
    border-radius: 0;
    color: #444;
    border: 1px solid #222;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .alert.alert-3 p {
        color: #444;
    }

.pagination {
    margin: 20px 0 5px;
}

    .pagination li a {
        border: none;
        margin-right: 10px;
        color: #22aba6;
        background-color: #fcfcfc;
        border-radius: 3px;
    }

@media(max-width:767px) {
    .pagination li a {
        margin-bottom: 5px;
    }
}

.pagination .active a {
    color: #fcfcfc;
    background-color: #22aba6;
    border-radius: 3px;
}

.pagination li:first-child.disabled a {
    padding-left: 0 !important;
}

.pagination li:first-child a {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.pagination li:last-child a {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}

.pagination li a:hover {
    background-color: #22aba6;
    color: #fcfcfc;
}

.pagination .active a:hover {
    background-color: #453971;
}

.pagination .disabled a {
    background: 0 0;
    border: none;
    color: #788;
}

.pagination.pagination-2 li a {
    color: #fcfcfc;
    background-color: #ddd;
    border: 0;
    border-radius: 4px;
}

.pagination.pagination-2.dark li a {
    background-color: #444;
    color: #eee;
}

.pagination.pagination-2 .active a,
.pagination.pagination-2.dark .active a {
    background-color: #22aba6;
}

.pagination.pagination-2 li a:hover {
    background-color: #22aba6;
    color: #fcfcfc;
    border: 0;
}

.pagination.pagination-2 .active a:hover {
    background-color: #453971;
    color: #fcfcfc;
}

.pagination.pagination-2 .disabled a,
.pagination.pagination-2 .disabled a:hover,
.pagination.pagination-2 .disabled a:focus,
.pagination.pagination-2.dark .disabled a,
.pagination.pagination-2.dark .disabled a:hover,
.pagination.pagination-2.dark .disabled a:focus {
    background-color: transparent;
    color: #788;
}

.pagination.pagination-3 li a {
    border: 1px solid #22aba6;
    border-radius: 2px;
}

.pagination.pagination-3 li.disabled a {
    border: 1px solid #ddd;
}

.pagination.pagination-3 .active a:hover {
    background-color: #453971;
    border-color: #453971;
}

.media,
.media .media {
    margin-top: 25px;
}

h4.media-heading {
    color: #444;
    font-size: 17px;
    margin: 0 0 6px;
}

.media-heading .date {
    margin-left: 20px;
    font-size: 12px;
}

    .media-heading .date i {
        margin-right: 5px;
        color: #22aba6;
    }

.media-heading .reply {
    margin-left: 20px;
    font-size: 13px;
}

    .media-heading .reply a:hover {
        text-decoration: none;
        color: #453951;
    }

.media .media-object {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.media-heading > .user {
    color: #444;
}

    .media-heading > .user:hover,
    .media-heading > .user:focus,
    .media-heading > .user:active {
        color: #22aba6;
    }

.media > .pull-left {
    margin-right: 20px;
}

@media(max-width:767px) {
    #blog-posts .media,
    #blog-posts .media-body {
        overflow: visible !important;
    }

    .media > .pull-left {
        display: none;
    }

    .media-heading > .user {
        display: block;
    }

    .media-heading .date {
        margin-left: 0;
    }
}

.blockquote-1 {
    border-left: 3px solid #22aba6;
    background: #f9f9f9;
}

    .blockquote-1 p {
        font-size: 15px;
        line-height: 26px;
        color: #999;
    }

    .blockquote-1 cite {
        color: #22aba6;
        font-size: 14px;
    }

    .blockquote-1 small {
        display: inline-block;
        font-size: 13px;
    }

    .blockquote-1.blockquote-reverse {
        border-left: 0;
        border-right: 3px solid #22aba6;
    }

.blockquote-2 {
    border-left: 3px solid #ddd;
    font-size: 16px;
}

    .blockquote-2.blockquote-reverse {
        border-right: 3px solid #ddd;
        border-left: 0;
    }

.bg {
    padding: 5px 10px;
    border-radius: 3px;
}

    .bg.bg-main {
        color: #fcfcfc;
        background: #22aba6;
    }

    .bg.bg-primary {
        color: #fcfcfc;
    }

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}

    .well.well-2 {
        min-height: 20px;
        padding: 25px;
        margin-bottom: 40px;
        background-color: #f6f6f6;
        border: none;
        border-top: 2px solid #22aba6;
        border-bottom: 2px solid #22aba6;
        border-radius: 0;
        box-shadow: none;
    }

    .well.well-3 {
        background-color: #fcfcfc;
        border: 1px solid #ddd;
        border-top: 3px solid #22aba6;
    }

    .well.well-4 {
        background-color: #f6f6f6;
        border: none;
        border-left: 3px solid #22aba6;
        border-right: 3px solid #22aba6;
    }

    .well.well-5 {
        background-color: #f6f6f6;
        border: 1px solid #ddd;
        border-top: 3px solid #22aba6;
    }

    .well.well-6 {
        background-color: #f6f6f6;
        border: none;
        border-top: 3px solid #22aba6;
        border-bottom: 3px solid #22aba6;
    }

.fa.fa-border {
    border: 2px solid #ddd;
}

.fa.fa-bg {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 3px;
}

.fa.fa-bg-2 {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 50%;
}

.fa.fa-bg-3 {
    background-color: #444;
    padding: 15px;
    border-radius: 50%;
}

@media(max-width:767px) {
    .fa-border,
    .fa-bg,
    .fa-bg-2,
    .fa-bg-3 {
        margin-bottom: 5px;
    }
}

.box-icon {
    font-size: 13px;
    width: 28px;
    height: 28px;
    color: #fafafa;
    padding-top: 7px;
    background-color: #22aba6;
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
}

.fa-services {
    font-size: 40px;
    color: #fafafa;
    background-color: #555;
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.box-content:hover .fa-services {
    background-color: #22aba6;
    box-shadow: inset 2px 1px 4px rgba(0, 0, 0, .6);
    color: rgba(255, 255, 255, .9);
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

.popover {
    border-radius: 0;
}

.popover-title {
    padding: 10px 14px 0;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    background-color: inherit;
    border-bottom: none;
    border-radius: 0;
}

.popover-content {
    font-size: 13px;
    color: #555;
}

.modal {
    z-index: 999999;
}

.modal-content {
    border-radius: 1px;
}

.modal-open .main-header,
.modal-open .header-wrapper {
    z-index: 100;
}

.dropcap {
    float: left;
    color: #788;
    font-size: 50px;
    line-height: 45px;
    padding: 8px 18px 0 2px;
}

.dropcap2 {
    float: left;
    text-align: center;
    padding: 10px 15px;
    margin: 8px 16px 0 2px;
    background-color: #555;
    color: rgba(254, 254, 254, .9);
    font-size: 40px;
    line-height: 35px;
    border-radius: 4px;
}

    .dropcap2.bordered {
        background-color: transparent;
        color: #788;
        border-radius: 4px;
        border: 1px solid #788;
    }

    .dropcap2.dashed {
        border-style: dashed;
    }

    .dropcap2.shadow {
        box-shadow: 0 2px 4px #788;
    }

    .dropcap2.circle {
        border-radius: 50%;
    }

.divider {
    height: 1px;
    background-color: #ccc;
    margin: 30px auto;
}

    .divider.w75 {
        width: 75%;
    }

    .divider.w50 {
        width: 50%;
    }

    .divider.w25 {
        width: 25%;
    }

    .divider.d2 {
        background: 0 0;
        border-top: 1px dashed #ccc;
    }

    .divider.d3:after {
        content: "";
        display: block;
        width: 25%;
        height: 1px;
        position: relative;
        background-color: #22aba6;
        top: -1px;
        margin: 0 auto;
    }

    .divider.d4 {
        text-align: center;
        margin: 40px auto;
    }

        .divider.d4 span {
            background: #fcfcfc;
            color: #788;
            padding: 0 18px;
            position: relative;
            top: -12px;
            font-size: 14px;
        }

    .divider.d5 {
        background: 0 0;
        border-top: 1px dashed #ccc;
        border-bottom: 1px solid #ccc;
    }

    .divider.d4.text-left span {
        padding: 0 18px 0 0;
    }

    .divider.d4.text-right span {
        padding: 0 0 0 18px;
    }

.testimonial-content {
    font-style: italic;
    background-color: #f8fafa;
    color: #788;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    position: relative;
    padding: 25px 20px 5px 50px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid #e5eaea;
    border-radius: 3px;
}

    .testimonial-content:before {
        display: block;
        font-family: FontAwesome;
        content: "\f10e";
        font-size: 18px;
        position: absolute;
        top: 28px;
        font-style: normal;
        left: 18px;
        color: rgba(20, 20, 20, .3);
    }

    .testimonial-content:after {
        content: '';
        display: block;
        width: 35px;
        height: 35px;
        background-color: #f8fafa;
        border-bottom: 1px solid #e5eaea;
        -ms-transform: rotate(-25deg);
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
        position: absolute;
        bottom: -10px;
        left: 64px;
    }

.testimonial-photo {
    float: left;
    margin-right: 20px;
}

    .testimonial-photo img {
        border-radius: 50%;
        height: 75px;
        width: 75px;
    }

.testimonial-author-info {
    padding: 7px 0 0 88px;
}

    .testimonial-author-info h4 {
        font-size: 17px;
        margin-bottom: 2px;
    }

.testimonial-2 .testimonial-content {
}

.testimonial-3 .testimonial-content {
    background-color: #404040;
    color: rgba(254, 254, 254, .9);
    border: 1px solid #202020;
}

    .testimonial-3 .testimonial-content:before {
        color: rgba(254, 254, 254, .7);
    }

    .testimonial-3 .testimonial-content:after {
        background-color: #404040;
        border-bottom: 1px solid #202020;
    }

.testimonial-4 .testimonial-content {
    background-color: #22aba6;
    color: rgba(254, 254, 254, .9);
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}

    .testimonial-4 .testimonial-content:before {
        color: rgba(254, 254, 254, .7);
    }

    .testimonial-4 .testimonial-content:after {
        background-color: #22aba6;
        border-bottom: none;
        bottom: -9px;
    }

.testimonial.dark .testimonial-content,
.testimonial.dark .testimonial-content p {
    color: #444;
}

.testimonial-4.dark .testimonial-content,
.testimonial-4.dark .testimonial-content p,
.testimonial.dark .testimonial-author-info h4,
.testimonial.dark .testimonial-author-info p {
    color: rgba(254, 254, 254, .9);
}

.footer-wrapper {
    background: #303030;
    color: #e0e0e0;
    border-top: 1px solid #eeeeee;
}

    .footer-wrapper p,
    .footer-wrapper a {
        color: #e0e0e0;
    }

        .footer-wrapper a:hover {
            color: #22aba6;
        }

@media(min-width:768px) {
    .footer-fixed-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: -1;
    }
}

.main-footer {
    padding-top: 30px;
}

@media(max-width:767px) {
    .main-footer .social-icon.pull-right {
        float: none !important;
        margin-bottom: 20px;
    }
}

.footer-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-size: 18px;
    margin: 0 0 24px;
    color: #f0f0f0;
}

.footer-widget .contact-info p {
    margin-bottom: 15px;
}

.footer-address span {
    margin-right: 40px;
}

.footer-wrapper .nav-tabs > li > a {
    text-transform: uppercase;
    color: #e0e0e0;
    width: 90%;
}

.footer-wrapper .nav-tabs > .active > a {
    color: #fcfcfc;
}

.footer-wrapper .tab-content {
    padding: 0;
}

@media(min-width:768px) {
    .footer-wrapper .nav-tabs > li > a {
        width: 100%;
    }

    .footer-wrapper .tab-content .footer-widget {
        padding: 0 15px;
    }
}

.footer-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-projects li {
        display: inline-block;
        margin: 0 10px 15px 0;
    }

    .footer-projects img {
        width: 70px;
        height: 70px;
        -webkit-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }

        .footer-projects img:hover {
            opacity: .6;
            -webkit-transition: all .2s ease-in;
            transition: all .2s ease-in;
        }

.sub-footer {
    padding: 0px 0;
    background-color: #2c2c2c;
    font-size: 13px;
}

    .sub-footer p {
        margin: 0;
    }

.white-sub-footer {
    background-color: #fcfcfc;
    color: #788;
}

    .white-sub-footer p,
    .white-sub-footer .footer-menu a {
        color: #788;
    }

@media(max-width:767px) {
    .sub-footer .pull-left,
    .sub-footer .pull-right {
        float: none !important;
    }

    .sub-footer p {
        margin-bottom: 0px;
    }
}

.footer-menu {
    margin: 0;
    padding: 0;
}

    .footer-menu > li {
        margin-right: 15px;
        display: inline-block;
        list-style: none;
    }

        .footer-menu > li:last-child {
            margin-right: 0;
        }

.footer-hr {
    margin: 0 0 50px;
    border-top: 2px solid #3d3d3d;
    box-shadow: 0 0 2px rgba(0, 0, 0, .7);
}

.footer-wrapper .about-more {
    color: #22aba6;
    font-size: 13px;
}

    .footer-wrapper .about-more:hover {
        color: rgba(34, 171, 166, .7);
    }

.main-footer .form-control,
.main-footer .input-group-btn .btn {
    border-radius: 0;
}

.main-footer .input-group-btn .btn {
    color: #fcfcfc;
    background-color: #22aba6;
    border: 1px solid #22aba6;
}

    .main-footer .input-group-btn .btn:hover {
        background-color: rgba(34, 171, 166, .7);
        border: 1px solid rgba(34, 171, 166, .7);
    }

.footer-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .footer-posts > li {
        margin-bottom: 15px;
    }

        .footer-posts > li:last-child {
            margin-bottom: 0;
        }

    .footer-posts .fa {
        color: #22aba6;
        margin-right: 10px;
    }

    .footer-posts small {
        margin-left: 20px;
        font-size: 11px;
        color: #ddd;
    }

.social-icon {
    padding: 0;
    margin: 0;
    font-size: 0;
    height: 28px;
}

.image-caption .social-icon {
    height: 33px;
}

.social-icon li {
    display: inline-block;
    margin-right: 8px;
}

.text-center .social-icon li {
    margin: 0 2px;
}

.social-icon li a {
    display: table;
}

.social-icon .fa {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 28px;
    height: 28px !important;
    line-height: 1;
    font-size: 14px;
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    color: #aaa;
    background: 0 0;
}

.social-icon.dark-2 a .fa {
    color: #e0e0e0;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 13px;
    background-color: #2c2c2c;
    padding: 7px;
}

.social-icon.dark-2 a:hover .fa {
    color: #fafafa;
}

.social-icon.dark-2 > li:last-child {
    margin-right: 0;
}

.social-icon.border .fa {
    border: 1px solid;
}

.social-icon a:hover .fa {
    background-color: #fcfcfc;
}

.social-icon a:hover {
    text-decoration: none;
}

.social-icon.circle .fa {
    border-radius: 50%;
}

.social-icon.rounded .fa {
    border-radius: 3px;
}

.social-icon.main .fa {
    background-color: #22aba6;
    color: #fcfcfc;
}

.social-icon.dark .fa {
    color: #fcfcfc;
    background-color: #666;
}

.social-icon.gray .fa {
    color: #fcfcfc;
    background-color: #999;
}

.social-icon a:hover i,
.footer-wrapper .social-icon li a:hover i {
    color: #fafafa;
}

.social-icon .fa-pinterest {
    border-color: #d8545d;
    color: #d8545d;
}

.social-icon .fa-rss {
    border-color: #faaa5e;
    color: #faaa5e;
}

.social-icon .fa-facebook {
    border-color: #677fb5;
    color: #677fb5;
}

.social-icon .fa-twitter {
    border-color: #70c2e9;
    color: #70c2e9;
}

.social-icon .fa-flickr {
    border-color: #ff3ba4;
    color: #ff3ba4;
}

.social-icon .fa-dribbble {
    border-color: #e299c2;
    color: #e299c2;
}

.social-icon .fa-behance {
    border-color: #42a9fb;
    color: #42a9fb;
}

.social-icon .fa-linkedin {
    border-color: #3daccf;
    color: #3daccf;
}

.social-icon .fa-vimeo-square {
    border-color: #42b5d4;
    color: #42b5d4;
}

.social-icon .fa-youtube {
    border-color: #d5615c;
    color: #d5615c;
}

.social-icon .fa-skype {
    border-color: #5ecbf3;
    color: #5ecbf3;
}

.social-icon .fa-tumblr {
    border-color: #829fb9;
    color: #829fb9;
}

.social-icon .fa-digg {
    border-color: #507faa;
    color: #507faa;
}

.social-icon .fa-github-alt {
    border-color: #6c93bb;
    color: #6c93bb;
}

.social-icon .fa-google-plus {
    border-color: #bc7067;
    color: #bc7067;
}

.social-icon .fa-lastfm {
    border-color: #cd443d;
    color: #cd443d;
}

.social-icon .fa-spotify {
    border-color: #9acf48;
    color: #9acf48;
}

.social-icon .fa-instagram {
    border-color: #b99682;
    color: #b99682;
}

.social-icon .fa-paypal {
    border-color: #5b85a8;
    color: #5b85a8;
}

.social-icon .fa-soundcloud {
    border-color: #ff8b45;
    color: #ff8b45;
}

.social-icon a:hover .fa-pinterest,
.social-icon.with-bg .fa-pinterest {
    background-color: #d8545d;
}

.social-icon a:hover .fa-rss,
.social-icon.with-bg .fa-rss {
    background-color: #faaa5e;
}

.social-icon a:hover .fa-facebook,
.social-icon.with-bg .fa-facebook {
    background-color: #677fb5;
}

.social-icon a:hover .fa-twitter,
.social-icon.with-bg .fa-twitter {
    background-color: #70c2e9;
}

.social-icon a:hover .fa-flickr,
.social-icon.with-bg .fa-flickr {
    background-color: #ff3ba4;
}

.social-icon a:hover .fa-dribbble,
.social-icon.with-bg .fa-dribbble {
    background-color: #e299c2;
}

.social-icon a:hover .fa-behance,
.social-icon.with-bg .fa-behance {
    background-color: #42a9fb;
}

.social-icon a:hover .fa-linkedin,
.social-icon.with-bg .fa-linkedin {
    background-color: #3daccf;
}

.social-icon a:hover .fa-vimeo-square,
.social-icon.with-bg .fa-vimeo-square {
    background-color: #42b5d4;
}

.social-icon a:hover .fa-youtube,
.social-icon.with-bg .fa-youtube {
    background-color: #d5615c;
}

.social-icon a:hover .fa-skype,
.social-icon.with-bg .fa-skype {
    background-color: #5ecbf3;
}

.social-icon a:hover .fa-tumblr,
.social-icon.with-bg .fa-tumblr {
    background-color: #829fb9;
}

.social-icon a:hover .fa-digg,
.social-icon.with-bg .fa-digg {
    background-color: #507faa;
}

.social-icon a:hover .fa-github-alt,
.social-icon.with-bg .fa-github-alt {
    background-color: #6c93bb;
}

.social-icon a:hover .fa-google-plus,
.social-icon.with-bg .fa-google-plus {
    background-color: #bc7067;
}

.social-icon a:hover .fa-lastfm,
.social-icon.with-bg .fa-lastfm {
    background-color: #cd443d;
}

.social-icon a:hover .fa-spotify,
.social-icon.with-bg .fa-spotify {
    background-color: #9acf48;
}

.social-icon a:hover .fa-instagram,
.social-icon.with-bg .fa-instagram {
    background-color: #b99682;
}

.social-icon a:hover .fa-paypal,
.social-icon.with-bg .fa-paypal {
    background-color: #5b85a8;
}

.social-icon a:hover .fa-soundcloud,
.social-icon.with-bg .fa-soundcloud {
    background-color: #ff8b45;
}

.social-icon.with-bg [class*=fa-] {
    color: #fcfcfc;
}

.social-icon.with-bg a:hover .fa {
    background-color: #22aba6;
}

.static-menu .menu-fixed {
    display: none;
}

.demo-titlebar .page-title {
    margin-top: 10px;
}

.demo-titlebar p {
    color: rgba(254, 254, 254, .9);
}

@media(max-width:767px) {
    .demo-titlebar .page-title {
        margin-bottom: 15px;
    }
}

.demo-buy {
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 99999;
    padding: 10px 15px;
    background: rgba(150, 39, 65, .8);
    color: #fcfcfc;
    text-align: center;
    border-left-top-radius: 2px;
    border-left-bottom-rarius: 2px;
}

    .demo-buy:hover {
        background: #962741;
        color: #fafafa;
    }

.template-settings,
.change-sidebar {
    display: block;
    position: fixed;
    left: 0;
    top: 150px;
    width: 40px;
    height: 40px;
    background: rgba(22, 22, 22, .7);
    color: #fcfcfc;
    font-size: 22px;
    text-align: center;
    outline: none;
    z-index: 999999;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}

    .template-settings:hover,
    .template-settings:focus,
    .change-sidebar:hover,
    .change-sidebar:focus {
        background-color: rgba(22, 22, 22, .9);
        color: #fafafa;
    }

    .template-settings .fa {
        margin-top: 9px;
    }

.settings-modal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .settings-modal ul > li {
        display: inline-block;
        margin-right: 10px;
    }

        .settings-modal ul > li > a {
            width: 25px;
            height: 25px;
            display: block;
            background: #555;
        }

.change-sidebar {
    top: 220px;
    padding-top: 7px;
}

.pull-off.on {
    right: 0;
}

.push-off.on {
    left: 0;
}

.individual_item {
    padding: 10px 0px;
    margin: 5px 5px;
    border: solid 1px #eee;
    border-radius: 20px;
    border: solid 1px #ccc;
    -webkit-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    -moz-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
}

/*.individual_item:hover {
    border: solid 1px #ccc;
    -webkit-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    -moz-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
}*/

.individual_company {
    padding: 0px 0px;
    margin: 5px 5px;
    border: solid 1px #eee;
    border-radius: 10px;
}

.individual_company:hover {
    border: solid 1px #ccc;
    -webkit-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    -moz-box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
    box-shadow: 5px 5px 10px 5px rgba(230,225,230,0.61);
}




.tabs {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 3em 0 2em;
    font-weight: 300;
}

/* Nav */
.tabs nav {
    text-align: center;
}

.tabs nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.tabs nav ul li {
    border: 1px solid #becbd2;
    border-bottom: none;
    margin: 0 0.25em;
    display: block;
    float: left;
    position: relative;
    border-radius: 20px 20px 0px 0px;
}

.tabs nav li.tab-current {
    border: 1px solid #47a3da;
    box-shadow: inset 0 2px #47a3da;
    border-bottom: none;
    z-index: 100;
}

.tabs nav li.tab-current:before,
.tabs nav li.tab-current:after {
    content: '';
    position: absolute;
    height: 1px;
    right: 100%;
    bottom: 0;
    width: 1000px;
    background: #47a3da;
}

.tabs nav li.tab-current:after {
    right: auto;
    left: 100%;
    width: 4000px;
}

.tabs nav a {
    color: #becbd2;
    display: block;
    font-size: 1.1em;
    line-height: 2.5;
    padding: 0 1.25em;
    white-space: nowrap;
    font-weight: bold;
}

.tabs nav a:hover {
    color: #768e9d;
}

.tabs nav li.tab-current a {
    color: #47a3da;
}

/* Icons */
.tabs nav a:before {
    display: inline-block;
    vertical-align: middle;
    text-transform: none;
    font-weight: normal;
    font-variant: normal;
    line-height: 1;
    speak: none;
    -webkit-font-smoothing: antialiased;
    margin: -0.25em 0.4em 0 0;
}

.icon-food:before {
    content: "e600";
}

.icon-lab:before {
    content: "e601";
}

.icon-cup:before {
    content: "e602";
}

.icon-truck:before {
    content: "e603";
}

.icon-shop:before {
    content: "e604";
}

/* Content */
.content section {
    padding: 2em 1em;
    display: none;
    max-width: 1230px;
    margin: 0 auto;
}

.content section:before,
.content section:after {
    content: '';
    display: table;
}

.content section:after {
    clear: both;
}

/* Fallback example */
.no-js .content section {
    display: block;
    padding-bottom: 2em;
    border-bottom: 1px solid #47a3da;
}

.content section.content-current {
    display: block;
}

.mediabox {
    float: left;
    width: 33%;
    padding: 0 25px;
}

.mediabox img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.mediabox h3 {
    margin: 0.75em 0 0.5em;
}

.mediabox p {
    padding: 0 0 1em 0;
    margin: 0;
    line-height: 1.3;
}

/* Example media queries */

@media screen and (max-width: 52.375em) {
    .tabs nav a span {
        display: none;
    }

    .tabs nav a:before {
        margin-right: 0;
    }

    .mediabox {
        float: none;
        width: auto;
        padding: 0 0 35px 0;
        font-size: 90%;
    }

    .mediabox img {
        float: left;
        margin: 0 25px 10px 0;
        max-width: 40%;
    }

    .mediabox h3 {
        margin-top: 0;
    }

    .mediabox p {
        margin-left: 40%;
        margin-left: calc(40% + 25px);
    }

    .mediabox:before,
    .mediabox:after {
        content: '';
        display: table;
    }

    .mediabox:after {
        clear: both;
    }
}

@media screen and (max-width: 32em) {
    .tabs nav ul,
    .tabs nav ul li a {
        width: 100%;
        padding: 0;
    }

    .tabs nav ul li {
        width: 20%;
        width: calc(20% + 1px);
        margin: 0 0 0 -1px;
    }

    .tabs nav ul li:last-child {
        border-right: none;
    }

    .mediabox {
        text-align: center;
    }

    .mediabox img {
        float: none;
        margin: 0 auto;
        max-width: 100%;
    }

    .mediabox h3 {
        margin: 1.25em 0 1em;
    }

    .mediabox p {
        margin: 0;
    }
}
