@charset "UTF-8";
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
.project-info img{
    display: block;
    margin: 0 auto;
    padding: 10px;
}
@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -30px, 0);
        -ms-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
        -webkit-transform: translate3d(0, -15px, 0);
        -ms-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        -ms-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}
@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        -ms-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}
@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        -ms-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        -ms-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        -ms-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        -ms-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        -ms-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}
@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        -ms-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        -ms-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        -ms-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        -ms-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        -ms-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes wobble {
    0% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}
@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        -ms-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        -ms-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        -ms-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        -ms-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        -ms-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        -ms-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        -ms-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        -ms-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        -ms-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        -ms-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        -ms-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        -ms-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        -ms-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        -ms-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        -ms-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        -ms-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}
@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        -ms-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        -ms-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
}
.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        -ms-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        -ms-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        -ms-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        -ms-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        -ms-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        -ms-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
@keyframes fadeOutDown {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        -ms-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
}
.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        -ms-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
}
.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
@keyframes fadeOutLeft {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}
.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        -ms-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
}
.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        -ms-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}
.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        -ms-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
}
.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
@keyframes fadeOutUp {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        -ms-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        -ms-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
}
.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
        -ms-transform: perspective(400px) scale3d(.95, .95, .95);
        transform: perspective(400px) scale3d(.95, .95, .95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}
.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        -ms-transform: perspective(400px);
        transform: perspective(400px);
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}
.flipOutY {
    -webkit-backface-visibility: visible!important;
    -ms-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY;
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
}
@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        -ms-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        -ms-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
        -ms-transform: translate3d(100%, 0, 0) skewX(30deg);
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}
.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        -ms-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        -ms-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        -ms-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center;
        -ms-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        -ms-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}
.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0, 0, 1, 45deg);
        transform: rotate(0, 0, 1, 45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0, 0, 1, 45deg);
        -ms-transform: rotate(0, 0, 1, 45deg);
        transform: rotate(0, 0, 1, 45deg);
        opacity: 0;
    }
}
.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        -ms-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}
.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        -ms-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}
.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        -ms-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        -ms-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        -ms-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        -ms-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}
@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
@keyframes rollOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}
.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    100% {
        opacity: 0;
    }
}
@keyframes zoomOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        -ms-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }
    100% {
        opacity: 0;
    }
}
.zoomOut {
    -webkit-animation-name: zoomOut;
    animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
}
@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
        -ms-transform: scale(.1) translate3d(-2000px, 0, 0);
        transform: scale(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
    }
}
.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
}
@keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
        -ms-transform: scale(.1) translate3d(2000px, 0, 0);
        transform: scale(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
    }
}
.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
@keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}
.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    animation-name: zoomOutUp;
}
html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100%;
    font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: normal;
    font-weight: 400;
    background: #fcfcfc;
    color: #778888;
}
img {
    height: auto !important;
    max-width: 100%;
}
mark {
    color: #fcfcfc;
    background: rgba(34, 171, 166, 0.8);
}
hr {
    display: block;
    line-height: 25px;
    margin: 30px 0;
    position: relative;
    width: 100%;
}
.tab-content hr {
    display: block;
    line-height: 25px;
    margin: 10px 0;
    border-top: 1px solid rgb(34, 171, 166);
    position: relative;
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    color: #303030;
}
h1 {
    font-size: 3.2em;
    line-height: 44px;
    margin: 0 0 44px 0;
}
h2 {
    font-size: 2.6em;
    font-weight: 300;
    line-height: 42px;
    margin: 0 0 32px 0;
}
h3 {
    font-size: 1.8em;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 27px;
    margin-bottom: 33px;
}
h4, h5, h6 {
    letter-spacing: normal;
    margin: 0 0 14px 0;
}
h4 {
    font-size: 1.4em;
    font-weight: 400;
    line-height: 27px;
}
h5 {
    font-size: 1em;
    font-weight: 600;
    line-height: 18px;
}
h6 {
    font-size: 1em;
    font-weight: 400;
    line-height: 18px;
}
p {
    line-height: 25px;
    margin: 0 0 20px;
}
.shop-description-product p {
    margin: 0;
}
.tab-pane p {
    margin: 0;
}
.parallax p{
    margin: 0;
}
.parallax address p{
    margin: 0 0 5px;
}
.contact-section a{
    color: rgba(254, 254, 254, 0.9);
}
.topbar-info a{
    color: #cacaca;
}
a {
    color: rgb(34, 171, 166);
    text-decoration: none;
    transition: all 0.3s linear;
    -webkit-transition: all 0.3s linear;
}
a:hover, a:focus, a:active, .btn:hover, .btn:focus, .btn:active {
    /*color: rgba(34, 171, 166, 0.6);*/
    text-decoration: none;
    outline: 0;
    box-shadow: none;
    transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
}
iframe {
    border: 0;
    margin: 0;
    overflow: hidden;
    /*width: 100%;*/
    height: auto;
}
::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: rgba(34, 171, 166, 0.8);
}
::selection {
    text-shadow: none;
    color: #fff;
    background: rgba(34, 171, 166, 0.8);
}
.selection {
    text-shadow: none;
    color: #fff!important;
    background: rgba(34, 171, 166, 0.8)!important;
    padding: 3px 10px;
}
.selection-gray {
    text-shadow: none;
    color: #555!important;
    background: #eee!important;
    padding: 3px 10px;
}
.main-text {
    text-shadow: none;
    color: rgb(34, 171, 166)!important;
}
.hr {
    margin: 20px 0 10px;
    border-top: 1px solid rgb(34, 171, 166);
}
.animated {
    opacity: 0;
}
.activate {
    opacity: 1;
}
.back-to-top {
    z-index: 99999;
    text-align: center;
    width: 40px;
    height: 40px;
    padding: 4px;
    border-radius: 50px;
    position: fixed;
    bottom: -100px;
    right: 15px;
    cursor: pointer;
    -webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    overflow: auto;
    background: rgba(34, 171, 166, 0.7);
    color: #fcfcfc;
}
.back-to-top:hover {
    background: rgb(34, 171, 166);
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    background: #fcfcfc;
}
#status {
    width: 90px;
    height: 90px;
    position: absolute;
    left: 50%;
    top: 50%;
    background-image: url(https://admin.rely.com.ua/files/images/preloader.GIF);
    background-repeat: no-repeat;
    background-position: center;
    margin: -45px 0 0 -45px;
}
.custom-bg {
    position: relative;
    -webkit-backface-visibility: visible!important;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}
.custom-bg2 {
    background-position: -9999px center;
    background-size: auto;
}
.owl-carousel{
    position: relative;
    background-color: #FCFCFC;
}
.owl-theme .owl-nav [class*=owl-] {
    color: rgba(69,57,81, 0.3);
    background: rgba(69,57,81, 0);
    font-size: 30px;
    margin-top: -30px;
}
.owl-theme .owl-nav [class*=owl-]:hover{
    background: rgba(69,57,81, 0.5);
}
.owl-prev,
.owl-next {
position: absolute;
top: 50%;
}
.owl-prev {
left: 0;
}
.owl-next {
right: 0;
}

.t-slider-left {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    background: rgba(69,57,81, 0.2);
    color: white; padding: 5px;
    text-shadow: 2px 2px 5px rgba(20, 20, 20, 1);
    margin: 30px 0;
    box-shadow: 1px 1px 5px rgba(30, 30, 30, 0.5);
}


.t-slider-center {
    position: absolute;
    /*background: rgba(69,57,81, 0.2);*/
    font-size: 18px;
    color: white;
    padding: 50px 0;
    text-shadow: 2px 2px 3px rgba(30, 30, 30, 1);
    /*box-shadow: 1px 1px 5px rgba(30, 30, 30, 0.5);*/
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 50%;
    height: 30%;
    text-align: center;
}
.slider-t-small{
    font-size: 18px;
    font-weight: bold;
}

.t-slider-wr{
    background: rgba(69,57,81, 0.2);
    box-shadow: 1px 1px 5px rgba(30, 30, 30, 0.5);
    font-size: 2.6em;
    font-weight: bold;
    position: absolute;
    color: white;
    padding: 5px;
    text-shadow: 2px 2px 3px rgba(30, 30, 30, 1);
    margin: auto;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 50%;
    height: fit-content;
    text-align: center;
}
@-moz-document url-prefix() {
    .t-slider-wr{
        height: 40%;
    }
}
.t-s-w-darker {
    background: rgba(69,57,81, 0.7);
    box-shadow: 1px 1px 5px rgba(30, 30, 30, 0.7);
}

.t-slider-wr span {
    line-height: normal;
    display: inline-block;
}


.owl-t-wr{
    position: absolute;
    margin: auto;
    top: 0; bottom: 30px; left: 0; right: 0;
    height: 30%;
    width: 50%;
}
.owl-t-wr-left{
    width: 15%;
    margin: 1% 0 0 0; 
}
.owl-t-center-big{
    background-color: rgba(69,57,81, 0.2);
    text-align: center;
    text-shadow: 2px 2px 3px rgba(30, 30, 30, 1);
    color: #303030;
    padding: 1px;
    box-shadow: 1px 1px 5px rgba(30, 30, 30, 0.5);

}
.owl-t-center-big-darker{
    background-color: rgba(69,57,81, 0.6);

}
.owl-t-center-big>h2{
    font-weight: bold;
    margin: 7px;
}
.owl-t-center-big>h3{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 1px;
}
.owl-t-center-big>p{
   font-weight: bold;
   margin: 0 0 1px;
   text-shadow: 1px 1px 3px rgba(30, 30, 30, 1);
}
.text-white {
    color: white;
}

.shader-8 {
    position: absolute;
    background-color: #453951;
    opacity: 0.15;
    width: 100vw;
    height: 100vh;
}
.cy-bl{
    color: #35B2AD;
}
.cy-bl:hover{
    color: rgb(0, 118, 190);
}
.parallax .cy-bl{
    margin-left: 26px;
}
.parallax .cy-bl:hover{
    color: rgba(34, 171, 166, 0.6);
    margin-left: 26px;
}
.contacts-part i{
    margin: 6px;
}
.contacts-part a{
    color: #22ABA6;
}
.contacts-part a:hover{
   opacity: 0.6;
    /* color: rgb(0, 118, 190); */
}

.flipbook-viewport {
    display: none;
    overflow: hidden;
}
.flip-control{
    display: none;
}

.tab-content .btn-primary{
    margin-top: 5px;
    margin-bottom: 0px;
    /*margin: auto;*/
    color: rgba(254, 254, 254, 0.9);
    border: 1px solid rgba(254, 254, 254, 0.9);
    background-color: transparent;
    padding: 8px 12px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.tab-content .btn-primary:hover {
    color: rgba(30, 30, 30, 0.9);
    background-color: rgba(254, 254, 254, 0.9);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.section-3 .btn-primary {
    background-color: #63C3C0;
    border-color: #63C3C0;
}
.section-3 .btn-primary:hover {
    color: #63C3C0;
    background-color: white;
}

*:hover, 
*:focus {
  outline: 0;
}

#video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}
#video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.slider-wr {
    position: relative;
}

.news-nav {
    position: relative;
}
.news-nav ul{
    list-style-type: none;
    padding: 0;
}
.news-nav-item {
    border-left: 2px solid rgb(34, 171, 166);;
    padding-left: 10px;
}
.news-nav-item-active {
    color: #0079BD;
    font-weight: bold;
    border-left: 4px solid rgb(34, 171, 166);;
}

@media (min-width:992px) {
    .custom-bg2 {
        background-repeat: no-repeat;
    }
}
.custom-bg .section-title, .custom-bg p, .custom-bg .feature-list, .custom-bg .box-title {
    color: rgba(254, 254, 254, 0.9);
    margin: 0 0 5px;
}
.custom-bg.parallax {
    background-attachment: fixed;
}
@media (max-width:767px) {
    .custom-bg.parallax {
        background-attachment: scroll!important;
    }
}
.bg-layer {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background: #453951;
    opacity: .6;
}
.half {
    position: absolute;
    right: 0;
    top: 0;
    width: 54%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
}
.half-2 {
    left: 0;
    right: auto;
    width: 30%;
    background-color: #fcfcfc;
    border-radius: 0;
    z-index: 1;
}
.white-box {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    padding: 25px 20px 30px;
}
@media (max-width:767px) {
    .half {
        width: 100%;
        border-radius: 0;
    }
}
#wrapper {
    background: #fcfcfc;
}
.rs-canvas {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}
.block {
    display: block!important;
}
.inline-block {
    display: inline-block!important;
}
.dtable {
    display: table;
}
.relative {
    position: relative;
}
.br0 {
    border-radius: 0!important;
}
.br2 {
    border-radius: 2px!important;
}
.br4 {
    border-radius: 4px!important;
}
.br6 {
    border-radius: 6px!important;
}
.br8 {
    border-radius: 8px!important;
}
.op8 {
    opacity: .8!important;
}
.op6 {
    opacity: .6!important;
}
.op4 {
    opacity: .3!important;
}
.op2 {
    opacity: .1!important;
}
.Open Sans {
    font-family: "Open Sans", Arial, sans-serif;
}
.uppercase {
    text-transform: uppercase;
}
.dispblock{
    display: block;
}
.unstyled {
    list-style: none;
    padding: 0 0 10px 20px;
}
.pull-center {
    display: block;
    margin-left: auto!important;
    margin-right: auto!important;
    clear: both;
    text-align: center;
}
.text-left {
    text-align: left!important;
}
.text-right {
    text-align: right!important;
}
@media (max-width:767px) {
    .xs-pull-center {
        display: block;
        margin-left: auto!important;
        margin-right: auto!important;
        clear: both;
        text-align: center;
    }
    .xs-text-center {
        text-align: center!important;
    }
}
@media (max-width:991px) {
    .sm-pull-center {
        display: block;
        margin-left: auto!important;
        margin-right: auto!important;
        clear: both;
        text-align: center;
    }
    .sm-text-center {
        text-align: center!important;
    }
    .showcase-img {
        margin-bottom: 30px;
        text-align: center;
    }
}
.mb0 {
    margin-bottom: 0!important;
}
.mb5 {
    margin-bottom: 5px!important;
}
.mb10 {
    margin-bottom: 10px!important;
}
.mb15 {
    margin-bottom: 15px!important;
}
.mb20 {
    margin-bottom: 20px!important;
}
.mb25 {
    margin-bottom: 25px!important;
}
.mb30 {
    margin-bottom: 30px!important;
}
.mb35 {
    margin-bottom: 35px!important;
}
.mb40 {
    margin-bottom: 40px!important;
}
.mb50 {
    margin-bottom: 50px!important;
}
.mt0 {
    margin-top: 0!important;
}
.mt5 {
    margin-top: 5px!important;
}
.mt10 {
    margin-top: 10px!important;
}
.mt15 {
    margin-top: 15px!important;
}
.mt20 {
    margin-top: 20px!important;
}
.mt30 {
    margin-top: 30px!important;
}
.mt35 {
    margin-top: 35px!important;
}
.mt40 {
    margin-top: 40px!important;
}
.mt50 {
    margin-top: 50px!important;
}
.pb0 {
    padding-bottom: 0!important;
}
.m0 {
    margin: 0!important;
}
@media (max-width:991px) {
    .sm-pb0 {
        padding-bottom: 0!important;
    }
    .sm-pb20 {
        padding-bottom: 20px!important;
    }
}
.mr40 {
    margin-right: 40px!important;
}
.ex-grid {
    width: 100%;
    height: 60px;
    background-color: #ededed;
}
.ex-grid p {
    text-align: center;
    font-size: 18px;
    line-height: 28px;
    padding-top: 16px;
}
.megamenu .ex-grid {
    height: 40px;
    background-color: rgb(34, 171, 166);
}
.megamenu .ex-grid p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 0;
    padding: 10px;
}
@media (max-width:767px) {
    .ex-grid {
        margin-bottom: 10px;
    }
}
.br-dashed:after {
    content: "";
    display: block;
    height: 1px;
    background-color: transparent;
    border-bottom: 1px dashed #778888;
    width: 80px;
    margin: 15px auto 18px;
}
.no-border {
    border: none!important;
}
.full-width {
    width: 100%;
}
.full-height {
    height: 100%;
}
.box-shadow {
    box-shadow: 0 0 10px rgba(30, 30, 30, 0.3);
}
.main-color {
    color: rgb(34, 171, 166)!important;
}
.main-bg {
    background-color: rgb(34, 171, 166)!important;
}
.color-white {
    color: #fcfcfc!important;
}
.color-blue {
    color: #1375a3!important;
}
.color-blue-2 {
    color: #34aadc!important;
}
.color-green {
    color: #208d1c!important;
}
.color-sea {
    color: #22aba6!important;
}
.color-orange {
    color: #d18b21!important;
}
.color-red {
    color: #b54321!important;
}
.color-red-2 {
    color: #c75c5c!important;
}
.color-yellow {
    color: #fcc813!important;
}
.color-dark {
    color: #444!important;
}
.color-default {
    color: #778888!important;
}
.bg-blue {
    background-color: #1375a3!important;
}
.bg-blue-2 {
    background-color: #34aadc!important;
}
.bg-green {
    background-color: #208d1c!important;
}
.bg-sea {
    background-color: #22aba6!important;
}
.bg-orange {
    background-color: #d18b21!important;
}
.bg-red {
    background-color: #b54321!important;
}
.bg-red-2 {
    background-color: #c75c5c!important;
}
.bg-yellow {
    background-color: #fcc813!important;
}
.bg-dark {
    background-color: #444!important;
}
.bg-dark-gray {
    background-color: #778888!important;
}
.bg-light-gray {
    background-color: #aaa!important;
}
.menu {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    float: left;
    list-style: none;
}
.menu li {
    /*display: inline-block;*/
    float: left;
}
.menu a {
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    z-index: 10;
}
.menu>li>a {
    padding: 25px 20px 25px 20px;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    color: #778888;
    text-transform: uppercase;
    position: relative;
}
@media (min-width:768px) {
    .menu>li>a::before, .menu .current>a::before {
        position: absolute;
        top: 25px;
        left: 20px;
        overflow: hidden;
        max-width: 0;
        color: rgb(34, 171, 166);
        content: attr(data-hover);
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }
    .menu>li>a:hover::before, .menu>li>a:focus::before, .menu>.active>a {
        max-width: 100%;
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .menu>.first>a::before {
        left: 0;
    }
}
.menu .submenu, .menu .submenu .submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    z-index: 999999;
    min-width: 150px;
    background: rgba(30, 30, 30, 0.9);
}
/*sim*/
/*start owl video*/
.owl-carousel-3 .owl-video-tn {
  background-size: cover;
  padding-bottom: 56.25%; /* 16:9 */
    /*padding-top: 25px;*/
}

