@charset "UTF-8";
@import url(//fonts.googleapis.com/css?family=Open+Sans:400,600,700);

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

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

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}

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

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

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

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

@-webkit-keyframes shake {

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

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

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

@keyframes shake {

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

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

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

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }

    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(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: scale(1);
        transform: scale(1);
    }

    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }

    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }

    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

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

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }

    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

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

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

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

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }

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

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

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

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }

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

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}

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

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }

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

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

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

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

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

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

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

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

.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: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes fadeInUpMore {
    0% {
        opacity: 0;
        -webkit-transform: translateY(120px);
        transform: translateY(120px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeInUpMore {
    0% {
        opacity: 0;
        -webkit-transform: translateY(120px);
        -ms-transform: translateY(120px);
        transform: translateY(120px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

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

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.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;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

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

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -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) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

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

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.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) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

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

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}

.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) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

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

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}

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

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

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(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-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

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

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }

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

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

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        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% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

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

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) 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 center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

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

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}

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

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

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

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

    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}

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

@-webkit-keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

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

@keyframes slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }

    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

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

@-webkit-keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200px);
        transform: translateX(-200px);
    }

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

@keyframes slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-200px);
        -ms-transform: translateX(-200px);
        transform: translateX(-200px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

@-webkit-keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
    }

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

@keyframes slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(200px);
        -ms-transform: translateX(200px);
        transform: translateX(200px);
    }

    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}

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

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

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

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}

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

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

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

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}

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

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

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

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}

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

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

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

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

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

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

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(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: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(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% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(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;
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -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;
    }

    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}

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

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}

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

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}

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

.background-colorset1-linear {
    background-color: ;
    background-image: -ms-linear-gradient(top, 0%, 100%);
    background-image: -moz-linear-gradient(top, 0%, 100%);
    background-image: -o-linear-gradient(top, 0%, 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, ), color-stop(1, ));
    background-image: -webkit-linear-gradient(top, 0%, 100%);
    background-image: linear-gradient(to bottom, 0%, 100%);
}

.background-colorset2-linear {
    background-color: ;
    background-image: -ms-linear-gradient(top, 0%, 100%);
    background-image: -moz-linear-gradient(top, 0%, 100%);
    background-image: -o-linear-gradient(top, 0%, 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, ), color-stop(1, ));
    background-image: -webkit-linear-gradient(top, 0%, 100%);
    background-image: linear-gradient(to bottom, 0%, 100%);
}

.background-colorset3-linear {
    background-color: ;
    background-image: -ms-linear-gradient(top, 0%, 100%);
    background-image: -moz-linear-gradient(top, 0%, 100%);
    background-image: -o-linear-gradient(top, 0%, 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, ), color-stop(1, ));
    background-image: -webkit-linear-gradient(top, 0%, 100%);
    background-image: linear-gradient(to bottom, 0%, 100%);
}

.background-colorset4-linear {
    background-color: ;
    background-image: -ms-linear-gradient(top, 0%, 100%);
    background-image: -moz-linear-gradient(top, 0%, 100%);
    background-image: -o-linear-gradient(top, 0%, 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, ), color-stop(1, ));
    background-image: -webkit-linear-gradient(top, 0%, 100%);
    background-image: linear-gradient(to bottom, 0%, 100%);
}

.background-colorset1-radial-bottom {
    background-color: ;
    background-image: -ms-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -moz-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -o-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -webkit-gradient(radial, center bottom, 0, center bottom, 487, color-stop(0, ), color-stop(0.8, ));
    background-image: -webkit-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: radial-gradient(ellipse farthest-side at center bottom, 0%, 80%);
}

.background-colorset2-radial-bottom {
    background-color: ;
    background-image: -ms-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -moz-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -o-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -webkit-gradient(radial, center bottom, 0, center bottom, 487, color-stop(0, ), color-stop(0.8, ));
    background-image: -webkit-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: radial-gradient(ellipse farthest-side at center bottom, 0%, 80%);
}

.background-colorset3-radial-center {
    background-color: ;
    background-image: -ms-radial-gradient(center, circle closest-corner, 0%, 50%);
    background-image: -moz-radial-gradient(center, circle closest-corner, 0%, 50%);
    background-image: -o-radial-gradient(center, circle closest-corner, 0%, 50%);
    background-image: -webkit-gradient(radial, center center, 0, center center, 506, color-stop(0, ), color-stop(0.5, ));
    background-image: -webkit-radial-gradient(center, circle closest-corner, 0%, 50%);
    background-image: radial-gradient(circle closest-corner at center, 0%, 50%);
}

.background-colorset4-radial-bottom {
    background-color: ;
    background-image: -ms-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -moz-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -o-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -webkit-gradient(radial, center bottom, 0, center bottom, 487, color-stop(0, ), color-stop(0.8, ));
    background-image: -webkit-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: radial-gradient(ellipse farthest-side at center bottom, 0%, 80%);
}