.owl-video-frame {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.owl-video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dot {
  display: inline-block;
}

.owl-dot span {
  width: 11px;
  height: 11px;
  background-color: #ccc;
  border-radius: 50%;
  display: block;
  margin: 5px 3px;
}

.owl-dot.active span {
  background-color: #000;
}
.section-references .owl-theme .owl-nav [class*=owl-] {
 margin: -45px;
}
/*end owl video*/
a.read-more {
    white-space: nowrap;
}
.dws {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
}
.pulse, .bloc, .phone {
 position: absolute;
 width: 30px;
 height: 30px;
 color: #fff;
 text-align: center;
 border-radius: 50%;
}
.bloc {
 cursor: pointer;
 z-index: 1;
 overflow: hidden;
}
.pulse {
 opacity: 0;
 background: #0079BD;
 position: relative;
 transition: .5s;
}
.phone {
 font-size: 18px;
 line-height: 30px;
 animation: phone .9s ease-in-out infinite;
}
.text {
 position: absolute;
 opacity: 0;
 text-transform: uppercase;
 font-weight: 700;
 top: 28px;
 font-size: 15px;
 transform: scaleX(-1);
 transition: .5s ease-in-out;
}
.phone i {
 transition: .5s ease-in-out;
}
.pulse:hover {
 background: #29AEE3;
}
.pulse:hover i {
 transition: .5s ease-in-out;
 transform: scale(0);
}
.pulse:hover .text {
 transform: scaleX(1);
 transition: .5s ease-in-out;
 opacity: 1;
}
.pulse:hover::before,
.pulse:hover::after {
 content: '';
 position: absolute;
 border: 1px solid #29AEE3;
 left: -20px;
 right: -20px;
 top: -20px;
 bottom: -20px;
 border-radius: 50%;
 animation: pulse 1.8s linear infinite;
 opacity: 0;
}
.pulse:hover::after {
 animation-delay: .5s;
}

@keyframes phone {
 0%, 100% {
  transform: rotate(-10deg);
 }
 50% {
  transform: rotate(11deg);
 }
}
@keyframes pulse {
 0% {
  transform: scale(0.5);
  opacity: 0;
 }
 50% {
  opacity: 1;
 }
 100% {
  transform: scale(1.2);
  opacity: 0;
 }
}


.tooltip-inner {
    min-width: 500px; 
    background-color: #303030;
}



.interact-wr {
    position: relative;
    overflow: hidden;
}
.interact1, .interact2, .interact3, .interact4 {
    position: fixed;
}
.download-product {
    display: flex;
    align-items: center;
}

.membrane-pack {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

.membrane-pack th, td {
    text-align: left;
    padding: 16px;
    border: 3px solid #FCFCFC;
}


.membrane-pack tr:nth-child(odd) {
    background-color: #ECECEC;
}
.membrane-pack tr:nth-child(1) {
    background-color: #D0DFF0;
}
.tech-tbl-second-row tr:nth-child(odd) {
    background-color: #FCFCFC;
}
.tech-tbl-second-row tr:nth-child(even) {
    background-color: #ECECEC;
}
.tech-tbl-second-row tr:nth-child(1) {
    background-color: #D0DFF0;
}
.tech-tbl-second-row tr:nth-child(2) {
    background-color: #D0DFF0;
}

#flblock h3{
    margin-bottom: 0;
    font-size: 18px;
}
#flblock .filtr-wr{
    margin-bottom: 20px;
}
#flblock .filtr-wr label{
    font-weight: 400;
    margin-left: 0;
    margin-bottom: 0;
    font-size: 12px;
}
#flblock .filtr-wr label sup{
    color: #22ABA6;
    font-weight: bold;
}

.it-tpl {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.it-tpl input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 6px;
    left: 0;
    height: 21px;
    width: 21px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.it-tpl:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.it-tpl input:checked ~ .checkmark {
    background-color: #22ABA6;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.it-tpl input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.it-tpl .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



.partner-logo {
    height: 28px;
    margin-right: 10px;
}
.inner1>.container-fluid>.row{
    display: flex; justify-content: center; align-items: center;
}
@media (max-width: 768px) {
    .menu .submenu, .menu .submenu .submenu {     
        background: #fcfcfc;
    }
}
@media screen and (min-width: 0px) and (max-width: 767px) 
{
  .rowHide { display: none; }  
  .rowHide>
 }
/*end sim*/
.menu .submenu {
    top: 75px;
    border-top: 1px solid rgb(34, 171, 166);
    border-bottom: 1px solid rgb(34, 171, 166);
}
.menu .submenu .submenu {
    left: 160px;
    top: inherit;
    margin-top: -1px;
}
.menu .submenu li {
    clear: both;
    width: 100%;
    font-size: 12px;
}
.menu .submenu li a {
    width: 100%;
    padding: 10px 15px 10px;
    display: inline-block;
    float: left;
    clear: both;
    text-decoration: none;
    color: #e8e8e8;
}
.menu li a>.fa {
    display: block;
    float: left;
    width: 16px;
    margin: 0 10px 0 -4px;
    font-size: 16px;
    line-height: inherit;
    text-align: center;
}
.menu li a>.fa-single {
    float: none;
    margin: 0;
}
.menu li a>.fa-icon {
    position: relative;
    top: -1px;
    float: none;
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 0 -5px 0 5px;
    font-size: 8px;
    font-weight: 100;
    line-height: 1;
    text-align: right;
}
.menu li li a>.fa-icon {
    top: 0;
    float: right;
    display: block;
    line-height: inherit;
}
.megamenu {
    position: absolute;
    display: none;
    min-width: 25%;
    top: 75px;
    font-size: 12px;
    z-index: 999999;
    padding: 25px 15px 5px;
    background: rgba(30, 30, 30, 0.9);
    color: #e8e8e8;
    border-top: 1px solid rgb(34, 171, 166);
    border-bottom: 1px solid rgb(34, 171, 166);
}
.megamenu-list {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
}
.megamenu-list>li {
    width: 100%;
    padding: 4px 0;
    float: none;
}
.megamenu-list li:last-child {
    width: 100%;
    padding: 4px 0;
}
.megamenu-list>.title {
    font-size: 13px;
    color: rgb(34, 171, 166);
    padding: 0 0 6px;
    text-transform: uppercase;
    font-weight: 600;
}
.megamenu .tab-content {
    padding: 0;
}
.megamenu .nav-tabs>li {
    margin-bottom: 25px;
    display: block;
}
.megamenu .nav-tabs>li>a {
    font-size: 13px;
    text-transform: uppercase;
    padding: 5px 10px;
    color: #ccc;
    -webkit-transition: all .6s ease-in;
    transition: all .6s ease-in;
}
.megamenu .nav-tabs>li.active>a, .megamenu .nav-tabs>li.active>a:hover, .megamenu .nav-tabs>li.active>a:focus, .megamenu .nav-tabs>li>a:hover, .megamenu .nav-tabs>li>a:focus {
    color: rgb(34, 171, 166);
    background-color: transparent;
    border: none;
    border-bottom-color: transparent;
    border-left: 1px solid rgb(34, 171, 166);
    text-indent: 10px;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.megamenu a {
    font-size: 12px;
    -webkit-transition: color 0.4s ease-in;
    transition: color 0.4s ease-in;
    color: #e8e8e8;
}

.megamenu .menu-txt-short a{
    color: rgb(34, 171, 166);
}
.megamenu .menu-txt-short a:hover{
    color: #29c8c3;
}

.menu li li a {
    /*color: rgb(34, 171, 166);*/
    color: rgb(34, 171, 166);
}
.menu li li a:hover {
    /*color: rgb(34, 171, 166);*/
    color: #29c8c3;
}
.megamenu.megamenu-half {
    width: 50%;
}
.megamenu.full {
    width: 750px;
    right: 0;
}
.megamenu.two_three {
    width: 66.66%;
    left: 0;
}
.megamenu.three_four {
    width: 100%;
    left: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .megamenu.megamenu-half {
        width: 70%;
    }
    .megamenu.two_three {
        width: 100%;
    }
    .megamenu.three_four {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .megamenu.megamenu-half {
        width: 100%;
    }
    .megamenu.two_three {
        width: 100%;
    }
    .megamenu.three_four {
        width: 100%;
    }
}
.menu>li>.megamenu.left {
    left: 0;
}
.menu>li>.megamenu.right {
    right: 0;
}
.menu>.right {
    float: right;
}
.menu>.right>.megamenu {
    right: 0;
}
.menu>.right>a {
    padding: 25px 0 25px 20px;
}
.menu>li>a.last {
    padding-right: 10px!important;
}
.menu>li>a.last-2 {
    padding-right: 0!important;
}
@media (min-width:768px) and (max-width:991px) {
    .menu>.first>a {
        padding-left: 0;
    }
}
.megamenu .row {
    width: 100%;
    margin: 15px 0 0;
}
.megamenu .row:first-child {
    margin: 5px 0;
}
.megamenu .row:before, .megamenu .row:after {
    display: table;
    content: "";
    line-height: 0;
}
.megamenu .row:after {
    clear: both;
}
.megamenu [class*="col-"] {
    display: block;
    width: 100%;
    min-height: 1px;
    float: left;
    /*padding: 0 10px;*/
    margin-bottom: 5px;
}
.megamenu .col-1 {
    width: 8.33333333%;
}
.megamenu .col-2 {
    width: 16.66666667%;
}
.megamenu .col-3 {
    width: 25%;
}
.megamenu .col-4 {
    width: 33.33333333%;
}
.megamenu .col-5 {
    width: 41.66666667%;
}
.megamenu .col-6 {
    width: 50%;
}
.megamenu .col-7 {
    width: 58.33333333%;
}
.megamenu .col-8 {
    width: 66.66666667%;
}
.megamenu .col-9 {
    width: 75%;
}
.megamenu .col-10 {
    width: 83.33333333%;
}
.megamenu .col-11 {
    width: 91.66666667%;
}
.megamenu .col-12 {
    width: 100%;
}
.menu .toggle-menu {
    display: none;
    width: 100%;
    height: 50px;
    cursor: pointer;
    color: #778888;
    background: #fcfcfc;
}
.toggle-menu .title {
    margin: 10px 0 0;
    float: left;
    text-transform: uppercase;
}
.toggle-menu .icon {
    margin: 17px 0;
    float: right;
}
.toggle-menu .icon i {
    margin-bottom: 3px;
    display: block;
    width: 20px;
    height: 2px;
    background: #778888;
}
@media (max-width: 767px) {
    .menu>li {
        display: none;
        width: 100%;
    }
    .menu>.toggle-menu {
        display: block;
        margin-top: 15px;
    }
    .menu>li>a {
        text-transform: uppercase;
        font-size: 13px;
    }
    .menu>li>a, .menu>.right>a {
        padding: 15px 25px;
    }
    .menu>li>a:hover {
        color: rgb(34, 171, 166);
    }
    .menu a {
        width: 100%;
        color: #778888;
    }
    .menu .submenu>li>a, .menu p {
        color: #778888;
    }
    .submenu, .submenu .submenu {
        width: 100%!important;
        left: 0;
        position: static!important;
        border: none;
    }
    .menu .submenu {
        border-top: none;
        border-bottom: none;
    }
    .submenu li {
        border: none;
    }
    .submenu>li>a {
        padding-left: 40px!important;
    }
    .megamenu {
        width: 100%!important;
        position: static;
        border-top: none;
        border-bottom: none;
        padding: 20px 0 0 50px;
        background-color: transparent;
    }
    .megamenu [class*="col-"] {
        float: none;
        display: block;
        width: 100%!important;
    }
    .megamenu .nav-tabs {
        margin-bottom: 20px;
    }
    .megamenu .row, .megamenu .row:first-child [class*="col-"]:first-child {
        margin-top: 0;
    }
    .menu>li>.submenu>li>a {
        padding-left: 40px!important;
    }
    .menu>li>.submenu>li>.submenu>li>a {
        padding-left: 62px!important;
    }
    .menu>li>.submenu>li>.submenu>li>.submenu>li>a {
        padding-left: 80px!important;
    }
}
.menu li>.submenu:after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
}
.menu li>.submenu:before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 24px;
}
.menu li li>.submenu {
    top: 0;
    margin: 0 0 0 18px;
    left: 156px;
}
.menu li li>.submenu:after {
    top: 0;
    right: 100%;
    bottom: auto;
    left: auto;
    width: 8px;
    height: 100%;
}
.menu li li>.submenu:before {
    top: 15px;
    right: 100%;
    bottom: auto;
    left: auto;
    border-top: 5px solid transparent;
    border-right: 5px solid rgba(30, 30, 30, .8);
    border-bottom: 5px solid transparent;
}
.header-wrapper {
    z-index: 9999;
    position: relative;
    width: 100%;
    margin: 0;
    background: #fcfcfc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media (min-width:992px) {
    .menu-fixed .main-header {
        z-index: 9999;
        width: 100%;
        left: 0;
        background: rgba(250, 250, 250, 0.95);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }
}
@media (max-width:991px) {
    .menu-fixed .main-header {
        position: relative!important;
    }
    #undefined-sticky-wrapper {
        height: auto!important;
    }
}
.logo {
    display: block;
    margin-top: 5px;
    text-align: center;
}
@media (min-width:768px) {
    .header-wrapper .navbar-right {
        margin-right: 0!important;
    }
}
@media (max-width:991px) {
    .header-wrapper .navbar-right {
        float: none!important;
    }
}
@media (max-width:767px) {
    .owl-t-center-big>h2{
        font-size: 20px;
        line-height: 10px;
    }
    .owl-t-center-big>h3{
        font-size: 18px;
        /*line-height: 15px;*/
    }
    .header-top .logo {
        background-color: #333;
        padding: 15px 0;
    }
}
@media (min-width:992px) {
    .header-top .header-wrapper {
        background: transparent;
    }
    .header-top #undefined-sticky-wrapper {
        height: auto!important;
    }
    .header-top .main-header {
        position: fixed;
        z-index: 9999;
        width: 100%;
        left: 0;
        top: 0;
        background-color: transparent;
        -webkit-backface-visibility: hidden;
    }
    .header-top .menu-fixed .main-header {
        background-color: rgba(20, 20, 20, 0.8);
        border-top: none;
    }
    .header-top .logo {
        opacity: 0.9;
    }
    .header-top .menu>li>a {
        color: #e8e8e8;
        font-size: 13px;
        text-transform: uppercase;
    }
}
#onepage.menu>li>a {
    text-shadow: none;
    position: relative;
    text-transform: uppercase;
    font-size: 13px;
    color: #e8e8e8;
}
@media (max-width:767px) {
    #onepage>li:last-child>a {
        padding: 15px 25px 40px;
    }
}
@media (max-width:991px) {
    #onepage.menu>li>a {
        color: #778888;
    }
    #onepage.menu>li>a:hover, #onepage.menu>.current>a {
        color: rgb(34, 171, 166);
    }
}
@media (min-width:992px) {
    #onepage.menu>li>a::before, #onepage.menu .current>a::before {
        position: absolute;
        top: 25px;
        left: 20px;
        overflow: hidden;
        max-width: 0;
        color: rgb(34, 171, 166);
        content: attr(data-hover);
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }
    #onepage.menu>li>a:hover::before, #onepage.menu>li>a:focus::before, #onepage.menu .current>a::before {
        max-width: 100%;
        -webkit-transition: max-width 1s ease-out;
        transition: max-width 1s ease-out;
    }
}
.top-bar {
    z-index: 0!important;
    background: #303030;
    color: #cacaca;
    padding: 10px 0;
}
.top-bar p {
    margin-bottom: 0;
    color: #cacaca;
    vertical-align: middle;
}
.tob-bar a {
    color: #cacaca;
}
.top-bar a:hover, .top-bar a:focus {
    /*color: rgb(34, 171, 166);*/
    color: rgb(0, 118, 190);
}
.top-bar.main-bg p, .top-bar.main-bg a, .top-bar.main-bg .fa {
    color: #fafafa;
}
.top-bar.main-bg a:hover, .top-bar.main-bg a:focus {
    color: rgba(240, 240, 240, 0.7);
}
.top-bar .social-icon li:last-child {
    margin-right: 0;
}
.top-bar .social-icon {
    margin-right: -8px;
}
.top-bar .social-icon a .fa {
    color: #aaa;
}
.top-bar .social-icon a:hover .fa {
    color: #fcfcfc;
}
@media (max-width:767px) {
    .top-bar .pull-left, .top-bar .pull-right {
        float: none!important;
        text-align: center;
    }
    .top-bar .pull-left {
        margin-bottom: 10px;
    }
    .top-bar .social-icon, .pull-left .topbar-info:last-child {
        margin-right: 0;
    }
}
.top-border {
    border-top: 2px solid rgb(34, 171, 166);
}
.fix-lh {
    line-height: 28px;
}
.topbar-info {
    margin-right: 20px;
}
.topbar-info .fa {
    margin-right: 5px;
    color: #fcfcfc;
    /*background-color: rgb(34, 171, 166);*/
    background-color: rgb(0, 118, 190);
    padding-top: 6px;
    border-radius: 4px;
    width: 26px;
    height: 26px;
    text-align: center;
    font-size: 13px;
}
@media (max-width:360px) {
    .topbar-info .fa {
        display: none;
    }
}
.top-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.top-menu>li {
    padding: 0 10px;
    display: inline-block;
}
.top-menu li:last-child {
    padding-right: 0;
}
.top-menu li .fa {
    margin-right: 5px;
}
.boxedcontainer {
    max-width: 1170px;
    margin: auto;
    padding: 0px 30px;
}
.tp-banner-container {
    width: 100%;
    position: relative;
    padding: 0;
}
.tp-banner {
    width: 100%;
    position: relative;
}
.tp-banner-fullscreen-container {
    width: 100%;
    position: relative;
    padding: 0;
}
.small_thin_grey.alt1 {
    color: #556666;
    font-size: 15px;
}
#main-slider .slides>li {
    height: 550px;
    position: relative;
}
#main-slider {
    height: 550px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.flex-full-height #main-slider, .flex-full-height #main-slider .slides>li {
    height: 100%;
}
.flexslider {
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
}
.flex-content .animated {
    opacity: 0;
}
.flex-content .activate {
    opacity: 1;
}
.flexslider .bg-layer {
    opacity: 0.5;
}
.flexslider {
    position: relative;
}
.flex-direction-nav {
    position: relative;
}
.flex-direction-nav a:before {
    content: ""!important;
}
.flex-direction-nav .fa {
    color: #fcfcfc;
    background-color: rgba(20, 20, 20, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
}
.flex-direction-nav .flex-next .fa {
    padding-left: 3px;
}
.flex-direction-nav .flex-prev .fa {
    padding-right: 2px;
}
.flex-direction-nav a {
    text-align: center;
    margin: 0;
    top: auto;
    bottom: 10px!important;
}
.flex-direction-nav .flex-prev {
    right: 58px!important;
    left: auto!important;
}
.flex-direction-nav .flex-next {
    right: 12px!important;
}
.flex-middle {
    width: 100%;
    height: auto;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.flex-title {
    font-family: "Open Sans", sans-serif;
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fcfcfc;
    margin: 0 0 15px;
    line-height: 1.3em;
}
.flex-bordered {
    border: 3px solid #fcfcfc;
    padding: 10px 20px;
    display: inline-block;
}
.br-top-bottom {
    padding: 7px 0;
    margin-bottom: 30px;
    position: relative;
}
.br-top-bottom::before, .br-top-bottom::after {
    content: "";
    display: block;
    width: 150px;
    height: 1px;
    border-top: 3px solid rgb(34, 171, 166);
    position: absolute;
    left: 0;
}
.br-top-bottom::before {
    top: 0;
}
.br-top-bottom::after {
    bottom: 0;
}
.flex-subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 21px;
    line-height: 1.5em;
    font-weight: 500;
    margin: 0 0 15px;
    color: #fcfcfc;
}
.flex-p {
    font-family: "Open Sans", sans-serif;
    color: #fcfcfc;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}
.flex-btn {
    font-size: 14px;
    letter-spacing: 1px;
    padding: 10px 14px;
    border-radius: 0;
    text-transform: uppercase;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
}
.flex-btn1 {
    color: #fafafa;
    background-color: rgba(34, 171, 166, 0.7);
    border: 1px solid rgba(34, 171, 166, 0.7);
}
.flex-btn2 {
    color: rgb(34, 171, 166);
    border: 1px solid rgb(34, 171, 166);
}
.flex-btn:hover, .flex-btn:focus {
    background-color: rgb(34, 171, 166);
    color: #fafafa;
    border: 1px solid rgb(34, 171, 166);
    -webkit-transition: all .6s ease-in;
    transition: all .6s ease-in;
}
@media (max-width:767px) {
    #main-slider .slides>li, #main-slider {
        height: 400px;
    }
    .flex-title {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .flex-subtitle {
        font-size: 18px;
    }
}
@media (min-width:768px) and (max-width:991px) {
    #main-slider .slides>li, #main-slider {
        height: 460px;
    }
}
.titlebar {
    padding: 20px 0;
    background-color: rgb(34, 171, 166);
}
.titlebar .page-title {
    font-size: 26px;
    line-height: 36px;
    font-weight: 500;
    margin: 0;
    padding: 9px 0;
    letter-spacing: normal;
    color: rgba(254, 254, 254, 0.9);
    font-family: "Open Sans";
}
.titlebar .breadcrumb {
    padding: 20px 0;
    margin: 0;
    list-style: none;
    border-radius: 0;
    background: transparent;
}
.breadcrumb>li>a {
    font-weight: 400;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}
.breadcrumb>li>a:hover {
    color: rgb(255, 255, 255);
}
.breadcrumb>li {
    display: block;
    float: left;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb>li+li:before {
    content: "/";
    padding: 0 5px;
    color: rgba(255, 255, 255, 0.6);
}
.breadcrumb>.active {
    color: rgba(255, 255, 255, 0.6);
}
@media (max-width:767px) {
    .titlebar .page-title {
        line-height: 40px;
    }
    .titlebar {
        text-align: center;
    }
    .titlebar .page-title {
        float: none!important;
        padding: 9px 0 0;
    }
    .titlebar .breadcrumb {
        float: none!important;
        display: inline-block;
        padding: 15px 0 10px;
    }
}
.titlebar.titlebar1 {
    background: url('https://admin.rely.com.ua/files/images/shadow.png') no-repeat top center;
    background-color: #0079BD;
}
.titlebar.titlebar2 {
    background: #404040;
}
.titlebar.titlebar2 .page-title {
    color: #eee;
}
.titlebar.titlebar3 {
    background-color: none;
}
.titlebar.titlebar4 {
    background-color: #f3f3f3;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .06)
}
.titlebar.titlebar4 .page-title, .titlebar.titlebar4 .breadcrumb>li>a {
    color: #666;
}
.titlebar.titlebar4 .breadcrumb>li>a:hover, .titlebar.titlebar2 .breadcrumb>li>a:hover, .titlebar.titlebar3 .breadcrumb>li>a:hover {
    color: rgb(34, 171, 166);
}
.titlebar4 .breadcrumb>li, .titlebar4 .breadcrumb>li+li:before, .titlebar4 .breadcrumb>.active {
    color: #888;
}
.titlebar-center .page-title {
    line-height: 40px;
}
.titlebar-center {
    text-align: center;
}
.titlebar-center .page-title {
    float: none!important;
    padding: 9px 0 0;
}
.titlebar-center .breadcrumb {
    float: none!important;
    display: inline-block;
    padding: 15px 0 10px;
}
.section {
    position: relative;
    padding: 40px 0;
    background-color: #FCFCFC;
}
.section-2 {
    padding: 35px 0;
}
.section-3 {
    padding: 50px 0;
    /*margin: 40px 0;*/
}
.section-4 {
    padding: 60px 0 55px;
}
.section-5 {
    padding: 50px 0 0;
}
.section-6 {
    padding: 30px 0 20px;
}
.section-7 {
    padding: 0 0 50px;
}
.section-8 {
    padding: 70px 0 40px;
}
.section-9 {
    padding: 40px 0 55px;
}
.section-news {
    position: relative;
    background-color: #F3F3F3;
    padding: 40px 0;
}
.section-news h3 {
    text-transform: uppercase;
    margin-bottom: 3px;
}
.large-padding {
    padding-top: 90px;
    padding-bottom: 90px;
}
.section-full-width {
    padding-left: 15px;
    padding-right: 15px;
}
@media (min-width:768px) {
    .section-full-height {
        height: 100%;
    }
}
.section-gray {
    position: relative;
    background-color: #f3f3f3;
}
.section-gray.top-shadow {
    background: url('https://admin.rely.com.ua/files/images/shadow.png') no-repeat top center;
    background-color: #f3f3f3;
}
.section-dark {
    position: relative;
    background-color: #404040;
}
.section-dark p, .section-dark .section-title, .section-dark .feature-list, .section-dark .box-title, .section-dark .nav-tabs>li>a {
    color: #efefef;
}
.section-boxed {
    padding: 40px 30px;
}
.section-boxed .section-title {
    font-size: 28px;
    margin-bottom: 30px;
}
.intro-section {
    padding: 60px 0;
    margin-bottom: 40px;
    position: relative;
    height: 450px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}
.intro-section.testimonials-section {
    padding: 70px 0;
    margin-bottom: 0;
    min-height: 450px;
    overflow-y: hidden;
}
@media (max-width:767px) {
    .intro-section, .intro-section.testimonials-section {
        padding: 30px 0;
    }
}
.custom-section {
    background-color: rgb(34, 171, 166);
}
.custom-section.cs2 {
    position: relative;
    z-index: 1;
    background: url('https://admin.rely.com.ua/files/images/shadow.png') no-repeat top center;
    /*background-color: rgb(34, 171, 166);*/
    background-color: rgb(0, 118, 190);
}
.custom-section .section-title {
    margin: 0 0 30px;
    color: rgba(254, 254, 254, 0.9);
}
.custom-section p {
    color: rgba(254, 254, 254, 0.9);
}
.custom-section .btn {
    border-radius: 0;
}
.custom-section .btn-primary {
    color: rgba(254, 254, 254, 0.9);
    border: 1px solid rgba(254, 254, 254, 0.9);
    background-color: transparent;
    padding: 8px 12px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.custom-section .btn-primary:hover {
    /*color: rgb(34, 171, 166);*/
    color: rgb(0, 118, 190);
    background-color: rgba(254, 254, 254, 0.9);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.custom-section .alpha {
    color: rgba(254, 254, 254, 0.9);
}
.section-title {
    font-size: 32px;
    font-weight: 400;
    color: #666;
    margin-bottom: 60px;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    line-height: 36px;
}
@media (max-width:640px) {
    .section-title {
        line-height: 50px;
        margin-bottom: 50px;
    }
}
.section-title.st2 {
    font-size: 28px;
    margin-bottom: 0;
}
.section-title.st3 {
    font-size: 30px;
    margin-bottom: 30px;
}
.section-title.st4 {
    font-size: 26px;
    margin-bottom: 0;
    text-align: left;
}
.section-title-2 {
    margin-bottom: 40px;
    padding: 0 0 5px;
    border-bottom: 2px solid #e1e1e1;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    color: #606060;
    font-weight: 400;
    text-align: left;
}
.section-title-2:after {
    width: 7%;
    height: 2px;
    display: block;
    content: '';
    background-color: rgb(34, 171, 166);
    position: absolute;
    bottom: -2px;
    left: 0%;
}
.section-title-2.st-2 {
    font-size: 26px;
}
.section-title-2.st-3 {
    font-size: 28px;
    padding: 0 0 10px;
}
.section-title-3 {
    font-size: 34px;
    font-weight: 600;
    color: #666;
    margin-bottom: 50px;
    text-align: center;
    line-height: 40px;
}
.section-title-3.st2 {
    font-size: 32px;
    line-height: 36px;
}
.section-title-3.tshadow {
    text-shadow: 2px 2px 4px #333;
}
@media (max-width:640px) {
    .section-title-3 {
        line-height: 52px;
        margin-bottom: 40px;
    }
}
.section-subtitle {
    padding: 0 60px;
    margin-bottom: 60px;
    text-align: center;
}
@media (max-width:991px) {
    .section-subtitle {
        padding: 0;
    }
}
.box-content {
    text-align: center;
}
#vticker-services .box-content {
    padding: 10px 0;
}
.box-content h3 {
    margin: 20px 0 14px;
    font-size: 18px;
    font-weight: 400;
    color: #555;
}
.box-content img {
    width: 100px;
    height: 100px;
}
.box-content .big {
    display: block;
    font-size: 54px;
    color: rgb(34, 171, 166);
}
.box-content .box {
    display: inline-block;
    font-size: 70px;
    color: rgb(34, 171, 166);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 25px;
    width: 130px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.box-content .box:hover {
    border: 1px solid rgb(34, 171, 166);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.box-content.square {
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 30px 10px 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}
.box-content.square:hover {
    border: 1px solid rgb(34, 171, 166);
}
.box-content-2 .fa {
    float: left;
    display: block;
    margin-right: 25px;
    font-size: 35px;
    color: #414655;
    padding: 18px;
    background-color: #fcfcfc;
    border-radius: 50%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.box-content-2:hover .fa {
    color: rgb(34, 171, 166);
    box-shadow: inset 1px 1px 4px #333;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.box-content-2 .box-title-2 {
    margin: 0 0 10px 95px;
    font-size: 18px;
    font-weight: 600;
    color: #353433;
}
.box-content-2 p {
    margin: 0 0 0 95px;
}
.box-content-3 {
    padding: 20px 10px;
    margin-bottom: 30px;
    text-align: center;
    border-radius: 10px;
}
.box-content-3 p, .box-content-3 .fa, .box-content-3 .box-title {
    color: #fcfcfc;
}
.box-content-3 .read-more {
    color: #fcfcfc;
    display: block;
    margin-top: 20px;
}
.box-content-3 p {
    margin-bottom: 0;
}
@media (min-width:768px) {
    .br-box {
        border-right: 1px dashed #778888;
        padding-top: 30px;
        padding-bottom: 10px;
    }
    .br-box.last {
        border-right: none;
    }
    .br-box .box-content {
        padding: 0 10px;
    }
}
.box-colored {
    color: rgba(254, 254, 254, 0.9);
    text-align: center;
    padding: 0;
}
.row-box-colored {
    margin-left: 0;
    margin-right: 0;
}
.box-colored .box-title {
    margin: 25px 0 0;
    color: rgba(254, 254, 254, 0.9);
    font-size: 21px;
}
.box-colored.box1 {
    background-color: #1f9e9a;
}
.box-colored.box2 {
    background-color: #22aba6;
}
.box-colored.box3 {
    background-color: #25b8b2;
}
.box-colored.box4 {
    background-color: #26c0bb;
}
.box-colored .view {
    padding: 45px 30px;
}
.box-colored .view .descr {
    color: rgba(254, 254, 254, 0.9);
    font-weight: 500;
    font-size: 14px;
    padding: 40px 20px 0;
}
.box-colored:hover .default {
    opacity: 0;
}
@media (max-width:767px) {
    .box-colored .view .mask {
        display: none;
    }
    .box-colored:hover .default {
        opacity: 1;
    }
    .box-colored {
        margin: 15px 0;
    }
}
@media (max-width:767px) {
    .xs-box {
        padding-bottom: 30px;
    }
    .xs-box2 {
        padding-bottom: 0;
    }
    .xs-box2 img{
        display: block;
        margin: 0 auto;
    }
    .xs-box3 {
        padding-bottom: 50px;
    }
}
@media (max-width:991px) {
    .sm-box {
        padding-bottom: 30px;
    }
    .sm-box2 {
        padding-bottom: 40px;
    }
    .sm-box3 {
        padding-bottom: 50px;
    }
}
.vticker-selector ul {
    list-style: none;
}
.box-left {
    display: block;
    float: left;
}
.box-left .fa {
    font-size: 42px;
    color: #22ABA6;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.col-sm-4:hover .box-left .fa {
    color: #778899;
    -webkit-transform: rotateY(360deg);
    -ms-transform: rotateY(360deg);
    transform: rotateY(360deg);
    -webkit-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}
.box-left img {
    width: 50px;
    height: 50px;
}
.box-right {
    margin-left: 68px;
}
.feature-list {
    width: 100%;
    float: left;
    margin: 0px;
    padding: 0px;
    margin-bottom: 10px;
    list-style: none;
}
.feature-list:before, .feature-list:after {
    display: table;
    content: '';
}
.feature-list:after {
    clear: both;
}
.feature-list li {
    width: 50%;
    float: left;
    text-align: left;
    margin: 0px;
    padding: 0px;
    line-height: 200%;
}
.feature-list.feature-list-2 li {
    margin-bottom: 8px;
}
.feature-list .fa {
    margin-right: 5px;
    color: rgb(34, 171, 166);
}
@media (max-width:660px) {
    .feature-list li {
        width: 100%;
        float: none;
    }
}
.box-title {
    margin: 15px 0 20px;
    font-size: 18px;
    font-weight: 400;
    color: #444;
}
.box-title.bt2 {
    margin: 0 0 25px;
    font-size: 20px;
    color: #555;
}
.box-title.bt3 {
    margin: 0 0 10px;
}
.box-title.bt4 {
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.box-title.bt5 {
    font-size: 16px;
}
.box-title-3 {
    margin: 0 0 12px;
    font-size: 19px;
    line-height: 22px;
    font-weight: 600;
    color: rgba(32, 32, 32, 0.8);
}
.contact-info a {
    color: #778888;
}
.contact-info a:hover {
    color: rgb(34, 171, 166);
}
.contact-info .fa {
    margin-right: 10px;
    color: rgb(34, 171, 166);
}
.contact-info p {
    margin: 0 0 12px;
}
.contact-info p:last-child {
    margin: 0;
}
.about-section .about {
    margin: 0 0 20px;
}
.about-img {
    text-align: center;
    margin-bottom: 20px;
}
.about-img img {
    width: 220px;
    border-radius: 50%;
    margin-top: 10px;
}
@media (min-width:768px) {
    .about-canvas {
        text-align: right;
    }
}
.box-about {
    background-color: rgba(34, 171, 166, 0.7);
    padding: 40px;
    box-shadow: 0 0 15px rgba(20, 20, 20, 0.4);
}
.team-section .tab-content {
    padding: 50px 0 20px;
}
.team-section img {
    border: 1px solid rgb(34, 171, 166);
    border-radius: 50%;
    width: 180px;
    height: 180px;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -ms-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
}
.team-section .box-team:hover img {
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -ms-transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.team-section h3 {
    margin: 0 0 4px;
    font-size: 19px;
    color: #666;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}
.team-section h3 a {
    color: #778888;
    margin-left: 20px;
}
.team-section h5 {
    margin-bottom: 14px;
    color: rgb(34, 171, 166);
    font-weight: 400;
    font-size: 13px;
}
.team-image {
    position: relative;
    width: 180px;
    height: 180px;
    text-align: center;
    display: block;
    float: left;
}
.team-info {
    margin-left: 215px;
    padding-top: 20px;
}
.team-links {
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    text-align: center;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
    -ms-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
}
.team-section .box-team:hover .team-links {
    opacity: 1;
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.team-links .social-icon {
    position: relative;
    top: 74px;
}
.team-links .social-icon .fa {
    font-size: 17px;
    padding: 8px;
    width: 32px;
    height: 32px!important;
}
.team-links .social-icon>li {
    margin: 2px;
}
@media (max-width:991px) {
    .box-team {
        text-align: center;
    }
    .team-image {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .team-info {
        margin-left: 0;
        padding-top: 20px;
    }
}
.contact-section, .contact-section .section-title, .contact-section .box-title {
    color: rgba(254, 254, 254, 0.9);
    text-align: left;
}
.contact-section .box-title {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}
.contact-section .nav-tabs {
    border-bottom: none;
}
.contact-section .nav-tabs>li>a {
    color: rgba(254, 254, 254, 0.9);
    border-radius: 2px;
    margin-right: 5px;
}
.form-subscribe input[type="email"] {
    height: 40px;
}
.contact-section .nav-tabs>li.active>a {
    /*background-color: rgba(34, 171, 166, 0.7);*/
    background-color: rgba(0, 118, 190, 0.7);
}
.contact-section .tab-content {
    padding: 0;
}
.contact-section .form input[type], .contact-section .form textarea {
    padding: 8px;
    margin-bottom: 5px;
    color: #fff;
    background: transparent;
    border: solid 1px #fff;
    border-radius: 2px;
}
.contact-section .form button[type="submit"],
.contact-section .form input[type="submit"] {
    width: auto;
    padding: 8px 20px;
    /*background: rgba(34, 171, 166, 0.7);*/
    background: rgba(0, 118, 190, 0.7);
    border: none;
    height: auto;
    border-radius: 2px;
}
.contact-section .form button[type="submit"]:hover,
.contact-section .form input[type="submit"]:hover {
    background: rgb(34, 171, 166);
}
.contact-section .form input:focus, .contact-section .form textarea:focus {
    border: 1px solid rgb(34, 171, 166);
    background: transparent!important;
}
.contact-section .has-success .form-control {
    border: 1px solid #5DA35D!important;
}
.contact-section .has-error .form-control {
    border: 1px solid #a94442!important;
}
.contact-section .form-message-error {
    color: #fff!important;
}
.contact-section .alert {
    border-color: transparent;
    opacity: 0.8;
    border-radius: 0!important;
}
.contact-section ::-webkit-input-placeholder {
    color: #fcfcfc;
    font-weight: 400;
}
.contact-section ::-moz-placeholder {
    color: #fcfcfc;
    opacity: 1;
    font-weight: 400;
}
.contact-section :-ms-input-placeholder {
    color: #fcfcfc;
    font-weight: 400;
}
.contact-section address {
    font-size: 15px;
    color: rgba(254, 254, 254, 0.9);
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}
.contact-section address .fa {
    width: 30px;
    height: 30px;
    /*background-color: rgba(34, 171, 166, 0.7);*/
    background-color: rgba(0, 118, 190, 0.7);
    color: rgba(254, 254, 254, 0.9);
    text-align: center;
    padding-top: 8px;
    margin-right: 10px;
    border-radius: 5px;
}
.contact-p, .custom-bg-p {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 30px;
}
.stats-section .timer {
    color: rgb(34, 171, 166);
    font-size: 50px;
    margin-bottom: 40px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}
.stats-section .box-content h3 {
    margin-bottom: 0;
}
.stats-section .fa {
    color: #666;
}
.box-content.stats {
    display: block;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
}
.box-content.stats h3 {
    color: #fcfcfc;
}
@media (max-width:767px) {
    .stats-section .box-content {
        margin-bottom: 40px;
    }
    .box-content.stats {
        background: none;
        padding: 0;
    }
}
.testimonials-section {
    padding: 50px 0;
    color: #fcfcfc;
    font-family: 'Open Sans', sans-serif;
    ;
}
.testimonials-section blockquote h5 {
    color: rgb(34, 171, 166);
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 6px;
}
.testimonials-section blockquote p {
    color: rgba(254, 254, 254, 0.9);
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    font-family: "Open Sans";
    line-height: 28px;
}
.testimonials-section blockquote {
    border: none;
    padding: 0;
    margin: 0;
}
.testimonials-section blockquote footer .small {
    font-size: 13px;
    line-height: 24px;
}
.testimonials-section blockquote footer:before, .testimonials-section blockquote .small:before {
    content: none;
}
.testimonials-section .quote-testimonials {
    text-align: center;
    margin-bottom: 20px;
}
.testimonials-section .quote-testimonials i {
    font-size: 32px;
    color: rgb(34, 171, 166);
}
#owl-testimonials .owl-controls {
    margin-top: 15px;
}
/*.bg-testimonials {
    background: url('../images/demo/testimonials.jpg') repeat top center;
    position: relative;
}*/
.client {
    position: relative;
    width: 100%;
    height: 160px;
}
.c-img {
    position: absolute;
    right: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
.c-img.on {
    opacity: 0.8;
    -webkit-transition: all 0.7s ease-out;
    transition: all 0.7s ease-out;
}
@media (max-width:991px) {
    .clients-section img {
        margin-bottom: 20px;
    }
}
.plans.plans-2 .plan {
    width: 100%;
}
@media (max-width:991px) {
    .plans.plans-2 .plan {
        margin-bottom: 30px;
    }
}
.plans {
    text-align: center;
}
.plan {
    width: 33.33%;
    display: inline-block;
    text-align: center;
    border: 1px solid #ddd;
    border-top: 3px solid rgb(34, 171, 166);
}
@media (max-width:767px) {
    .plan {
        width: 100%;
        margin-bottom: 30px!important;
        margin-top: 0!important;
    }
}
.plan:hover h2 {
    color: rgb(34, 171, 166);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.plan-basic {
    margin-right: -5px;
    margin-top: 60px;
}
.plan-professional {
    margin-top: 0;
}
.plan-enterprise {
    margin-left: -5px;
    margin-top: 60px;
}
.plan-header {
    padding: 45px 30px 30px;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
}
.plan-price {
    font-size: 65px;
    color: rgb(34, 171, 166);
    margin-bottom: 20px;
}
.plan h2 {
    margin-bottom: 20px;
    font-size: 20px;
    color: #555;
    font-weight: 400;
    line-height: 1.3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.plan-features {
    padding: 10px 30px 30px;
    line-height: 27px;
}
.plan-features ul .plan-feature-header {
    margin: 20px 0;
    font-size: 20px;
    font-weight: 400;
    color: #555;
    letter-spacing: 2px;
}
.plan-feature-highlight {
    color: #453951;
}
.plan-features ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.plan-features ul li {
    margin-bottom: 15px;
}
.plan-feature-off {
    text-decoration: line-through;
    color: #adb7bd;
}
.plan-popular {
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #adb7bd;
    margin-bottom: 36px;
}
.plan-curency {
    vertical-align: super;
    font-size: 30px;
}
.plan-period {
    font-size: 14px;
}
#portfolio-isotope {
    display: block;
}
.portfolio-filter {
    text-align: center;
    margin: 20px 0 50px;
}
.portfolio-filter.filter-2 {
    text-align: left;
    margin: 0 0 50px 0;
}
.portfolio-filter li {
    display: inline-block;
    padding: 0;
    margin-top: 10px;
}
.portfolio-filter ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.portfolio-filter li a {
    border: none;
    background: none;
    padding: 8px 12px;
    font-size: 14px;
    color: rgb(34, 171, 166);
    border-radius: 1px;
    color: #778888;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.portfolio-filter li a .fa {
    margin-right: 5px;
}
.portfolio-filter li a:hover, .portfolio-filter li a:focus, .portfolio-filter li a.active {
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
@media (max-width:767px) {
    .portfolio-filter li {
        margin-bottom: 5px;
    }
}
.portfolio-container {
    width: 100%;
    text-align: center;
}
.portfolio {
    overflow: visible!important;
    margin: 0 auto;
}
.portfolio img {
    width: 100%;
    height: auto;
}
.portfolio-full-width [class*=col] {
    padding: 0;
}
.portfolio-full-width .portfolio-inner-item {
    margin-bottom: 0;
}
.portfolio-inner-item {
    margin: 0 0 30px;
    overflow: hidden;
    position: relative;
    padding: 0;
}
.portfolio-text .portfolio-inner-item {
    margin-bottom: 0;
}
.portfolio-text {
    margin-bottom: 50px;
}
.portfolio-info {
    background-color: inherit;
    text-align: center;
}
.portfolio-info-title {
    font-size: 22px;
    margin: 25px 0 20px;
    padding: 0 15px 0;
    font-weight: 400;
    color: #444;
}
.portfolio-info-title:after {
    content: "";
    display: block;
    height: 1px;
    background-color: rgb(34, 171, 166);
    width: 14%;
    margin-left: 43%;
    margin-top: 14px;
    -webkit-transition: all .5s linear;
    transition: all .5s linear;
}
.portfolio-info-text {
    color: #808080;
}
.portfolio-text:hover .portfolio-info-title:after {
    width: 50%;
    margin-left: 25%;
}
.view {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}
.view .mask {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    text-align: center;
    background-color: rgba(69, 57, 81, 0.8);
    opacity: 0;
    -webkit-transition: all 0.3s ease-in 0.4s;
    transition: all 0.3s ease-in 0.4s;
}
.view .mask-bordered {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid #fcfcfc;
    padding: 15px;
    opacity: 0;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
    transform: scale(2);
    -webkit-transition: all 0.3s ease-in 0.1s;
    transition: all 0.3s ease-in 0.1s;
}
.view .project-actions {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease-in-out 0.2s;
    transition: all 0.3s ease-in-out 0.2s;
}
.view .project-actions .fa {
    font-size: 20px;
    padding: 20px;
    border-radius: 50%;
    background-color: rgba(20, 20, 20, 0.3);
    color: #f8f8f8;
    margin: 7px;
    -webkit-transition: all 0.6s ease-in;
    transition: all 0.6s ease-in;
}
.view .project-actions a:hover .fa, .view .project-actions a:focus .fa {
    background-color: rgb(34, 171, 166);
    box-shadow: inset 2px 1px 4px rgba(0, 0, 0, .6);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.view img {
    margin: 0 auto;
    display: block;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out 0.5s;
    transition: all 0.4s ease-in-out 0.5s;
}
.view .project-title {
    font-family: "Open Sans", serif;
    color: rgba(254, 254, 254, 0.9);
    text-align: center;
    position: relative;
    font-size: 24px;
    font-weight: 500;
    padding: 5px 15px 0;
    margin: 25px 0 20px;
    opacity: 0;
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    -webkit-transition: all 0.4s ease-in-out 0.1s;
    transition: all 0.4s ease-in-out 0.1s;
}
.view .descr {
    font-size: 14px;
    font-weight: 600;
    position: relative;
    color: rgb(34, 171, 166);
    padding: 0 15px;
    margin-bottom: 25px;
    text-align: center;
    font-family: "Open Sans", serif;
    opacity: 0;
    -webkit-transform: scale(10);
    -ms-transform: scale(10);
    transform: scale(10);
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}
.view .info {
    display: inline-block;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    color: rgba(254, 254, 254, 0.9);
    font-size: 32px;
    border-radius: 50%;
    text-align: center;
    opacity: 0;
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
.view .info:hover, .view .info:focus {
    background: rgb(34, 171, 166);
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.view .info.middle {
    position: relative;
    top: 50%;
}
.view:hover .mask, .view:focus .mask {
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.view:hover .mask-bordered, .view:focus .mask-bordered {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.view:hover img, .view:focus img {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}
.view:hover .project-title, .view:focus .project-title, .view:hover .project-actions, .view:focus .project-actions {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.view:hover .descr, .view:focus .descr {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.view:hover .info, .view:focus .info {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.view:hover .info.middle, .view:focus .info.middle {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width:767px) {
    .view .descr, .view .project-title {
        display: none;
    }
    .view:hover .info {
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}
.portfolio-single.style3 .project-info, .portfolio-single.style2 .project-info {
    margin-top: 25px;
}
.project-image iframe {
    width: 100%;
}
@media (max-width:991px) {
    .project-image iframe {
        margin-bottom: 30px;
    }
}
.project-title {
    color: #555;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 20px;
    font-size: 30px;
    font-weight: 400;
}
.project-subtitle {
    color: #444;
}
.project-subtitle.spread {
    margin-right: 40px;
    vertical-align: top;
    display: inline-block;
}
.project-details {
    list-style: none;
    padding: 0;
    margin: 0;
}
.project-details li {
    margin-bottom: 15px;
}
.project-details li:last-child {
    margin-bottom: 0;
}
.project-details li span {
    margin-right: 10px;
    font-weight: 700;
}
.project-details li span.uppercase {
    font-weight: 400;
}
.project-details li .fa {
    margin-right: 10px;
    color: rgb(34, 171, 166);
}
.project-share {
    margin: 40px 0 35px;
}
#owl-project .owl-controls {
    position: absolute;
    bottom: 15px;
    text-align: center;
    width: 100%;
}
.blog-item .blog-caption {
    padding: 16px 20px 13px;
}
.blog-item .post-title {
    margin-bottom: 3px;
    font-size: 20px;
    color: #444;
    font-weight: 500;
}
.blog-item .post-title.pt1 {
    margin-bottom: 6px;
    font-size: 22px;
    color: #555;
}
.blog-item .post-title.pt2 {
    font-size: 27px;
    margin: 3px 0 6px;
    color: #666;
}
.blog-item .post-title.pt3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #555;
}
.blog-post-title {
    font-size: 30px;
    font-weight: 400;
    color: #666;
    margin: 0 0 2px;
}
.blog-item .sub-post-title {
    margin: 0 0 15px;
}
.blog-item .sub-post-title span {
    margin-right: 15px;
    font-size: 12px;
    color: rgb(34, 171, 166);
}
.blog-item .sub-post-title a:hover {
    text-decoration: none;
    color: #0079BD;
}
.sub-post-title .fa {
    margin-right: 5px;
}
.blog-item {
    margin: 0 0 30px;
    background-color: #fafafa;
    border: 1px solid #e5e5e5;
    text-align: left;
}
.related-posts .blog-item {
    margin: 0;
}
@media (max-width:767px) {
    .related-posts .blog-item {
        margin: 0 0 30px;
    }
}
#blog-posts.list .blog-item {
    margin: 0 0 30px;
}
.blog-item .full-image {
    padding-left: 0!important;
    padding-right: 0!important;
}
.blog-item img {
    /*width: 100%;*/
    height: auto;
}
.blog-item .media .author-img {
    width: 170px;
    height: 170px;
}
.read-more {
    color: rgb(34, 171, 166);
    /*text-transform: lowercase;*/
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.read-more:after {
    content: '\f178';
    font-family: "FontAwesome";
    display: inline-block;
    margin-left: 5px;
    width: 20px;
    font-size: 14px;
    vertical-align: middle;
}
.read-more:hover, .read-more:focus {
    color: rgba(34, 171, 166, 0.6)
}
.comment-post button {
    margin-top: 10px;
}
.shop-product {
    border: 1px solid #ddd;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 3px;
}
.shop-product:hover {
    border: 1px solid rgb(34, 171, 166);
}
.shop-image {
    position: relative;
}
.shop-image img {
    margin-bottom: 1px;
}
@media (max-width:767px) {
    .shop-image {
        display: block;
        margin-left: auto!important;
        margin-right: auto!important;
        clear: both;
        text-align: center;
    }
}
.shop-actions {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #f9f9f9;
}
.shop-product:hover .shop-actions {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.shop-actions p {
    padding: 20px 10px;
}
.shop-actions .see {
    margin-right: 5px;
}
.shop-actions .rating-system.rate-product {
    margin-top: 30px;
}
.btn.see .fa, .btn.add .fa {
    margin-right: 0;
}
.shop-actions .btn.see, .shop-actions .btn.add {
    border-radius: 2px;
}
.shop-description {
    background-color: #f9f9f9;
    padding: 20px;
}
.shop-description h4 {
    margin-bottom: 4px;
    text-align: center;
    font-size: 17px;
    color: #555;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 2px;
}
.shop-price {
    color: rgb(34, 171, 166);
    font-size: 18px;
    padding-top: 7px;
    display: inline-block;
    text-decoration: none;
}
.shop-price-off {
    text-decoration: line-through;
    color: #adb7bd;
    font-size: 16px;
    margin-right: 4px;
}
.shop-offer {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #B32439;
    color: #fcfcfc;
    display: inline-block;
    padding: 20px 10px 10px 20px;
    border-radius: 3px;
}
.toolbar-shop {
    margin-bottom: 35px;
}
.toolbar-shop .btn .fa {
    margin-right: 0;
}
.shop-ordering {
    display: inline-block;
    margin-right: 15px;
}
.sidebar.shop-sidebar .sidebar-widget {
    margin-bottom: 30px;
}
.shop-sidebar .irs {
    margin-bottom: 17px;
}
.shop-sidebar .categories li {
    padding-bottom: 10px!important;
}
.shop-sidebar .top-rated-products {
    margin: 0;
    padding: 0;
    list-style: none;
}
.shop-sidebar .top-rated-products li {
    clear: both;
    margin-bottom: 25px;
}
.shop-sidebar .top-rated-products .product-image {
    float: left;
    width: 75px;
    height: 75px;
    display: block;
}
.shop-sidebar .top-rated-products h5 {
    margin-bottom: 4px;
    padding-top: 10px;
}
.shop-sidebar .top-rated-products h5 a {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.shop-sidebar .top-rated-products h5 a:hover {
    color: rgb(34, 171, 166);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.shop-sidebar .top-rated-products .product-info {
    margin-left: 90px;
}
.list .shop-product .col-md-3, .list .shop-product .col-md-4 {
    padding: 0;
}
.list .shop-product {
    margin: 0 0 30px;
    background: #f9f9f9;
}
.list .shop-product:hover {
    border: 1px solid #ddd;
}
.list .shop-description {
    padding: 20px 10px;
}
.list .shop-image img {
    height: auto;
}
.list .shop-description h4 {
    text-align: left;
    font-size: 21px;
    margin-bottom: 12px;
}
.list .rate-product, .shop-description-product .rate-product {
    display: inline-block;
}
.rate-product+small {
    margin-left: 5px;
}
.list .shop-description p {
    margin: 20px 0 15px;
}
.list .shop-description a {
    margin-top: 15px;
    margin-right: 10px;
    border-radius: 2px;
}
.list .shop-description a i {
    margin-right: 5px;
}
.list .price {
    margin: 0 0 7px;
}
#owl-shop .owl-buttons {
    width: 100%;
    position: absolute;
    top: 50%;
    margin-top: -16px;
}
#owl-shop .owl-controls {
    margin-top: 0;
}
#owl-shop .owl-buttons div {
    margin: 0;
    color: #fcfcfc;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    border-radius: 0;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#owl-shop:hover .owl-buttons div {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
#owl-shop .owl-prev {
    position: absolute;
    left: 0;
}
#owl-shop .owl-next {
    position: absolute;
    right: 0;
}
#owl-shop {
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
#owl-shop .owl-item-shop img {
    width: 100%;
}
@media (max-width:991px) {
    #owl-shop .owl-buttons div {
        opacity: 0.9;
    }
    #owl-shop {
        margin-bottom: 20px;
    }
}
.shop-description-product {
    padding: 10px 0;
}
.shop-description-product h3 {
    margin-bottom: 12px;
    font-size: 26px;
    color: #666;
}
.shop-description-product small {
    vertical-align: sub;
}
.shop-description-product .shop-prices {
    margin: 15px 0 22px;
}
.shop-prices .stock {
    margin-left: 50px;
}
.shop-prices .stock .fa {
    margin-right: 5px;
    color: rgb(34, 171, 166);
}
.shop-description-product .btn {
    margin-top: 10px;
}
.shop-section .tab-content img {
    border-radius: 5px;
    margin-bottom: 0px;
}
@media (max-width:991px) {
    .shop-section .tab-content img {
        margin-bottom: 20px;
    }
}
.shop-section .tab-content h4 {
    color: #444;
    margin: 25px 0;
}
.shop-section .tab-content h4:first-child {
    margin-top: 0;
}
.tab-content.shop {
    padding: 25px 0;
}
.shop-comment {
    margin-bottom: 35px;
    border-bottom: 1px dashed #778898;
}
.shop-comment:last-child {
    margin-bottom: 0;
}
.shop-comment .author cite {
    text-transform: capitalize;
    margin-right: 15px;
}
.shop-comment .date {
    font-size: 12px;
}
.shop-comment .rate-review {
    margin: 8px 0 6px;
}
.shop-specifications ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.shop-specifications .title {
    font-size: 15px;
    font-weight: 600;
    margin: 20px 0 10px;
}
.shop-specifications .title:first-child {
    margin: 0 0 10px;
}
.shop-specifications li {
    color: #444;
    margin-bottom: 3px;
}
.shop-specifications li>span {
    margin-left: 15px;
    color: #888;
    font-size: 13px;
}
@media (min-width:768px) and (max-width:991px) {
    .shop-section .nav-tabs.shop-sidebar>li {
        float: none;
        margin-bottom: 5px;
    }
    .shop-section .nav-tabs.shop-sidebar {
        border-bottom: none;
    }
    .shop-section .nav-tabs.shop-sidebar li a {
        border-radius: 2px;
    }
}
.shop-section.cart #shop-cart-table {
    margin: 0 0 30px;
}
#shop-cart-table {
    margin: 35px 0;
}
#shop-cart-table .product img {
    width: 90px;
    height: 90px;
    margin-right: 20px;
}
#shop-cart-table td {
    vertical-align: middle;
}
#shop-cart-table tr td:last-child {
    width: 40px;
}
#shop-cart-table tr:last-child th {
    vertical-align: middle;
}
#shop-cart-table .span100 {
    width: 100px;
}
#shop-cart-table .span40 {
    width: 40px;
}
@media (max-width: 767px) {
    .table-responsive {
        border: none;
        margin-bottom: 20px;
    }
    #shop-cart-table .product {
        white-space: normal;
    }
    #shop-cart-table .product img {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
.shop-section.confirmation .well ul, .shop-section.account .tab-content ul {
    margin: 0 0 15px;
    padding: 0;
    list-style: none;
}
.shop-section.confirmation .well ul li, .shop-section.account .tab-content ul li {
    margin-bottom: 10px;
    color: #333;
}
.shop-section.confirmation .well ul span, .shop-section.account .tab-content ul span {
    margin-left: 10px;
    color: #888;
    font-size: 13px;
}
.shop-section.confirmation .well h3 {
    margin: 0 0 20px;
    font-size: 22px;
    color: #555;
}
#shop-confirmation-table {
    margin: 35px 0;
    vertical-align: middle;
}
#shop-confirmation-table td, #shop-confirmation-table th {
    padding-top: 20px;
    padding-bottom: 20px;
}
@media (max-width:767px) {
    #shop-confirmation-table {
        margin: 0 0 35px;
    }
}
.shop-section .main-title, .password-recovery .main-title {
    font-size: 19px;
    color: #4c4c4c;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}
.shop-section.checkout .tab-content {
    padding: 25px 0 20px;
}
.shop-section.checkout #shop-confirmation-table {
    margin: 0 0 30px;
}
#shop-account-table {
    margin-top: 0;
    vertical-align: middle;
}
#shop-account-table td, #shop-account-table th {
    padding-top: 20px;
    padding-bottom: 20px;
}
.shop-section.account .tab-content {
    padding-top: 0;
}
.shop-section.account .tab-content img {
    border-radius: 10px;
    width: 130px;
    height: 130px;
    display: block;
}
@media (max-width:767px) {
    .shop-section.checkout .form .forgot {
        display: block;
        margin-bottom: 15px;
    }
}
.shop-section.account .edit {
    margin-top: 20px;
    display: block;
}
.page-login .connect {
    margin-bottom: 15px;
}
.page-login .connect i {
    margin-right: 5px;
}
.page-login .connect.f {
    margin-right: 5px;
    background: #677fb5;
}
.page-login .connect.t {
    margin-right: 5px;
    background: #70c2e9;
}
.page-login a.connect:hover {
    background: #453971;
}
@media (max-width:767px) {
    .page-login a.forgot {
        display: block;
        margin-bottom: 15px;
    }
}
.password-recovery .well .or {
    margin: 20px 0;
}
.password-recovery .well {
    padding-top: 30px;
    padding-bottom: 30px;
}
.page-contact iframe {
    width: 100%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 2px;
}
.page-contact .box-title {
    margin-top: 0;
}
.page-faq .tab-content {
    padding-top: 0;
}
.page-sitemap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.page-sitemap ul li ul {
    margin-top: 8px;
    margin-left: 15px;
}
.page-sitemap ul li {
    margin-bottom: 10px;
    padding-left: 16px;
}
.page-sitemap ul li:before {
    content: '\f054';
    font-family: "FontAwesome";
    display: inline-block;
    margin-left: -16px;
    width: 16px;
    color: rgb(34, 171, 166);
    font-size: 14px;
}
.page-sitemap ul li a {
    color: #778888;
}
.page-sitemap ul li a:hover {
    color: rgb(34, 171, 166);
}
.page-sitemap .col-sm-6 {
    margin-bottom: 30px;
}
.page-404 .text-404 {
    font-size: 280px;
    font-weight: bold;
    line-height: 100%;
    display: block;
    text-align: center;
    color: #ccc;
}
.page-404 {
    padding: 80px 0 110px;
}
.page-404 .over-404 {
    position: absolute;
    top: 50%;
    width: 100%;
}
.page-404 .section-title {
    font-weight: 600;
    color: #666;
    font-size: 40px;
}
.content-404 {
    position: relative;
    text-align: center;
}
@media (max-width:767px) {
    .page-404 .text-404 {
        font-size: 130px;
        margin-bottom: 30px;
    }
    .page-404 .over-404 {
        position: relative;
        top: 0;
        width: 100%;
    }
    .page-404 {
        padding: 50px 0;
    }
    .page-404 .section-title {
        font-size: 36px;
        margin-bottom: 30px;
        line-height: 46px;
    }
}
.page-blank {
    position: relative;
    width: 100%;
    height: 100%;
}
.page-blank #wrapper {
    width: 100%;
    height: 100%;
}
.page-blank .page-404 {
    position: relative;
    top: 50%;
    padding: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
@media (max-width:767px) {
    .page-blank .page-404 {
        position: relative;
        top: 0;
        padding: 50px 0;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .page-blank #wrapper {
        width: auto;
        height: auto;
    }
}
.custom-table {
    vertical-align: middle;
}
.custom-table td, .custom-table th {
    padding: 20px 8px!important;
}
.section-title-3.events {
    font-size: 32px;
    line-height: 34px;
    color: rgba(254, 254, 254, 0.9);
    text-align: left;
    font-weight: 400;
    margin-bottom: 16px;
}
.section-title-3.events.date {
    font-size: 24px;
    line-height: 26px;
    margin-bottom: 30px;
}
.events-p {
    font-size: 15px;
    color: rgba(254, 254, 254, 0.9);
}
.events #onepage .current a {
    color: #453971;
    padding-top: 10px;
}
.event-title {
    padding: 0 0 14px;
}
.event-title.ev2 {
    padding: 20px 0 14px;
}
.event-title a {
    margin-right: 30px;
    font-size: 15px;
}
.events .section-title-2 {
    margin-bottom: 30px;
}
@media (max-width:767px) {
    .event-title small {
        display: block;
    }
}
.img-careers {
    border-radius: 50%;
    width: 200px;
    height: 200px;
}
.text-careers {
    margin-top: 30px;
}
.job-careers {
    text-align: center;
    display: block;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.job-careers .fa {
    color: #778888;
    margin-bottom: 10px;
}
.job-careers:hover .fa, .job-careers:hover .box-title {
    color: rgb(34, 171, 166);
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
@media (max-width:991px) {
    .text-careers {
        margin-top: 10px;
    }
}
.page-pricing .box-content {
    text-align: left;
}
.page-pricing .box-content h3 {
    font-size: 19px;
    margin: 20px 0 18px;
}
.page-clients blockquote {
    background: none;
    font-size: 14px;
    border-left: 3px solid rgb(34, 171, 166);
    margin-bottom: 0;
}
.page-clients blockquote .box-title {
    margin: 0 0 20px;
}
.page-clients blockquote cite {
    color: rgb(34, 171, 166);
}
.page-clients .section-title {
    text-align: left;
    font-size: 30px;
}
.clients-bg {
    background: #f6f6f6;
    text-align: center;
}
@media (max-width:767px) {
    .clients-bg img {
        margin-bottom: 20px;
    }
    .intro-section.testimonials-section {
        height: auto;
    }
}
.clients-intro {
    margin-top: 50px;
}
@media (max-width:991px) {
    .clients-intro {
        margin-top: 30px;
    }
}
.page-services .tab-content {
    padding: 0 5px 20px;
}
.page-maintenance #wrapper {
    background: transparent;
}
.page-maintenance .section-full-height {
    padding-top: 90px;
    padding-bottom: 60px;
}
.page-maintenance .copy-rights {
    position: absolute;
    bottom: 30px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
}
.page-maintenance .section-title {
    font-weight: 500;
    color: rgba(254, 254, 254, 0.9);
}
.page-maintenance p {
    color: rgba(254, 254, 254, 0.9);
    line-height: 28px;
    font-size: 16px;
    font-family: "Open Sans", "Helvetica New", "Arial", sans-serif;
}
.page-maintenance .contact-info .fa {
    padding: 10px;
    color: #fcfcfc;
    background-color: rgba(34, 171, 166, 0.7);
    width: 35px;
    height: 35px;
    border-radius: 5px;
}
.page-maintenance .contact-info a {
    color: rgba(254, 254, 254, 0.9);
}
.page-maintenance .contact-info a:hover {
    color: rgb(34, 171, 166);
}
@media (min-width:992px) {
    .page-maintenance #wrapper {
        height: 100%;
    }
}
@media (max-width:991px) {
    .page-maintenance .section-full-height {
        padding-top: 80px;
    }
}
@media (max-width:767px) {
    .page-maintenance .contact-info p {
        margin-bottom: 30px;
        text-align: left;
    }
    .page-maintenance .section-full-height {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .page-maintenance .copy-rights {
        left: 15px;
        -ms-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.init-countdown .countdown {
    display: inline-block;
    border-bottom: 4px solid rgb(34, 171, 166);
    padding: 40px 50px 30px;
    color: #444;
    font-family: "Open Sans";
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    width: 230px;
    margin-bottom: 35px;
}
.init-countdown .counter {
    display: block;
    font-size: 80px;
    color: rgb(34, 171, 166);
}
.init-countdown .time {
    display: block;
    text-transform: uppercase;
    margin-top: 60px;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: 400;
    color: rgba(254, 254, 254, 0.9);
}
.mfp-bg, .mfp-wrap {
    z-index: 999999;
}
.mfp-counter {
    width: 50px;
    text-align: right;
}
.mfp-close {
    color: #fcfcfc;
    cursor: pointer;
}
.mfp-close:hover {
    color: rgb(34, 171, 166);
    cursor: pointer;
}
.mfp-zoom-out-cur .header-wrapper {
    z-index: 0!important;
}
button.mfp-arrow {
    background-color: rgba(0, 0, 0, 0.6);
}
.mfp-arrow-left:before {
    border-right: none;
}
.mfp-arrow-left:after {
    border-right: 20px solid #fcfcfc;
    margin-left: 25px;
}
.mfp-arrow-right:before {
    border-left: none;
}
.mfp-arrow-right:after {
    border-left: 20px solid #fcfcfc;
}
@media (max-width: 767px) {
    .sidebar {
        margin-top: 60px;
    }
    .sidebar-2 {
        margin-bottom: 60px;
    }
}
@media (min-width:768px) {
    .space-right {
        padding-right: 25px;
    }
    .space-left {
        padding-left: 25px;
    }
}
@media (max-width:991px) {
    .sidebar-3 {
        margin-top: 60px;
    }
    .page-sidebars {
        margin-bottom: 50px;
    }
}
.page-sidebars {
    padding: 0 20px;
}
.sidebar-widget {
    overflow: visible;
    margin-bottom: 40px;
    display: block;
    position: relative;
}
@media (max-width:767px) {
    .sidebar .sidebar-widget:last-child {
        margin-bottom: 10px;
    }
}
.sidebar-widget .tab-content {
    padding: 25px 0 0;
}
.sidebar-widget .sidebar-title {
    margin: 0 0 25px;
    font-size: 19px;
    font-weight: 400;
    color: #444;
}
.sidebar-widget .input-group input {
    width: 100%;
    padding: 5px;
    opacity: 0.8;
    text-indent: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
}

.sidebar-widget .input-group .btn {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px;
    background-color: rgb(34, 171, 166);
    border: 1px solid rgb(34, 171, 166);
    text-align: center;
    -webkit-transition: all 0.5s ease-in;
    transition: all 0.5s ease-in;
}
.sidebar-widget .input-group .btn:hover, .sidebar-widget .input-group .btn:focus {
    background-color: rgba(34, 171, 166, 0.8);
    -webkit-transition: all 0.4s ease-in;
    transition: all 0.4s ease-in;
}
.sidebar-widget .input-group .btn .fa {
    margin-right: 0;
}
.partner-logo:hover{
    opacity: 0.8;
    -webkit-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    -ms-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}
.sidebar-widget .tags a, .blog-item .tags a, .footer-widget .tags a {
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 5px 10px;
    border-radius: 1px;
    background-color: rgb(34, 171, 166);
    font-size: 12px!important;
    line-height: 1.4em!important;
    color: #fcfcfc;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 1px;
    -webkit-transition: all .7s linear;
    transition: all .7s linear;
}
.sidebar-widget .tags a:hover, .blog-item .tags a:hover, .footer-widget .tags a:hover {
    background-color: #453951;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
    color: #fcfcfc;
}
.sidebar-widget .tags i, .blog-item .tags i, .footer-widget .tags i {
    margin-right: 5px;
}
.sidebar-widget .categories {
    padding: 0;
    list-style: none;
}
.sidebar-widget .categories li {
    padding-bottom: 20px;
    display: flex;
    justify-content: start;
}
.sidebar-widget .categories li:last-child {
    padding-bottom: 0;
}
.sidebar-widget .categories li a {
    padding-top: 5px;
    color: #778888;
}
.sidebar-widget .categories li:hover a, .sidebar-widget .categories .active a {
    color: rgb(34, 171, 166);
    text-decoration: none;
}
.sidebar-widget .categories li span {
    /*margin-left: -35px;*/
    height: 35px;
    background-color: rgb(34, 171, 166);
    color: #fcfcfc;
    padding: 5px 10px;
    margin-right: 5px;
    border-radius: 1px;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.sidebar-widget .categories li:hover span, .sidebar-widget .categories .active span {
    background-color: #453951;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.sidebar-widget .latest-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}
.sidebar-widget .latest-posts li {
    clear: both;
    margin-bottom: 25px;
}
.sidebar-widget .latest-posts .image-post {
    float: left;
    width: 70px;
    height: 70px;
    display: block;
}
.sidebar-widget .latest-posts .image-post img {
    width: 70px;
    height: 60px;
}
.sidebar-widget .latest-posts h5 {
    margin-bottom: 8px;
}
.sidebar-widget .latest-posts h5 a {
    font-size: 16px;
    font-weight: 400;
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.sidebar-widget .latest-posts h5 a:hover {
    text-decoration: none;
    color: rgba(34, 171, 166, 0.6);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.sidebar-widget .latest-posts .info-post {
    margin-left: 85px;
    padding-top: 5px;
}
.sidebar-widget .latest-posts .info-post span {
    font-size: 13px;
}
.navigation-sidebar ul {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 5px;
}
.navigation-sidebar li a {
    display: block;
    color: #778899;
    padding: 10px 0 10px 10px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.navigation-sidebar li .fa {
    margin-right: 10px;
    margin-left: 10px;
    color: #777;
}
.navigation-sidebar .active a, .navigation-sidebar .current a, .navigation-sidebar li a:hover, .navigation-sidebar li a:focus {
    border-left: 2px solid #453971;
    color: #453971;
    padding-left: 20px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.jobs-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.jobs-list>li {
    margin-bottom: 10px;
}
.jobs-list>li>a {
    color: #778888;
}
.jobs-list>li>a:hover, .jobs-list>li>a:focus, .jobs-list>li>a.active {
    color: rgb(34, 171, 166);
}
.jobs-list>li.job-location {
    margin: 45px 0 22px;
    text-transform: uppercase;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
}
.jobs-list>li.job-location:after {
    content: "";
    display: block;
    height: 1px;
    width: 30px;
    margin-top: 5px;
    border-top: 1px dashed rgb(34, 171, 166);
}
.jobs-list>li.job-location:first-child {
    margin: 8px 0 25px;
}
.form-control {
    border-radius: 2px;
    background-color: #fcfcfc;
    border: 1px solid #bbb;
}
.form-control:focus {
    background-color: #fefefe;
    border-color: rgb(34, 171, 166);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(34, 171, 166, 0.9);
}
.form-message-error {
    color: #DF1111;
    font-size: 12px;
    font-weight: 500;
}
.form {
    width: 100%;
}
.form input[type], .form textarea {
    width: 100%;
    margin-top: 10px;
    padding: 5px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    outline: none;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
    color: #778888;
    background: #fdfdfd;
    border: solid 1px #bbb;
}
.form input[type]:focus, .form textarea:focus {
    border: solid 1px rgb(34, 171, 166);
    background-color: #fff;
}
.form input[type="submit"] {
    width: 35%;
    height: 30px;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: background 0.1s linear;
    transition: background 0.1s linear;
    background: rgb(34, 171, 166);
    color: #fcfcfc;
}
.form input[type="submit"]:hover, .form input[type="submit"]:focus {
    background: rgba(34, 171, 166, 0.9);
}
.form.form-2 .required, p>.required, .form-required {
    color: #C51010;
    font-weight: 400;
    vertical-align: middle;
    font-size: 13px;
}
p.required {
    margin: 10px 0 0;
}
.form.form-2 label {
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
}
.form.form-2 input {
    margin-top: 5px!important;
}
.form.form-2 .form-control {
    height: 40px;
}
.form.form-2 .form-control:focus {
    border-color: rgb(34, 171, 166);
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 2px rgba(34, 171, 166, 0.8);
}
.form.form-2 select.form-control {
    margin-top: 5px;
    color: #778888;
    padding: 5px;
    border: 1px solid #bbb;
}
.form.form-2 textarea.form-control {
    height: auto;
}
.form.form-2 input[type=radio], .form.form-2 input[type=checkbox] {
    width: auto;
    margin-right: 5px;
}
.form.form-2 .remember {
    display: inline-block;
    margin-right: 15px;
}
.form-group {
    position: relative;
}
.has-feedback label~.form-control-feedback {
    top: 30px;
}
.form-icon:after {
    content: "\f140";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    right: 14px;
    top: 5px;
}
.form-icon.icon-user:after {
    content: "\f007";
}
.form-icon.icon-email:after {
    content: "\f0e0";
}
.form-icon.icon-message:after {
    content: "\f039";
}

.field-contactform-name:after {
    content: "\f007";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    right: 14px;
    top: 5px;    
}
.field-contactform-email:after {
    content: "\f0e0";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    right: 14px;
    top: 5px;    
}
.field-contactform-body:after {
    content: "\f039";
    font-family: "FontAwesome";
    font-size: 15px;
    position: absolute;
    right: 14px;
    top: 5px;    
}


.progress {
    border-radius: 2px;
    box-shadow: none;
    height: 25px;
    margin-bottom: 15px;
    background-color: #f2f2f2;
}
.progress-bar {
    text-align: left;
    background-color: rgb(34, 171, 166);
    text-indent: 2px;
    line-height: 23px;
    color: #fcfcfc;
}
.progress-bar-animate {
    -webkit-transition: width 1.5s ease;
    transition: width 1.5s ease;
}
.progress-bar span {
    margin-left: 10px;
}
.progress-bar .fa {
    margin-right: 8px;
}
.progress .progress-bar-info {
    background-color: #5bc0de!important;
}
.progress .progress-bar-danger {
    background-color: #d9534f!important;
}
.progress .progress-bar-warning {
    background-color: #f0ad4e!important;
}
.progress .progress-bar-success {
    background-color: #5cb85c!important;
}
.progress .progress-bar-primary {
    background-color: #428bca!important;
}
.table th, .table td {
    padding: 12px!important;
}
.panel-group .panel {
    border-radius: 0;
}
.panel-group .panel-default {
    border-radius: 0;
    border: none;
}
.panel-group .panel-default .panel-heading {
    color: #fcfcfc;
    background: rgb(34, 171, 166);
    border-color: rgb(34, 171, 166);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    padding: 8px 15px;
}
.panel-group .panel-default .panel-body {
    border-top: none!important;
    border-bottom: 1px solid rgb(34, 171, 166);
    background: #f9f9f9;
}
.panel-group .panel-default .panel-title {
    color: #fcfcfc;
}
.panel-group .panel-default .panel-title a {
    display: block;
}
.panel.panel-2 .panel-heading {
    color: #fcfcfc;
    background: rgb(34, 171, 166);
    border-color: rgb(34, 171, 166);
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.panel.panel-2 .panel-body {
    border-top: none!important;
    border-bottom: 1px solid rgb(34, 171, 166);
    background: #f9f9f9;
}
.panel.panel-3 .panel-heading {
    color: #fcfcfc;
    background: rgb(34, 171, 166);
    border: 1px solid rgb(34, 171, 166);
}
.panel.panel-3 .panel-body {
    border: 1px solid rgb(34, 171, 166);
    background: #f9f9f9;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
.panel-group.panel-group-2 .panel {
    border-radius: 5px!important;
}
.panel.panel-4 {
    box-shadow: none;
    background-color: #fcfcfc;
}
.panel.panel-4 .panel-heading {
    color: #555;
    background-color: #fcfcfc;
    border-color: #fcfcfc;
    padding: 5px 0 5px 20px;
    margin-bottom: 20px;
    border-left: 1px solid rgb(34, 171, 166);
    border-radius: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
}
.panel.panel-4 .panel-heading:hover {
    border-left: 2px solid rgb(34, 171, 166);
    padding: 5px 0 5px 35px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}
.panel.panel-4 .panel-body {
    background-color: #fcfcfc;
    border-top: none!important;
    padding: 0 0 0 20px;
}
.panel.panel-4 .panel-title a {
    color: #555;
    display: block;
}
.panel.panel-4 .panel-title a:hover {
    color: rgb(34, 171, 166);
}
.tab-content {
    padding: 20px 5px;
}
.nav-tabs {
    border-bottom: 1px solid rgb(34, 171, 166);
}
.nav-tabs>li {
    float: left;
    margin-bottom: -1px;
}
.nav-tabs>li>a {
    border: none;
    border-radius: 0;
    border-top-right-radius: 2px;
    border-top-left-radius: 2px;
    color: #778888;
}
.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd;
}
.nav-tabs>li.active>a, .nav-tabs>li.active>a:hover, .nav-tabs>li.active>a:focus, .nav-tabs>li>a:hover, .nav-tabs>li>a:focus {
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
    border: none;
    border-bottom-color: transparent;
}
.nav-tabs.vertical {
    border-bottom: none;
}
.nav-tabs.vertical li {
    float: none;
    margin-bottom: 10px;
    line-height: 16px;
}
.nav-tabs.vertical li a {
    border-radius: 2px;
}
@media (max-width:767px) {
    .nav-tabs>li {
        float: none;
        margin-bottom: 5px;
    }
    .nav-tabs {
        border-bottom: none;
    }
    .nav-tabs>li>a {
        border-radius: 2px;
    }
}
.btn {
    border-radius: 2px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-bottom: 3px;
}
.btn:hover {
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.btn .fa {
    margin-right: 5px;
}
.btn-default {
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
    border-color: rgb(34, 171, 166);
}
.btn-default:hover, .btn-default:active, .open .dropdown-toggle.btn-default {
    color: rgb(34, 171, 166);
    background: transparent;
    border: 1px solid rgb(34, 171, 166);
}
.dropdown-menu>li>a:hover, .dropdown-menu>li>a:focus {
    text-decoration: none;
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
}
.v-btn {
    border-radius: 0;
    color: rgb(34, 171, 166);
    background-color: transparent;
    border-color: rgb(34, 171, 166);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.v-btn:hover, .v-btn:focus {
    color: #fff;
    background-color: rgb(34, 171, 166);
    border-color: rgb(34, 171, 166);
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.v-btn.icon i.fa, .btn.icon i.fa {
    margin-right: 5px;
}
.btn.rounded {
    border-radius: 3px;
}
.v-btn-2, .v-btn-3 {
    border-radius: 0;
    color: #fcfcfc;
    background: rgb(34, 171, 166);
    padding: 10px 16px;
    border: none;
}
.v-btn-2:hover, .v-btn-2:focus, .v-btn-2:active {
    color: #fcfcfc;
    background-color: #453951!important;
}
.v-btn-3:hover, .v-btn-3:focus, .v-btn-3:active {
    color: #fcfcfc;
    background: rgb(31, 148, 144);
}
.btn-gray {
    background: #a5b3b4;
    border: 1px solid #9eadae;
    color: #fff;
}
.btn-gray:hover, .btn-gray:focus, .btn-gray:active {
    background: #889899;
    border: 1px solid #809192;
    color: #fff;
}
.btn-dark {
    background: #1b1f24;
    border: 1px solid #191d21;
    color: #A5AFB8;
}
.btn-dark:hover, .btn-dark:focus, .btn-dark:active {
    background: #16191d;
    border: 1px solid #14171a;
    color: #9ca7b1;
}
.btn-purple {
    color: #fff;
    background-color: #852b99;
    border: 1px solid #842b88;
}
.btn-purple:hover, .btn-purple:focus, .btn-purple:active {
    background-color: #6d1b81;
    color: #fff;
    border: 1px solid #6a1a77;
}
.btn.btn-bg {
    color: #fcfcfc;
    border: none;
    padding: 8px 14px;
}
.btn.btn-bg:hover, .btn.btn-bg:focus, .btn.btn-bg:active {
    background-color: #555!important;
    color: #fcfcfc;
}
.btn.facebook {
    background-color: #677fb5;
}
.btn.twitter {
    background-color: #70c2e9;
}
.btn.google-plus {
    background-color: #bc7067;
    ;
}
.btn.behance {
    background-color: #42a9fb;
}
.btn.pinterest {
    background-color: #d8545d;
}
.btn.flickr {
    background-color: #ff3ba4;
}
.btn.dribbble {
    background-color: #e299c2
}
.btn.linkedin {
    background-color: #3daccf;
}
.btn.skype {
    background-color: #5ecbf3;
}
.btn.github-alt {
    background-color: #6c93bb;
}
.btn.instagram {
    background-color: #b99682;
}
.btn.soundcloud {
    background-color: #ff8b45;
}
.tooltip-inner {
    padding: 5px 10px;
    border-radius: 0;
}
.alert.alert-2 {
    border-radius: 0;
    color: #fcfcfc;
}
.alert.alert-2 p {
    color: #fcfcfc;
}
.alert.alert-2 .fa {
    display: block;
    float: left;
    margin: 5px 20px 15px 5px;
}
.alert.alert-2.alert-dismissable .close {
    opacity: .5;
}
.alert.alert-2 a {
    color: rgba(255, 255, 255, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.alert.alert-2 a:hover, .alert.alert-2 a:focus {
    color: rgba(255, 255, 255, 1);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.alert.alert-3 {
    border-radius: 0;
    color: #444;
    border: 1px solid #222;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
.alert.alert-3 p {
    color: #444;
    font-family: "Open Sans", "Helvetica New", Arial, sans-serif;
}
.pagination {
    margin: 20px 0 5px;
}
.pagination li a {
    border: none;
    margin-right: 10px;
    color: rgb(34, 171, 166);
    background-color: #fcfcfc;
    border-radius: 3px;
}
@media (max-width:767px) {
    .pagination li a {
        margin-bottom: 5px;
    }
}
.pagination .active a {
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
    border-radius: 3px;
}
.pagination li:first-child.disabled a {
    padding-left: 0!important;
}
.pagination li:first-child a {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.pagination li:last-child a {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.pagination li a:hover {
    background-color: rgb(34, 171, 166);
    color: #fcfcfc;
}
.pagination .active a:hover {
    background-color: #453971;
}
.pagination .disabled a {
    background: none;
    border: none;
    color: #778888;
}
.pagination.pagination-2 li a {
    color: #fcfcfc;
    background-color: #ddd;
    border: 0;
    border-radius: 4px;
}
.pagination.pagination-2.dark li a {
    background-color: #444;
    color: #eee;
}
.pagination.pagination-2 .active a, .pagination.pagination-2.dark .active a {
    background-color: rgb(34, 171, 166);
}
.pagination.pagination-2 li a:hover {
    background-color: rgb(34, 171, 166);
    color: #fcfcfc;
    border: 0;
}
.pagination.pagination-2 .active a:hover {
    background-color: #453971;
    color: #fcfcfc;
}
.pagination.pagination-2 .disabled a, .pagination.pagination-2 .disabled a:hover, .pagination.pagination-2 .disabled a:focus, .pagination.pagination-2.dark .disabled a, .pagination.pagination-2.dark .disabled a:hover, .pagination.pagination-2.dark .disabled a:focus {
    background-color: transparent;
    color: #778888;
}
.pagination.pagination-3 li a {
    border: 1px solid rgb(34, 171, 166);
    border-radius: 2px;
}
.pagination.pagination-3 li.disabled a {
    border: 1px solid #ddd;
}
.pagination.pagination-3 .active a:hover {
    background-color: #453971;
    border-color: #453971;
}
.media, .media .media {
    margin-top: 25px;
}
h4.media-heading {
    color: #444;
    font-size: 17px;
    margin: 0 0 6px;
}
.media-heading .date {
    margin-left: 20px;
    font-size: 12px;
}
.media-heading .date i {
    margin-right: 5px;
    color: rgb(34, 171, 166);
}
.media-heading .reply {
    margin-left: 20px;
    font-size: 13px;
}
.media-heading .reply a:hover {
    text-decoration: none;
    color: #453951;
}
.media .media-object {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.media-heading>.user {
    color: #444;
}
.media-heading>.user:hover, .media-heading>.user:focus, .media-heading>.user:active {
    color: rgb(34, 171, 166);
}
.media>.pull-left {
    margin-right: 20px;
}
@media (max-width:767px) {
    #blog-posts .media, #blog-posts .media-body {
        overflow: visible!important;
    }
    .media>.pull-left {
        display: none;
    }
    .media-heading>.user {
        display: block;
    }
    .media-heading .date {
        margin-left: 0;
    }
}
.blockquote-1 {
    border-left: 3px solid rgb(34, 171, 166);
    background: #f9f9f9;
}
.blockquote-1 p {
    font-size: 15px;
    line-height: 26px;
    color: #999;
}
.blockquote-1 cite {
    color: rgb(34, 171, 166);
    font-size: 14px;
}
.blockquote-1 small {
    display: inline-block;
    font-size: 13px;
}
.blockquote-1.blockquote-reverse {
    border-left: 0;
    border-right: 3px solid rgb(34, 171, 166);
}
.blockquote-2 {
    border-left: 3px solid #ddd;
    font-size: 16px;
}
.blockquote-2.blockquote-reverse {
    border-right: 3px solid #ddd;
    border-left: 0;
}
.bg {
    padding: 5px 10px;
    border-radius: 3px;
}
.bg.bg-main {
    color: #fcfcfc;
    background: rgb(34, 171, 166);
}
.bg.bg-primary {
    color: #fcfcfc;
}
.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
}
.well.well-2 {
    min-height: 20px;
    padding: 25px;
    margin-bottom: 40px;
    background-color: #f6f6f6;
    border: none;
    border-top: 2px solid rgb(34, 171, 166);
    border-bottom: 2px solid rgb(34, 171, 166);
    border-radius: 0;
    box-shadow: none;
}
.well.well-3 {
    background-color: #fcfcfc;
    border: 1px solid #ddd;
    border-top: 3px solid rgb(34, 171, 166);
}
.well.well-4 {
    background-color: #f6f6f6;
    border: none;
    border-left: 3px solid rgb(34, 171, 166);
    border-right: 3px solid rgb(34, 171, 166);
}
.well.well-5 {
    background-color: #f6f6f6;
    border: 1px solid #ddd;
    border-top: 3px solid rgb(34, 171, 166);
}
.well.well-6 {
    background-color: #f6f6f6;
    border: none;
    border-top: 3px solid rgb(34, 171, 166);
    border-bottom: 3px solid rgb(34, 171, 166);
}
.fa.fa-border {
    border: 2px solid #ddd;
}
.fa.fa-bg {
    background-color: #f0f0f0;
    padding: 10px;
    border-radius: 3px;
}
.section-references {
    position: relative;
    background-color: #FCFCFC;
}
.section-references .fa.fa-bg {
    cursor: pointer;
}
.fa.fa-bg-2 {
    background-color: #f0f0f0;
    padding: 15px;
    border-radius: 50%;
}
.fa.fa-bg-3 {
    background-color: #444;
    padding: 15px;
    border-radius: 50%;
}
@media (max-width:767px) {
    .fa-border, .fa-bg, .fa-bg-2, .fa-bg-3 {
        margin-bottom: 5px;
    }
}
.box-icon {
    font-size: 13px;
    width: 28px;
    height: 28px;
    color: #fafafa;
    padding-top: 7px;
    /*background-color: rgb(34, 171, 166);*/
    background-color: rgb(0, 118, 190);
    text-align: center;
    vertical-align: middle;
    border-radius: 4px;
}
.fa-services {
    font-size: 40px;
    color: #fafafa;
    background-color: #555;
    padding: 20px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
.fa-advantages {
    font-size: 40px;
    padding: 5px 0 0 0;
    border-radius: 50%;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
.box-content:hover .fa-services {
    /*background-color: rgb(34, 171, 166);*/
    background-color: rgb(0, 118, 190);
    box-shadow: inset 2px 1px 4px rgba(0, 0, 0, .6);
    color: rgba(255, 255, 255, .9);
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}
.popover {
    border-radius: 0;
}
.popover-title {
    padding: 10px 14px 0;
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 18px;
    background-color: inherit;
    border-bottom: none;
    border-radius: 0;
}
.popover-content {
    font-size: 13px;
    color: #555;
}
.modal {
    z-index: 999999;
}
.modal-content {
    border-radius: 1px;
}
.modal-open .main-header, .modal-open .header-wrapper {
    z-index: 100;
}
.dropcap {
    float: left;
    color: #778888;
    font-size: 50px;
    line-height: 45px;
    padding: 8px 18px 0 2px;
    font-family: Georgia;
}
.dropcap2 {
    float: left;
    font-family: Georgia;
    text-align: center;
    padding: 10px 15px;
    margin: 8px 16px 0 2px;
    background-color: #555;
    color: rgba(254, 254, 254, 0.9);
    font-size: 40px;
    line-height: 35px;
    border-radius: 4px;
}
.dropcap2.bordered {
    background-color: transparent;
    color: #778888;
    border-radius: 4px;
    border: 1px solid #778888;
}
.dropcap2.dashed {
    border-style: dashed;
}
.dropcap2.shadow {
    box-shadow: 0 2px 4px #778888;
}
.dropcap2.circle {
    border-radius: 50%;
}
.divider {
    height: 1px;
    background-color: #ccc;
    margin: 30px auto;
}
.divider.w75 {
    width: 75%;
}
.divider.w50 {
    width: 50%;
}
.divider.w25 {
    width: 25%;
}
.divider.d2 {
    background: none;
    border-top: 1px dashed #ccc;
}
.divider.d3:after {
    content: "";
    display: block;
    width: 25%;
    height: 1px;
    position: relative;
    background-color: rgb(34, 171, 166);
    top: -1px;
    margin: 0 auto;
}
.divider.d4 {
    text-align: center;
    margin: 40px auto;
}
.divider.d4 span {
    background: #fcfcfc;
    color: #778888;
    padding: 0 18px;
    position: relative;
    top: -12px;
    font-size: 14px;
}
.divider.d5 {
    background: none;
    border-top: 1px dashed #ccc;
    border-bottom: 1px solid #ccc;
}
.divider.d4.text-left span {
    padding: 0 18px 0 0;
}
.divider.d4.text-right span {
    padding: 0 0 0 18px;
}
.testimonial-content {
    font-family: "Open Sans", sans-serif;
    font-style: italic;
    background-color: #f8fafa;
    color: #778888;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    position: relative;
    padding: 25px 20px 5px 50px;
    margin-bottom: 25px;
    font-size: 14px;
    border: 1px solid #e5eaea;
    border-radius: 3px;
}
.testimonial-content:before {
    display: block;
    font-family: FontAwesome;
    content: "\f10e";
    font-size: 18px;
    position: absolute;
    top: 28px;
    font-style: normal;
    left: 18px;
    color: rgba(20, 20, 20, 0.3);
}
.testimonial-content:after {
    content: '';
    display: block;
    width: 35px;
    height: 35px;
    background-color: #f8fafa;
    border-bottom: 1px solid #e5eaea;
    -ms-transform: rotate(-25deg);
    -webkit-transform: rotate(-25deg);
    transform: rotate(-25deg);
    position: absolute;
    bottom: -10px;
    left: 64px;
}
.testimonial-photo {
    float: left;
    margin-right: 20px;
}
.testimonial-photo img {
    border-radius: 50%;
    height: 75px;
    width: 75px;
}
.testimonial-author-info {
    padding: 7px 0 0 88px;
}
.testimonial-author-info h4 {
    font-size: 17px;
    margin-bottom: 2px;
}
.testimonial-2 .testimonial-content {
    font-family: "Open Sans", sans-serif;
}
.testimonial-3 .testimonial-content {
    background-color: #404040;
    color: rgba(254, 254, 254, 0.9);
    border: 1px solid #202020;
}
.testimonial-3 .testimonial-content:before {
    color: rgba(254, 254, 254, 0.7);
}
.testimonial-3 .testimonial-content:after {
    background-color: #404040;
    border-bottom: 1px solid #202020;
}
.testimonial-4 .testimonial-content {
    background-color: rgb(34, 171, 166);
    color: rgba(254, 254, 254, 0.9);
    border: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .3);
}
.testimonial-4 .testimonial-content:before {
    color: rgba(254, 254, 254, 0.7);
}
.testimonial-4 .testimonial-content:after {
    background-color: rgb(34, 171, 166);
    border-bottom: none;
    bottom: -9px;
}
.testimonial.dark .testimonial-content, .testimonial.dark .testimonial-content p {
    color: #444;
}
.testimonial-4.dark .testimonial-content, .testimonial-4.dark .testimonial-content p, .testimonial.dark .testimonial-author-info h4, .testimonial.dark .testimonial-author-info p {
    color: rgba(254, 254, 254, 0.9);
}
.footer-wrapper {
    position: relative;
    z-index: 50;
    background: #303030;
    color: #e0e0e0;
    /*border-top: 2px solid rgb(34, 171, 166);*/
    border-top: 2px solid rgb(0, 118, 190);
}
.footer-wrapper p, .footer-wrapper a {
    color: #e0e0e0;
}
.footer-wrapper a:hover {
    /*color: rgb(34, 171, 166);*/
    color: rgb(0, 118, 190);
}
@media (min-width:768px) {
    .footer-fixed-bottom {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: -1;
    }
}
.main-footer {
    padding-top: 30px;
}
@media (max-width:767px) {
    .main-footer .social-icon.pull-right {
        float: none!important;
        margin-bottom: 20px;
    }
}
.footer-widget {
    margin-bottom: 40px;
}
.widget-title {
    font-size: 18px;
    margin: 0 0 24px 0;
    color: #f0f0f0;
}
.footer-widget .contact-info p {
    margin-bottom: 15px;
}
.footer-address span {
    margin-right: 40px;
}
.footer-wrapper .nav-tabs>li>a {
    text-transform: uppercase;
    color: #e0e0e0;
    width: 90%;
}
.footer-wrapper .nav-tabs>.active>a {
    color: #fcfcfc;
}
.footer-wrapper .tab-content {
    padding: 0;
}
@media (min-width:768px) {
    .footer-wrapper .nav-tabs>li>a {
        width: 100%;
    }
    .footer-wrapper .tab-content .footer-widget {
        padding: 0 15px;
    }
}
.footer-projects {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-projects li {
    display: inline-block;
    margin: 0 10px 15px 0;
}
.footer-projects img {
    width: 70px;
    height: 70px;
    -webkit-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
}
.footer-projects img:hover {
    opacity: 0.6;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.sub-footer {
    padding: 20px 0;
    background-color: #2c2c2c;
    font-size: 13px;
}
.sub-footer p {
    margin: 0;
}
.white-sub-footer {
    background-color: #fcfcfc;
    color: #778888;
}
.white-sub-footer p, .white-sub-footer .footer-menu a {
    color: #778888;
}
@media (max-width:767px) {
    .sub-footer .pull-left, .sub-footer .pull-right {
        float: none!important;
    }
    .sub-footer p {
        margin-bottom: 15px;
    }
}
.footer-menu {
    margin: 0;
    padding: 0;
}
.footer-menu>li {
    margin-right: 15px;
    display: inline-block;
    list-style: none;
}
.footer-menu>li:last-child {
    margin-right: 0;
}
.footer-hr {
    margin: 0 0 50px;
    border-top: 2px solid #3d3d3d;
    box-shadow: 0 0 2px rgba(0, 0, 0, .7);
}
.footer-wrapper .about-more {
    color: rgb(34, 171, 166);
    font-size: 13px;
}
.footer-wrapper .about-more:hover {
    color: rgba(34, 171, 166, 0.7);
}
.main-footer .form-control, .main-footer .input-group-btn .btn {
    border-radius: 0;
}
.main-footer .input-group-btn .btn {
    color: #fcfcfc;
    background-color: rgb(34, 171, 166);
    border: 1px solid rgb(34, 171, 166);
}
.main-footer .input-group-btn .btn:hover {
    background-color: rgba(34, 171, 166, 0.7);
    border: 1px solid rgba(34, 171, 166, 0.7);
}
.footer-posts {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-posts>li {
    margin-bottom: 15px;
}
.footer-posts>li:last-child {
    margin-bottom: 0;
}
.footer-posts .fa {
    /*color: rgb(34, 171, 166);*/
    color: rgb(0, 118, 190);
    margin-right: 10px;
}
.footer-posts small {
    margin-left: 20px;
    font-size: 11px;
    color: #ddd;
}
.social-icon {
    padding: 0;
    margin: 0;
    font-size: 0;
    height: 28px;
}
.image-caption .social-icon {
    height: 33px
}
.social-icon li {
    display: inline-block;
    margin-right: 8px;
}
.text-center .social-icon li {
    margin: 0 2px
}
.social-icon li a {
    display: table;
}
.social-icon .fa {
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    width: 28px;
    height: 28px!important;
    line-height: 1;
    font-size: 14px;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    color: #aaa;
    background: none;
}
.social-icon.dark-2 a .fa {
    color: #e0e0e0;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 13px;
    background-color: #2c2c2c;
    padding: 7px;
}
.social-icon.dark-2 a:hover .fa {
    color: #fafafa;
}
.social-icon.dark-2>li:last-child {
    margin-right: 0;
}
.social-icon.border .fa {
    border: 1px solid;
}
.social-icon a:hover .fa {
    background-color: #fcfcfc;
}
.social-icon a:hover {
    text-decoration: none;
}
.social-icon.circle .fa {
    border-radius: 50%;
}
.social-icon.rounded .fa {
    color: #aaa;
    border-radius: 3px;
}
.social-icon.main .fa {
    background-color: rgb(34, 171, 166);
    color: #fcfcfc;
}
.social-icon.dark .fa {
    color: #fcfcfc;
    background-color: #666;
}
.social-icon.gray .fa {
    color: #fcfcfc;
    background-color: #999;
}
.social-icon a:hover i, .footer-wrapper .social-icon li a:hover i {
    color: #fafafa;
}
.social-icon .fa-pinterest {
    border-color: #d8545d;
    color: #d8545d;
}
.social-icon .fa-rss {
    border-color: #faaa5e;
    color: #faaa5e;
}
.social-icon .fa-facebook {
    border-color: #677fb5;
    color: #677fb5;
}
.social-icon .fa-twitter {
    border-color: #70c2e9;
    color: #70c2e9;
}
.social-icon .fa-flickr {
    border-color: #ff3ba4;
    color: #ff3ba4;
}
.social-icon .fa-dribbble {
    border-color: #e299c2;
    color: #e299c2;
}
.social-icon .fa-behance {
    border-color: #42a9fb;
    color: #42a9fb;
}
.social-icon .fa-linkedin {
    border-color: #3daccf;
    color: #3daccf;
}
.social-icon .fa-vimeo-square {
    border-color: #42b5d4;
    color: #42b5d4;
}
.social-icon .fa-youtube {
    border-color: #d5615c;
    color: #d5615c;
}
.social-icon .fa-skype {
    border-color: #5ecbf3;
    color: #5ecbf3;
}
.social-icon .fa-tumblr {
    border-color: #829fb9;
    color: #829fb9;
}
.social-icon .fa-digg {
    border-color: #507faa;
    color: #507faa;
}
.social-icon .fa-github-alt {
    border-color: #6c93bb;
    color: #6c93bb;
}
.social-icon .fa-google-plus {
    border-color: #bc7067;
    color: #bc7067;
}
.social-icon .fa-lastfm {
    border-color: #cd443d;
    color: #cd443d;
}
.social-icon .fa-spotify {
    border-color: #9acf48;
    color: #9acf48;
}
.social-icon .fa-instagram {
    border-color: #b99682;
    color: #b99682;
}
.social-icon .fa-paypal {
    border-color: #5b85a8;
    color: #5b85a8;
}
.social-icon .fa-soundcloud {
    border-color: #ff8b45;
    color: #ff8b45;
}
.social-icon a:hover .fa-pinterest, .social-icon.with-bg .fa-pinterest {
    background-color: #d8545d;
}
.social-icon a:hover .fa-rss, .social-icon.with-bg .fa-rss {
    background-color: #faaa5e;
}
.social-icon a:hover .fa-facebook, .social-icon.with-bg .fa-facebook {
    background-color: #677fb5;
}
.social-icon a:hover .fa-twitter, .social-icon.with-bg .fa-twitter {
    background-color: #70c2e9;
}
.social-icon a:hover .fa-flickr, .social-icon.with-bg .fa-flickr {
    background-color: #ff3ba4;
}
.social-icon a:hover .fa-dribbble, .social-icon.with-bg .fa-dribbble {
    background-color: #e299c2;
}
.social-icon a:hover .fa-behance, .social-icon.with-bg .fa-behance {
    background-color: #42a9fb;
}
.social-icon a:hover .fa-linkedin, .social-icon.with-bg .fa-linkedin {
    background-color: #3daccf;
}
.social-icon a:hover .fa-vimeo-square, .social-icon.with-bg .fa-vimeo-square {
    background-color: #42b5d4;
}
.social-icon a:hover .fa-youtube, .social-icon.with-bg .fa-youtube {
    background-color: #d5615c;
}
.social-icon a:hover .fa-skype, .social-icon.with-bg .fa-skype {
    background-color: #5ecbf3;
}
.social-icon a:hover .fa-tumblr, .social-icon.with-bg .fa-tumblr {
    background-color: #829fb9;
}
.social-icon a:hover .fa-digg, .social-icon.with-bg .fa-digg {
    background-color: #507faa;
}
.social-icon a:hover .fa-github-alt, .social-icon.with-bg .fa-github-alt {
    background-color: #6c93bb;
}
.social-icon a:hover .fa-google-plus, .social-icon.with-bg .fa-google-plus {
    background-color: #bc7067;
}
.social-icon a:hover .fa-lastfm, .social-icon.with-bg .fa-lastfm {
    background-color: #cd443d;
}
.social-icon a:hover .fa-spotify, .social-icon.with-bg .fa-spotify {
    background-color: #9acf48;
}
.social-icon a:hover .fa-instagram, .social-icon.with-bg .fa-instagram {
    background-color: #b99682;
}
.social-icon a:hover .fa-paypal, .social-icon.with-bg .fa-paypal {
    background-color: #5b85a8;
}
.social-icon a:hover .fa-soundcloud, .social-icon.with-bg .fa-soundcloud {
    background-color: #ff8b45;
}
.social-icon.with-bg [class*="fa-"] {
    color: #fcfcfc;
}
.social-icon.with-bg a:hover .fa {
    background-color: rgb(34, 171, 166);
}
.static-menu .menu-fixed {
    display: none;
}
.demo-titlebar .page-title {
    margin-top: 10px;
}
.demo-titlebar p {
    color: rgba(254, 254, 254, 0.9);
}
@media (max-width:767px) {
    .demo-titlebar .page-title {
        margin-bottom: 15px;
    }
}
.demo-buy {
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: 100px;
    right: 0;
    z-index: 99999;
    padding: 10px 15px;
    background: rgba(150, 39, 65, 0.8);
    color: #fcfcfc;
    text-align: center;
    border-left-top-radius: 2px;
    border-left-bottom-rarius: 2px;
}
.demo-buy:hover {
    background: rgb(150, 39, 65);
    color: #fafafa;
}
.template-settings, .change-sidebar {
    display: block;
    position: fixed;
    left: 0;
    top: 150px;
    width: 40px;
    height: 40px;
    background: rgba(22, 22, 22, 0.7);
    color: #fcfcfc;
    font-size: 22px;
    text-align: center;
    outline: none;
    z-index: 999999;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
}
.template-settings:hover, .template-settings:focus, .change-sidebar:hover, .change-sidebar:focus {
    background-color: rgba(22, 22, 22, 0.9);
    color: #fafafa;
}
.template-settings .fa {
    margin-top: 9px;
}
.settings-modal ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.settings-modal ul>li {
    display: inline-block;
    margin-right: 10px;
}
.settings-modal ul>li>a {
    width: 25px;
    height: 25px;
    display: block;
    background: #555;
}
.change-sidebar {
    top: 220px;
    padding-top: 7px;
}
.pull-off.on {
    right: 0;
}
.push-off.on {
    left: 0;
}
ul.vertical>li>ul.mega-submenu {
    display: none;
}
ul.vertical>li.active>ul.mega-submenu {
    display: block;
}

/*sim media*/
@media (max-width: 992px){
    .t-slider-left{
        font-size: 14px;
    }
    .t-slider-wr{
        font-size: 18px;
    }
    .slider-t-small {
        font-size: 14px;
    }
    .section-title.st2 {
        font-size: 20px;
        line-height: 25px;
    }

}

@media (max-width: 767px){
    .section {
        padding: 0;
    }
    .section-references{
        padding: 20px 0 0 0;
    }
    .t-slider-left {
        font-size: 8px;
        line-height: 14px;
        margin: 3px 0;
    }
    .t-slider-wr {
        font-size: 13px;
        line-height: 14px;
    }
    .slider-t-small {
        font-size: 12px;
        line-height: 14px;
    }
    .section-title.st2 {
        font-size: 20px;
        line-height: 25px;
        margin-bottom: 0;
        text-align: center!important;
    }
    .custom-section.cs2 {
        padding: 30px 20px 20px 20px;
    }
    .large-padding {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .parallax p {
        margin: 0 0;
    }
    .mb25 {
        margin-bottom: 18px!important;
    }
    .mb30 {
        margin-bottom: 0!important;
    }
    .mb35 {
        margin-bottom: 0px!important;
    }
    .mb40 {
        margin-bottom: 0px!important;
    }
    .mb50 {
        margin-bottom: 0!important;
    }
    .box-title {
        margin: 0;
    }
    h3 {
        font-size: 1.3em;
        text-align: center;
    }
    .btn {
        font-size: 12px;
    }
    .contact-section p {
        margin: 10px 0;
    }
    .box-right h3 {
        text-align: left;
    }
    .box-content p{
        display: none;
    }
    .box-content h3{
        margin: 14px 0 14px;
        font-size: 13px;
        line-height: 17px;
    }
    .fa-services {
        margin-top: 20px;
        font-size: 30px;
        padding: 14px;
        width: 60px;
        height: 60px;
    }
    .footer-hr {
        margin: 0 0 20px;
    }
    .widget-title {
        margin: 0 0 5px 0;
    }
}