.background-colorset5-radial-bottom {
    background-color: ;
    background-image: -ms-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -moz-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -o-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: -webkit-gradient(radial, center bottom, 0, center bottom, 487, color-stop(0, ), color-stop(0.8, ));
    background-image: -webkit-radial-gradient(center bottom, ellipse farthest-side, 0%, 80%);
    background-image: radial-gradient(ellipse farthest-side at center bottom, 0%, 80%);
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 720px) {
    .container {
        width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        width: 940px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
    position: relative;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
    float: left;
}

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

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

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

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

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

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

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

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

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

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

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

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

.col-xs-pull-12 {
    right: 100%;
}

.col-xs-pull-11 {
    right: 91.66666667%;
}

.col-xs-pull-10 {
    right: 83.33333333%;
}

.col-xs-pull-9 {
    right: 75%;
}

.col-xs-pull-8 {
    right: 66.66666667%;
}

.col-xs-pull-7 {
    right: 58.33333333%;
}

.col-xs-pull-6 {
    right: 50%;
}

.col-xs-pull-5 {
    right: 41.66666667%;
}

.col-xs-pull-4 {
    right: 33.33333333%;
}

.col-xs-pull-3 {
    right: 25%;
}

.col-xs-pull-2 {
    right: 16.66666667%;
}

.col-xs-pull-1 {
    right: 8.33333333%;
}

.col-xs-pull-0 {
    right: auto;
}

.col-xs-push-12 {
    left: 100%;
}

.col-xs-push-11 {
    left: 91.66666667%;
}

.col-xs-push-10 {
    left: 83.33333333%;
}

.col-xs-push-9 {
    left: 75%;
}

.col-xs-push-8 {
    left: 66.66666667%;
}

.col-xs-push-7 {
    left: 58.33333333%;
}

.col-xs-push-6 {
    left: 50%;
}

.col-xs-push-5 {
    left: 41.66666667%;
}

.col-xs-push-4 {
    left: 33.33333333%;
}

.col-xs-push-3 {
    left: 25%;
}

.col-xs-push-2 {
    left: 16.66666667%;
}

.col-xs-push-1 {
    left: 8.33333333%;
}

.col-xs-push-0 {
    left: auto;
}

.col-xs-offset-12 {
    margin-left: 100%;
}

.col-xs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xs-offset-9 {
    margin-left: 75%;
}

.col-xs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xs-offset-6 {
    margin-left: 50%;
}

.col-xs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xs-offset-3 {
    margin-left: 25%;
}

.col-xs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xs-offset-0 {
    margin-left: 0%;
}

@media (min-width: 768px) {

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 992px) {

    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        float: left;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

@media (min-width: 1200px) {

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        float: left;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.invisible {
    visibility: hidden;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.hidden {
    display: none !important;
}

.affix {
    position: fixed;
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-appearance: textfield;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

figure {
    margin: 0;
}

img {
    vertical-align: middle;
}

ul {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.owl-carousel .owl-wrapper:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel {
    display: none;
    position: relative;
    width: 100%;
    -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
    display: none;
    position: relative;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
    float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
    cursor: pointer;
}

.owl-controls {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.grabbing {
    cursor: url(https://acr-sys.com/wp-content/themes/wp-encode/css/grabbing.png) 8 8, move;
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-origin {
    -webkit-perspective: 1200px;
    -webkit-perspective-origin-x: 50%;
    -webkit-perspective-origin-y: 50%;
    -moz-perspective: 1200px;
    -moz-perspective-origin-x: 50%;
    -moz-perspective-origin-y: 50%;
    perspective: 1200px;
}

.owl-fade-out {
    z-index: 10;
    -webkit-animation: fadeOut .7s both ease;
    -moz-animation: fadeOut .7s both ease;
    animation: fadeOut .7s both ease;
}

.owl-fade-in {
    -webkit-animation: fadeIn .7s both ease;
    -moz-animation: fadeIn .7s both ease;
    animation: fadeIn .7s both ease;
}

.owl-backSlide-out {
    -webkit-animation: backSlideOut 1s both ease;
    -moz-animation: backSlideOut 1s both ease;
    animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
    -webkit-animation: backSlideIn 1s both ease;
    -moz-animation: backSlideIn 1s both ease;
    animation: backSlideIn 1s both ease;
}

.owl-goDown-out {
    -webkit-animation: scaleToFade .7s ease both;
    -moz-animation: scaleToFade .7s ease both;
    animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
    -webkit-animation: goDown .6s ease both;
    -moz-animation: goDown .6s ease both;
    animation: goDown .6s ease both;
}

.owl-fadeUp-in {
    -webkit-animation: scaleUpFrom .5s ease both;
    -moz-animation: scaleUpFrom .5s ease both;
    animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
    -webkit-animation: scaleUpTo .5s ease both;
    -moz-animation: scaleUpTo .5s ease both;
    animation: scaleUpTo .5s ease both;
}

@-webkit-keyframes empty {
    0% {
        opacity: 1;
    }
}

@-moz-keyframes empty {
    0% {
        opacity: 1;
    }
}

@keyframes empty {
    0% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

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

    100% {
        opacity: 0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

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

    100% {
        opacity: 0;
    }
}

@-webkit-keyframes backSlideOut {
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(-200%);
    }
}

@-moz-keyframes backSlideOut {
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(-200%);
    }
}

@keyframes backSlideOut {
    25% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }

    100% {
        opacity: .5;
        transform: translateZ(-500px) translateX(-200%);
    }
}

@-webkit-keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        -webkit-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -webkit-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0) translateX(0);
    }
}

@-moz-keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        -moz-transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        -moz-transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateZ(0) translateX(0);
    }
}

@keyframes backSlideIn {

    0%,
    25% {
        opacity: .5;
        transform: translateZ(-500px) translateX(200%);
    }

    75% {
        opacity: .5;
        transform: translateZ(-500px);
    }

    100% {
        opacity: 1;
        transform: translateZ(0) translateX(0);
    }
}

@-webkit-keyframes scaleToFade {
    to {
        opacity: 0;
        -webkit-transform: scale(.8);
    }
}

@-moz-keyframes scaleToFade {
    to {
        opacity: 0;
        -moz-transform: scale(.8);
    }
}

@keyframes scaleToFade {
    to {
        opacity: 0;
        transform: scale(.8);
    }
}

@-webkit-keyframes goDown {
    from {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes goDown {
    from {
        -moz-transform: translateY(-100%);
    }
}

@keyframes goDown {
    from {
        transform: translateY(-100%);
    }
}

@-webkit-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpFrom {
    from {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpFrom {
    from {
        opacity: 0;
        transform: scale(1.5);
    }
}

@-webkit-keyframes scaleUpTo {
    to {
        opacity: 0;
        -webkit-transform: scale(1.5);
    }
}

@-moz-keyframes scaleUpTo {
    to {
        opacity: 0;
        -moz-transform: scale(1.5);
    }
}

@keyframes scaleUpTo {
    to {
        opacity: 0;
        transform: scale(1.5);
    }
}

::selection {
    background: #f7b400;
    color: #fff;
}

.wow {
    visibility: hidden;
}

@media (min-width: 720px) {

    .row-flex,
    .row-flex>div[class*='col-'] {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        flex: 1 1 auto;
    }
}

@media (min-width: 720px) {
    .row-flex-wrap {
        -webkit-flex-flow: row wrap;
        align-content: flex-start;
        flex: 0;
    }
}

.row-flex>div[class*='col-'],
.container-flex>div[class*='col-'] {
    margin: -0.2px;
}

@media (max-width: 480px) {
    .hide_on_mobile_xs {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .rwd-break {
        display: none !important;
    }
}

.background_style_yellow * {
    color: #111 !important;
}

#debug_resolution {
    position: fixed;
    top: 40%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    background: #f7b400;
    z-index: 9999999;
    padding: 30px;
    color: #000;
    font-size: 25px;
    font-family: arial;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
}

#__show-popup {
    position: fixed;
    top: 20%;
    left: 50%;
    margin-left: -188px;
    z-index: 99998;
    padding: 15px;
}

#__show-popup>.close {
    position: absolute;
    right: -70px;
    top: -40px;
    cursor: pointer;
    color: #fff;
    z-index: 99999;
    font-size: 41px;
    width: 57px;
    height: 59px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#up-button {
    position: fixed;
    bottom: 80px;
    right: 50px;
    padding: 8px 16px;
    width: 50px;
    height: 50px;
    border-radius: 500px;
    background: #222;
    opacity: 0;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#up-button>i {
    font-size: 30px;
    color: #fff;
}

#up-button:hover {
    background: #f7b400;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

@media (max-width: 992px) {
    #up-button {
        right: 22px;
    }
}

#up-button.on {
    opacity: 1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.btn {
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    -webkit-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    border-radius: 3px;
}

.btn:hover,
.btn:focus {
    text-decoration: none;
}

.btn.btn_primary {
    padding: 10px 15px;
    background-color: #f7b400;
    color: #111;
    font-size: 14px;
    font-family: arial;
    line-height: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn.btn_primary.btn_active,
.btn.btn_primary:hover {
    background-color: #222;
    color: #fff;
    padding-right: 25px;
    padding-left: 25px;
}

.btn.btn_primary>i {
    margin-right: 10px;
    font-size: 14px;
}

.btn.btn_small {
    padding: 8px 15px;
    font-size: 12px;
}

.btn.btn_small.btn_active,
.btn.btn_small:hover {
    padding-right: 25px;
    padding-left: 25px;
}

.btn.btn_small>i {
    margin-right: 10px;
    font-size: 14px;
}

section.footer {
    background: #161616;
    padding-top: 20px;
}

section.footer .block_menu {
    padding: 40px 0px;
}

section.footer .block_social {
    padding: 40px 0px;
}

section.footer .block_social h3 {
    color: #ddd;
    font-size: 18px;
    font-family: arial;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section.footer .block_social .hash {
    padding: 15px 0px;
}

section.footer .block_social .hash a {
    color: #fff;
    font-size: 14px;
    font-family: arial;
    line-height: 14px;
    font-weight: normal;
    display: inline-block;
    margin-right: 15px;
}

section.footer .block_contact {
    padding: 40px 0px;
}

@media (max-width: 991px) {
    section.footer .block_contact {
        text-align: center;
    }
}

section.footer .block_contact h3 {
    color: #ddd;
    font-size: 18px;
    font-family: arial;
    line-height: 18px;
    font-weight: bold;
    margin-bottom: 30px;
}

section.footer .block_contact .phone {
    display: inline-block;
    color: #ddd;
    font-size: 23px;
    font-family: arial;
    line-height: 23px;
    font-weight: bold;
    padding-left: 30px;
    position: relative;
}

section.footer .block_contact .phone i {
    font-size: 25px;
    position: absolute;
    left: 0px;
}

section.footer .block_contact .phone span.hours {
    margin-top: -25px;
    color: #aaa;
    font-size: 12px;
    font-family: arial;
    line-height: 12px;
    font-weight: normal;
}

section.footer .block_contact .emails {
    color: #ddd;
    font-size: 14px;
    font-family: arial;
    line-height: 20px;
    font-weight: normal;
    margin-top: 30px;
}

section.footer ul.menu {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

section.footer ul.menu>li>a {
    color: #ddd;
    font-size: 18px;
    font-family: arial;
    line-height: 18px;
    font-weight: bold;
    text-transform: uppercase;
}

section.footer ul.menu>li>a:hover {
    text-decoration: none;
}

section.footer ul.menu>li>ul.sub-menu {
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    margin-top: 20px;
}

section.footer ul.menu>li>ul.sub-menu>li {
    margin-bottom: 5px;
}

section.footer ul.menu>li>ul.sub-menu>li>a {
    color: #ddd;
    font-size: 14px;
    font-family: arial;
    line-height: 14px;
    font-weight: normal;
    display: block;
}

section.footer_two {
    background: #0a0a0a;
}

section.footer_two p {
    text-align: center;
    margin: 30px 0px;
}

section.footer_two p.rights {
    color: #ddd;
    font-size: 14px;
    font-family: arial;
    line-height: 14px;
    font-weight: normal;
}

section.footer_two p.rights_links>a {
    color: #fff;
    font-size: 14px;
    font-family: arial;
    line-height: 14px;
    font-weight: normal;
    text-decoration: underline;
}

section.footer_two p.rights_links>a:hover {
    text-decoration: none;
}

section.footer_two p.decl {
    color: #aaa;
    font-size: 12px;
    font-family: arial;
    line-height: 16px;
    font-weight: normal;
}

.social_btns.black>.social_outer {
    background-color: #f7b400;
}

.social_btns.black>.social_outer:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #222;
}

.social_btns>.social_outer {
    display: inline-block;
    padding: 8px;
    background-color: #222;
    margin-right: 10px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.social_btns>.social_outer:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-color: #f7b400;
}

.page_wrapper {
    margin-top: 80px;
}

.page_wrapper.header-transparent {
    margin-top: 0px;
}

.page_wrapper.header-transparent .header_menu {
    background: transparent;
}

.header_menu {
    position: fixed;
    width: 100%;
    top: 0px;
    left: 0px;
    z-index: 100;
    background: #222;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header_menu.active {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #222 !important;
}

.header_menu .cta {
    position: absolute;
    top: 20px;
    right: 20px;
}

@media (max-width: 992px) {
    .header_menu .cta {
        right: 70px;
        top: 20px;
        font-size: 12px;
    }

    .header_menu .cta>i {
        display: none !important;
    }
}

.header_menu .logo {
    height: 80px;
    padding: 10px;
    display: block;
    text-align: center;
}

.header_menu .logo img {
    height: 100%;
}

.header_menu ul.menu {
    list-style-type: none;
    margin: 0px;
}

.header_menu ul.menu>li {
    float: left;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header_menu ul.menu>li.current-menu-item>a,
.header_menu ul.menu>li.current-menu-ancestor>a {
    text-decoration: none;
    color: #f7b400;
}

.header_menu ul.menu>li:hover {
    background: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header_menu ul.menu>li:hover a {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #f7b400;
}

.header_menu ul.menu>li>a {
    color: #fff;
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 14px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    padding: 10px 20px;
    padding-bottom: 36px;
    padding-top: 30px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.header_menu ul.menu>li.menu-item-has-children {
    position: relative;
}

.header_menu ul.menu>li.menu-item-has-children>ul.sub-menu {
    display: none;
    min-width: 300px;
    position: absolute;
    z-index: 99;
    top: 79px;
    left: 0px;
    background: #111;
}

.header_menu ul.menu>li.menu-item-has-children>ul.sub-menu>li {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header_menu ul.menu>li.menu-item-has-children>ul.sub-menu>li:hover a {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
    transform: translateX(8px);
    color: #f7b400;
}

.header_menu ul.menu>li.menu-item-has-children>ul.sub-menu>li:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #161616;
}

.header_menu ul.menu>li.menu-item-has-children>ul.sub-menu>li>a {
    color: #aaa;
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 14px;
    font-weight: 300;
    text-transform: uppercase;
    display: block;
    padding: 15px 30px;
    transform: translateX(0px);
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

@media (max-width: 1199px) {
    .header_menu ul.menu>li>a {
        color: #fff;
        font-size: 13px;
        font-family: 'CenturyGothic-Regular', sans-serif, arial;
        line-height: 13px;
        font-weight: normal;
        padding: 10px 8px;
        padding-bottom: 36px;
        padding-top: 30px;
    }
}

.header_menu .menu_mobile {
    position: absolute;
    top: 25px;
    right: 20px;
    cursor: pointer;
}

.header_menu .menu_mobile.open .menu_mobile_inner {
    background: none !important;
}

.header_menu .menu_mobile.open .menu_mobile_inner:before {
    top: 0 !important;
    background: #fff !important;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header_menu .menu_mobile.open .menu_mobile_inner:after {
    top: 0 !important;
    background: #fff !important;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header_menu .menu_mobile .menu_mobile_inner {
    width: 28px;
    height: 4px;
    margin: 10px 0;
    background: #fff;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header_menu .menu_mobile .menu_mobile_inner:before {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    position: absolute;
    z-index: -1;
    top: -8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.header_menu .menu_mobile .menu_mobile_inner:after {
    content: '';
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    position: absolute;
    z-index: -1;
    top: 8px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.mobile_menu_container {
    position: fixed;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #000;
    z-index: 99;
}

.mobile_menu_container.open {
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mobile_menu_container.open .inner {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-top: 100px;
}

.mobile_menu_container .inner {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin-top: 0px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.mobile_menu_container .inner ul.menu {
    margin: 0 auto;
    list-style-type: none;
}

.mobile_menu_container .inner ul.menu li {
    text-align: center;
    height: 8vh;
    min-height: 38px;
}

.mobile_menu_container .inner ul.menu li a {
    color: #fff;
    font-size: 25px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 300;
    display: block;
    padding: 20px 0px;
    text-decoration: none;
}

.mobile_menu_container .inner ul.menu li a:active {
    background: #f7b400;
}

@media (max-width: 720px) {
    .mobile_menu_container .inner ul.menu li a {
        padding: 10px 0px;
        font-size: 30px;
    }
}

.mobile_menu_container .inner ul.menu li.current-menu-item a,
.mobile_menu_container .inner ul.menu li:hover a {
    text-decoration: none;
}

.mobile_menu_container .inner ul.menu li:last-child {
    margin-left: none;
}

.more_mark_small {
    margin: 0 auto;
    /* margin-top: 60px; */
    background: #f7b400;
    width: 50px;
    height: 50px;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.more_mark_small.more_invert {
    background: #111;
}

.more_mark_small.more_invert:hover {
    background: #f7b400;
}

.more_mark_small:hover {
    background: #111;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.more_mark_small i {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 35px;
    color: #fff;
}

.more_mark {
    position: absolute;
    bottom: 30%;
    left: 0px;
    width: 100%;
    z-index: 90;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.more_mark span {
    background: transparent;
    border: 3px solid #f7b400;
    border-radius: 3px;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 24px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 15px 40px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.more_mark span:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding-left: 60px;
    padding-right: 60px;
}

.more_mark i {
    color: #f7b400;
    position: absolute;
    top: 40px;
    left: 108px;
    font-size: 45px;
}

.more_mark_two {
    position: absolute;
    bottom: 20%;
    left: 50%;
    width: 234px;
    margin-left: -118px;
    z-index: 90;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-align: center;
}

.more_mark_two>img {
    position: absolute;
    width: 230px;
    z-index: -2;
}

.more_mark_two>img.active {
    position: absolute;
    width: 230px;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.more_mark_two:hover>img.active {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.more_mark_two:hover>span {
    color: #111;
}

.more_mark_two>span {
    z-index: 10;
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 24px;
    font-weight: 300;
    text-transform: uppercase;
/**    padding: 15px 40px; */
    padding-top: 18px;
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
width: 230px;
height: 70px;
}

section.frontpage_video {
    height: 100vh;
}

section.frontpage_video #outer-wrap,
section.frontpage_video #video-wrap {
    height: 100vh;
}

section.frontpage_claim {
    background: #111;
    padding: 60px 0px;
}

section.frontpage_claim h2 {
    color: #f7b400;
    font-size: 31px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 40px;
    font-weight: 300;
}

section.frontpage_claim p {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    text-align: center;
    margin: 40px auto;
    max-width: 900px;
}

section.frontpage_about {
    padding: 80px 0px;
}

section.frontpage_about h2 {
    color: #fff;
    font-size: 45px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 45px;
    font-weight: 300;
    margin: 40px 0px;
}

section.frontpage_about p {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    margin: 40px auto;
}

section.frontpage_showcase .showcase_container {
    position: relative;
    overflow: hidden;
    height: 500px;
}

section.frontpage_showcase .showcase_container .showcase_container_inner {
    position: absolute;
    white-space: nowrap;
}

section.frontpage_showcase .showcase_container .showcase_container_inner>.showcase_media {
    float: left;
    overflow: hidden;
    cursor: pointer;
}

section.frontpage_showcase .showcase_container .showcase_container_inner>.showcase_media>.showcase_media_inner {
    height: 250px;
    width: 250px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    transform: scale(1);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    transition-timing-function: ease-in-out;
}

section.frontpage_showcase .showcase_container .showcase_container_inner>.showcase_media>.showcase_media_inner:hover .btn_video_player {
    transform: scale(1.5);
    -webkit-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.frontpage_showcase .showcase_container .showcase_container_inner>.showcase_media>.showcase_media_inner .btn_video_player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    -webkit-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.frontpage_showcase .showcase_container .showcase_container_inner>.showcase_media>.showcase_media_inner .btn_video_player i {
    font-size: 50px;
    color: #f7b400;
}

#fixed_menu_container {
    position: fixed;
    width: 100%;
    left: 0;
    top: 80px;
    height: 91px;
    z-index: 99;
    overflow: hidden;
    visibility: hidden;
}

#fixed_menu_container>.inner {
    background: #282828;
    border-top: 1px solid #333;
    text-align: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
    transform: translateY(-100px);
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

#fixed_menu_container>.inner>ul>li {
    display: inline-block;
    padding: 12px 50px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

#fixed_menu_container>.inner>ul>li.active {
    background: #444444;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

#fixed_menu_container>.inner>ul>li.active h3 {
    color: #fff;
}

#fixed_menu_container>.inner>ul>li.active i {
    color: #f7b400;
}

#fixed_menu_container>.inner>ul>li i {
    font-size: 22px;
    color: #ddd;
    display: block;
    margin-bottom: 5px;
}

#fixed_menu_container>.inner>ul>li h3 {
    color: #ddd;
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 16px;
    font-weight: 300;
}

#fixed_menu_container.active {
    visibility: visible;
}

#fixed_menu_container.active>.inner {
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transform: translateY(0px);
}

.title.has_fixed_background {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center 0;
    position: relative;
    z-index: 101;
    -webkit-backface-visibility: hidden;
}

.page_header h1 {
    color: #f7b400;
    font-size: 45px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 45px;
    font-weight: 600;
    text-align: center;
    margin: 40px 0px;
    margin-top: 70px;
}

.page_header p {
    color: #fff;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 23px;
    font-weight: 300;
    text-align: center;
    margin: 30px auto;
    max-width: 900px;
    display: block;
}

.page_section_header {
    text-align: center;
    margin: 30px 0px;
}

.page_section_header h2 {
    color: #ddd;
    font-size: 30px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    text-align: left;
    margin-bottom: 30px;
    border-bottom: 3px solid #F6B300;
    display: inline-block;
    padding: 50px;
    padding-top: 0px;
    padding-bottom: 10px;
}

section.showcase {
    padding-bottom: 50px;
}

section.showcase .filter_outer {
    text-align: center;
}

section.showcase .filter li {
    display: inline-block;
    margin: 0px 6px;
    padding: 10px 20px;
    cursor: pointer;
    margin-bottom: 12px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #222;
    border-radius: 2px;
    color: #fff;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 18px;
    font-weight: normal;
}

section.showcase .filter li:hover {
    background: #3c3c3c;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

section.showcase .filter li.active {
    background: #f7b400;
    color: #111;
    padding-left: 30px;
    padding-right: 30px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.showcase_single .showcase-mix-item {
    margin-bottom: 30px;
    vertical-align: top;
    width: 100%;
}

.showcase_single .showcase-mix-item>.inner {
    padding: 40px 0px;
}

.showcase_single .showcase-mix-item>.inner .image_outer {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    text-align: center;
}

.showcase_single .showcase-mix-item>.inner .image_outer>img {
    max-width: 100%;
    width: auto;
    height: auto;
}

.showcase_single .showcase-mix-item>.inner .image_outer:hover .btn_video_player {
    transform: scale(1.5);
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.showcase_single .showcase-mix-item>.inner .image_outer .btn_video_player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.showcase_single .showcase-mix-item>.inner .image_outer .btn_video_player i {
    font-size: 50px;
    color: #f7b400;
}

.showcase_single .showcase-mix-item>.inner p {
    margin: 10px 0px;
    color: #fff;
    font-size: 14px;
    font-family: arial;
    line-height: 18px;
    font-weight: normal;
    text-align: justify;
}

.showcase_container_two {
    margin-right: -15px;
    margin-left: -15px;
}

.showcase_container_two.showcase_inline {
    padding: 20px 0px !important;
}

.showcase_container_two.showcase_inline .showcase-mix-item {
    margin-left: -5px !important;
    margin-bottom: 20px !important;
}

.showcase_container_two .showcase-mix-item {
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: top;
}

.showcase_container_two .showcase-mix-item.showcase-mixitup {
    display: none;
}

@media (min-width: 992px) {
    .showcase_container_two .showcase-mix-item {
        width: 33.3333333333%;
    }

    .showcase_container_two .showcase-mix-item>.inner>.image_outer {
        max-height: 159px;
    }
}

@media (min-width: 1200px) {
    .showcase_container_two .showcase-mix-item {
        width: 25%;
    }

    .showcase_container_two .showcase-mix-item>.inner>.image_outer {
        max-height: 143px;
    }
}

@media (max-width: 992px) {
    .showcase_container_two .showcase-mix-item {
        width: 50%;
    }

    .showcase_container_two .showcase-mix-item>.inner>.image_outer {
        max-height: 185px;
    }
}

@media (max-width: 720px) {
    .showcase_container_two .showcase-mix-item {
        width: 100%;
    }

    .showcase_container_two .showcase-mix-item>.inner>.image_outer {
        max-height: none;
    }
}

.showcase_container_two .showcase-mix-item>.inner {
    padding: 0px 15px;
}

.showcase_container_two .showcase-mix-item>.inner .image_outer {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.showcase_container_two .showcase-mix-item>.inner .image_outer>img {
    width: 100%;
    height: auto;
}

.showcase_container_two .showcase-mix-item>.inner .image_outer:hover .btn_video_player {
    transform: scale(1.5);
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.showcase_container_two .showcase-mix-item>.inner .image_outer .btn_video_player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    text-align: center;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    transform: scale(1);
    -webkit-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 0.4s cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.showcase_container_two .showcase-mix-item>.inner .image_outer .btn_video_player i {
    font-size: 50px;
    color: #f7b400;
}

.showcase_container_two .showcase-mix-item>.inner p {
    margin: 10px 0px;
    color: #fff;
    font-size: 14px;
    font-family: arial;
    line-height: 18px;
    font-weight: normal;
    text-align: justify;
}

section.support_manuals {
    background: #111;
    margin: 40px 0px;
    padding: 30px 0px;
}

section.support_firmware {
    margin: 40px 0px;
    padding: 30px 0px;
}

.file_list.background_white .item>h3,
.file_list.background_white .item>p {
    color: #111 !important;
}

.file_list .item {
    margin-left: 70px;
    margin-bottom: 30px;
}

.file_list .item>img {
    width: 50px;
    margin-left: -70px;
    float: left;
}

.file_list .item>.icon {
    float: left;
    margin-left: -66px;
    margin-top: 5px;
}

.file_list .item>h3 {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 26px;
    font-weight: 300;
    margin-bottom: 10px;
}

.file_list .item>p {
    color: #fff;
    font-size: 14px;
    font-family: arial;
    line-height: 18px;
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 15px;
}

.icon_black .icon_windows {
    width: 40px;
    height: 40px;
    background: url(../../../../img/icons/windows_black.png);
}

.icon_black .icon_android {
    width: 40px;
    height: 46px;
    background: url(../../../../img/icons/android_black.png);
}

.icon_black .icon_mac {
    width: 40px;
    height: 50px;
    background: url(../../../../img/icons/mac_black.png);
}

.icon_black .icon_doc {
    width: 40px;
    height: 56px;
    background: url(../../../../img/icons/doc_black.png);
}

.icon_black .icon_pdf {
    width: 40px;
    height: 56px;
    background: url(../../../../img/icons/pdf_black.png);
}

.icon_black .icon_zip {
    width: 40px;
    height: 36px;
    background: url(../../../../img/icons/zip_black.png);
}

.icon_white .icon_windows {
    width: 40px;
    height: 40px;
    background: url(../../../../img/icons/windows_white.png);
}

.icon_white .icon_android {
    width: 40px;
    height: 46px;
    background: url(../../../../img/icons/android_white.png);
}

.icon_white .icon_mac {
    width: 40px;
    height: 50px;
    background: url(../../../../img/icons/mac_white.png);
}

.icon_white .icon_doc {
    width: 40px;
    height: 56px;
    background: url(../../../../img/icons/doc_white.png);
}

.icon_white .icon_pdf {
    width: 40px;
    height: 56px;
    background: url(../../../../img/icons/pdf_white_v-1.png);
}

.icon_white .icon_zip {
    width: 40px;
    height: 36px;
    background: url(../../../../img/icons/zip_white.png);
}

.faq_accordion .item {
    padding-bottom: 15px;
}

.faq_accordion .item.active>.header {
    background: transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    color: #f7b400;
}

.faq_accordion .item.active>.header:hover {
    background: transparent !important;
}

.faq_accordion .item.active>.header>i.plus {
    color: #f7b400;
    transform: rotateZ(-180deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.faq_accordion .item>.header {
    color: #fff;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 24px;
    font-weight: 300;
    padding: 15px;
    padding-left: 50px;
    background: #222;
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.faq_accordion .item>.header:hover {
    background: #2f2f2f;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

.faq_accordion .item>.header>i {
    position: absolute;
    left: 18px;
    top: 18px;
    font-size: 24px;
    color: #fff;
    display: block;
    margin-bottom: 10px;
    transform: rotateZ(0deg);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.faq_accordion .item>.header>i.plus {
    display: block;
}

.faq_accordion .item>.content {
    display: none;
}

.faq_accordion .item>.content p {
    margin: 15px;
    color: #fff;
    font-size: 15px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 22px;
    font-weight: 300;
}

section.contact_form {
    background-color: #0b0b0b;
}

section.contact_form p,
section.contact_form td,
section.contact p,
section.contact td {
    color: #fff;
    font-size: 16px;
    font-family: arial;
    line-height: 24px;
    font-weight: normal;
}

section.contact_form td:first-child,
section.contact td:first-child {
    padding-right: 20px;
    text-align: right;
}

section.contact_form h2,
section.contact h2 {
    color: #fff;
    font-size: 30px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 20px;
}

section.page_company .header {
    padding: 60px 0px;
    padding-bottom: 150px;
    text-align: center;
}

section.page_company .header .logo_outer {
    width: 200px;
    height: 100px;
    margin: 0 auto;
}

section.page_company .header .logo_outer>img {
    width: 100%;
    height: auto;
}

section.page_company .header p {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    margin: 40px auto;
    max-width: 900px;
}

section.page_company .section {
    margin-top: -40px;
    margin-bottom: 30px;
    background: #1e1e1e;
    border-radius: 4px;
}

section.page_company .section .content {
    padding: 30px 15px;
    border-radius: 5px 5px 0px 0px;
    text-align: center;
}

section.page_company .section .content h3 {
    color: #f7b400;
    font-size: 25px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 0px 10px;
}

section.page_company .section .content p {
    color: #fff;
    font-size: 16px;
    font-family: arial;
    line-height: 22px;
    font-weight: normal;
    margin: 10px 0px;
}

section.page_company .team_header {
    padding: 40px 0px;
}

section.page_company .team_header h3 {
    color: #111;
    font-size: 30px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 35px;
    font-weight: 600;
    margin-bottom: 30px;
}

section.page_company .team_header p {
    color: #111;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    margin: 10px 0px;
}

section.page_company .team_container {
    margin: 30px 0px;
}

section.page_company .team_container .person-item {
    display: inline-block;
    margin-bottom: 30px;
    vertical-align: top;
    min-height: 280px;
    text-align: center;
}

section.page_company .team_container .person-item .image_outer {
    position: relative;
    overflow: hidden;
    width: 160px;
    margin: 0 auto;
    border-radius: 300px;
    border: 6px solid #2b2b2b;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.page_company .team_container .person-item .image_outer:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.page_company .team_container .person-item .image_outer>img {
    max-width: 100%;
    width: auto;
    height: auto;
}

section.page_company .team_container .person-item h3 {
    color: #f7b400;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 24px;
    font-weight: 600;
    margin: 10px 0px;
    margin-bottom: 5px;
}

section.page_company .team_container .person-item h4 {
    color: #fff;
    font-size: 16px;
    font-family: arial;
    line-height: 20px;
    font-weight: normal;
    margin-bottom: 5px;
}

section.page_company .team_container .person-item p {
    color: #f7b400;
    font-size: 14px;
    font-family: arial;
    line-height: 18px;
    font-weight: normal;
    margin: 0px;
    padding: 0px;
}

section.support .section {
    display: block;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 40px;
    background: rgba(33, 33, 33, 0.9);
    border-radius: 4px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.support .section:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
    background: #373737;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

section.support .section .content {
    margin-bottom: 20px;
}

section.support .section .content i {
    font-size: 35px;
    color: #f7b400;
    display: block;
    margin-bottom: 20px;
}

section.support .section .content h3 {
    color: #fff;
    font-size: 25px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 300;
    margin-bottom: 20px;
}

section.support .section .content p {
    color: #ddd;
    font-size: 16px;
    font-family: arial;
    line-height: 22px;
    font-weight: normal;
    margin: 10px 0px;
}

section.support .section .action .btn {
    display: block;
    width: 100%;
}

.social_ {
    background-image: url(../../../../img/spritesheet.png);
    background-repeat: no-repeat;
    display: block;
}

.social_.social_-fb_black {
    background-position: -5px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-fb_white {
    background-position: -47px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-insta_black {
    background-position: -89px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-insta_white {
    background-position: -131px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-twitter_black {
    background-position: -173px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-twitter_white {
    background-position: -215px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-vimeo_black {
    background-position: -257px -5px;
    width: 32px;
    height: 32px;
}

.social_.social_-vimeo_white {
    background-position: -299px -5px;
    width: 32px;
    height: 32px;
}

.videoWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.enc_message_info {
    width: 100%;
    margin: 20px auto;
    padding: 15px;
    position: relative;
}

.enc_message_info.enc_message_type_info {
    background-color: #f7b400;
}

.enc_message_info.enc_message_type_info>p {
    margin: 10px 0px;
    margin-left: 36px;
    display: none;
}

.enc_message_info.enc_message_type_info>span.enc_message_header {
    color: #fff;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 22px;
    font-weight: 300;
}

.enc_message_info.enc_message_type_cookie {
    background-color: #111;
    padding: 20px 40px;
}

.enc_message_info.enc_message_type_cookie>p {
    margin: 10px 0px;
    margin-left: 36px;
    display: none;
}

.enc_message_info.enc_message_type_cookie>span.enc_message_header {
    color: #888;
    font-size: 14px;
    font-family: arial;
    line-height: 23px;
    font-weight: normal;
}

.enc_message_info.enc_message_type_cookie .enc_message_close {
    color: #aaa;
}

.enc_message_info .enc_message_close {
    position: absolute;
    color: #fff;
    font-size: 30px;
    top: 5px;
    right: 15px;
    cursor: pointer;
}

.form .input_field {
    margin-bottom: 10px;
}

.form .input_field label {
    display: block;
    margin-bottom: 5px;
    color: #ddd;
    font-size: 13px;
    font-family: arial;
    line-height: 15px;
    font-weight: normal;
}

.form .input_field label>span {
    color: #888;
}

.form .input_field .hint {
    margin-top: 3px;
    color: #888;
    font-size: 13px;
    font-family: arial;
    line-height: 15px;
    font-weight: normal;
}

.form .input_field label.checkbox {
    display: inline-block;
}

.form .input_field>.btn-right {
    float: right;
}

.form .input_field textarea,
.form .input_field input[type='text'],
.form .input_field input[type='password'],
input[type='email'],
input[type='tel'] {
    width: 100%;
    outline: none;
    padding: 8px;
    background-color: #222;
    border: none;
    color: #f7b400;
    font-size: 16px;
    font-family: arial;
    line-height: 20px;
    font-weight: normal;
}

.form .input_field textarea {
    height: 150px;
}

.form .input_field input[type='checkbox'] {
    margin: 0px;
}

.form .input_field input[type='text'],
.form .input_field input[type='password'] {
    height: 37px;
}

.form .input_field>label.invalid {
    clear: both;
    display: inline-block;
    font-size: 13px;
    color: #111;
    background: #f7b400;
    padding: 6px 10px;
    margin-top: 8px;
    margin-bottom: 0px;
    position: relative;
}

.form .input_field>label.invalid:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: -5px;
    left: 30px;
    margin-left: -5px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #f7b400;
}

.form .input_field>label.invalid.invalid-info {
    background: #333;
}

.form .input_field>label.invalid.invalid-info:before {
    border-bottom: 9px solid #333;
}

.paralax_background {
    width: 100%;
    background-size: cover;
    background-position: 0px 0px;
    background-repeat: no-repeat;
    position: relative;
}

section.page h1,
.text_content h1 {
    color: #fff;
    font-size: 30px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 38px;
    font-weight: 600;
    margin: 30px 0px !important;
}

section.page h2,
.text_content h2 {
    color: #f7b400;
    font-size: 26px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 600;
    margin: 20px 0px !important;
}

section.page h3,
.text_content h3 {
    color: #f7b400;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 23px;
    font-weight: 600;
    margin: 15px 0px !important;
}

section.page p,
section.page blockquote,
section.page ul,
section.page ol,
.text_content p,
.text_content blockquote,
.text_content ul,
.text_content ol {
    color: #fff;
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 23px;
    font-weight: 300;
}

section.page blockquote,
.text_content blockquote {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 3px solid #f7b400;
}

section.page ul>li,
section.page ol>li,
.text_content ul>li,
.text_content ol>li {
    margin: 5px 0px;
}

@media (max-width: 720px) {

    section.page img.alignleft,
    section.page img.alignright,
    .text_content img.alignleft,
    .text_content img.alignright {
        clear: both;
        width: 100%;
        height: auto;
        margin: 0px;
    }
}

section.page img.alignleft,
.text_content img.alignleft {
    margin-right: 25px;
    margin-bottom: 25px;
    float: left;
}

section.page img.alignright,
.text_content img.alignright {
    margin-left: 25px;
    margin-bottom: 25px;
    float: right;
}

section.page ul,
.text_content ul {
    list-style-type: circle;
    padding-left: 40px;
    margin: 20px 0px;
}

section.page ol,
.text_content ol {
    list-style-type: decimal;
    padding-left: 40px;
    margin: 20px 0px;
}

.modal-imageviewer {
    top: 20px;
    bottom: 20px;
    left: 50%;
}

@media (max-width: 992px) {
    .modal-imageviewer {
        width: calc(100% - 100px);
        left: 50px;
        right: 50px;
    }
}

@media (min-width: 992px) {
    .modal-imageviewer {
        width: 840px;
        margin-left: -420px;
    }
}

@media (min-width: 1200px) {
    .modal-imageviewer {
        width: 1040px;
        margin-left: -520px;
    }
}

.modal-imageviewer .modal-content {
    position: relative;
}

.imageviewer {
    height: 100%;
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.imageviewer>.imageviewer-content {
    height: 100%;
    margin: 0px 50px;
    position: relative;
}

.imageviewer>.imageviewer-content>img {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.imageviewer .imageviewer-control {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 200px;
    margin-top: -100px;
    cursor: pointer;
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.imageviewer .imageviewer-control>i {
    position: absolute;
    top: 50%;
    margin-top: -40px;
    font-size: 50px;
    color: #fff;
}

.imageviewer .imageviewer-control.prev {
    left: -40px;
}

.imageviewer .imageviewer-control.prev>i {
    left: 0px;
}

.imageviewer .imageviewer-control.next {
    right: -40px;
}

.imageviewer .imageviewer-control.next>i {
    right: 0px;
}

.imageviewer .imageviewer-control:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
}

.modal-overlay.on {
    display: block;
}

.modal {
    position: fixed;
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    text-align: center;
}

.modal h1 {
    font-family: "Open Sans";
    font-size: 20px;
    font-weight: 700;
    color: #f7b400;
    line-height: 20px;
    padding-bottom: 20px;
}

.modal h2 {
    font-family: "Open Sans";
    font-size: 20px;
    color: #000;
    font-weight: bold;
    line-height: 22px;
    padding: 4px 0px;
}

.modal p {
    font-family: "Open Sans";
    font-size: 16px;
    color: #000;
    line-height: 16px;
}

.modal .modal-inner ::-webkit-scrollbar {
    width: 10px;
}

.modal .modal-inner ::-webkit-scrollbar-track {
    background: #eee;
}

.modal .modal-inner ::-webkit-scrollbar-track:hover {
    background: #ddd;
}

.modal .modal-inner ::-webkit-scrollbar-thumb {
    background: #333;
}

.modal .modal-inner::-webkit-scrollbar-thumb:hover {
    background: #222;
    cursor: pointer;
}

.modal-popup {
    top: 20%;
    left: 50%;
    height: auto;
    margin-left: -188px;
    z-index: 99998;
}

.modal-popup .modal-content {
    padding: 15px;
}

@media (max-width: 992px) {
    .modal-popup .close {
        right: 0px !important;
        top: -50px !important;
    }
}

.modal.modal-default {
    width: 600px;
    height: auto;
    margin-left: -300px;
}

.modal.modal-imagezoom {
    width: 800px;
    height: auto;
    margin-left: -400px;
    padding: 0px;
    background: #fff;
}

.modal.modal-imagezoom img.image {
    border-radius: 10px;
}

.modal.modal-medium {
    width: 400px;
    height: auto;
    margin-left: -200px;
}

.modal.modal-full {
    width: 900px;
    height: auto;
    margin-left: -450px;
    min-height: 520px;
}

.modal.on {
    visibility: visible;
    opacity: 1;
}

.modal>.modal-inner {
    height: 100%;
}

.modal * .modal-content {
    height: 100%;
}

.modal>.close {
    position: absolute;
    right: -50px;
    top: 0px;
    cursor: pointer;
    color: #fff;
    z-index: 99999;
    font-size: 50px;
    width: 57px;
    height: 59px;
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.modal>.close:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.landing_nab2016 {
    position: relative;
}

section.landing_nab2016.header {
    background: #222;
}

@media (min-width: 720px) {
    section.landing_nab2016.header {
        background: #222 url(../../../../img/landings_nab2016/nab2.png) no-repeat 50% bottom;
        min-height: 567px;
    }
}

@media (max-width: 720px) {
    section.landing_nab2016.header {
        padding-bottom: 120px;
    }
}

section.landing_nab2016.header h1 {
    color: #f7b400;
    font-size: 30px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 38px;
    font-weight: 600;
    margin: 50px 0px;
    text-align: center;
}

section.landing_nab2016 .reseller {
    padding-top: 40px;
    transform: scale(0.96);
    -webkit-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.2s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

@media (max-width: 720px) {
    section.landing_nab2016 .reseller {
        padding-top: 10px;
    }
}

section.landing_nab2016 .reseller:hover {
    transform: scale(1);
    -webkit-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.landing_nab2016 .reseller img {
    max-width: 100%;
}

section.landing_nab2016 .reseller.right {
    text-align: right;
}

@media (max-width: 720px) {
    section.landing_nab2016 .reseller {
        text-align: center !important;
    }
}

section.landing_nab2016 .find_code {
    position: absolute;
    bottom: 0px;
    text-align: center;
    width: 100%;
}

section.landing_nab2016 .find_code h2 {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 300;
    background: rgba(40, 40, 40, 0.33);
    padding: 20px;
}

section.landing_nab2016 .find_code h2 span {
    color: #f7b400;
    font-size: 23px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 300;
}

section.landing_nab2016 .info {
    padding: 80px 0px;
    text-align: center;
}

section.landing_nab2016 .info p {
    color: #fff;
    font-size: 20px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 28px;
    font-weight: 300;
}

section.landing_nab2016 .promo_code {
    padding: 120px 0px;
    text-align: center;
    color: #f7b400;
    font-size: 60px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 60px;
    font-weight: 800;
    text-shadow: 0px 0px 20px #000;
    transform: scale(1);
    -webkit-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.landing_nab2016 .promo_code:hover {
    transform: scale(1.15);
    -webkit-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.landing_nab2016 .terms_header {
    margin: 60px 0px;
    text-align: center;
}

section.landing_nab2016 .terms_header a {
    color: #fff;
    font-size: 16px;
    font-family: arial;
    line-height: 16px;
    font-weight: normal;
    text-decoration: underline;
}

section.landing_nab2016 .terms_header a:hover {
    text-decoration: none;
}

section.landing_nab2016 .text_content {
    margin-bottom: 100px;
}

section.landing_nab2016 .text_content h3 {
    text-align: center;
}

section.landing_nab2016 .text_content p,
section.landing_nab2016 .text_content blockquote,
section.landing_nab2016 .text_content ul,
section.landing_nab2016 .text_content ol {
    color: #ddd;
    font-size: 13px;
    font-family: arial;
    line-height: 18px;
    font-weight: normal;
}

@font-face {
    font-family: 'CenturyGothic-Regular';
    src: url('gothic/CenturyGothic_gdi.eot');
    src: url('gothic/CenturyGothic_gdi.eot#iefix') format('embedded-opentype'), url('https://acr-sys.com/wp-content/themes/wp-encode/css/gothic/CenturyGothic_gdi.woff') format('woff'), url('gothic/CenturyGothic_gdi.ttf') format('truetype'), url('gothic/CenturyGothic_gdi.svg') format('svg');
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U0041-F005;
}

@media (max-width: 991px) {
    .hide_on_mobile {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .hide_on_mobile {
        display: block !important;
    }
}

@media (min-width: 1200px) {
    .hide_on_mobile {
        display: block !important;
    }
}

@media (max-width: 991px) {
    .show_on_mobile {
        display: block;
    }
}

@media (min-width: 992px) {
    .show_on_mobile {
        display: none;
    }
}

@media (min-width: 1200px) {
    .show_on_mobile {
        display: none;
    }
}

@media (max-width: 719px) {
    .show_on_mobile_xs {
        display: block;
    }
}

@media (min-width: 720px) {
    .show_on_mobile_xs {
        display: none;
    }
}

@media (min-width: 992px) {
    .show_on_mobile_xs {
        display: none;
    }
}

@media (min-width: 1200px) {
    .show_on_mobile_xs {
        display: none;
    }
}

@media (max-width: 719px) {
    .hide_on_mobile_xs {
        display: none;
    }
}

@media (min-width: 991px) {
    .hide_on_mobile_xs {
        display: block;
    }
}

@media (min-width: 992px) {
    .hide_on_mobile_xs {
        display: block;
    }
}

@media (min-width: 1200px) {
    .hide_on_mobile_xs {
        display: block;
    }
}

@media (min-width: 992px) {
    .hide_on_desktop {
        display: none;
    }
}

@media (min-width: 1200px) {
    .hide_on_desktop {
        display: none;
    }
}

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

a {
    color: #f7b400;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

h1,
h2,
h3,
h4 {
    margin: 0px;
}

body {
    background: #111;
}

section.product_list .container_outer {
    padding: 80px 0px;
    background-color: white;
    border-top: 1px dashed black;
}

section.product_list .container_outer:first-child {
    border-top: none;
}

section.product_list .product_image_outer {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 992px) {
    section.product_list .product_image_outer {
        margin-top: 0px;
    }
}

section.product_list .product_image_outer img {
    max-width: 350px;
    max-height: 500px;
    width: 100%;
    height: auto;
}

section.product_list .product_logo {
    position: absolute;
    top: 4%;
    right: 2%;
}

section.product_list .product_logo img {
    width: 150px;
}

section.product_list .product_list_detail {
    padding: 30px;
}

section.product_list .product_list_detail h2 {
    color: #111;
    font-size: 37px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 37px;
    font-weight: 600;
    margin: 60px 0px;
    margin-top: 30px;
}

section.product_list .product_list_detail p {
    color: ;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: normal;
    margin: 20px 0px;
}

section.product_list .product_list_detail .product_short_gallery .gallery_outer {
    float: left;
    width: 33.333333333%;
}

section.product_list .product_list_detail .product_short_gallery .gallery_outer .item {
    margin-right: 30px;
}

section.product_list .product_list_detail .product_short_gallery .gallery_outer .item img {
    width: 100%;
}

section.product_list .product_list_detail .button_outer margin-top:45px .btn.two {
    margin-left: 25px;
}

@media (max-width: 719px) {
    section.product_list .product_list_detail {
        padding: 0px;
    }

    section.product_list .product_logo {
        top: -50px;
        left: 2%;
    }

    section.product_list .product_image_outer img {
        max-width: 300px;
    }
}

@media (min-width: 720px) {
    section.product_list .product_list_detail {
        padding: 10px;
    }
}

@media (min-width: 991px) {
    section.product_list .product_list_detail {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    section.product_list .product_logo img {
        width: 120px;
    }

    section.product_list .product_list_detail_mobile {
        padding: 0px;
    }

    section.product_list .product_list_detail_mobile h2 {
        color: #111;
        font-size: 37px;
        font-family: 'CenturyGothic-Regular', sans-serif, arial;
        line-height: 37px;
        font-weight: 600;
        margin: 40px 0px;
    }

    section.product_list .button_outer {
        margin-top: 45px;
        text-align: center;
    }

    section.product_list .button_outer .btn.two {
        margin-left: 25px;
    }
}

@media (min-width: 992px) {
    section.product_list .button_outer {
        margin-top: 45px;
    }

    section.product_list .button_outer .btn.two {
        margin-left: 25px;
    }
}

@media (max-width: 400px) {
    section.product_list .button_outer {
        margin-top: 45px;
        text-align: center;
    }

    section.product_list .button_outer a {
        display: block;
        width: 170px;
        margin: 25px auto;
    }

    section.product_list .button_outer a.btn.two {
        margin-left: auto;
    }
}

@media (min-width: 401px) and (max-width: 992px) {
    section.product_list .button_outer {
        margin-top: 45px;
        text-align: center;
    }

    section.product_list .button_outer .btn.two {
        margin-left: 25px;
    }
}

section.product {
    padding-top: 30px;
    background-color: #f1f1f1;
}

section.product .product_image_outer {
    cursor: zoom-in;
    padding-top: 35px;
}

section.product .product_image_outer img {
    width: 100%;
}

section.product .product_logo {
    position: absolute;
    top: 4%;
    right: 2%;
}

section.product .product_logo img {
    width: 150px;
}

section.product .product_title {
    padding: 30px;
}

section.product .product_title h1 {
    color: #111;
    font-size: 37px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 45px;
    font-weight: 600;
    margin: 30px 0px;
}

section.product .product_list_detail {
    padding: 30px;
}

section.product .product_list_detail h1 {
    color: #111;
    font-size: 37px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 45px;
    font-weight: 600;
    margin: 30px 0px;
}

section.product .product_list_detail p {
    color: #111;
    font-size: 18px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 300;
    margin: 20px 0px;
}

section.product .product_list_detail .warranty {
    color: #111;
    font-size: 17px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 25px;
    font-weight: 600;
}

section.product .product_list_detail .warranty img {
    max-height: 60px;
    margin-right: 8px;
}

section.product .product_list_detail .product_short_gallery .gallery_outer {
    float: left;
    width: 33.333333333%;
}

section.product .product_list_detail .product_short_gallery .gallery_outer .item {
    margin-right: 30px;
}

section.product .product_list_detail .product_short_gallery .gallery_outer .item img {
    width: 100%;
}

section.product .product_list_detail .button_outer {
    margin-top: 45px;
}

@media (max-width: 719px) {
    section.product .product_list_detail {
        padding: 10px 0px;
    }

    section.product .product_title {
        padding: 0px;
        padding-top: 70px;
    }

    section.product .product_logo {
        top: -10px;
        left: 2%;
    }
}

section.product .product_list_detail .gallery_container_outer {
    margin-top: 30px;
}

section.product .product_list_detail .gallery_container {
    visibility: hidden;
    width: 100%;
}

section.product .product_list_detail .gallery_container .item {
    margin: 0px 10px;
    overflow: hidden;
}

section.product .product_list_detail .gallery_container .item img {
    max-width: 100%;
    cursor: zoom-in;
}

@media (min-width: 992px) and (max-width: 1199px) {
    section.product .product_list_detail .gallery_container .item {
        max-height: 88.6563px;
    }
}

@media (min-width: 1200px) {
    section.product .product_list_detail .gallery_container .item {
        max-height: 82.6563px;
    }
}

@media (max-width: 992px) {
    section.product .product_list_detail .gallery_container .item {
        max-height: 135.328px;
    }
}

@media (max-width: 991px) {
    section.product .product_list_detail .gallery_container .item {
        max-height: 190.656px;
    }
}

@media (max-width: 720px) {
    section.product .product_list_detail .gallery_container .item {
        max-height: none;
    }
}

section.product .product_list_detail .gallery_container .owl-prev,
section.product .product_list_detail .gallery_container .owl-next {
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

section.product .product_list_detail .gallery_container .owl-prev:hover,
section.product .product_list_detail .gallery_container .owl-next:hover {
    background: #f7b400;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.product .product_list_detail .gallery_container .owl-prev {
    position: absolute;
    left: -43px;
    font-size: 50px;
    top: 0px;
    bottom: 0px;
    width: 35px;
    background: #222;
}

section.product .product_list_detail .gallery_container .owl-prev:before {
    position: absolute;
    top: 50%;
    margin-top: -19px;
    left: 50%;
    margin-left: -5px;
    content: "\f104";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 35px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #eee;
}

section.product .product_list_detail .gallery_container .owl-next {
    position: absolute;
    right: -43px;
    font-size: 50px;
    top: 0px;
    bottom: 0px;
    width: 35px;
    background: #222;
}

section.product .product_list_detail .gallery_container .owl-next:before {
    position: absolute;
    top: 50%;
    margin-top: -19px;
    right: 50%;
    margin-right: -8px;
    content: "\f105";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 35px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #eee;
}

@media (max-width: 719px) {
    section.product .product_list_detail .owl-buttons {
        display: none;
    }

    section.product .product_list_detail .owl-pagination {
        text-align: center;
        margin: 10px 0px;
    }

    section.product .product_list_detail .owl-pagination .owl-page {
        display: inline-block;
        width: 15px;
        height: 15px;
        background-color: #272727;
        border-radius: 50%;
        margin-left: 5px;
    }

    section.product .product_list_detail .owl-pagination .owl-page:hover {
        background-color: #f7b400;
    }

    section.product .product_list_detail .owl-pagination .owl-page.active {
        background-color: #f7b400;
    }
}

section.tabs {
    background-color: rgba(45, 45, 45, 0.82);
}

section.tabs #tabs_container .tabs_container_header {
    padding-top: 40px;
    background-color: #f1f1f1;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul {
    height: 56px;
    text-align: justify;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul:after {
    content: '';
    display: inline-block;
    width: 100%;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul>li {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 56px;
    font-weight: bold;
    width: 24%;
    cursor: pointer;
    text-align: center;
    position: relative;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul>li a {
    color: #fff;
    display: block;
    background-color: #181818;
    outline: none;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul>li a:hover {
    background-color: #f7b400;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #222;
}

section.tabs #tabs_container .tabs_container_header .tabs_container_top>ul>li a.active {
    background-color: #2D2D2D;
    color: #fff;
    text-decoration: none;
}

section.tabs #tabs_container .tab_content {
    display: none;
    color: #ddd;
    font-size: 15px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 18px;
    font-weight: normal;
}

section.tabs #tabs_container .tab_content.active {
    display: block;
}

section.tabs #tabs_container .tab_content .content_padding {
    padding: 40px;
    background-color: #2d2d2d;
}

section.tabs #tabs_container .tab_content .page_section_header h2 {
    color: #fff;
}

@media (min-width: 720px) {
    section.tabs #tabs_container .tab_content .page_section_header {
        text-align: left;
    }

    section.tabs #tabs_container .tab_content .page_section_header h2 {
        color: #f7b400;
        border-bottom: none;
        padding: 0px;
        font-weight: 300;
        margin-top: 0px !important;
        font-size: 30px !important;
        margin-bottom: 20px !important;
    }
}

section.tabs #tabs_container .tab_content .page_section_header_small {
    text-align: left;
}

section.tabs #tabs_container .tab_content .page_section_header_small h2 {
    color: #fff;
    font-size: 24px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 30px;
    display: inline-block;
    padding-top: 0px;
    padding-bottom: 10px;
}

section.tabs #tabs_container .tab_content ul.showcase_container_two {
    padding: 0px;
    margin: 20px -15px;
}

@media (max-width: 719px) {
    section.tabs #tabs_container .tab_content {
        background-color: #272727;
        display: block !important;
    }

    section.tabs #tabs_container .tab_content .content_padding {
        padding: 25px 15px;
        background-color: #272727;
    }
}

@media (max-width: 480px) {
    section.tabs #tabs_container .tab_content .content_padding {
        padding: 25px 0px;
    }
}

section.detail {
    background-color: #fff;
    padding-bottom: 70px;
    padding-top: 50px;
}

section.detail .page_section_header h2 {
    margin: 40px 0px;
    margin-bottom: 30px;
    padding-left: 40px !important;
    color: #111 !important;
}

section.detail .image_detail_container_outer .image_detail_conatiner {
    max-width: 800px;
    margin: auto;
    position: relative;
}

section.detail .image_detail_container_outer .image_detail_conatiner img {
    max-width: 100%;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point {
    position: absolute;
    cursor: pointer;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point:hover .image_detail_point_p {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -moz-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    -o-transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
    transition: all 0.4s cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point:hover .image_detail_point_pulse {
    opacity: 0;
    -webkit-animation: none;
    animation: none;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point:hover .image_detail_name {
    margin-left: 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #fff;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point:hover .image_detail_name.right {
    right: 44px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point.active .image_detail_point_p {
    border: 3px solid transparent;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    background: #f7b702;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point.active .image_detail_point_pulse {
    border: 3px solid transparent;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point.active .image_detail_name {
    margin-left: 10px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point.active .image_detail_name.right {
    right: 36px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point .image_detail_point_p {
    color: #f7b400;
    width: 26px;
    height: 26px;
    border: 3px solid #f7b400;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-top: -26px;
    margin-left: -26px;
    z-index: 97;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point .image_detail_point_pulse {
    color: #f7b400;
    width: 26px;
    height: 26px;
    border: 3px solid #f7b400;
    border-radius: 50%;
    -webkit-animation: pulse 1.5s linear infinite;
    animation: pulse 1.5s linear infinite;
    z-index: 97;
    margin-top: -26px;
    margin-left: -26px;
    opacity: 1;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point .image_detail_name {
    position: absolute;
    margin-left: 6px;
    top: -25px;
    padding: 0px 10px;
    color: #f7b400;
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 22px;
    font-weight: 600;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.4);
    color: #111;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-shadow: 0px 0px 10px #fff;
    z-index: 89;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point .image_detail_name.right {
    right: 32px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container {
    position: absolute;
    margin-left: 60px;
    margin-top: -150px;
    z-index: 98;
    box-shadow: rgba(0, 0, 0, 0.29) 0px 0px 100px;
    border-radius: 120px 120px 0px 10px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_pic {
    max-width: 250px;
    background: #ffffff;
    padding: 10px;
    border-radius: 120px 120px 0px 0px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_pic img {
    width: 100%;
    border-radius: 50%;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_desc {
    position: relative;
    padding: 25px;
    background-color: #ffffff;
    float: left;
    width: 250px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_desc h4 {
    color: #F2B000;
    font-size: 26px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 26px;
    font-weight: 300;
    text-align: center;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_desc p {
    color: #fff;
    font-size: 16px;
    font-family: arial;
    line-height: 22px;
    font-weight: normal;
    color: #000;
    text-align: center;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_desc p {
    margin-bottom: 0px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container .image_detail_point_desc .close-detail {
    position: absolute;
    top: -149px;
    right: -6%;
    font-size: 28px;
    cursor: pointer;
    color: #FFFFFF;
    padding: 5px;
    font-weight: bold;
    z-index: 9999;
    background: #F7B400;
    border-radius: 500px;
    padding: 8px 9px;
    box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.5);
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_xs {
    position: absolute;
    color: #f7b400;
    width: 44px;
    height: 44px;
    border: 3px solid #f7b400;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    margin-top: -22px;
    margin-left: -22px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_xs:hover {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_xs.active {
    border: 3px solid #333;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_xs .number {
    font-size: 20px;
    font-weight: bold;
    padding: 9px 12px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container_xs .image_detail_point_pic {
    max-width: 250px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container_xs .image_detail_point_pic img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #333;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container_xs .image_detail_point_desc {
    position: relative;
    padding: 25px;
    background-color: rgba(0, 0, 0, 85);
    float: left;
    color: #ddd;
    font-size: 15px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 18px;
    font-weight: normal;
    width: 250px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container_xs .image_detail_point_desc p {
    margin-bottom: 0px;
}

section.detail .image_detail_container_outer .image_detail_conatiner .image_detail_point_container_xs .image_detail_point_desc .close-detail {
    position: absolute;
    top: 5%;
    right: 5%;
    font-size: 18px;
    cursor: pointer;
    color: #f7b400;
}

#dealers_localizations_map {
    height: 550px;
    display: block;
}

.localization-marker {
    width: 350px;
    height: 220px;
    padding: 15px;
    background-color: #222;
    border-radius: 5px;
    display: none;
    position: absolute;
    z-index: 9999;
    color: #fff;
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 14px;
    font-weight: normal;
}

.localization-marker .logo {
    text-align: center;
}

.localization-marker .logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
}

.localization-marker:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-top: 11px solid #222;
}

.localization-marker .close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 21px;
    color: #fff;
    padding: 5px;
}

.localization-marker .details {
    margin-top: 20px;
    width: 220px;
    color: #fff;
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 23px;
    font-weight: normal;
}

.localization-marker .details .header {
    font-weight: bold;
}

.point_marker {
    color: #222;
    font-size: 14px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 14px;
    font-weight: normal;
    text-align: center;
    border-radius: 5px;
    white-space: nowrap;
}

section.dealers .dealers_list .item {
    margin: 10px 0px;
}

section.dealers .dealers_list .item .details {
    background-color: #222;
    padding: 20px;
    margin-top: 20px;
    color: #fff;
    font-size: 16px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 23px;
    font-weight: normal;
    word-wrap: break-word;
    min-height: 252px;
}

section.dealers .dealers_list .item .details .logo {
    text-align: center;
    height: 100px;
}

section.dealers .dealers_list .item .details .logo img {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
}

section.dealers .dealers_list .item .details .header {
    margin-top: 20px;
    font-weight: bold;
}

section.dealers .btn_contact {
    padding: 15px 25px;
    text-align: center;
    margin-top: 84px;
    line-height: 23px;
}

.enc_buynow_shortcode_outer {
    padding: 40px 0px;
    padding-top: 20px;
    background-color: #2D2D2D;
}

.enc_buynow_shortcode_outer .enc_buynow_shortcode_inner {
    text-align: center;
    background-color: #444444;
    padding: 50px;
}

.enc_buynow_shortcode_outer .enc_buynow_shortcode_inner a {
    margin-left: 0px;
}

.enc_buynow_shortcode_outer .enc_buynow_shortcode_inner a.btn_primary {
    padding: 14px 25px;
    font-size: 16px;
    line-height: 16px;
}

.enc_buynow_shortcode_outer .enc_buynow_shortcode_inner a.btn_primary:hover {
    padding: 14px 35px;
}

.enc_buynow_shortcode_outer .enc_buynow_shortcode_inner a.btn_primary i {
    font-size: inherit;
}

@media (max-width: 719px) {
    .enc_buynow_shortcode_outer {
        background-color: #272727;
    }
}

.page_not_found .page_404 {
    background: url(../../../../img/image_13_color_1.jpg) top right;
    height: 600px;
}

.page_not_found .page_404 .info {
    color: #fff;
    font-size: 22px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 30px;
    font-weight: 300;
    text-align: center;
    position: absolute;
    top: 260px;
    right: 140px;
}

.page_not_found .page_404 .info h2 {
    color: #f7b400;
    font-size: 70px;
    font-family: 'CenturyGothic-Regular', sans-serif, arial;
    line-height: 70px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .page_not_found .page_404 {
        background: url(../../../../img/image_13_color_1.jpg) top right -140px;
        height: 400px;
        background-size: cover;
    }

    .page_not_found .page_404 .info {
        right: auto;
        left: auto;
        text-align: center;
        position: static;
        margin-top: 100px;
    }
}

@media (min-width: 992px) {
    .page_not_found .page_404 {
        background: url(../../../../img/image_13_color_1.jpg) top right -100px;
    }

    .page_not_found .page_404 .info {
        right: 160px;
    }
}

@media (min-width: 1200px) {
    .page_not_found .page_404 {
        background: url(../../../../img/image_13_color_1.jpg) top right;
    }

    .page_not_found .page_404 .info {
        right: 130px;
    }
}

.Winning {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../../../../ap/07.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    font-size: 15px;
    color: whitesmoke;
}

.Winning_opacity {
    background: rgba(0, 0, 0, 0.65);
    height: 100%;
    width: 100%;
    padding: 50px 0;
}

.drone {
    max-width: 100%;
    height: 75px;
    display: block;
    margin: 10px auto;
}

.margin_app {
    margin: 20px 0;

}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
}

.margin_app h1 {
    text-align: center;
    color: #f7b400;
}

.product_list .product_logo {
    display: none !important;
}

.product_list .button_outer {
    display: none;
}

.product_image_outer video {
    width: 100%;
    height: auto;
}