﻿@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

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

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

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

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

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

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

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

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

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }
    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    30% {
        -webkit-transform: scaleX(1.25) scaleY(.75);
        -ms-transform: scaleX(1.25) scaleY(.75);
        transform: scaleX(1.25) scaleY(.75)
    }
    40% {
        -webkit-transform: scaleX(.75) scaleY(1.25);
        -ms-transform: scaleX(.75) scaleY(1.25);
        transform: scaleX(.75) scaleY(1.25)
    }
    60% {
        -webkit-transform: scaleX(1.15) scaleY(.85);
        -ms-transform: scaleX(1.15) scaleY(.85);
        transform: scaleX(1.15) scaleY(.85)
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

@keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
}

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

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg);
        -ms-transform: scale(.9) rotate(-3deg);
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

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

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%)
    }
}

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9)
    }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3)
    }
}

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

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

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

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

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

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

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

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

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

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

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loaded {
    display: block;
    direction: ltr
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel .owl-refresh .owl-item {
    display: none
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto
}

.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.no-js .owl-carousel {
    display: block
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("../vendor/owlcarousel/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease
}

.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80)
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none
}

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

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(.75);
        transform: scale(.75)
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

@font-face {
    font-family: 'IRANSansWeb';
    src: url('../lang2_files/IRANSansWeb.eot') format('embedded-opentype'), url('../lang2_files/IRANSansWeb.ttf') format('truetype'), url('../lang2_files/IRANSansWeb.woff') format('woff'), url('../lang2_files/IRANSansWeb.woff2') format('woff2')
}

html {
    overflow-x: hidden !important
}

body {
    color: #333;
    font-family: 'IRANSansWeb', sans-serif;
    font-size: 13px;
    line-height: 25px;
    overflow-x: hidden;
    padding: 0 !important;
    direction: rtl;
    word-break: keep-all;
    word-wrap: break-word
}

@media(max-width:479px) {
    .container {
        padding: 0 20px
    }
}

body.wide .wrapper {
    width: 100%;
    margin: 0
}

body.boxed .wrapper,
body.boxed-simple .wrapper {
    position: relative;
    border: 1px solid #eee;
    background-color: #fff
}

body.outter {
    margin: 30px
}

body.boxed-simple {
    background-color: #f8f8f8;
    border: 0 none !important
}

@media(max-width:479px) {
    body {
        font-size: 13px
    }
    body.outter {
        margin: 0
    }
}

a {
    color: #111;
    text-decoration: none !important
}

a:focus {
    outline: none
}

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

iframe {
    border: none
}

h1,
h2,
h3,
h4,
h5,
h6,
.title-bottom-team,
.our-goals-item {
    color: #111;
    line-height: 1.5;
    text-rendering: optimizelegibility;
    margin-top: 0
}

h1,
h2,
.title-bottom-team {
    margin-bottom: 40px
}

h3 {
    margin-bottom: 10px
}

h4,
.our-goals-item,
.widget-title-about {
    margin-bottom: 10px;
    font-weight: 600
}

.widget-title-about {
    font-size: 18px
}

h5 {
    font-size: 15px;
    line-height: 18px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px
}

h1,
h1 a,
h2,
h2 a,
h3,
h3 a,
h4,
h4 a,
h5,
h5 a,
h6,
h6 a,
p,
p.lead,
.title-bottom-team,
.our-goals-item,
.widget-blog-articles .widget-title {
    text-rendering: optimizelegibility;
    margin-top: 0;
    color: #222
}

p,
p.lead,
.title-article-main,
.description-list-portfolio {
    color: #696f6f;
    margin-bottom: 20px
}

.title-article-main {
    margin-top: 12px
}

.our-goals-item {
    font-size: 18px
}

.font-raleway,
.font-raleway a,
.font-raleway h1,
.font-raleway h2,
.font-raleway h3,
.font-raleway h4,
.font-raleway h5,
.font-raleway h6,
h1.font-raleway,
h2.font-raleway,
h3.font-raleway,
h4.font-raleway,
h5.font-raleway,
h6.font-raleway {
    font-weight: 100 !important
}

.font-nothing-you-could-do,
.font-nothing-you-could-do a,
.font-nothing-you-could-do h1,
.font-nothing-you-could-do h2,
.font-nothing-you-could-do h3,
.font-nothing-you-could-do h4,
.font-nothing-you-could-do h5,
.font-nothing-you-could-do h6,
h1.font-nothing-you-could-do,
h2.font-nothing-you-could-do,
h3.font-nothing-you-could-do,
h4.font-nothing-you-could-do,
h5.font-nothing-you-could-do,
h6.font-nothing-you-could-do {
    font-weight: normal !important
}

.font-herr-von-muellerhoff,
.font-herr-von-muellerhoff a,
.font-herr-von-muellerhoff h1,
.font-herr-von-muellerhoff h2,
.font-herr-von-muellerhoff h3,
.font-herr-von-muellerhoff h4,
.font-herr-von-muellerhoff h5,
.font-herr-von-muellerhoff h6,
h1.font-herr-von-muellerhoff,
h2.font-herr-von-muellerhoff,
h3.font-herr-von-muellerhoff,
h4.font-herr-von-muellerhoff,
h5.font-herr-von-muellerhoff,
h6.font-herr-von-muellerhoff {
    font-weight: normal !important
}

#logo {
    float: left;
    font-size: 28px;
    line-height: 100%;
    position: relative;
    z-index: 1
}

#logo a {
    display: block
}

#logo img {
    display: block;
    max-width: 100%
}

#logo a.slogo {
    display: block
}

.main-menu #logo {
    margin-left: 40px;
    margin-right: 40px
}

#header {
    position: relative;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    z-index: 199 !important
}

#header .container {
    position: relative
}

#header.header-transparent+#slider,
#header.header-transparent+.page-title-extended,
#header.header-transparent+.page-title-video,
#header.header-transparent+.page-title-parallax,
#header.header-transparent+.fullscreen,
#header.header-transparent+.fullscreen,
#header.header-transparent+.halfscreen,
#header.header-transparent+#google-map,
#header.header-light-transparent+#slider,
#header.header-light-transparent+.page-title-extended,
#header.header-light-transparent+.page-title-video,
#header.header-light-transparent+.page-title-parallax,
#header.header-light-transparent+.fullscreen,
#header.header-light-transparent+.fullscreen,
#header.header-light-transparent+.halfscreen,
#header.header-light-transparent+#google-map,
#header.header-dark-transparent+#slider,
#header.header-dark-transparent+.page-title-extended,
#header.header-dark-transparent+.page-title-video,
#header.header-dark-transparent+.page-title-parallax,
#header.header-dark-transparent+.fullscreen,
#header.header-dark-transparent+.fullscreen,
#header.header-dark-transparent+.halfscreen,
#header.header-dark-transparent+#google-map {
    top: -90px;
    margin-bottom: -90px
}

#header-wrap {
    position: relative;
    -webkit-backface-visibility: hidden
}

.navigation-wrap {
    padding: 0
}

.navigation-wrap>.container {
    padding: 0 !important;
    width: 100%
}

#mainMenu {
    float: right
}

nav .main-menu a,
nav .main-menu .dropdown-menu a,
nav .main-menu .dropdown-submenu>span.dropdown-menu-title-only {
    color: #111
}

#mainMenu>ul>li>a {
    border-bottom: 0 none;
    border-radius: 0;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    height: 88px;
    line-height: 70px;
    margin-left: 0;
    margin-right: 0;
    outline: medium none;
    padding: 10px;
    text-transform: uppercase;
    transition: all .3s ease-in-out 0s
}

nav .main-menu li>a:hover,
nav .main-menu li>a:focus,
nav .main-menu .dropdown.open>a:hover,
nav .main-menu .dropdown.open>a:focus {
    background: none;
    border-color: none
}

nav ul.main-menu .dropdown>.dropdown-menu,
nav ul.main-menu .dropdown-submenu>.dropdown-menu {
    visibility: hidden;
    display: block;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

nav ul.main-menu .dropdown:hover>.dropdown-menu,
nav ul.main-menu .dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible
}

nav.main-menu ul li i {
    padding-left: 3px;
    font-size: 14px;
    margin-right: 3px;
    text-align: center;
    width: 22px
}

nav.main-menu ul li.dropdown>a>i {
    margin-right: 0
}

nav .main-menu .dropdown-menu {
    min-width: 230px;
    top: auto;
    background-color: #fff;
    box-shadow: 0 13px 42px 11px rgba(0, 0, 0, .05);
    padding: 0;
    border-style: solid none none;
    border-width: 3px 0 0;
    border-radius: 0
}

nav .main-menu .dropdown-menu a,
nav .main-menu .dropdown-submenu>span.dropdown-menu-title-only {
    font-size: 13px;
    font-weight: 400;
    height: 40px;
    padding: 10px 18px 10px 20px;
    position: relative;
    text-transform: none;
    -webkit-transition: padding .3s ease-in-out;
    transition: padding .3s ease-in-out
}

nav .main-menu .dropdown-menu a:hover,
nav .main-menu .dropdown-menu span.dropdown-menu-title-only:hover {
    background-color: rgba(211, 211, 211, .1) !important;
    color: #333;
    padding: 10px 26px 10px 20px
}

nav .main-menu .read-more {
    border-top: 1px solid #eee;
    margin-bottom: -10px;
    margin-top: 24px
}

nav .main-menu .dropdown-menu a.read-more:hover {
    background: rgba(0, 0, 0, 0) !important
}

nav .main-menu .dropdown-menu .mega-menu-content .col-md-2 {
    padding-right: 1px
}

nav .main-menu .dropdown-menu .mega-menu-content a {
    border-bottom: medium none;
    padding: 10px 0 10px 20px
}

nav .main-menu .dropdown-menu .mega-menu-content a:hover {
    padding: 10px 12px 10px 0
}

nav .main-menu .dropdown-menu i {
    margin-right: -2px;
    padding-left: 6px
}

nav .main-menu .dropdown-submenu {
    position: relative
}

nav .main-menu .dropdown-submenu::before {
    content: "";
    font-family: fontawesome;
    font-size: 12px;
    opacity: .6;
    position: absolute;
    left: 12px;
    top: 6px
}

nav .main-menu .dropdown-submenu>.dropdown-menu {
    border-top-width: 3px;
    right: 100%;
    top: -3px
}

nav .main-menu .dropdown-submenu>.dropdown-menu.menu-invert {
    right: auto;
    left: 100%
}

nav.mega-menu .nav,
nav.mega-menu .dropup,
nav.mega-menu .dropdown,
nav.mega-menu .collapse {
    position: static
}

nav .main-menu li.mega-menu-item .dropdown-menu {
    left: 0;
    right: 0
}

nav.mega-menu li.mega-menu-item .mega-menu-title {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 4px;
    padding-left: 0;
    text-transform: uppercase;
    padding: 10px 0
}

nav.mega-menu li ul {
    list-style: none;
    padding: 0
}

nav.mega-menu .dropdown-menu a,
nav.mega-menu .dropdown-submenu>span.dropdown-menu-title-only {
    text-transform: none;
    display: block;
    text-decoration: none
}

nav.mega-menu .dropdown-submenu>span.dropdown-menu-title-only {
    line-height: 18px
}

nav.mega-menu .dropdown-submenu>span.dropdown-menu-title-only:hover {
    cursor: pointer
}

nav.mega-menu .dropdown-menu {
    right: auto;
    margin-top: 0
}

nav.mega-menu .dropdown-menu>li {
    display: block
}

nav.mega-menu .mega-menu-content {
    padding: 30px 40px 40px
}

nav.mega-menu .mega-menu-content:before {
    display: table;
    content: "";
    line-height: 0
}

nav.mega-menu .mega-menu-content:after {
    display: table;
    content: "";
    line-height: 0;
    clear: both
}

nav.mega-menu .mega-menu-content {
    background-position: left bottom;
    background-repeat: no-repeat
}

nav.mega-menu ul li.mega-menu-item .mega-menu-title,
nav.main-menu ul li.dropdown:not(.mega-menu-item) li {
    border-bottom: 1px solid #eee
}

.nav-main-menu-responsive {
    display: none;
    float: right;
    height: 90px;
    line-height: 90px;
    margin-left: 6px
}

.nav-main-menu-responsive button {
    background: none;
    border: 0
}

.nav-main-menu-responsive button:focus {
    outline: 0
}

.nav-main-menu-responsive button i {
    font-size: 17px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) #mainMenu.center {
    float: none;
    margin: 0 auto !important;
    text-align: center
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) #mainMenu.center>ul {
    display: inline-block;
    float: none;
    text-align: left;
    width: auto
}

#side-panel {
    position: fixed;
    top: 0;
    right: -320px;
    z-index: 399;
    width: 320px;
    height: 100%;
    background-color: #f5f5f5;
    -webkit-backface-visibility: hidden
}

body.side-panel-left #side-panel {
    left: -350px;
    right: auto
}

body.side-push-panel.wide .wrapper,
body.side-push-panel.wide #header.sticky-header .container {
    right: 0
}

body.side-panel-left.side-push-panel.wide .wrapper,
body.side-panel-left.side-push-panel.wide #header.sticky-header .container {
    left: 0;
    right: auto
}

#side-panel .side-panel-wrap {
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 40px 40px
}

body.side-panel-active #side-panel {
    right: 0
}

body.side-panel-left.side-panel-active #side-panel {
    left: 0;
    right: auto
}

body.side-push-panel.side-panel-active.wide .wrapper,
body.side-push-panel.side-panel-active.wide #header.sticky-header .container {
    right: 350px
}

body.side-panel-left.side-push-panel.side-panel-active.wide .wrapper,
body.side-panel-left.side-push-panel.side-panel-active.wide #header.sticky-header .container {
    left: 350px;
    right: auto
}

.side-panel-button {
    width: 24px;
    float: right;
    display: inline-block;
    vertical-align: middle
}

.side-panel-button button {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

#side-panel,
body.side-panel-active .wrapper {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

body.side-panel-right #side-panel,
body.side-panel-right.side-push-panel.wide .wrapper,
body.side-panel-right.side-push-panel.wide #header .container {
    -webkit-transition: right .4s ease;
    -o-transition: right .4s ease;
    transition: right .4s ease
}

#side-panel [class*="col-md-"] {
    width: 100%
}

#side-panel .navigation-wrap,
#side-panel .navigation-wrap>.container {
    padding: 0;
    width: 100%
}

#side-panel .navbar-collapse {
    border: 0 !important
}

#side-panel .navigation-wrap.navbar-header,
#side-panel .navigation-wrap.navbar-collapse {
    margin-left: 0;
    margin-right: 0;
    box-shadow: none
}

#side-panel .nav-main-menu-responsive {
    display: block
}

#side-panel .main-menu-collapse {
    position: relative;
    width: 100% !important;
    overflow: hidden;
    overflow-y: hidden;
    overflow-x: hidden
}

#side-panel .dropdown-menu {
    width: 100% !important
}

#side-panel .main-menu {
    padding-bottom: 10px;
    clear: both;
    display: block;
    width: 100%
}

#side-panel .main-menu ul {
    padding: 0;
    margin: 0
}

#side-panel .main-menu>ul>li>a {
    padding: 10px 10px 10px 0 !important;
    color: #333
}

#side-panel .main-menu ul li {
    padding: 0;
    margin: 0;
    clear: both;
    float: none;
    display: block
}

#side-panel .main-menu ul li.dropdown a,
#side-panel .main-menu ul li.dropdown ul.dropdown-menu li a,
#side-panel .main-menu ul li.dropdown .dropdown-submenu>span.dropdown-menu-title-only,
#header.header-sticky:not(.header-static) #side-panel .main-menu ul li.dropdown a,
#header.header-sticky:not(.header-static) #side-panel .main-menu ul li.dropdown ul.dropdown-menu li a,
#header.header-sticky:not(.header-static) #side-panel .main-menu ul li.dropdown .dropdown-submenu>span.dropdown-menu-title-only {
    height: 42px;
    outline: none;
    line-height: 22px
}

#side-panel .main-menu>ul li:last-child a {
    border-bottom: 0
}

#side-panel .main-menu ul ul {
    margin-left: 10px !important
}

#side-panel .main-menu ul.main-menu {
    float: none;
    position: static
}

#side-panel .main-menu ul.dropdown-menu {
    position: static;
    clear: both;
    float: none;
    display: none !important
}

#side-panel .main-menu li.resp-active>ul.dropdown-menu {
    border: 0 none;
    display: block !important;
    padding-left: 10px
}

#side-panel nav ul.main-menu li a,
#side-panel nav ul.main-menu .dropdown-submenu>span.dropdown-menu-title-only {
    clear: both;
    float: none;
    display: block;
    border: 0;
    border-top: 0;
    margin: 0
}

#side-panel nav ul.main-menu li a i.fa-angle-down {
    position: absolute;
    right: 0;
    top: 14px
}

#side-panel nav ul.main-menu ul.dropdown-menu {
    box-shadow: none
}

#side-panel .main-menu>ul>li,
#side-panel .mega-menu ul li.mega-menu-item .mega-menu-title,
#side-panel .main-menu ul li.dropdown.mega-menu-item li,
#side-panel .main-menu .dropdown-submenu>span.dropdown-menu-title-only {
    border-bottom: 1px solid #eee
}

#side-panel nav ul.main-menu ul.dropdown-menu li>a #header nav ul.main-menu .dropdown-submenu>span.dropdown-menu-title-only {
    padding: 9px 8px;
    border: 0;
    border-top: 0;
    margin: 0;
    border-bottom: none
}

#side-panel nav ul.main-menu ul.sub-menu {
    padding: 0;
    margin: 0 0 10px 0
}

#side-panel nav .main-menu .dropdown-submenu {
    position: relative;
    background: url("../lang2_files/arrow-light-down.png") no-repeat scroll right top
}

#side-panel nav ul.main-menu ul.dropdown-menu {
    background: none !important;
    background-color: transparent !important
}

#side-panel nav ul.main-menu li.dropdown.open .dropdown-toggle,
#side-panel nav ul.main-menu li a,
#side-panel nav ul.main-menu li>a:hover,
#side-panel nav ul.main-menu li.active a,
#side-panel nav ul.main-menu li.dropdown:hover a,
#side-panel nav ul.main-menu li.dropdown:hover .dropdown-submenu>span.dropdown-menu-title-only {
    background: none !important;
    background-color: transparent !important
}

#side-panel nav ul.main-menu ul.dropdown-menu li:hover>a,
#side-panel nav ul.main-menu li.dropdown:hover ul.dropdown-menu li>a:hover {
    background: none !important;
    background-color: transparent !important
}

#side-panel nav.mega-menu li.mega-menu-item .mega-menu-sub-title {
    margin-top: 30px
}

#side-panel nav.mega-menu .mega-menu-content {
    padding: 0
}

#side-panel nav .main-menu .dropdown-menu .mega-menu-content [class*="col-md-"] {
    padding: 0
}

#side-panel nav .main-menu .dropdown-menu .mega-menu-content [class*="col-md-"]:nth-child(2n) {
    padding-left: 2px
}

#side-panel nav .main-menu .dropdown-menu .mega-menu-content {
    background-image: none !important
}

#side-panel nav ul.main-menu .dropdown>.dropdown-menu,
#side-panel nav ul.main-menu .dropdown-submenu>.dropdown-menu {
    visibility: visible;
    opacity: 1
}

#side-panel nav ul.main-menu .dropdown:hover>.dropdown-menu,
#side-panel nav ul.main-menu .dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible
}

#side-panel .side-panel-footer {
    bottom: 15px;
    color: #666;
    left: 30px;
    position: absolute;
    right: 30px
}

#side-panel .side-panel-footer a {
    color: inherit
}

body.side-panel-static .wrapper .container {
    max-width: 1210px;
    padding: 0 35px;
    width: auto !important
}

body.side-panel-static #header #logo {
    display: none
}

body.side-panel-static .wrapper {
    padding-left: 320px
}

body.side-panel-static .side-panel-button {
    display: none
}

body.side-panel-static #header,
body.side-panel-static #header #header-wrap,
body.side-panel-static #header.header-sticky:not(.header-static),
body.side-panel-static #header.header-sticky:not(.header-static) #header-wrap {
    height: 0;
    margin: 0;
    padding: 0;
    background-color: transparent;
    border: 0
}

@media(min-width:991px) {
    #side-panel.side-panel-dark {
        background-color: #1f2223
    }
    #side-panel.side-panel-dark .main-menu>ul>li>a,
    #side-panel.side-panel-dark .main-menu>ul>li>ul a,
    #side-panel.side-panel-dark .main-menu>ul>li>ul a,
    #side-panel.side-panel-dark .main-menu .dropdown-menu a,
    #side-panel.side-panel-dark .main-menu .dropdown-submenu>span.dropdown-menu-title-only,
    #side-panel.side-panel-dark #mainMenu .mega-menu-title {
        color: #bebdb5
    }
    #side-panel.side-panel-dark .main-menu .dropdown-menu .mega-menu-content a {
        border-bottom: 0
    }
    #side-panel.side-panel-dark nav#mainMenu.main-menu.mega-menu .mega-menu-content a.read-more,
    #side-panel.side-panel-dark .main-menu .mega-menu-content a.read-more {
        border-top: 1px solid #222
    }
    #side-panel.side-panel-dark .main-menu>ul>li,
    #side-panel.side-panel-dark .mega-menu ul li.mega-menu-item .mega-menu-title,
    #side-panel.side-panel-dark .main-menu ul li.dropdown.mega-menu-item li,
    #side-panel.side-panel-dark .main-menu .dropdown-submenu>span.dropdown-menu-title-only,
    #side-panel.side-panel-dark .mega-menu ul li.mega-menu-item .mega-menu-title,
    #side-panel.side-panel-dark .main-menu ul li.dropdown:not(.mega-menu-item) li {
        border-bottom: 1px solid #383838
    }
}

.lines,
.lines:before,
.lines:after {
    background-color: #111
}

.header-dark:not(.header-sticky) .lines,
.header-dark:not(.header-sticky) .lines:before,
.header-dark:not(.header-sticky) .lines:after,
.header-dark.header-transparent:not(.header-sticky) .lines,
.header-dark.header-transparent:not(.header-sticky) .lines:before,
.header-dark.header-transparent:not(.header-sticky) .lines:after,
.header-dark.header-semi-transparent:not(.header-sticky) .lines,
.header-dark.header-semi-transparent:not(.header-sticky) .lines:before,
.header-dark.header-semi-transparent:not(.header-sticky) .lines:after {
    background-color: #fff
}

button.lines-button {
    border: none;
    background: none
}

button.lines-button span {
    display: block
}

.lines-button {
    padding: 20px 0;
    transition: all .3s ease 0s
}

.lines-button:active {
    transition: 0
}

.lines {
    display: inline-block;
    width: 20px;
    height: 3px;
    border-radius: .26rem;
    transition: .3s;
    position: relative;
    top: -2px
}

.lines:before,
.lines:after {
    display: inline-block;
    width: 20px;
    height: 3px;
    border-radius: .26rem;
    transition: .3s;
    position: absolute;
    left: 0;
    content: '';
    -webkit-transform-origin: .26rem center;
    transform-origin: .26rem center
}

.lines:before {
    top: 6px
}

.lines:after {
    top: -6px
}

.lines-button.x.lines-button-close .lines {
    background-color: transparent !important
}

.lines-button.x.lines-button-close .lines:before,
.lines-button.x.lines-button-close .lines:after {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    top: 0;
    width: 20px
}

.lines-button.x.lines-button-close .lines:before {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg)
}

.lines-button.x.lines-button-close .lines:after {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg)
}

#fullscreen-panel-button {
    position: fixed;
    right: 34px;
    top: 14px;
    z-index: 199
}

#fullscreen-panel-button .lines,
#fullscreen-panel-button .lines:before,
#fullscreen-panel-button .lines:after {
    background-color: #fff
}

.fullscreen-panel-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .9);
    z-index: 198
}

.fullscreen-panel-overlay nav {
    text-align: center;
    position: relative;
    top: 50%;
    height: 60%;
    font-size: 54px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.fullscreen-panel-overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    height: 100%;
    position: relative
}

.fullscreen-panel-overlay ul li {
    display: block;
    height: 20%;
    height: calc(100%/5);
    min-height: 54px
}

.fullscreen-panel-overlay ul li a {
    font-weight: 300;
    display: block;
    color: #fff;
    text-decoration: none;
    -webkit-transition: color .2s;
    transition: color .2s;
    font-family: 'NotCourierSans';
    text-transform: uppercase
}

.fullscreen-panel-overlay ul li a:hover,
.fullscreen-panel-overlay ul li a:focus {
    color: #849368
}

body:not(.fullscreen-panel-active) .fullscreen-panel-overlay-hugeinc {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .5s, visibility 0s .5s;
    transition: opacity .5s, visibility 0s .5s
}

body.fullscreen-panel-active .fullscreen-panel-overlay-hugeinc {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.fullscreen-panel-overlay-hugeinc nav {
    -moz-perspective: 300px
}

.fullscreen-panel-overlay-hugeinc nav ul {
    opacity: .4;
    -webkit-transform: translateY(-25%) rotateX(35deg);
    transform: translateY(-25%) rotateX(35deg);
    -webkit-transition: -webkit-transform .5s, opacity .5s;
    transition: transform .5s, opacity .5s
}

body.fullscreen-panel-active .fullscreen-panel-overlay-hugeinc nav ul {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg)
}

body:not(.fullscreen-panel-active) .fullscreen-panel-overlay-hugeinc nav ul {
    -webkit-transform: translateY(25%) rotateX(-35deg);
    transform: translateY(25%) rotateX(-35deg)
}

#vertical-dot-menu {
    position: fixed;
    right: 20px;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 99 !important
}

body.outter #vertical-dot-menu {
    right: 50px
}

@media(max-width:479px) {
    body.outter #vertical-dot-menu {
        right: 20px
    }
}

#vertical-dot-menu ul {
    list-style: none !important
}

#vertical-dot-menu li {
    text-align: right;
    padding: 0
}

#vertical-dot-menu a {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

#vertical-dot-menu a:after {
    content: "";
    display: table;
    clear: both
}

#vertical-dot-menu a span {
    float: right;
    display: inline-block;
    -webkit-transform: scale(.6);
    -moz-transform: scale(.6);
    -ms-transform: scale(.6);
    -o-transform: scale(.6);
    transform: scale(.6)
}

#vertical-dot-menu a:hover span {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1)
}

#vertical-dot-menu a:hover .cd-label {
    opacity: 1
}

#vertical-dot-menu .cd-dot {
    position: relative;
    top: 1px;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: #ccc;
    -webkit-transition: -webkit-transform .2s, background-color .5s;
    -moz-transition: -moz-transform .2s, background-color .5s;
    transition: transform .2s, background-color .5s;
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%
}

#vertical-dot-menu a:hover .cd-dot,
#vertical-dot-menu a.active .cd-dot {
    transition: all ease .3s
}

#vertical-dot-menu .cd-label {
    position: relative;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 800;
    padding: 0;
    text-transform: uppercase;
    color: #ccc;
    -webkit-transition: -webkit-transform .2s, opacity .2s;
    -moz-transition: -moz-transform .2s, opacity .2s;
    transition: transform .2s, opacity .2s;
    opacity: 0;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%
}

#shopping-cart {
    float: right;
    margin-left: 12px;
    margin-right: 10px;
    position: relative;
    z-index: 1
}

#shopping-cart .shopping-cart-items {
    display: block;
    font-size: 10px;
    position: absolute;
    right: -10px;
    z-index: 1;
    top: 32px
}

#shopping-cart>a>i {
    line-height: 90px
}

#header #top-search-trigger {
    cursor: pointer
}

#header #top-search {
    float: right
}

#header #top-search a,
#header #shopping-cart a {
    display: block;
    font-size: 18px;
    height: 5px;
    line-height: 18px;
    margin-top: -1px;
    position: relative
}

#header #top-search a {
    z-index: 11;
    width: 30px;
    font-size: 16px
}

#header #top-search a i {
    position: absolute;
    right: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    line-height: 88px
}

body.top-search-active #header #top-search a i.fa.fa-search,
#top-search a i.fa.fa-close {
    opacity: 0
}

body.top-search-active #header #top-search a i.fa.fa-close {
    opacity: 1;
    z-index: 11
}

body.top-search-active .main-menu:not(#top-search),
body.top-search-active .logo {
    opacity: 0
}

#header #top-cart a:hover {
    color: #1abc9c
}

#header #top-search form {
    opacity: 0;
    z-index: -2;
    position: absolute;
    width: 100% !important;
    height: 100% !important;
    padding: 0 15px;
    margin: 0;
    top: 0;
    left: 0;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

body.top-search-active #header #top-search form {
    opacity: 1;
    z-index: 10
}

body.top-search-active .btn-responsive-nav,
body.top-search-active .side-panel-button {
    display: none
}

#header #top-search form input {
    background-color: transparent;
    border: 0 none;
    border-radius: 0;
    box-shadow: none !important;
    font-size: 16px;
    height: 100%;
    letter-spacing: 2px;
    outline: 0 none;
    padding: 0 70px 0 0
}

.header-default {
    background-color: #fff;
    border-bottom: 0 !important
}

#header.header-dark,
.header-dark {
    background-color: #111;
    border-bottom: 1px solid #3d3d3d
}

#header.header-sticky.header-dark:not(.header-navigation-light) #header-wrap,
#header.header-dark:not(.header-navigation-light) .main-menu .dropdown-menu {
    background-color: #111
}

.header-dark .main-menu>ul>li>a,
.header-dark:not(.header-navigation-light) .main-menu>ul>li>ul a,
.header-dark #top-search a,
.header-dark #shopping-cart a,
.header-dark #shopping-cart .shopping-cart-items,
.header-dark .nav-main-menu-responsive>button,
.header-dark #top-search form input {
    color: #fff
}

#header.header-dark:not(.header-navigation-light) .main-menu>ul>li>ul a,
#header.header-dark:not(.header-navigation-light) .main-menu .dropdown-menu a,
#header.header-dark:not(.header-navigation-light) .main-menu .dropdown-submenu>span.dropdown-menu-title-only,
#header.header-dark:not(.header-navigation-light) #mainMenu .mega-menu-title {
    color: #ccc
}

header.header-dark:not(.header-navigation-light) .mega-menu ul li.mega-menu-item .mega-menu-title,
header.header-dark:not(.header-navigation-light) .main-menu ul li.dropdown:not(.mega-menu-item) li {
    border-bottom: 1px solid #222
}

#header.header-dark .main-menu .dropdown-menu .mega-menu-content a {
    border-bottom: 0
}

#header.header-dark:not(.header-navigation-light) nav#mainMenu.main-menu.mega-menu .mega-menu-content a.read-more,
#header.header-dark:not(.header-navigation-light) .header-transparent nav .main-menu .mega-menu-content a.read-more {
    border-top: 1px solid #222
}

#header.header-dark #top-search form input::-moz-placeholder {
    color: rgba(255, 255, 255, .5)
}

#header.header-dark #top-search form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .5)
}

#header.header-dark #top-search form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .5)
}

#header.header-dark #top-search a:before {
    border-left: 1px solid #eee
}

#header.header-transparent {
    background-color: transparent;
    border-bottom: 0
}

#header.header-dark-transparent {
    background-color: rgba(0, 0, 0, .3);
    border-bottom: 1px solid rgba(0, 0, 0, .15)
}

#header.header-light-transparent {
    background-color: rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .8)
}

#header.header-colored {
    background-color: #00c0e9 !important;
    border-bottom: 0
}

#header.header-colored.header-sticky {
    background-color: #00c0e9 !important
}

#header.header-colored #mainMenu>ul>li>a,
#header.header-colored #top-search a,
#header.header-colored #shopping-cart a,
#header.header-colored .nav-main-menu-responsive>button {
    color: #fff
}

body.wide #header.header-fullwidth #header-wrap .container {
    width: 100%;
    padding: 0 30px
}

body.wide #header.header-fullwidth nav .main-menu .mega-menu-item .dropdown-menu {
    left: 0;
    right: 0
}

#header.header-fullwidth [class*="col-"] {
    padding-left: 0;
    padding-right: 0
}

#header.header-modern {
    margin: 40px auto 0;
    width: 1200px;
    border-radius: 4px
}

#header.header-modern+#slider,
#header.header-modern+.page-title-extended,
#header.header-modern+.page-title-video,
#header.header-modern+.page-title-parallax,
#header.header-modern+.fullscreen,
#header.header-modern+.fullscreen,
#header.header-modern+.halfscreen,
#header.header-modern+#google-map {
    margin-bottom: -130px;
    top: -130px
}

#header.header-modern+.page-title-parallax {
    padding-bottom: 80px;
    padding-top: 200px
}

#header.header-modern {
    border-bottom: 0 !important
}

#header.header-logo-right .navigation-wrap #mainMenu {
    float: left
}

#header.header-logo-right .nav-main-menu-responsive {
    float: left;
    margin-right: 10px
}

#header.header-logo-right #logo {
    float: right
}

#header.header-logo-right #shopping-cart {
    float: left;
    margin-right: 10px;
    margin-left: 0
}

#header.header-logo-right #top-search {
    float: left;
    margin-left: 10px
}

#header.header-logo-right #top-search a:before {
    border-left: 0;
    border-right: 1px solid #e7e7e7;
    right: 0
}

#header.header-logo-right #top-search a i {
    right: 12px
}

#header.header-logo-right #top-search form input {
    padding: 0 0 0 70px
}

#header.header-logo-center:not(.header-sticky) #logo {
    width: 100%
}

#header.header-logo-center:not(.header-sticky) #logo a img {
    margin: 0 auto
}

#header.header-logo-center:not(.header-sticky) #mainMenu {
    float: none
}

#header.header-logo-center:not(.header-sticky) nav.main-menu li.dropdown:first-child>a {
    padding-left: 0;
    margin-left: -4px
}

#header.header-logo-center:not(.header-sticky) #top-search form {
    top: auto;
    bottom: -44px
}

#header.header-mini,
#header.header-mini #header-wrap,
#header.header-mini #logo img,
#header.header-mini nav#mainMenu ul.main-menu,
#header.header-mini #mainMenu>ul>li>a,
#header.header-mini #shopping-cart a,
#header.header-mini #top-search a,
#header.header-mini .nav-main-menu-responsive,
#header.header-mini .side-panel-button {
    height: 60px
}

#header.header-mini #mainMenu>ul>li>a {
    line-height: 40px
}

#header.header-mini #top-search a:before {
    top: 16px
}

#header.header-mini #top-search a i,
#header.header-mini #shopping-cart>a>i,
#header.header-mini .nav-main-menu-responsive {
    line-height: 58px
}

#header.header-mini #shopping-cart .shopping-cart-items {
    top: 17px
}

#header.header-mini #top-search form input {
    font-size: 20px
}

#header.header-dark.header-sticky.header-navigation-light .main-menu>ul>li>a,
#header.header-dark.header-sticky.header-navigation-light #top-search a,
#header.header-dark.header-sticky.header-navigation-light #shopping-cart a,
#header.header-dark.header-sticky.header-navigation-light #shopping-cart .shopping-cart-items,
#header.header-dark.header-sticky.header-navigation-light .nav-main-menu-responsive>button,
#header.header-dark.header-sticky.header-navigation-light #top-search form input {
    color: #111
}

#header.header-dark.header-sticky.header-navigation-light #top-search form input::-moz-placeholder {
    color: rgba(0, 0, 0, .5)
}

#header.header-dark.header-sticky.header-navigation-light #top-search form input:-ms-input-placeholder {
    color: rgba(0, 0, 0, .5)
}

#header.header-dark.header-sticky.header-navigation-light #top-search form input::-webkit-input-placeholder {
    color: rgba(0, 0, 0, .5)
}

#header.header-sticky #header-wrap {
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 199
}

#header,
#header-wrap,
#logo img,
#header.header-sticky:not(.header-static) nav#mainMenu ul.main-menu,
#mainMenu>ul,
#header .side-panel-button {
    height: 90px
}

#side-panel #mainMenu>ul {
    height: auto !important
}

#header,
#header:not(.header-static) #header-wrap,
#header #logo img,
#header.header-sticky:not(.header-static) nav#mainMenu ul.main-menu,
#mainMenu>ul,
#header.header-sticky:not(.header-static),
#header .side-panel-button {
    transition: opacity .3s ease, height .4s ease;
    -webkit-transition: opacity .3s ease, height .4s ease;
    -o-transition: opacity .3s ease, height .4s ease
}

#header #top-search a i,
#header #shopping-cart>a>i,
#header #shopping-cart .shopping-cart-items {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

#header.header-sticky:not(.header-static),
#header.header-sticky:not(.header-static) #header-wrap,
#header.header-sticky:not(.header-static) #logo img,
#header.header-sticky:not(.header-static) nav#mainMenu ul.main-menu,
#header.header-sticky:not(.header-static) #mainMenu>ul>li>a,
#header.header-sticky:not(.header-static) #shopping-cart a,
#header.header-sticky:not(.header-static) #top-search a,
#header.header-sticky:not(.header-static) .side-panel-button {
    height: 60px
}

#header.header-sticky:not(.header-static) #side-panel nav#mainMenu ul.main-menu,
#header.header-sticky:not(.header-static) #side-panel #mainMenu>ul>li>a {
    height: auto !important
}

#header.header-sticky:not(.header-static) #mainMenu>ul>li>a {
    line-height: 40px
}

#header.header-sticky:not(.header-static) #side-panel #mainMenu>ul>li>a {
    line-height: auto !important
}

#header.header-sticky:not(.header-static) #top-search a:before {
    top: 16px
}

#header.header-sticky:not(.header-static) #top-search a i,
#header.header-sticky:not(.header-static) #shopping-cart>a>i {
    line-height: 58px
}

#header.header-sticky:not(.header-static) #shopping-cart .shopping-cart-items {
    top: 17px
}

#header.header-sticky:not(.header-static) #top-search form input {
    font-size: 20px
}

#slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0
}

#home {
    width: 100%;
    height: 100%;
    color: #fff
}

.container-fullscreen {
    padding-top: 0;
    height: 100%;
    width: 100%;
    display: table;
    position: relative
}

.fullscreen>.container,
.halfscreen>.container,
.fullscreen>.container-fluid,
.halfscreen>.container-fluid {
    height: 100%
}

.boxed-slider {
    height: 600px;
    width: 100%
}

.boxed-slider .owl-item {
    height: 600px
}

.boxed-slider .owl-bg-img,
.owl-item img {
    height: 100%
}

#multiscroll .ms-left .ms-section {
    background-position: 100% center !important
}

#multiscroll .ms-right .ms-section {
    background-position: 0 center !important
}

#page-title {
    border-bottom: 1px solid #eee;
    clear: both;
    padding: 40px 0;
    position: relative;
    background-color: #f8f8f8
}

#page-title .container {
    position: relative
}

#page-title [class*="col-"] {
    padding-left: 0;
    padding-right: 0
}

.page-title h1 {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
    margin-left: -2px;
    margin-top: -4px;
    text-transform: uppercase
}

.page-title>span.lead {
    display: block;
    margin-top: 10px;
    font-weight: 300;
    font-size: 18px
}

.page-title>span {
    opacity: .7
}

.page-title-right .page-title {
    float: right;
    text-align: right
}

.page-title-right .breadcrumb {
    text-align: left !important
}

.page-title-center .page-title {
    float: none;
    text-align: center;
    width: 100%
}

.page-title-center .breadcrumb {
    float: none;
    text-align: center!important;
    width: 100%
}

.page-title-pattern {
    background-attachment: fixed;
    background-repeat: repeat
}

#page-title.page-title-small {
    padding: 6px 0 4px !important
}

#page-title.page-title-small .page-title {
    margin-top: 20px
}

#page-title.page-title-small .page-title h1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 14px
}

#page-title.page-title-small .breadcrumb {
    margin-top: 8px
}

#page-title.page-title-extended {
    padding: 100px 0
}

.page-title-extended h1 {
    font-size: 60px;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: uppercase
}

#page-title.page-title-video {
    background-color: transparent
}

#header.header-transparent+.page-title-video,
#header.header-transparent+.page-title-parallax,
#header.header-light-transparent+.page-title-video,
#header.header-light-transparent+.page-title-parallax,
#header.header-dark-transparent+.page-title-video,
#header.header-dark-transparent+.page-title-parallax {
    padding-top: 170px;
    padding-bottom: 80px
}

.page-title-parallax {
    border-bottom: 5px solid #eee !important
}

#topbar.topbar-transparent+#header.header-transparent+#slider,
#topbar.topbar-transparent+#header.header-transparent+.page-title-extended,
#topbar.topbar-transparent+#header.header-transparent+.page-title-video,
#topbar.topbar-transparent+#header.header-transparent+.page-title-parallax,
#topbar.topbar-transparent+#header.header-transparent+.fullscreen,
#topbar.topbar-transparent+#header.header-transparent+#google-map,
#topbar.topbar-transparent+#header.header-dark-transparent+#slider,
#topbar.topbar-transparent+#header.header-dark-transparent+.page-title-extended,
#topbar.topbar-transparent+#header.header-dark-transparent+.page-title-video,
#topbar.topbar-transparent+#header.header-dark-transparent+.page-title-parallax,
#topbar.topbar-transparent+#header.header-dark-transparent+.fullscreen,
#topbar.topbar-transparent+#header.header-dark-transparent+#google-map #topbar.topbar-transparent+#header.header-light-transparent+#slider,
#topbar.topbar-transparent+#header.header-light-transparent+.page-title-extended,
#topbar.topbar-transparent+#header.header-light-transparent+.page-title-video,
#topbar.topbar-transparent+#header.header-light-transparent+.page-title-parallax,
#topbar.topbar-transparent+#header.header-light-transparent+.fullscreen,
#topbar.topbar-transparent+#header.header-light-transparent+#google-map {
    margin-bottom: -131px;
    top: -131px
}

#topbar {
    position: relative;
    z-index: 200;
    border-bottom: 1px solid #eee;
    background-color: #fff
}

#topbar .top-menu {
    list-style: outside none none;
    margin: 0 -10px;
    padding: 0
}

#topbar .top-links {
    position: relative
}

#topbar .top-menu>li {
    display: inline-block;
    height: 40px;
    line-height: 38px
}

#topbar .top-menu>li>a {
    display: block;
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    padding: 0 6px;
    text-transform: uppercase
}

#topbar .social-icons {
    float: right;
    height: 100%;
    overflow: hidden
}

#topbar .social-icons li,
#topbar .social-icons li a {
    float: left;
    list-style: outside none none
}

#topbar .social-icons li a {
    border-radius: 0;
    border-right: 1px solid rgba(180, 180, 180, .2);
    font-size: 15px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 35px;
    overflow: hidden;
    margin: 0
}

#topbar .social-icons li:first-child a {
    border-left: 1px solid rgba(180, 180, 180, .2)
}

.topbar-dropdown {
    color: #747474;
    float: left;
    font-size: 13px;
    font-weight: 400;
    line-height: 40px;
    height: 40px;
    position: relative
}

.topbar-dropdown .title {
    border-left: 1px solid #eee;
    padding: 0 20px;
    cursor: pointer
}

.topbar-dropdown:first-child .title {
    border-color: transparent;
    padding-left: 0
}

.topbar-dropdown .title img,
.topbar-dropdown .list-entry img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    position: relative;
    top: -1px
}

.topbar-dropdown .title a {
    color: #747474
}

.topbar-dropdown .title a:hover {
    text-decoration: underline
}

.topbar-dropdown .title b {
    font-weight: 600
}

.topbar-dropdown .title .fa {
    margin-left: 7px;
    position: relative;
    top: -1px
}

.topbar-dropdown .title .fa:first-child {
    margin-left: 0;
    margin-right: 7px
}

.topbar-dropdown .dropdown-list {
    position: absolute;
    width: 100%;
    left: 0;
    top: 40px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: solid 1px #eee;
    padding: 0 16px;
    z-index: 1;
    text-align: left;
    opacity: 0;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transform-origin: 50% 0% 0;
    -moz-transform-origin: 50% 0% 0;
    -webkit-transform-origin: 50% 0% 0;
    -ms-transform-origin: 50% 0% 0;
    z-index: 1;
    visibility: hidden
}

.topbar-dropdown:hover .dropdown-list,
.topbar-dropdown:hover .topbar-form {
    opacity: 1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    visibility: visible
}

.topbar-dropdown .list-entry {
    white-space: nowrap;
    display: block;
    color: #747474;
    padding: 2px 0;
    border-top: 1px #f0f0f0 solid
}

.topbar-dropdown .list-entry:hover {
    color: #222
}

.topbar-dropdown .list-entry:first-child {
    border-top: none
}

.topbar-dropdown .topbar-form {
    position: absolute;
    width: 240px;
    padding: 20px 20px 10px 20px;
    right: auto;
    top: 40px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border: solid 1px #eee;
    z-index: 1;
    text-align: left;
    opacity: 0;
    -moz-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    -webkit-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    -ms-transition: all 300ms ease-out;
    transform-origin: 50% 0% 0;
    -moz-transform-origin: 50% 0% 0;
    -webkit-transform-origin: 50% 0% 0;
    -ms-transform-origin: 50% 0% 0;
    visibility: hidden
}

.topbar-dropdown input {
    margin-bottom: 2px
}

.topbar-form .form-group {
    margin-bottom: 10px
}

.topbar-form .checkbox {
    display: inline-block;
    margin-bottom: 0;
    margin-top: 0;
    vertical-align: middle;
    margin-top: -12px
}

.topbar-dropdown.float-right .title {
    padding: 0 0 0 20px !important
}

.topbar-dropdown .dropdown-invert.topbar-form {
    left: auto;
    right: -20px
}

body.wide #topbar.topbar-fullwidth>.container {
    width: 100%;
    padding: 0 30px
}

#topbar.topbar-dark .top-menu>li>a,
#topbar.topbar-dark .social-icons li a {
    color: #fff !important
}

#topbar.topbar-dark {
    background-color: #252525;
    border-color: rgba(255, 255, 255, .2)
}

#topbar.topbar-light .top-menu>li>a,
#topbar.topbar-light .social-icons li a {
    color: #111 !important
}

.topbar-transparent.topbar-dark .topbar-dropdown .title a,
.topbar-transparent.topbar-dark .topbar-dropdown {
    color: #fff
}

.topbar-transparent .topbar-dropdown .title {
    border-color: rgba(255, 255, 255, .2)
}

.topbar-transparent .topbar-dropdown:first-child .title {
    border-color: transparent
}

#topbar.topbar-transparent {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(180, 180, 180, .2)
}

#topbar.topbar-dark.topbar-colored {
    border-bottom: 0
}

#content {
    overflow: hidden;
    padding: 60px 0;
    position: relative
}

.content-wrap {
    position: relative;
    padding: 80px 0
}

#content .container {
    position: relative
}

.container>.post-content {
    padding-left: 0;
    padding-right: 0
}

.post-content {
    padding-left: 15px;
    padding-right: 25px
}

.post-content.float-right {
    padding-left: 25px;
    padding-right: 15px
}

.post-content.float-right+.sidebar {
    padding-left: 15px;
    padding-right: 25px
}

.post-content.post-fullwidth,
.post-content.bothsidebar {
    padding-left: 15px;
    padding-right: 15px
}

.post-content.bothsidebar {
    padding-left: 25px;
    padding-right: 25px
}

.sidebar {
    padding-right: 25px
}

.post-content+.sidebar {
    padding-left: 25px;
    padding-right: 15px
}

body.device-sm .sidebar,
body.device-xs .sidebar,
body.device-xxs .sidebar {
    padding-left: 15px;
    padding-right: 15px
}

.sidebar-modern:before {
    background-color: #fbfbfb;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    content: "";
    display: block;
    height: 99999px;
    position: absolute;
    left: 0;
    top: -100px;
    width: 3000px;
    z-index: -10
}

body.device-sm .sidebar-modern:before,
body.device-xs .sidebar-modern:before,
body.device-xxs .sidebar-modern:before,
body.device-sm .sidebar-prtfolio-detail::after,
body.device-xs .sidebar-prtfolio-detail::after,
body.device-xxs .sidebar-prtfolio-detail::after {
    border: 0;
    background-color: transparent
}

.post-content+.sidebar-modern::before,
.post-content+.sidebar-prtfolio-detail::before {
    left: 0;
    right: auto
}

.post-content.float-right+.sidebar-modern:before,
{
    right: 0;
    left: auto
}

body.device-sm .sidebar,
body.device-xs .sidebar {
    margin-top: 40px;
    width: 100%
}

.sidebar-menu {
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 2px;
    margin-top: 30px;
    padding: 0
}

.sidebar-menu ul {
    list-style: outside none none;
    margin: 0;
    padding: 0
}

.sidebar-menu ul li {
    padding: 10px 20px;
    margin: 0;
    border-top: 1px solid rgba(0, 0, 0, .07);
    color: #666;
    font-family: Roboto, Arial, Tahoma, sans-serif;
    padding: 10px 20px 10px 18px;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    cursor: pointer
}

.sidebar-menu ul li:hover {
    background: rgba(0, 0, 0, .05) !important;
    color: #606060;
    padding: 10px 20px 10px 26px
}

.sidebar-menu ul li a {
    color: #444;
    display: block
}

.sidebar-menu i {
    margin-right: 12px
}

.sidebar-menu h4,
.sidebar-menu h3 {
    background-color: #f8f8f8;
    padding: 14px 18px;
    margin: 0
}

.widget {
    margin-bottom: 60px;
    position: relative
}

.sidebar .widget {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 30px
}

.sidebar .widget:last-child {
    border-bottom: 0
}

.sidebar .widget-title::after {
    border-top: 4px solid #444;
    content: "";
    display: block;
    margin-top: 14px;
    width: 60px
}

.widget-tags .tags a {
    border: 1px solid rgba(0, 0, 0, .2);
    color: #777;
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0 2px 5px 0;
    padding: 5px 7px;
    text-decoration: none;
    text-transform: uppercase;
    -webkit-transition: all .27s cubic-bezier(0, 0, .58, 1) 0s;
    transition: all .27s cubic-bezier(0, 0, .58, 1) 0s
}

.widget-archive ul {
    padding-left: 0
}

body.device-sm .sidebar .widget {
    float: right;
    width: 330px
}

body.device-xs .sidebar .widget {
    width: 100%
}

body.device-sm .sidebar .widget:nth-child(odd),
body.device-xs .sidebar .widget:nth-child(odd) {
    margin-left: 30px
}

footer .widget-tags .tags a {
    border: 1px solid rgba(255, 255, 255, .2)
}

footer .widget {
    margin-bottom: 20px
}

.col-md-3 .flickr-widget img {
    padding: 2px;
    width: 25%
}

body.device-xs .col-md-3 .flickr-widget img {
    width: 16.666%
}

.col-md-4 .flickr-widget img {
    padding: 2px;
    width: 20%
}

.widget .footer-widget .social-icon {
    background-color: rgba(0, 0, 0, .2)
}

.footer-widget .social-icon i {
    color: #fff
}

.footer-widget .social-icon i {
    color: #fff
}

.widget.widget-newsletter button {
    margin-left: -1px
}

.widget.widget-newsletter button {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.widget.widget-newsletter .btn {
    text-transform: none
}

.widget.widget-newsletter .form-control {
    height: 40px
}

.widget.widget-newsletter .btn {
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    padding: 8px 16px
}

.background-dark .widget.widget-newsletter .input-group-addon {
    background-color: #fff;
    color: #fff
}

.form-control.error,
.sm-form-control.error {
    border-color: #e42c3e
}

.widget.widget-newsletter label.error {
    color: #e42c3e;
    display: none !important;
    font-weight: 400;
    margin-top: 5px
}

.background-dark .widget.widget-newsletter .form-transparent-fields .form-control {
    border-left: 0;
    padding-left: 0
}

.widget-newsletter small {
    display: block
}

.widget.widget-search button {
    margin-left: -1px
}

.widget.widget-search button {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.widget.widget-search .btn {
    text-transform: none
}

.widget.widget-search .form-control {
    height: 40px
}

.widget.widget-search .btn {
    font-size: 12px;
    font-weight: 600;
    height: 40px;
    padding: 8px 16px
}

.background-dark .widget.widget-search .input-group-addon {
    background-color: rgba(0, 0, 0, .35);
    border-color: rgba(0, 0, 0, .25);
    color: #999
}

#widget-contact-form {
    clear: left
}

#footer {
    clear: both;
    position: relative
}

#footer .logo {
    margin-bottom: 54px;
    margin-top: 12px;
    max-width: 80px
}

.footer-logo {
    border-right: 1px solid #333;
    margin-bottom: 20px;
    margin-right: 18px;
    padding-right: 16px
}

#footer.background-colored .footer-logo {
    border-right: 1px solid rgba(255, 255, 255, .4)
}

#footer.background-grey .footer-logo {
    border-right: 1px solid #ccc
}

.footer-content {
    padding: 40px 0
}

.footer-content .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 21px;
    text-transform: uppercase
}

.copyright-content {
    border-top: 1px solid rgba(255, 255, 255, .1);
    min-height: 80px;
    padding: 20px 0
}

footer.background-grey .copyright-content {
    border-top: 1px solid #ddd
}

.copyright-links a {
    padding: 10px
}

.copyright-text {
    font-size: 12px;
    padding-top: 10px;
    text-align: center;
    text-transform: uppercase
}

#footer .social-icons {
    float: right
}

#footer .social-icons.center {
    float: none;
    display: inline-block
}

#footer .social-icons:not(.social-icons-colored) li a:hover {
    background-color: transparent
}

.gototop-button {
    border-radius: 4px 0 0 4px;
    bottom: 110px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .05);
    line-height: 24px;
    padding: 8px 14px 9px;
    position: fixed;
    right: 0;
    z-index: 200
}

.gototop-button:hover {
    opacity: .9
}

.gototop-button:hover,
.gototop-button:focus {
    color: #fff
}

.show-grid[class*="col-md-"] .show-grid-block {
    background-color: #eee;
    border: 1px solid #fff;
    display: block;
    line-height: 40px;
    min-height: 40px;
    text-align: center
}

.hidden,
.animated {
    opacity: 0
}

.visible {
    opacity: 1
}

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

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

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

.left {
    float: left !important
}

.right {
    float: right !important
}

.center {
    float: none;
    margin: 0 auto
}

.vcenter {
    display: inline-block;
    vertical-align: middle;
    float: none
}

.vertical-align {
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.text-middle {
    display: table-cell;
    vertical-align: middle;
    margin: auto;
    z-index: 3;
    position: relative
}

.text-bottom {
    display: table-cell;
    vertical-align: bottom;
    margin: auto;
    z-index: 3;
    position: relative
}

.text-background-light {
    background-color: #fff;
    padding: 0 4px
}

.text-background-dark {
    background-color: #444;
    padding: 0 4px
}

.text-shadow-light {
    text-shadow: 1px 1px 1px rgba(255, 255, 255, .53)
}

.text-shadow-dark {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .53)
}

.background-white,
.background-light {
    background-color: #fff !important
}

.background-grey {
    background-color: #f6f6f6 !important
}

.background-dark {
    background-color: #101010 !important
}

.background-pattern {
    background-image: url('../lang2_files/overlay-pattern/gplay.png')
}

.background-pattern-1 {
    background-image: url(../lang2_files/overlay-pattern/3px-tile.png)
}

.background-pattern-2 {
    background-image: url(../lang2_files/overlay-pattern/asfalt-dark.png)
}

.background-pattern-3 {
    background-image: url(../lang2_files/overlay-pattern/axiom-pattern.png)
}

.text-medium-light {
    font-size: 50px !important;
    font-weight: 100;
    line-height: 1.1
}

.text-medium {
    font-size: 50px !important;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px
}

body.device-xs .text-medium,
body.device-xs .text-medium-light {
    font-size: 40px !important
}

body.device-xxs .text-medium,
body.device-xxs .text-medium-light {
    font-size: 30px !important
}

.text-large-light,
.text-large-light span,
.text-large-light span span {
    font-size: 90px !important;
    line-height: 100px !important;
    font-weight: 120 !important
}

.text-large,
.text-large span,
.text-large span span {
    font-size: 60px !important;
    line-height: 110px !important;
    font-weight: 800 !important
}

.text-extra-large,
.text-extra-large span {
    font-size: 120px !important;
    font-weight: 800;
    line-height: 120px
}

.text-lg,
.text-lg span {
    color: #fff;
    font-size: 80px;
    line-height: 80px;
    font-weight: 800;
    margin-bottom: 10px
}

.text-lg-x2,
.text-lg-x2 span {
    color: #fff;
    font-size: 120px;
    line-height: 140px;
    font-weight: 100;
    margin-bottom: 10px
}

.text-lg-x3,
.text-lg-x3 span {
    color: #fff;
    font-size: 230px;
    line-height: 250px;
    font-weight: 100
}

.text-small {
    font-size: 16px !important;
    font-weight: 800;
    line-height: 1.1
}

.text-muted {
    color: #c2c2c5
}

.text-bold {
    font-weight: bold !important
}

.text-azure {
    color: #0095c8 !important
}

.text-orange {
    color: #f60 !important
}

.text-green {
    color: #1fbba6 !important
}

.text-blue {
    color: #5f8295 !important
}

.text-pink {
    color: #dd5a82 !important
}

.text-purple {
    color: #dd5a82 !important
}

.text-bricky {
    color: #894550 !important
}

.text-yellow {
    color: #ffb848 !important
}

.text-red {
    color: #c82e29 !important
}

.text-light,
.text-light h1,
.text-light h2,
.text-light h3,
.text-light h4,
.text-light h5,
.text-light h6,
.text-light .lead,
.text-light p,
.text-light a:not(.button),
.text-light i,
.text-light li,
.text-light label,
.text-light div:not(.alert),
.text-light span {
    color: #fff
}

.text-dark,
.text-dark h1,
.text-dark h2,
.text-dark h3,
.text-dark h4,
.text-dark h5,
.text-dark h6,
.text-dark p,
.text-dark .lead,
.text-dark a:not(.button),
.text-dark i,
.text-dark li,
.text-dark label,
.text-dark div:not(.alert),
.text-dark span {
    color: #111 !important
}

.text-grey,
.text-grey h1,
.text-grey h2,
.text-grey h3,
.text-grey h4,
.text-grey h5,
.text-grey h6,
.text-grey .lead,
.text-grey p,
.text-grey a:not(.button),
.text-grey i,
.text-grey li,
.text-grey label,
.text-grey div:not(.alert),
.text-grey span {
    color: #ccc
}

.with-errors li {
    color: #981a1a !important
}

.font-wight-100 {
    font-weight: 100 !important
}

.font-wight-300 {
    font-weight: 300 !important
}

.font-wight-400 {
    font-weight: 400 !important
}

.font-wight-500 {
    font-weight: 500 !important
}

.font-wight-600 {
    font-weight: 600 !important
}

.font-wight-700 {
    font-weight: 700 !important
}

.font-wight-800 {
    font-weight: 800 !important
}

.border-left {
    border-left: 1px solid #eee
}

.border-top {
    border-top: 1px solid #eee
}

.border-right {
    border-width: 0 1px 0 0;
    border-color: #eee;
    border-style: solid
}

.border-bottom {
    border-bottom: 1px solid #eee
}

.border-dotted {
    border-style: dotted
}

.slider-size-half {
    max-height: 560px
}

.no-margin {
    margin: 0!important
}

.m-b-0 {
    margin-bottom: 0 !important
}

.m-b-5 {
    margin-bottom: 5px!important
}

.m-b-10 {
    margin-bottom: 10px!important
}

.m-b-15 {
    margin-bottom: 15px!important
}

.m-b-20 {
    margin-bottom: 20px!important
}

.m-b-25 {
    margin-bottom: 25px!important
}

.m-b-30 {
    margin-bottom: 30px!important
}

.m-b-35 {
    margin-bottom: 35px!important
}

.m-b-40 {
    margin-bottom: 40px!important
}

.m-b-50 {
    margin-bottom: 50px!important
}

.m-b-60 {
    margin-bottom: 60px!important
}

.m-b-70 {
    margin-bottom: 70px!important
}

.m-b-80 {
    margin-bottom: 80px!important
}

.m-b-90 {
    margin-bottom: 90px!important
}

.m-b-100 {
    margin-bottom: 100px!important
}

.m-b-150 {
    margin-bottom: 150px!important
}

.m-b-200 {
    margin-bottom: 200px!important
}

.m-t-0 {
    margin-top: 0!important
}

.m-t-5 {
    margin-top: 5px!important
}

.m-t-10 {
    margin-top: 10px!important
}

.m-t-15 {
    margin-top: 15px!important
}

.m-t-20 {
    margin-top: 20px!important
}

.m-t-25 {
    margin-top: 25px!important
}

.m-t-30 {
    margin-top: 30px!important
}

.m-t-35 {
    margin-top: 35px!important
}

.m-t-40 {
    margin-top: 40px!important
}

.m-t-50 {
    margin-top: 50px!important
}

.m-t-60 {
    margin-top: 60px!important
}

.m-t-70 {
    margin-top: 70px!important
}

.m-t-80 {
    margin-top: 80px!important
}

.m-t-90 {
    margin-top: 90px!important
}

.m-t-100 {
    margin-top: 100px!important
}

.m-l-0 {
    margin-left: 0!important
}

.m-l-5 {
    margin-left: 5px!important
}

.m-l-10 {
    margin-left: 10px!important
}

.m-l-15 {
    margin-left: 15px!important
}

.m-l-20 {
    margin-left: 20px!important
}

.m-l-25 {
    margin-left: 25px!important
}

.m-l-30 {
    margin-left: 30px!important
}

.m-l-35 {
    margin-left: 35px!important
}

.m-l-40 {
    margin-left: 40px!important
}

.m-l-50 {
    margin-left: 50px!important
}

.m-l-60 {
    margin-left: 60px!important
}

.m-l-70 {
    margin-left: 70px!important
}

.m-l-80 {
    margin-left: 80px!important
}

.m-l-90 {
    margin-left: 90px!important
}

.m-l-100 {
    margin-left: 100px!important
}

.m-r-0 {
    margin-right: 0!important
}

.m-r-5 {
    margin-right: 5px !important
}

.m-r-10 {
    margin-right: 10px!important
}

.m-r-15 {
    margin-right: 15px!important
}

.m-r-20 {
    margin-right: 20px!important
}

.m-r-25 {
    margin-right: 25px!important
}

.m-r-30 {
    margin-right: 30px!important
}

.m-r-35 {
    margin-right: 35px!important
}

.m-r-40 {
    margin-right: 40px!important
}

.m-r-50 {
    margin-right: 50px!important
}

.m-r-60 {
    margin-right: 60px!important
}

.m-r-70 {
    margin-right: 70px!important
}

.m-r-80 {
    margin-right: 80px!important
}

.m-r-90 {
    margin-right: 90px!important
}

.m-r-100 {
    margin-right: 100px!important
}

.m-0 {
    margin: 0!important
}

.m-5 {
    margin: 5px!important
}

.m-10 {
    margin: 10px!important
}

.m-15 {
    margin: 15px!important
}

.m-20 {
    margin: 20px!important
}

.m-25 {
    margin: 25px!important
}

.m-30 {
    margin: 30px!important
}

.m-35 {
    margin: 35px!important
}

.m-40 {
    margin: 40px!important
}

.m-50 {
    margin: 50px!important
}

.m-60 {
    margin: 60px!important
}

.m-70 {
    margin: 70px!important
}

.m-80 {
    margin: 80px!important
}

.m-90 {
    margin: 90px!important
}

.m-100 {
    margin: 100px!important
}

.col-no-margin [class^="col-"] {
    margin: 0!important;
    padding: 0 !important
}

.row.col-no-margin {
    margin: 0!important
}

.row.col-small-margins [class^="col-"] {
    margin: 0 0 20px 0 !important
}

.no-padding-top {
    padding-top: 0 !important
}

.no-padding-bottom {
    padding-bottom: 0 !important
}

.no-padding {
    padding: 0 !important
}

.p-0 {
    padding: 0!important
}

.p-5 {
    padding: 5px!important
}

.p-10 {
    padding: 10px!important
}

.p-15 {
    padding: 15px!important
}

.p-20 {
    padding: 20px!important
}

.p-25 {
    padding: 25px!important
}

.p-30 {
    padding: 30px!important
}

.p-35 {
    padding: 35px!important
}

.p-40 {
    padding: 40px!important
}

.p-50 {
    padding: 50px!important
}

.p-60 {
    padding: 60px!important
}

.p-70 {
    padding: 70px!important
}

.p-80 {
    padding: 80px!important
}

.p-90 {
    padding: 90px!important
}

.p-100 {
    padding: 100px!important
}

.p-b-0 {
    padding-bottom: 0!important
}

.p-b-5 {
    padding-bottom: 5px!important
}

.p-b-10 {
    padding-bottom: 10px!important
}

.p-b-15 {
    padding-bottom: 15px!important
}

.p-b-20 {
    padding-bottom: 20px!important
}

.p-b-25 {
    padding-bottom: 25px!important
}

.p-b-30 {
    padding-bottom: 30px!important
}

.p-b-35 {
    padding-bottom: 35px!important
}

.p-b-40 {
    padding-bottom: 40px!important
}

.p-b-50 {
    padding-bottom: 50px!important
}

.p-b-60 {
    padding-bottom: 60px!important
}

.p-b-70 {
    padding-bottom: 70px!important
}

.p-b-80 {
    padding-bottom: 80px!important
}

.p-b-90 {
    padding-bottom: 90px!important
}

.p-b-100 {
    padding-bottom: 100px!important
}

.p-b-150 {
    padding-bottom: 150px!important
}

.p-b-200 {
    padding-bottom: 200px!important
}

.p-t-0 {
    padding-top: 0!important
}

.p-t-5 {
    padding-top: 5px!important
}

.p-t-10 {
    padding-top: 10px!important
}

.p-t-15 {
    padding-top: 15px!important
}

.p-t-20 {
    padding-top: 20px!important
}

.p-t-25 {
    padding-top: 25px!important
}

.p-t-30 {
    padding-top: 30px!important
}

.p-t-35 {
    padding-top: 35px!important
}

.p-t-40 {
    padding-top: 40px!important
}

.p-t-50 {
    padding-top: 50px!important
}

.p-t-60 {
    padding-top: 60px!important
}

.p-t-70 {
    padding-top: 70px!important
}

.p-t-80 {
    padding-top: 80px!important
}

.p-t-90 {
    padding-top: 90px!important
}

.p-t-100 {
    padding-top: 100px!important
}

.p-t-150 {
    padding-top: 150px!important
}

.p-t-200 {
    padding-top: 200px!important
}

.p-r-0 {
    padding-right: 0!important
}

.p-r-5 {
    padding-right: 5px!important
}

.p-r-10 {
    padding-right: 10px!important
}

.p-r-15 {
    padding-right: 15px!important
}

.p-r-20 {
    padding-right: 20px!important
}

.p-r-25 {
    padding-right: 25px!important
}

.p-r-30 {
    padding-right: 30px!important
}

.p-r-35 {
    padding-right: 35px!important
}

.p-r-40 {
    padding-right: 40px!important
}

.p-r-50 {
    padding-right: 50px!important
}

.p-r-60 {
    padding-right: 60px!important
}

.p-r-70 {
    padding-right: 70px!important
}

.p-r-80 {
    padding-right: 80px!important
}

.p-r-90 {
    padding-right: 90px!important
}

.p-r-100 {
    padding-right: 100px!important
}

.p-l-0 {
    padding-left: 0!important
}

.p-l-5 {
    padding-left: 5px!important
}

.p-l-10 {
    padding-left: 10px!important
}

.p-l-15 {
    padding-left: 15px!important
}

.p-l-20 {
    padding-left: 20px!important
}

.p-l-25 {
    padding-left: 25px!important
}

.p-l-30 {
    padding-left: 30px!important
}

.p-l-35 {
    padding-left: 35px!important
}

.p-l-40 {
    padding-left: 40px!important
}

.p-l-50 {
    padding-left: 50px!important
}

.p-l-60 {
    padding-left: 60px!important
}

.p-l-70 {
    padding-left: 70px!important
}

.p-l-80 {
    padding-left: 80px!important
}

.p-l-90 {
    padding-left: 90px!important
}

.p-l-100 {
    padding-left: 100px!important
}

.b-r-2 {
    border-radius: 2px !important
}

.b-r-3 {
    border-radius: 3px !important
}

.b-r-4 {
    border-radius: 4px !important
}

.b-r-5 {
    border-radius: 5px !important
}

.b-r-6 {
    border-radius: 6px !important
}

.b-r-7 {
    border-radius: 7px !important
}

.b-r-8 {
    border-radius: 8px !important
}

.b-r-9 {
    border-radius: 9px !important
}

.b-r-10 {
    border-radius: 10px !important
}

.b-radius {
    border-radius: 50% !important
}

.float-right {
    float: right !important
}

.float-left {
    float: left !important
}

.float-none {
    float: none !important
}

.fullwidth {
    width: 100% !important
}

.img-thumbnail {
    border: 1px solid #eee;
    padding: 1px
}

.shadow-bottom {
    box-shadow: 0 1px 15px rgba(0, 0, 0, .1)
}

.shadow-inside {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .1)
}

.shadow-inside-top {
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .08)
}

.shadow-inside-bottom {
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, .08)
}

.post-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
    padding-bottom: 20px;
    position: relative;
    display: block
}

.post-item p,
.post-item .summary-article-main {
    margin-bottom: 30px
}

.post-meta {
    margin-bottom: 18px
}

.post-meta div {
    border-left: 2px solid #f6f6f6;
    float: right;
    margin-left: 18px;
    padding: 8px 0 8px 18px
}

.post-meta div:last-child {
    float: none;
    border-left: 0
}

.post-content.post-light-background .post-item {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 1px 2px 1px #eee;
    padding: 20px
}

.post-content.post-light-background .post-item .post-meta {
    margin: 12px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-item {
    padding-right: 100px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .container-article .post-modern .post-item {
    padding-left: 0
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .item-article-default .post-item {
    padding-right: 65px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta div {
    border-left: 0;
    float: inherit;
    margin-left: inherit;
    padding: inherit
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta {
    right: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 90px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta div {
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
    padding-bottom: 20px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta div:last-child {
    border-bottom: 0
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-date .post-date-day {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 42px;
    margin-bottom: 5px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-date .post-date-month {
    display: block;
    font-size: 13px;
    line-height: 13px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-date .post-date-year {
    display: none
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-comments,
body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-share {
    text-align: center
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-comments i,
body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-share i {
    font-size: 23px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-comments .post-comments-number,
body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-modern .post-meta .post-share .post-share-number {
    display: block
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-3-columns.post-modern .post-item {
    padding-left: 80px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-3-columns.post-modern .post-meta {
    width: 66px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-3-columns.post-modern .post-meta .post-date .post-date-day {
    font-size: 32px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-4-columns.post-modern .post-item {
    padding-right: 60px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-4-columns.item-article-default .post-item {
    padding-left: 10px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-4-columns.post-modern .post-meta {
    width: 40px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-4-columns.post-modern .post-meta .post-date .post-date-day {
    font-size: 26px
}

body:not(.device-sm):not(.device-xs):not(.device-xxs) .post-4-columns.post-modern .post-meta .post-date .post-date-month {
    font-size: 12px
}

.post-modern.post-thumbnail .post-item {
    padding-bottom: 54px
}

.post-thumbnail .post-image,
.post-thumbnail .post-video,
.post-thumbnail .post-audio,
.post-thumbnail .post-embed,
.post-thumbnail .post-slider {
    float: left;
    width: 40%
}

.post-thumbnail .post-content-details {
    width: 60%;
    padding-left: 20px;
    float: left
}

.post-thumbnail .post-meta {
    float: right;
    padding-left: 20px;
    width: 60%
}

.post-modern.post-thumbnail .post-meta {
    float: left;
    padding-left: 10px;
    width: auto
}

.post-thumbnail .post-read-more {
    margin-top: -14px
}

.post-image,
.post-video,
.post-audio,
.post-embed,
.post-slider {
    margin-bottom: 20px
}

.post-slider {
    overflow: hidden
}

.post-slider img {
    max-width: 100%
}

.post-3-columns .post-image,
.post-3-columns .post-video,
.post-3-columns .post-audio,
.post-3-columns .post-embed,
.post-3-columns .post-slider {
    margin-bottom: 18px
}

.post-4-columns .post-image,
.post-4-columns .post-video,
.post-4-columns .post-audio,
.post-4-columns .post-embed,
.post-4-columns .post-slider {
    margin-bottom: 12px
}

.post-slider {
    position: relative;
    overflow: hidden
}

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

.post-item .post-title h3 {
    margin-bottom: 4px;
    font-size: 26px;
    line-height: 30px
}

.post-info {
    margin-bottom: 20px;
    opacity: .5
}

.post-4-columns .post-info {
    font-size: 12px;
    line-height: 18px
}

.post-read-more {
    margin-top: -10px;
    margin-bottom: 10px
}

.post-item {
    float: right;
    position: relative;
    width: 100%
}

.post-content.post-2-columns,
.post-content.post-3-columns,
.post-content.post-4-columns,
.post-content.post-5-columns {
    margin-left: -2%
}

.post-content.post-2-columns+.sidebar,
.post-content.post-3-columns+.sidebar,
.post-content.post-4-columns+.sidebar,
.post-content.post-5-columns+.sidebar {
    margin-right: 0
}

.post-2-columns .post-item {
    margin-right: 2%;
    width: 47.98%
}

.post-2-columns .post-item .post-title h3 {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 6px
}

.post-3-columns .post-item {
    width: 31.3333%;
    margin-right: 2%
}

.post-3-columns .post-item .post-title h3 {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 6px
}

.post-4-columns .post-item {
    width: 23%;
    margin-left: 2%
}

.post-4-columns .post-item .post-title h3 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 4px
}

.post-5-columns .post-item {
    width: 18%;
    margin-left: 2%
}

.post-5-columns .post-item .post-title h3 {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 4px
}

.post-block .post-item {
    border-bottom: 0 !important;
    margin-bottom: 40px
}

.post-single {
    padding-right: 15px
}

.comments {
    margin-bottom: 80px;
    margin-top: 28px
}

.comments-title {
    text-transform: uppercase;
    margin-bottom: 20px
}

.comments .avatar {
    border-radius: 4px;
    margin-right: 15px;
    width: 50px
}

.comment {
    margin-top: 40px;
    margin-bottom: 20px
}

.comment .media-body {
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px
}

.comment .time {
    margin-bottom: 20px
}

.comment-replied {
    padding-left: 40px
}

.news-section-wrapper {
    clear: both;
    display: block;
    padding: 0 80px;
    position: relative
}

.grid-articles {
    position: relative
}

.grid-articles:not(.post-carousel) .post-entry {
    float: left;
    width: 25%;
    position: relative
}

.grid-articles:not(.post-carousel) .post-entry:first-child {
    width: 50%
}

.grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(1),
.grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(2) {
    width: 50%
}

.grid-articles .post-entry-overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.grid-articles .post-entry .post-entry-meta {
    height: auto;
    bottom: 0;
    left: 0;
    padding: 0 30px 30px;
    position: absolute;
    width: 100%;
    z-index: 2
}

.grid-articles .post-entry:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, .9) 100%);
    opacity: .4;
    transition: opacity .4s ease;
    z-index: 1
}

.grid-articles .post-entry:before,
.grid-articles.post-carousel .post-entry:before {
    content: "";
    height: auto;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 1
}

.grid-articles .post-entry:hover:before,
.grid-articles.post-carousel .post-entry:hover:before {
    opacity: 1;
    z-index: 1
}

.grid-articles .post-entry .post-entry-meta .post-entry-meta-category {
    margin-bottom: 10px
}

.grid-articles .post-entry .post-entry-meta .post-entry-meta-title h2,
.grid-articles .post-entry .post-entry-meta .post-entry-meta-title h2 a {
    color: #fff;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0
}

.grid-articles:not(.post-carousel) .post-entry:first-child .post-entry-meta .post-entry-meta-title h2,
.grid-articles:not(.post-carousel) .post-entry:first-child .post-entry-meta .post-entry-meta-title h2 a,
.grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(2) .post-entry-meta .post-entry-meta-title h2 a {
    font-size: 22px
}

.grid-articles:not(.post-carousel).grid-articles-space .post-entry .post-entry-overlay {
    border-color: #fff;
    border-style: solid;
    border-width: 4px
}

.grid-articles:not(.post-carousel).grid-articles-space .post-entry:first-child .post-entry-overlay {
    border-width: 4px 4px 4px 0
}

.grid-articles:not(.post-carousel).grid-articles-space .post-entry:nth-child(3) .post-entry-overlay,
.grid-articles:not(.post-carousel).grid-articles-space .post-entry:nth-child(5) .post-entry-overlay {
    border-width: 4px 0 4px 4px
}

.grid-articles .post-date {
    color: #fff;
    opacity: .6
}

.grid-articles.post-carousel .post-entry-meta .product-description,
.post-entry-meta .product-description a {
    color: #fff !important
}

.post-thumbnail .post-thumbnail-entry>img {
    margin-bottom: 14px;
    max-height: 240px;
    width: 100%
}

.post-thumbnail .post-thumbnail-entry .post-thumbnail-content p {
    margin-bottom: 6px
}

.post-thumbnail~.post-thumbnail-list {
    border-top: 1px solid #eee
}

.post-thumbnail~.post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content h4 a {
    font-weight: 400;
    opacity: .7
}

.post-thumbnail~.post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content h4 a:hover {
    opacity: 1
}

.post-thumbnail-list {
    position: relative
}

.post-thumbnail-list .post-thumbnail-entry img+.post-thumbnail-content {
    padding-left: 100px
}

.post-thumbnail-entry {
    border-bottom: 1px solid #eee;
    float: left;
    margin-bottom: 14px;
    padding-bottom: 12px;
    position: relative;
    clear: both
}

.post-thumbnail-entry:last-child {
    border-bottom: 0
}

.post-thumbnail-list .post-thumbnail-entry>img {
    float: left;
    display: block;
    height: 60px;
    width: 80px;
    margin-right: 20px
}

.post-thumbnail-entry .post-thumbnail-content .post-date,
.post-thumbnail-entry .post-thumbnail-content .post-category {
    color: #999;
    font-size: 13px
}

.post-thumbnail-entry .post-thumbnail-content .post-date i,
.post-thumbnail-entry .post-thumbnail-content .post-category i {
    margin-right: 2px
}

.post-thumbnail-entry .post-thumbnail-content .post-date~.post-category {
    margin-left: 6px
}

.post-thumbnail-entry .post-thumbnail-content h4,
.post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0
}

.post-thumbnail-list .post-thumbnail-entry .post-thumbnail-content h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0
}

.marketing-box {
    background-color: #f1f1f1;
    border: 1px solid #eee;
    clear: both;
    color: #999;
    height: 100px;
    line-height: 100px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px
}

.news-ticker {
    border-bottom: 1px solid #eee;
    position: relative
}

.news-ticker-title {
    background-color: #f5f5f5;
    float: left;
    margin-right: 12px;
    height: 100%
}

.news-ticker-title h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 14px;
    padding: 20px 30px 8px
}

.news-ticker-content {
    margin-bottom: 0;
    padding: 14px;
    width: 100%
}

.news-ticker-content .owl-item::before {
    color: #d82731;
    content: "";
    font-family: fontawesome;
    font-size: 10px;
    margin-left: -24px;
    position: absolute
}

.grid-system-demo [class*="col-"] .grid-col-demo {
    background-color: #eee;
    display: block;
    line-height: 54px;
    min-height: 54px;
    text-align: center
}

.grid-system-demo .row {
    padding-bottom: 42px
}

.grid-system-demo-live .row {
    padding-bottom: 42px
}

.page-error-404 {
    color: #eee;
    display: block;
    font-size: 300px;
    font-weight: 800;
    line-height: .7
}

body.device-xs .page-error-404 {
    font-size: 200px;
    line-height: .8;
    margin-bottom: 20px
}

body.device-xxs .page-error-404 {
    font-size: 140px;
    line-height: .8;
    margin-bottom: 20px
}

body:not(.no-page-loader) .wrapper,
.animsition-overlay {
    opacity: 0;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animsition-overlay {
    z-index: 9999 !important
}

.animsition-loading {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    text-align: center;
    background-color: #fff
}

.animsition-loading>img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    display: inline-block;
    margin-left: -20px;
    margin-top: -20px
}

.loader-wrapper {
    display: none
}

.row .col-xs-4:nth-child(3n+4),
.row .col-xs-3:nth-child(4n+5),
.row .col-xs-2:nth-child(6n+7),
.row .col-xs-1:nth-child(12n+13) {
    clear: left
}

@media(min-width:768px) {
    .row .col-xs-6:nth-child(2n+3),
    .row .col-xs-4:nth-child(3n+4),
    .row .col-xs-3:nth-child(4n+5),
    .row .col-xs-2:nth-child(6n+7),
    .row .col-xs-1:nth-child(12n+13) {
        clear: none
    }
}

@media(min-width:992px) {
    .row .col-sm-6:nth-child(2n+3),
    .row .col-sm-3:nth-child(4n+5),
    .row .col-sm-2:nth-child(6n+7),
    .row .col-sm-1:nth-child(12n+13) {
        clear: left
    }
    .row .col-md-4:nth-child(3n+4) {
        clear: right
    }
}

@media(min-width:1200px) {
    .row .col-md-2:nth-child(6n+7),
    .row .col-md-1:nth-child(12n+13) {
        clear: right
    }
    .row .col-lg-6:nth-child(2n+3),
    .row .col-lg-4:nth-child(3n+4),
    .row .col-lg-3:nth-child(4n+5),
    .row .col-lg-2:nth-child(6n+7),
    .row .col-lg-1:nth-child(12n+13) {
        clear: left
    }
}

@media(min-width:480px) and (max-width:991px) {
    .row .col-md-6:nth-child(2n+3),
    .row .col-md-4:nth-child(2n+3),
    .row .col-md-3:nth-child(2n+4),
    .row .col-lg-6:nth-child(2n+3),
    .row .col-lg-4:nth-child(3n+4),
    .row .col-lg-3:nth-child(4n+5),
    .row .col-lg-2:nth-child(6n+7),
    .row .col-lg-1:nth-child(12n+13) {
        clear: none
    }
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4 {
        clear: left;
        float: right;
        margin-right: 0;
        width: 49.99%
    }
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        width: 100%
    }
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        width: 100%
    }
}

@media(max-width:991px) {
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-19,
    .col-sm-11,
    .col-sm-12 {
        width: 100%
    }
}

.row .col-xs-4:nth-child(3n+4),
.row .col-xs-3:nth-child(4n+5),
.row .col-xs-2:nth-child(6n+7),
.row .col-xs-1:nth-child(12n+13) {
    clear: left
}

@media(min-width:768px) {
    .row .col-xs-6:nth-child(2n+3),
    .row .col-xs-4:nth-child(3n+4),
    .row .col-xs-3:nth-child(4n+5),
    .row .col-xs-2:nth-child(6n+7),
    .row .col-xs-1:nth-child(12n+13) {
        clear: none
    }
}

@media(min-width:992px) {
    .row .col-sm-6:nth-child(2n+3),
    .row .col-sm-3:nth-child(4n+5),
    .row .col-sm-2:nth-child(6n+7),
    .row .col-sm-1:nth-child(12n+13) {
        clear: left
    }
    .row .col-md-4:nth-child(3n+4) {
        clear: left
    }
    .our-option-default .row .col-md-4:nth-child(3n+4) {
        clear: right
    }
}

@media(min-width:1200px) {
    .row .col-md-2:nth-child(6n+7),
    .row .col-md-1:nth-child(12n+13) {
        clear: right
    }
    .row .col-lg-6:nth-child(2n+3),
    .row .col-lg-4:nth-child(3n+4),
    .row .col-lg-3:nth-child(4n+5),
    .row .col-lg-2:nth-child(6n+7),
    .row .col-lg-1:nth-child(12n+13) {
        clear: left
    }
}

@media(min-width:480px) and (max-width:991px) {
    .row .col-md-6:nth-child(2n+3),
    .row .col-md-4:nth-child(2n+3),
    .row .col-md-3:nth-child(2n+4),
    .row .col-lg-6:nth-child(2n+3),
    .row .col-lg-4:nth-child(3n+4),
    .row .col-lg-3:nth-child(4n+5),
    .row .col-lg-2:nth-child(6n+7),
    .row .col-lg-1:nth-child(12n+13) {
        clear: none
    }
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4 {
        clear: left;
        float: right;
        margin-right: 0;
        width: 49.99%
    }
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-19,
    .col-md-11,
    .col-md-12 {
        width: 100%
    }
    .container-default .col-md-4:nth-child(2n+1) {
        clear: right
    }
    .col-md-6 .col-md-6 {
        clear: left;
        float: right;
        margin-right: 0;
        width: 50%
    }
    .progress-bar-project .row .col-md-6:nth-child(2n+3) {
        clear: right
    }
    .description-project {
        margin-bottom: 30px
    }
    .dedicate-section .col-md-4 {
        width: 100%
    }
}

.scrolldown-animation {
    animation: 1s ease-in-out 0s normal none infinite running scrolldown-keyframes;
    bottom: -40px;
    height: 40px;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    width: 45px;
    z-index: 20
}

@keyframes scrolldown-keyframes {
    0%,
    100% {
        transform: translateY(-8px)
    }
    50% {
        transform: translateY(0)
    }
}

@keyframes scrolldown-keyframes {
    0%,
    100% {
        transform: translateY(-8px)
    }
    50% {
        transform: translateY(0)
    }
}

.animated-background {
    animation: 120s linear 0s normal none infinite running animatedBackground;
    background-repeat: repeat-x;
    background-size: cover
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: -3000px 0
    }
}

@keyframes animatedBackground {
    0% {
        background-position: 0 0
    }
    100% {
        background-position: -3000px 0
    }
}

.image-block {
    background-color: #f4f4f4
}

.image-block .col-md-6 {
    padding: 60px
}

.image-block-content {
    margin-bottom: 30px;
    padding: 0 50px
}

.image-block-content .feature-icon {
    border-radius: 100%;
    color: #fff;
    display: inline-block;
    height: 60px;
    line-height: 60px;
    text-align: center;
    width: 60px;
    background-color: #eee
}

.image-block-content .feature-icon i {
    font-size: 28px;
    margin-top: 16px
}

.image-block-content .feature-content {
    padding-left: 85px
}

.image-block-content .feature-content h3 {
    margin-bottom: 0
}

.image-absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 426px;
    height: 556px
}

.heading-fancy-border {
    border: 15px solid #111;
    margin: 0 10%;
    padding: 60px 0
}

.text-light .heading-fancy-border {
    border-color: #fff !important
}

.hero-heading-2 {
    padding: 20px;
    background-color: #111;
    border-radius: 8px
}

.hero-heading-2>i {
    font-size: 160px;
    opacity: .1;
    position: absolute;
    right: 23px;
    top: 2px
}

.hero-heading-3 {
    background-color: #fff;
    border: 36px solid #fff;
    box-shadow: 0 0 0 1px #111 inset;
    color: #111;
    opacity: .7;
    padding: 72px;
    width: auto;
    margin: 40px;
    text-align: center
}

.hero-heading-3 h2,
.hero-heading-3 h3 {
    font-family: 'Josefin Sans', sans-serif;
    text-transform: uppercase;
    font-size: 92px;
    text-align: center;
    margin: 0;
    line-height: 72px
}

.working-hours ul {
    padding: 0
}

.working-hours li {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: inline-block;
    padding: 10px 0;
    width: 100%
}

.working-hours li::before {
    content: "";
    font-family: FontAwesome;
    margin-right: 15px
}

.working-hours li span {
    float: right
}

.working-hours p {
    font-size: 13px;
    color: #111
}

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

.price-menu-list li {
    margin-bottom: 40px
}

.price-menu-list li>h2 {
    margin-bottom: 0
}

.price-menu-list li>p {
    margin-bottom: 8px;
    opacity: .6
}

.price-menu-list li>img {
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    width: 100px;
    height: 100px;
    float: left
}

.row .clear-right {
    clear: right
}

.sidebar-portfolio {
    position: initial
}

.accordion .ac-item .ac-title::before {
    font-family: fontawesome
}

.accordion {
    margin-bottom: 20px
}

.accordion .ac-item .ac-title::before {
    cursor: pointer;
    position: absolute;
    top: 14px;
    left: 10px;
    display: block;
    padding: 3px 6px 2px;
    color: #ddd;
    content: "";
    font-size: 12px;
    line-height: 12px;
    -webkit-transition: all .25s ease-in-out 0s;
    transition: all .25s ease-in-out 0s
}

.accordion .ac-item.ac-active .ac-title::before {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg)
}

.accordion .ac-item>.ac-title>i {
    margin-right: 16px
}

.accordion .ac-title {
    position: relative;
    padding: 12px 30px 12px 15px;
    font-size: 13px;
    line-height: 22px;
    font-weight: 600;
    cursor: pointer;
    background-color: rgba(0, 0, 0, .06);
    margin-bottom: 2px
}

.accordion .ac-content {
    overflow: hidden
}

.ac-content {
    padding: 16px 13px
}

.accordion.clean .ac-item .ac-title {
    border: 0;
    background: transparent
}

.accordion.border .ac-item .ac-title {
    border: 1px solid #e7e7e7
}

.accordion.border-bottom .ac-item .ac-title {
    border-bottom: 1px solid #e7e7e7
}

.accordion.radius .ac-item .ac-title {
    border-radius: 4px
}

.accordion.fancy .ac-item {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #fff;
    border-color: #e7e7e7;
    border-style: solid;
    border-width: 1px 1px 0 1px
}

.accordion.fancy .ac-item .ac-title {
    margin: 0
}

.accordion.fancy .ac-item.ac-active .ac-title,
.accordion.fancy .ac-item:last-child {
    border-bottom: 1px solid #e7e7e7
}

.accordion.fancy.clean .ac-item.ac-active .ac-title {
    background-color: transparent
}

.accordion.fancy.radius>.ac-item:first-child {
    border-radius: 4px 4px 0 0
}

.accordion.fancy.radius>.ac-item:last-child {
    border-radius: 0 0 4px 4px
}

.accordion.color .ac-item .ac-title:before {
    color: #fff
}

.accordion .ac-item.ac-open {
    display: block
}

.accordion.accordion-transparent .ac-item {
    background-color: transparent !important;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: rgba(0, 0, 0, .1)
}

.accordion.accordion-transparent .ac-item .ac-title::before {
    color: #333
}

.accordion.accordion-transparent.fancy .ac-item.ac-active .ac-title,
.accordion.accordion-transparent .ac-item:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, .1)
}

.accordion.accordion-transparent .ac-item p {
    color: #111
}

.alert>p {
    color: #fff
}

.btn {
    border-radius: 4px;
    padding: 12px 20px
}

.btn.btn-primary:hover {
    opacity: .8
}

.button+.button,
.btn+.btn {
    margin-right: 10px
}

.button {
    cursor: pointer;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 100%;
    margin: 10px 0;
    outline: 0 none;
    padding: 18px 36px;
    position: relative;
    text-transform: uppercase;
    white-space: nowrap;
    border: 1px solid #ccc
}

.button:hover:not,
a.button:hover {
    opacity: .8
}

button:focus {
    outline: 0
}

.button.effect:hover {
    opacity: 1
}

.btn-send-icon {
    padding: 13px 6px 12px 14px
}

.button-light {
    background-color: #fff;
    border: 1px solid #eee
}

.button-light,
.button-light span {
    color: #111 !important
}

.button-dark {
    background-color: #111;
    color: #fff
}

.button-dark:hover {
    background-color: #333;
    color: #fff
}

.button i {
    font-size: 15px;
    margin-right: 10px
}

.button.icon-left i {
    margin-right: 10px
}

.button.icon-right i {
    margin-left: 10px;
    margin-right: 0
}

.button.small {
    font-size: 10px;
    height: 28px;
    line-height: 24px;
    padding: 0 14px
}

.button.transparent.small {
    line-height: 0
}

.button.small i {
    font-size: 11px;
    margin-right: 6px
}

.button.small.icon-left i {
    margin-right: 6px
}

.button.small.icon-right i {
    margin-left: 6px;
    margin-right: 0
}

.button.large {
    font-size: 16px;
    height: 55px;
    letter-spacing: 2px;
    line-height: 52px;
    padding: 0 32px
}

.button.transparent.large {
    line-height: 22px
}

.button.border:hover,
.button.transparent:hover {
    opacity: 1
}

.button.transparent:hover,
.button.transparent:hover span,
.button.transparent:hover i {
    color: #333 !important
}

.button.full-rounded {
    border-radius: 50px
}

.button.rounded {
    border-radius: 3px
}

.button.fullwidth-button {
    display: block!important;
    margin-left: auto!important;
    margin-right: auto!important
}

.button.button-3d {
    box-shadow: 0 -3px rgba(0, 0, 0, .1) inset
}

.button.button-3d:hover {
    box-shadow: 0 -3px rgba(0, 0, 0, .2) inset
}

.button.border {
    color: #333;
    border: 2px solid #333
}

.button.border:hover {
    background-color: #333;
    color: #fff
}

.button.border.light {
    border: 2px solid #fff;
    color: #fff
}

.button.border.light:hover {
    background-color: #fff;
    color: #252525
}

.button.border.light:hover:hover i {
    color: #252525
}

.button.transparent {
    background-color: transparent;
    border-color: #fff;
    border-style: solid;
    border-width: 2px;
    box-shadow: none;
    color: #fff;
    letter-spacing: 2px;
    opacity: 1;
    padding: 16px 36px;
    transition: all .2s linear 0s
}

.button.transparent:hover,
.button.transparent:active {
    background-color: #fff;
    color: #333
}

.button.fullwidth {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important
}

.button.blue,
.button.blue-dark,
.button.aqua,
.button.purple-light,
.button.purple,
.button.purple-dark,
.button.red-dark,
.button.red,
.button.red-light,
.button.red-light,
.button.pink-dark,
.button.pink,
.button.orange-dark,
.button.orange,
.button.orange-light,
.button.yellow,
.button.green,
.button.amber,
.button.brown,
.button.brown-light,
.button.black,
.button.black-light,
.button.grey-dark {
    border-color: #000;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2)
}

.button.blue {
    background-color: #41a5db;
    border-color: #3ca0d6
}

.button.blue-dark {
    background-color: #2b6baa;
    border-color: #25629f
}

.button.aqua {
    background-color: #40c0cb;
    border-color: #3eb5bf
}

.button.purple-light {
    background-color: #903090;
    border-color: #892689
}

.button.purple {
    background-color: #9b175e;
    border-color: #901155
}

.button.purple-dark {
    background-color: #5d4157;
    border-color: #55384f
}

.button.red-dark {
    background-color: #ca0027;
    border-color: #b20022
}

.button.red {
    background-color: #e42d3f;
    border-color: #d42b3c;
    color: #fff
}

.button.red-light {
    background-color: #f05761;
    border-color: #ed4b55;
    color: #fff
}

.button.red-light {
    background-color: #f05761;
    border-color: #ed4b55;
    color: #fff
}

.button.pink-dark {
    background-color: #f51e70;
    border-color: #e31865
}

.button.pink {
    background-color: #f772a3;
    border-color: #f2689b
}

.button.orange-dark {
    background-color: #e57200;
    border-color: #d66b00
}

.button.orange {
    background-color: #f59017;
    border-color: #e5820b
}

.button.orange-light {
    background-color: #f7d137;
    border-color: #edc72b;
    color: #774f38
}

.button.yellow {
    background-color: #ffec00;
    border-color: #e6d500;
    color: #333
}

.button.green {
    background-color: #77a600;
    border-color: #6e9a00
}

.button.amber {
    background-color: #eb9c4d;
    border-color: #d88d42
}

.button.brown {
    background-color: #774f38;
    border-color: #714a34
}

.button.brown-light {
    background-color: #935d3f;
    border-color: #8b583b
}

.button.black {
    background-color: #111;
    border: 0
}

.button.black-light {
    background-color: #2a2a2a
}

.button.grey-dark {
    background-color: #404051
}

.button.effect {
    position: relative;
    overflow: hidden
}

.button,
.button.effect.fill-vertical:after,
.button.effect.fill-horizontal:after,
.button.effect.icon-bottom span,
.button.effect.icon-bottom i,
.button.effect.icon-top span,
.button.effect.icon-top i,
.button.effect.icon-right span,
.button.effect.icon-right i,
.button.effect.icon-left span,
.button.effect.icon-left i {
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.button.effect.icon-left i {
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    -webkit-transform: translate(-24px, -50%);
    -ms-transform: translate(-24px, -50%);
    transform: translate(-24px, -50%);
    ms-transform: translate(-24px, -50%);
    opacity: 0
}

.button.effect.icon-left span {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-backface-visibility: hidden
}

.button:hover.effect.icon-left span {
    -webkit-transform: translate(15px, 0);
    -ms-transform: translate(15px, 0);
    transform: translate(15px, 0);
    -ms-transform: translate(15px, 0)
}

.button.small.effect.icon-left i {
    -webkit-transform: translate(-14px, -50%);
    -ms-transform: translate(-14px, -50%);
    transform: translate(-14px, -50%)
}

.button.small.effect.icon-left:hover span {
    -webkit-transform: translate(8px, 0);
    -ms-transform: translate(8px, 0);
    transform: translate(8px, 0)
}

.button.effect.icon-right i {
    position: absolute;
    display: block;
    top: 50%;
    right: 0;
    -webkit-transform: translate(30px, -50%);
    -ms-transform: translate(30px, -50%);
    transform: translate(30px, -50%);
    -ms-transform: translate(30px, -50%);
    opacity: 0
}

.button.effect.icon-right span {
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-backface-visibility: hidden
}

.button:hover.effect.icon-right span {
    -webkit-transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0);
    transform: translate(-15px, 0);
    -ms-transform: translate(-15px, 0)
}

.button.small.effect.icon-right i {
    -webkit-transform: translate(14px, -50%);
    -ms-transform: translate(14px, -50%);
    transform: translate(14px, -50%)
}

.button.small.effect.icon-right:hover span {
    -webkit-transform: translate(-5px, 0);
    -ms-transform: translate(-5px, 0);
    transform: translate(-5px, 0)
}

.button.effect.icon-top i {
    position: absolute;
    display: block;
    top: -30px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0
}

.button.effect.icon-top span {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -ms-transform: translate(0, 0)
}

.button:hover.effect.icon-top span {
    -webkit-transform: translate(0, 35px);
    -ms-transform: translate(0, 35px);
    transform: translate(0, 35px);
    -ms-transform: translate(0, 35px)
}

.button.small.effect.icon-top i {
    top: -22px
}

.button.large.effect.icon-top:hover span {
    -webkit-transform: translate(0, 54px);
    -ms-transform: translate(0, 54px);
    transform: translate(0, 54px)
}

.button.effect.icon-bottom i {
    position: absolute;
    display: block;
    bottom: -36px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 0
}

.button.effect.icon-bottom span {
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -o-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
    -ms-transform: translate(0, 0)
}

.button:hover.effect.icon-bottom span {
    -webkit-transform: translate(0, -27px);
    -ms-transform: translate(0, -27px);
    transform: translate(0, -27px);
    -moz-transform: translate(0, -27px);
    -o-transform: translate(0, -27px)
}

.button.small.effect.icon-bottom i {
    bottom: -27px
}

.button.large.effect.icon-bottom:hover span {
    -webkit-transform: translate(0, -48px);
    -ms-transform: translate(0, -48px);
    transform: translate(0, -48px)
}

.button:hover.effect.icon-right i,
.button:hover.effect.icon-left i,
.button:hover.effect.icon-top i,
.button:hover.effect.icon-bottom i {
    opacity: 1
}

.button.effect.fill-vertical,
.button.effect.fill-horizontal {
    overflow: hidden
}

.button.effect.fill-vertical span {
    position: relative;
    z-index: 1
}

.button.effect.fill-vertical:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(40deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(40deg);
    transform: translateX(-50%) translateY(-50%) rotate(40deg)
}

.button.effect.fill-vertical:hover:after {
    height: 550%;
    opacity: 1
}

.button.effect.fill-vertical:after {
    background-color: #252525
}

.button.effect.fill-vertical:hover {
    color: #fff
}

.button.effect.fill-horizontal span {
    position: relative;
    z-index: 1
}

.button.effect.fill-horizontal:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-11%);
    -ms-transform: translateX(-50%) translateY(-11%);
    transform: translateX(-50%) translateY(-11%)
}

.button.effect.fill-horizontal:hover:after {
    height: 550%;
    opacity: 1
}

.button.effect.fill-horizontal:after {
    background-color: #252525
}

.button.effect.fill-horizontal:hover {
    color: #fff
}

.button.effect.fill:hover {
    background-color: #252525;
    color: #fff
}

.button.aqua.effect.fill-vertical:after {
    background-color: #1a9ca7
}

.button.aqua.effect.fill-vertical:hover {
    color: #fff
}

.button.aqua.effect.fill-horizontal:after {
    background-color: #1a9ca7
}

.button.aqua.effect.fill-horizontal:hover {
    color: #fff
}

.button.aqua.effect.fill:hover {
    background-color: #087680
}

.button.transparent.effect.fill-vertical:after,
.button.transparent.effect.fill-horizontal:after {
    background-color: #fff
}

.button.transparent.effect.fill-vertical:hover,
.button.transparent.effect.fill-horizontal:hover {
    color: #333
}

.button.transparent.effect.fill:hover {
    background-color: #fff;
    color: #333
}

a.read-more {
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all .2s ease 0s;
    -moz-transition: all .2s ease 0s;
    -o-transition: all .2s ease 0s;
    -ms-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.heading-fancy {
    position: relative;
    margin-bottom: 30px;
    clear: both
}

.heading-fancy h1,
.heading-fancy h2,
.heading-fancy h3,
.heading-fancy h4,
.heading-fancy h5,
.heading-fancy h6 {
    background-color: #fff;
    padding-right: 15px;
    margin-bottom: 0;
    position: relative;
    display: inline-block
}

.heading-fancy h4,
.heading-fancy h5,
.heading-fancy h6 {
    padding-right: 10px
}

.heading-fancy.heading-line:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    border-top: 1px solid #e5e5e5;
    left: auto;
    top: 49%;
    right: 0
}

.heading-fancy.text-center h1,
.heading-fancy.text-center h2,
.heading-fancy.text-center h3,
.heading-fancy.text-center h4,
.heading-fancy.text-center h5,
.heading-fancy.text-center h6 {
    padding-left: 15px
}

.heading-fancy.text-right h1,
.heading-fancy.text-right h2,
.heading-fancy.text-right h3,
.heading-fancy.text-right h4,
.heading-fancy.text-right h5,
.heading-fancy.text-right h6 {
    padding-left: 15px;
    padding-right: 0
}

.heading-jumbo {
    font-size: 70px;
    font-weight: 600;
    line-height: 1;
    margin: 0 0 .2em
}

.heading-title-simple {
    margin-bottom: 30px;
    display: block;
    padding: 0 0 10px
}

.heading-title-border-bottom {
    border-bottom: 1px solid;
    border-bottom-color: #e7e7e7
}

.heading-title-simple h1,
.heading-title-simple h2,
.heading-title-simple h3,
.heading-title-simple h4,
.heading-title-simple h5,
.heading-title-simple h6 {
    margin-bottom: 0;
    position: relative
}

.hr-title abbr {
    background-color: #fff
}

.hr-title {
    border-top-style: solid;
    border-top-width: 1px;
    font-size: 16px;
    text-align: center;
    height: 10px;
    line-height: 25px;
    margin: 10px 0;
    height: auto;
    color: #bbb
}

.hr-title abbr {
    padding: 2px 10px;
    border-radius: 2px;
    position: relative;
    top: -10px;
    text-transform: uppercase
}

.hr-title i {
    position: relative;
    top: -2px;
    font-size: 8px
}

.hr-title.hr-full {
    width: 100%
}

.hr-title.hr-long {
    width: 50%;
    margin: 20px auto 30px
}

.progress-bar-project .hr-title.hr-long {
    width: 100%
}

.hr-title.hr-short {
    width: 25%;
    margin: 20px auto 30px
}

.hr-title.hr-left {
    text-align: left
}

.hr-title.hr-right {
    text-align: right
}

.hr-title.hr-left abbr {
    padding-left: 0
}

.hr-title.hr-right abbr {
    padding-right: 0
}

.hr-title.hr-left.hr-long {
    margin-left: 0
}

.hr-title.hr-right.hr-long {
    margin-right: 0
}

.hr-title.hr-double {
    border-top: 4px double #ebebeb
}

.hr-title.hr-double abbr {
    top: -12px
}

.title-manage-page h2 abbr {
    font-size: 16px;
    top: -25px;
    color: #bbb
}

.heading {
    margin-bottom: 80px
}

.heading h1,
.heading h2,
.heading h3,
.heading h4,
.title-service {
    color: #303030;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.heading:after {
    border-top: 3px solid #303030;
    display: block;
    margin-top: 10px;
    width: 30px;
    content: ""
}

.heading>span {
    display: block;
    color: #888
}

.heading h1 {
    font-size: 52px;
    line-height: 54px
}

.heading h1+span,
.heading h1+span.lead {
    font-size: 22px
}

.heading h2 {
    font-size: 40px;
    line-height: 42px
}

.heading h2+span,
.heading h2+span.lead {
    font-size: 20px
}

.heading h3 {
    font-size: 28px;
    line-height: 30px
}

.heading h3+span,
.heading h3+span.lead {
    font-size: 18px
}

.heading h4 {
    font-size: 18px;
    line-height: 20px
}

.heading h4+span,
.heading h4+span.lead {
    font-size: 15px
}

.heading-center {
    text-align: center;
    float: none
}

.heading.heading-center>span,
.heading.title-center>span {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.heading.heading-center:after,
.heading.title-center:after {
    margin: 30px auto 0
}

.heading.heading-light,
.text-light .heading,
.heading.heading-light p,
.heading.heading-light .lead,
.heading.heading-light h2,
.heading.heading-light h3 {
    color: #fff !important
}

.heading.heading-light:after,
.text-light .heading:after {
    border-top: 4px solid #fff
}

.heading-hero {
    border: 2px solid #fff;
    color: #fff;
    font-family: Raleway;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 60px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 8px 21px !important;
    position: relative;
    margin-bottom: 30px
}

.tabs-navigation {
    margin-bottom: 0;
    padding-left: 0;
    border-bottom-width: 0;
    list-style: none
}

.tabs-navigation::after,
.tabs-navigation::before {
    content: ' ';
    display: table
}

.tabs-navigation::after {
    clear: both
}

.tabs-navigation li {
    position: relative;
    display: block;
    float: left;
    margin: 0 0 -1px
}

.tabs-navigation li a {
    position: relative;
    border: 1px solid transparent;
    margin-right: -1px;
    padding: 9px 20px 11px;
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase
}

.tabs-navigation li a i:first-child {
    margin-right: 8px
}

.tabs-navigation li a i.tab-single-icon {
    margin: 0
}

.tabs-navigation li a img {
    max-width: none
}

.tabs-navigation li a,
.tabs-navigation li a:focus,
.tabs-navigation li a:hover {
    text-decoration: none;
    outline: 0
}

.tabs-navigation li.active a {
    z-index: 3
}

.tabs-navigation li.active a::after {
    content: '';
    display: block;
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    z-index: 1;
    height: 3px;
    transition: all .4s ease-in-out 0s;
    -webkit-transition: all .4s ease-in-out 0s
}

.tabs-navigation li.active a:focus {
    cursor: default
}

.tabs-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    overflow: hidden
}

.tabs-content>.tab-pane {
    display: none
}

.tabs-content>.active {
    display: block
}

.tabs-vertical {
    overflow: hidden
}

.tabs-vertical .tabs-navigation {
    float: left;
    width: 240px;
    margin-top: 0
}

.tabs-vertical .tabs-navigation li {
    float: none
}

.tabs-vertical .tabs-navigation li a {
    padding: 12px 20px;
    margin: 0;
    border: 1px solid #ddd
}

.tabs-vertical .tabs-navigation li.active a,
.tabs-vertical .tabs-navigation li.active a:focus,
.tabs-vertical .tabs-navigation li.active a:hover {
    border-right-width: 1px
}

.tabs-vertical .tabs-navigation li.active a::after {
    top: -1px;
    left: -1px;
    right: auto;
    bottom: -1px;
    width: 3px;
    height: auto
}

.tabs-vertical .tabs-content {
    left: -1px;
    margin: 0 0 40px 239px
}

.tabs-navigation li a {
    color: #70767a;
    border-color: #e5e8e8;
    background: #f3f6f6
}

.tabs-navigation li a:hover {
    color: #1c202a;
    background: #f8fafa
}

.tabs-navigation li.active a,
.tabs-navigation li.active a:focus,
.tabs-navigation li.active a:hover {
    border-color: #e5e8e8 #e5e8e8 #f8f9fb;
    color: #1c202a;
    box-shadow: none;
    background: #f8f9fb
}

.tabs-navigation-transparent li.active a,
.tabs-navigation-transparent li.active a:focus,
.tabs-navigation-transparent li.active a:hover {
    background: 0 0
}

.tabs-vertical .tabs-navigation li.active a,
.tabs-vertical .tabs-navigation li.active a:focus,
.tabs-vertical .tabs-navigation li.active a:hover {
    border-right-color: #f8f9fb;
    border-bottom-color: #e5e8e8
}

.tabs-content {
    border-color: #e5e8e8;
    background: #f8f9fb
}

.tabs-navigation li a {
    color: #444;
    border-color: #ddd;
    background: #f8fafa
}

.tabs-navigation li a:hover {
    color: #2e343c;
    background: #fff
}

.tabs-navigation li.active a,
.tabs-navigation li.active a:focus,
.tabs-navigation li.active a:hover {
    background: #fff;
    border-color: #ddd #ddd rgba(0, 0, 0, 0);
    box-shadow: none;
    color: #2e343c
}

.tabs-navigation-transparent li.active a,
.tabs-navigation-transparent li.active a:focus,
.tabs-navigation-transparent li.active a:hover {
    background: 0 0
}

.tabs-vertical .tabs-navigation li.active a,
.tabs-vertical .tabs-navigation li.active a:focus,
.tabs-vertical .tabs-navigation li.active a:hover {
    border-right-color: #fff;
    border-bottom-color: #ddd
}

.tabs-content {
    border-color: #ddd;
    background: #fff
}

.tabs-vertical.tabs-right .tabs-navigation {
    float: right
}

.tabs-vertical.tabs-right .tabs-navigation li {
    float: none
}

.tabs-vertical.tabs-right .tabs-content {
    margin: 0 239px 40px 0;
    right: 0;
    left: 0
}

.tabs-vertical.tabs-right .tabs-navigation li.active a,
.tabs-vertical.tabs-right .tabs-navigation li.active a:focus,
.tabs-vertical.tabs-right .tabs-navigation li.active a:hover {
    border-color: #ddd #ddd #ddd #fff;
    border-left-width: 1px;
    border-left-style: solid;
    margin-left: -1px !important
}

.tabs-vertical.tabs-right .tabs-navigation li.active a::after {
    left: auto;
    right: -1px
}

.tabs-vertical.tabs-right .tabs-navigation li a {
    margin-left: -1px;
    margin-right: auto
}

.modern .tabs-navigation li:first-child {
    margin-left: 30px
}

.no-border .tabs-navigation li {
    border: 0
}

.no-border .tabs-content {
    border-style: solid none none;
    border-width: 1px 0 0
}

.simple .tabs-navigation li a {
    background-color: transparent;
    border-width: 0 0 2px;
    margin-bottom: -1px
}

.simple .tabs-navigation li.active a,
.simple .tabs-navigation li.active a:focus,
.simple .tabs-navigation li.active a:hover {
    border-color: #00c0e9;
    color: #2e343c
}

.simple .tabs-content {
    border-width: 2px 0 0;
    padding: 20px 0
}

.clean .tabs-navigation li {
    border: 0
}

.clean .tabs-content {
    border: 0
}

.clean .tabs-navigation li.active a,
.clean .tabs-navigation li.active a:focus,
.clean .tabs-navigation li.active a:hover,
.clean .tabs-navigation li a {
    border-width: 0
}

.border .tabs-navigation li.active a::after {
    background: #00aab3
}

.radius .tabs-navigation li a {
    border-radius: 8px 8px 0 0
}

.radius .tabs-navigation li.active a {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0
}

.radius .tabs-content {
    border-radius: 0 8px 8px
}

.justified .tabs-navigation {
    width: 100%;
    margin-bottom: -1px
}

.justified .tabs-navigation li {
    float: none;
    display: table-cell;
    width: 1%;
    text-align: left
}

.justified .tabs-navigation li:last-child a {
    margin-right: 0
}

.tabs-right .tabs-navigation li {
    float: right
}

.tabs-bottom ul.tabs-navigation {
    margin-top: -21px
}

.tabs-bottom .tabs-navigation li.active a::after {
    top: auto;
    bottom: -1px
}

.tabs-bottom .tabs-navigation li.active a,
.tabs-bottom .tabs-navigation li.active a:focus,
.tabs-bottom .tabs-navigation li.active a:hover {
    border-color: transparent #ddd #ddd
}

.color .tabs-navigation li.active a::after {
    background: none
}

.color .tabs-navigation li.active a {
    color: #fff;
    background: #00c0e9
}

.linetriangle .tabs-navigation>li.active>a {
    border-color: transparent
}

.linetriangle .tabs-navigation li.active a,
.linetriangle .tabs-navigation li.active a:focus,
.linetriangle .tabs-navigation li.active a:hover,
.linetriangle .tabs-navigation li a {
    border-left-width: 0;
    border-bottom-width: 1px;
    border-right-width: 0;
    border-top-width: 0;
    background: transparent;
    background-color: transparent
}

.linetriangle .tabs-navigation>li.active>a:after,
.linetriangle .tabs-navigation>li.active>a:before {
    border: medium outset transparent;
    content: "";
    height: 0;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 100%;
    width: 0;
    z-index: 1
}

.linetriangle .tabs-navigation>li.active>a:after {
    border-top-color: #fafafa;
    border-width: 10px;
    margin-left: -10px
}

.linetriangle .tabs-navigation>li.active>a:before {
    border-top-color: rgba(0, 0, 0, .7);
    border-width: 11px;
    margin-left: -11px
}

.linetriangle.triangle-simple .tabs-content {
    background: #fff;
    border-color: #ddd;
    border-width: 1px 0 0
}

@media screen and (max-width:991px) {
    .tabs-navigation,
    .tabs-vertical .tabs-content,
    .tabs-vertical .tabs-navigation,
    .justified .tabs-navigation,
    .tabs-right .tabs-navigation {
        width: auto;
        float: none
    }
    .tabs-content,
    .tabs-vertical .tabs-content,
    .justified .tabs-content,
    .tabs-right .tabs-content {
        margin-left: 0;
        min-height: 0!important
    }
    .tabs-vertical .tabs-content,
    .justified .tabs-content,
    .tabs-right .tabs-content {
        left: 0
    }
    .tabs-vertical .tabs-content-transparent {
        border-left-width: 0;
        padding: 40px 0;
        border-top-width: 1px
    }
    .tabs-navigation li,
    .tabs-vertical .tabs-navigation li,
    .justified .tabs-navigation li,
    .justified .tabs-navigation li,
    .tabs-right .tabs-navigation li,
    .tabs-right .tabs-navigation li {
        width: auto;
        float: none;
        display: block;
        text-align: left
    }
    .tabs-navigation li a,
    .tabs-vertical .tabs-navigation li a {
        margin-right: 0
    }
    .tabs-vertical .tabs-navigation li a:after {
        width: auto;
        height: 3px;
        right: -1px;
        bottom: auto
    }
    .tabs-vertical .tabs-navigation li.active a {
        border-right-width: 1px
    }
    .tabs-navigation li.active a,
    .tabs-navigation li.active a:hover,
    .tabs-vertical .tabs-navigation li.active a,
    .tabs-vertical .tabs-navigation li.active a:hover {
        border-right-color: #d1d7d9;
        border-bottom-color: #d1d7d9
    }
    .tabs-navigation li.active a,
    .tabs-navigation li.active a:hover,
    .tabs-vertical .tabs-navigation li.active a,
    .tabs-vertical .tabs-navigation li.active a:hover {
        border-right-color: #dde1e1;
        border-bottom-color: #dde1e1
    }
    .tabs-vertical.tabs-right .tabs-navigation {
        width: 100%
    }
    .tabs-vertical.tabs-right .tabs-navigation li a {
        margin-left: 0 !important
    }
    .tabs-vertical.tabs-right .tabs-navigation li.active a {
        margin-left: 0 !important
    }
    .tabs-vertical.tabs-right .tabs-navigation li.active a:after {
        left: 0;
        right: auto
    }
    .tabs-vertical.tabs-right .tabs-content {
        margin-right: 0 !important
    }
    .radius .tabs-navigation li a {
        border-radius: 0
    }
    .radius .tabs-navigation li:first-child a {
        border-radius: 8px 8px 0 0
    }
    .tabs.linetriangle .tabs-navigation li.active a:focus,
    .linetriangle .tabs-navigation li.active a:hover,
    .linetriangle .tabs-navigation li.active a,
    .linetriangle .tabs-navigation li a {
        border-width: 0 0 1px
    }
}

.social-icons ul {
    padding: 0
}

.text-center.social-icons ul {
    display: inline-block
}

.social-icons li {
    float: right;
    list-style: none
}

.social-icons li a {
    float: right;
    height: 32px;
    width: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin: 0 8px 8px 0;
    border-radius: 4px;
    border: 0;
    background: transparent;
    color: #333;
    overflow: hidden
}

.social-icons.social-icons-colored a,
.social-icons.social-icons-colored-hover a:hover {
    color: #fff;
    border: 0
}

.social-icons.social-icons-colored .social-rss a,
.social-icons.social-icons-colored-hover .social-rss a:hover {
    background-color: #faa33d
}

.social-icons.social-icons-colored .social-facebook a,
.social-icons.social-icons-colored-hover .social-facebook a:hover {
    background-color: #5d82d1
}

.social-icons.social-icons-colored .social-twitter a,
.social-icons.social-icons-colored-hover .social-twitter a:hover {
    background-color: #40bff5
}

.social-icons.social-icons-colored .social-vimeo a,
.social-icons.social-icons-colored-hover .social-vimeo a:hover {
    background-color: #35c6ea
}

.social-icons.social-icons-colored .social-myspace a,
.social-icons.social-icons-colored-hover .social-myspace a:hover {
    background-color: #008dde
}

.social-icons.social-icons-colored .social-youtube a,
.social-icons.social-icons-colored-hover .social-youtube a:hover {
    background-color: #ef4e41
}

.social-icons.social-icons-colored .social-instagram a,
.social-icons.social-icons-colored-hover .social-instagram a:hover {
    background-color: #548bb6
}

.social-icons.social-icons-colored .social-stumbleupon a,
.social-icons.social-icons-colored-hover .social-stumbleupon a:hover {
    background-color: #ff5c30
}

.social-icons.social-icons-colored .social-lastfm a,
.social-icons.social-icons-colored-hover .social-lastfm a:hover {
    background-color: #f34320
}

.social-icons.social-icons-colored .social-pinterest a,
.social-icons.social-icons-colored-hover .social-pinterest a:hover {
    background-color: #e13138
}

.social-icons.social-icons-colored .social-google a,
.social-icons.social-icons-colored-hover .social-google a:hover {
    background-color: #eb5e4c
}

.social-icons.social-icons-colored .social-evernote a,
.social-icons.social-icons-colored-hover .social-evernote a:hover {
    background-color: #9acf4f
}

.social-icons.social-icons-colored .social-dribbble a,
.social-icons.social-icons-colored-hover .social-dribbble a:hover {
    background-color: #f7659c
}

.social-icons.social-icons-colored .social-telegram a,
.social-icons.social-icons-colored-hover .social-telegram a:hover {
    background-color: #26b8f3
}

.social-icons.social-icons-colored .social-skype a,
.social-icons.social-icons-colored-hover .social-skype a:hover {
    background-color: #13c1f3
}

.social-icons.social-icons-colored .social-forrst a,
.social-icons.social-icons-colored-hover .social-forrst a:hover {
    background-color: #45ad76
}

.social-icons.social-icons-colored .social-linkedin a,
.social-icons.social-icons-colored-hover .social-linkedin a:hover {
    background-color: #238cc8
}

.social-icons.social-icons-colored .social-wordpress a,
.social-icons.social-icons-colored-hover .social-wordpress a:hover {
    background-color: #2592c3
}

.social-icons.social-icons-colored .social-grooveshark a,
.social-icons.social-icons-colored-hover .social-grooveshark a:hover {
    background-color: #ffb21d
}

.social-icons.social-icons-colored .social-delicious a .social-icons.social-icons-colored-hover .social-delicious a:hover {
    background-color: #377bda
}

.social-icons.social-icons-colored .social-behance a,
.social-icons.social-icons-colored-hover .social-behance a:hover {
    background-color: #1879fd
}

.social-icons.social-icons-colored .social-dropbox a,
.social-icons.social-icons-colored-hover .social-dropbox a:hover {
    background-color: #17a3eb
}

.social-icons.social-icons-colored .social-soundcloud a,
.social-icons.social-icons-colored-hover .social-soundcloud a:hover {
    background-color: #ff7e30
}

.social-icons.social-icons-colored .social-deviantart a,
.social-icons.social-icons-colored-hover .social-deviantart a:hover {
    background-color: #6a8a7b
}

.social-icons.social-icons-colored .social-yahoo a,
.social-icons.social-icons-colored-hover .social-yahoo a:hover {
    background-color: #ab47ac
}

.social-icons.social-icons-colored .social-flickr a,
.social-icons.social-icons-colored-hover .social-flickr a:hover {
    background-color: #ff48a3
}

.social-icons.social-icons-colored .social-digg a,
.social-icons.social-icons-colored-hover .social-digg a:hover {
    background-color: #75788d
}

.social-icons.social-icons-colored .social-blogger a,
.social-icons.social-icons-colored-hover .social-blogger a:hover {
    background-color: #ff9233
}

.social-icons.social-icons-colored .social-tumblr a,
.social-icons.social-icons-colored-hover .social-tumblr a:hover {
    background-color: #426d9b
}

.social-icons.social-icons-colored .social-quora a,
.social-icons.social-icons-colored-hover .social-quora a:hover {
    background-color: #ea3d23
}

.social-icons.social-icons-colored .social-github a,
.social-icons.social-icons-colored-hover .social-github a:hover {
    background-color: #3f91cb
}

.social-icons.social-icons-colored .social-amazon a,
.social-icons.social-icons-colored-hover .social-amazon a:hover {
    background-color: #ff8e2e
}

.social-icons.social-icons-colored .social-xing a,
.social-icons.social-icons-colored-hover .social-xing a:hover {
    background-color: #1a8e8c
}

.social-icons.social-icons-colored .social-wikipedia a,
.social-icons.social-icons-colored-hover .social-wikipedia a:hover {
    background-color: #b3b5b8
}

.social-icons.social-icons-border li a {
    border: 1px solid #eee;
    background: transparent;
    color: #333
}

.social-icons.social-icons-dark li a {
    background: #888;
    color: #fff
}

.social-icons.social-icons-rounded li a {
    border-radius: 50%
}

.social-icons.social-icons-medium li a {
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-size: 18px;
    margin: 0 10px 10px 0
}

.social-icons.social-icons-large li a {
    height: 48px;
    width: 48px;
    line-height: 48px;
    font-size: 18px;
    margin: 0 10px 10px 0
}

.social-icons:not(.social-icons-colored):not(.social-icons-colored-hover) li a:hover {
    background-color: #eee
}

.social-icons li:hover i {
    -webkit-animation: toTopFromBottom .3s forwards;
    -moz-animation: toTopFromBottom .3s forwards;
    animation: toTopFromBottom .3s forwards
}

@-webkit-keyframes toTopFromBottom {
    49% {
        -webkit-transform: translateY(-100%)
    }
    50% {
        opacity: 0;
        -webkit-transform: translateY(100%)
    }
    51% {
        opacity: 1
    }
}

@-moz-keyframes toTopFromBottom {
    49% {
        -moz-transform: translateY(-100%)
    }
    50% {
        opacity: 0;
        -moz-transform: translateY(100%)
    }
    51% {
        opacity: 1
    }
}

@keyframes toTopFromBottom {
    49% {
        transform: translateY(-100%)
    }
    50% {
        opacity: 0;
        transform: translateY(100%)
    }
    51% {
        opacity: 1
    }
}

.icon {
    margin-bottom: 16px
}

.icon-box {
    margin-bottom: 50px
}

.icon-box .icon {
    height: 64px;
    position: absolute;
    width: 64px
}

.icon-box .icon a,
.icon-box .icon i {
    width: 100%;
    height: 100%;
    color: #333
}

.icon-box .icon i {
    font-size: 28px;
    text-align: center;
    line-height: 66px;
    border-radius: 50%
}

.icon-box h3 {
    margin: 0 12px 10px 83px
}

.icon-box p {
    margin: 0 0 20px 83px
}

.icon-box-description>p {
    margin-bottom: 20px
}

.icon-box.effect .icon i {
    z-index: 1
}

.icon-box.effect .icon i:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: '';
    box-sizing: content-box
}

.icon-box .icon i {
    -webkit-transition: background-color .2s, color .2s;
    transition: background-color .2s, color .2s
}

.icon-box.effect .icon i:after {
    top: -4px;
    left: -4px;
    padding: 4px;
    box-shadow: 0 0 0 3px #333;
    -webkit-transition: -webkit-transform .2s, opacity .2s;
    -webkit-transform: scale(.8);
    -moz-transition: -moz-transform .2s, opacity .2s;
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -webkit-transition: -webkit-transform .2s, opacity .2s;
    transition: transform .2s, opacity .2s;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    opacity: 0
}

.icon-box.effect.dark .icon i:after {
    box-shadow: 0 0 0 3px #1abc9c
}

.icon-box.effect.dark .icon i:hover,
.icon-box.effect.dark:hover .icon i {
    background-color: #1abc9c
}

.icon-box.effect .icon i:hover:after,
.icon-box.effect:hover .icon i:after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1
}

.image-box .image-box-content p i.fa.fa-play {
    padding-left: 3px
}

.icon-box.small .icon {
    height: 46px;
    width: 46px
}

.icon-box.small .icon i {
    font-size: 20px;
    line-height: 47px
}

.icon-box.small>h3 {
    font-size: 18px;
    margin: 0 60px 4px 12px
}

.icon-box.small>p,
.box-description-main,
.description-list-portfolio {
    margin: 0 60px 20px 0;
    font-size: 13px;
    line-height: 1.6
}

.icon-box.medium>h3,
.icon-box.medium>h4 {
    margin: 0 12px 10px 84px
}

.icon-box.medium>p {
    margin: 0 0 20px 84px
}

.icon-box.large .icon {
    height: 86px;
    width: 86px
}

.icon-box.large .icon i {
    font-size: 38px;
    line-height: 87px
}

.icon-box.large>h3 {
    margin: 0 12px 10px 110px;
    font-size: 24px
}

.icon-box.large>p {
    margin: 0 0 20px 110px
}

.icon-box.icon-box-right {
    padding: 0;
    text-align: right
}

.icon-box.icon-box-right>h3 {
    margin: 0 84px 0 10px
}

.icon-box.icon-box-right.medium>p {
    margin: 20px 84px 0 10px
}

.icon-box.icon-box-right .icon {
    right: 0
}

.icon-box.icon-box-right p {
    font-size: 14px;
    margin-top: 15px
}

.icon-box.center {
    padding: 0;
    text-align: center
}

.icon-box.center h3 {
    margin: 0 12px 10px 0
}

.icon-box.center p {
    margin: 0 0 20px 0
}

.icon-box.center .icon {
    margin: 0 auto 22px;
    position: relative
}

.icon-box.center p {
    font-size: 14px;
    margin-top: 15px
}

.icon-box.center.small .icon {
    clear: both !important;
    position: relative !important
}

.icon-box.border .icon {
    border: 3px solid #333;
    text-align: center;
    border-radius: 50%;
    background-color: transparent
}

.icon-box.border .icon i {
    line-height: 60px
}

.icon-box.border:hover>.icon i {
    line-height: 66px
}

.icon-box.border:hover>.icon {
    border: 0
}

.icon-box.border .icon i {
    background-color: transparent !important;
    color: #333
}

.icon-box.border.small .icon {
    height: 46px;
    position: absolute;
    top: 5px;
    width: 46px
}

.icon-box.border.small .icon i {
    font-size: 20px;
    line-height: 42px
}

.icon-box.border.small:hover>.icon i {
    line-height: 49px
}

.icon-box.border.large .icon i {
    line-height: 81px
}

.icon-box.border.large:hover>.icon i {
    line-height: 86px
}

.icon-box.square.large:hover>.icon i {
    line-height: 86px
}

.icon-box.square .icon,
.icon-box.square.effect .icon i:after,
.icon-box.square .icon i {
    border-radius: 0
}

.icon-box.square.border .icon i {
    line-height: 59px
}

.icon-box.square:hover>.icon i {
    line-height: 66px
}

.icon-box.square.border:hover>.icon i {
    line-height: 64px
}

.icon-box.square.small:hover>.icon i {
    line-height: 47px
}

.icon-box.square.border.small .icon i {
    line-height: 41px
}

.icon-box.square.border.small:hover>.icon i {
    line-height: 47px
}

.icon-box.square.border.large .icon i {
    line-height: 78px
}

.icon-box.square.border.large:hover>.icon i {
    line-height: 84px
}

.icon-box.light .icon i:after {
    box-shadow: 0 0 0 3px #e5e5e5
}

.icon-box.light .icon i {
    background-color: #e5e5e5
}

.icon-box.light .icon i {
    color: #808080
}

.icon-box.light.border .icon {
    border: 3px solid #e5e5e5
}

.icon-box.light.large .icon i {
    line-height: 87px
}

.icon-box.light.large:hover>.icon i {
    line-height: 88px
}

.icon-box.fancy .icon i {
    background-color: transparent;
    color: #222;
    font-size: 110px;
    opacity: .09;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
    border-radius: 0
}

.icon-box.effect.fancy .icon i:after {
    box-shadow: 0 0 0 0 transparent
}

.icon-box.effect.fancy:hover>.icon i {
    font-size: 110px
}

.icon-box.fancy.small>.icon i {
    font-size: 68px
}

.icon-box.effect.fancy.small:hover>.icon i {
    font-size: 76px
}

.icon-box.fancy.large .icon i {
    font-size: 120px
}

.icon-box.fancy.center .icon {
    width: auto;
    margin-bottom: 30px
}

.icon-box.clean .icon i {
    background-color: none;
    color: #333;
    font-size: 50px
}

.icon-box.effect.clean .icon i:after {
    box-shadow: 0 0 0 0 transparent
}

.icon-box.clean.small .icon i {
    font-size: 36px
}

.icon-box.process {
    border: 1px solid #888;
    margin-top: 45px;
    padding: 0 30px 10px;
    border-radius: 4px
}

.icon-box.process.effect .icon i:hover:after,
.icon-box.process.effect:hover .icon i::after {
    opacity: 0;
    border: 0
}

.icon-box.process .icon {
    margin-top: 10px
}

.icon-box.process.small .icon {
    margin-top: 10px
}

.icon-box.box-type {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 4px;
    padding: 20px
}

.icon-box.box-type .icon {
    margin-top: 20px
}

.image-box {
    position: relative;
    overflow: hidden;
    width: 100%;
    float: right
}

.image-box {
    max-height: 254px
}

.portfolio-default .image-box {
    max-height: initial
}

.col-no-margin .image-box,
.col-no-margin [class*="col-"] {
    margin: 0
}

.col-no-margin {
    padding-left: 15px !important;
    padding-right: 15px !important
}

.col-no-padding [class*="col-"] {
    padding: 0
}

.image-box img {
    margin-left: auto;
    margin-right: auto;
    min-width: 100%;
    top: 0;
    width: 70%
}

.image-box.effect img:hover {
    opacity: auto
}

.image-box .image-box-content::before,
.image-box .image-box-content::after {
    pointer-events: none
}

.image-box-description h3 {
    font-size: 24px;
    font-weight: 600;
    word-spacing: -.08em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.image-box .image-box-content h3,
.image-box-description h3,
.image-box-description h4,
.image-box p {
    margin: 0
}

.image-box .image-box-content {
    height: 100%;
    left: 0;
    padding: 18px 0 12px;
    top: 0;
    width: 100%
}

.image-box-description {
    float: right;
    margin-bottom: 30px;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
    width: 100%
}

.image-box-description>p {
    color: #333
}

.image-box-description>p.subtitle {
    color: #888
}

.image-box-description .post-date {
    float: left;
    font-size: 13px;
    margin: 10px 0
}

.image-box-description .post-date span {
    margin-left: 3px
}

.post-date i,
.image-box-content .icon-links i {
    margin-right: 4px
}

.image-box-description .post-rate {
    color: #ffc300;
    float: right;
    list-style: outside none none;
    margin: 9px 0;
    width: auto
}

.image-box-description .links {
    margin-top: 20px
}

.image-box-links a,
.image-box-links-1 h3 a {
    background-color: #252525;
    border-radius: 2px;
    color: #fff;
    font-size: 12px;
    margin: 5px;
    padding: 9px 15px;
    -webkit-transition: all ease .5s;
    transition: all ease .5s
}

.image-box-links a:hover,
.image-box-links-1 h3 a:hover {
    opacity: .8;
    color: #fff
}

.image-box.circle-image {
    border: 6px solid #eee;
    border-radius: 100%;
    margin: 0 auto -6px;
    z-index: 1;
    float: none;
    text-align: center;
    clear: both
}

.image-box.circle-image.small {
    height: 120px;
    width: 120px
}

.image-box.circle-image.medium {
    height: 180px;
    width: 180px
}

.image-box.circle-image.large {
    height: 220px;
    width: 220px
}

.image-box.card .image-box-content {
    background: #383838;
    color: #fff;
    padding: 20px
}

.image-box.card.effect .image-box-content {
    position: relative !important
}

.image-box.card .image-box-content h3,
.image-box.card .image-box-content p {
    color: #fff
}

.image-box-description.card {
    padding: 20px
}

.image-box.effect {
    cursor: pointer
}

.effect>img {
    width: 100%
}

.image-box.effect img {
    min-height: auto
}

.image-box.effect .image-box-content {
    padding: 2em;
    position: absolute;
    cursor: pointer
}

.image-box .image-box-content h3,
.image-box-description h3 {
    font-weight: 800
}

.image-box.effect .image-box-content,
.image-box.effect .image-box-content h3,
.image-box.effect .image-box-content p {
    color: #fff
}

.image-box h3>span {
    font-weight: 800
}

.image-box.effect.dia .image-box-content,
.portfolio-image.effect.dia .portfolio-description {
    top: auto;
    bottom: 0;
    padding: 1em;
    height: auto;
    background: #252d31;
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    text-transform: uppercase
}

.image-box.effect.dia h3,
.portfolio-image.effect.dia h3 {
    float: right;
    font-size: 25px;
    font-weight: 400
}

.image-box .icon-links,
.portfolio-image .icon-links {
    float: left
}

.image-box .icon-links i {
    margin: 7px
}

.image-box.effect.dia p.icon-links a {
    float: left;
    font-size: 1.4em;
    color: #fff
}

.image-box.effect.dia p.icon-links i:hover {
    opacity: .9
}

.image-box.effect.dia:hover p.icon-links a:hover,
.image-box.effect.dia:hover p.icon-links a:focus,
.image-box.effect.dia .image-box-content h3 {
    color: #fff
}

.image-box.effect.dia h3,
.image-box.effect.dia p.icon-links a {
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0)
}

.image-box.effect.dia h3 {
    font-weight: 600;
    max-width: 66%;
    font-size: 18px;
    line-height: 32px
}

.image-box.effect.dia:hover .image-box-content,
.image-box.effect.dia:hover h3,
.image-box.effect.dia:hover p.icon-links a {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.dia:hover h3 {
    -webkit-transition-delay: .05s;
    transition-delay: .05s
}

.image-box.effect.dia:hover p.icon-links a:first-child {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.image-box.effect.dia:hover p.icon-links a:nth-child(2) {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.image-box.effect.dia:hover p.icon-links a:nth-child(3) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.image-box.effect.dia:hover p.icon-links a:nth-child(4) {
    -webkit-transition-delay: .25s;
    transition-delay: .25s
}

.image-box.effect.dia .image-box-links>a,
.image-box.effect.dia .image-box-links-1 h3>a {
    float: right;
    padding: 0 10px
}

.image-box.effect.juna img {
    max-width: none;
    width: calc(100% + 50px);
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0)
}

.image-box.effect.juna .image-box-content {
    text-align: center
}

.image-box.effect.juna .image-box-content {
    -webkit-transition: all ease .5s;
    transition: all ease .5s
}

.image-box.effect.juna .image-box-content {
    background: rgba(0, 0, 0, .2)
}

.image-box.effect.juna:hover .image-box-content {
    background: rgba(0, 0, 0, .6)
}

.image-box.effect.juna h3,
.image-box.effect.juna p {
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2)
}

.image-box.effect.juna h3 {
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49)
}

.image-box.effect.juna p {
    color: #fff;
    opacity: 0;
    -webkit-transition: opacity .2s, -webkit-transform .35s;
    transition: opacity .2s, transform .35s
}

.image-box.effect.juna:hover img,
.image-box.effect.juna:hover p {
    opacity: 1
}

.image-box.effect.juna:hover img,
.image-box.effect.juna:hover h3,
.image-box.effect.juna:hover p {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.juna:hover p {
    -webkit-transition-delay: .05s;
    transition-delay: .05s;
    -webkit-transition-duration: .35s;
    transition-duration: .35s
}

.image-box.effect.juna p i {
    margin: 7px
}

.image-box.effect.juna p i:hover {
    opacity: .9
}

.image-box.effect.juna .image-box-links,
.image-box.effect.juna .image-box-links-1 {
    margin-top: 12%
}

.image-box.effect.resa .image-box-content {
    text-align: right;
    -webkit-transition: all ease .5s;
    transition: all ease .5s
}

.image-box.effect.resa:hover .image-box-content {
    background: rgba(0, 0, 0, .6)
}

.image-box.effect.resa h3,
.image-box.effect.resa p {
    position: absolute;
    right: 30px;
    left: 30px;
    padding: 10px 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2)
}

.image-box.effect.resa p {
    bottom: 30px;
    line-height: 1.5;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
}

.image-box.effect.resa h3 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49);
    top: 30px;
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
}

.image-box.effect.resa:hover h3 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.resa h3::after {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    content: '';
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0)
}

.image-box.effect.resa h3::after,
.image-box.effect.resa p {
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s
}

.image-box.effect.resa:hover h3::after,
.image-box.effect.resa:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.alea {
    background-color: rgba(0, 0, 0, .9);
    text-align: center
}

.image-box.effect.alea {
    -webkit-perspective: 1000px;
    perspective: 1000px
}

.image-box.effect.alea img {
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(0, 0, 300px);
    transform: translate3d(0, 0, 300px)
}

.image-box.effect.alea:hover img {
    opacity: .6;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.alea .image-box-content::before,
.image-box.effect.alea .image-box-content::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 1px;
    background: #fff;
    content: '';
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0)
}

.image-box.effect.alea:hover .image-box-content::before {
    opacity: .5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
    transform: translate3d(-50%, -50%, 0) rotate(45deg)
}

.image-box.effect.alea:hover .image-box-content::after {
    opacity: .5;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate(-45deg);
    transform: translate3d(-50%, -50%, 0) rotate(-45deg)
}

.image-box.effect.alea h3,
.image-box.effect.alea p,
.image-box.effect.alea .item-detail {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s
}

.image-box.effect.alea h3 {
    -webkit-transform: translate3d(0, -14%, 0) translate3d(0, -100%, 0);
    transform: translate3d(0, -14%, 0) translate3d(0, -100%, 0);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49);
    font-size: 18px;
    text-shadow: -1px -1px 0 hsl(0, 0%, 51%), -2px -2px 1px hsl(0, 0%, 51%)
}

.image-box.effect.alea p,
.image-box.effect.alea .item-detail {
    padding: .25em 2em;
    -webkit-transform: translate3d(0, -28%, 0) translate3d(0, 120%, 0);
    transform: translate3d(0, -28%, 0) translate3d(0, 120%, 0);
    text-shadow: -1px -1px 0 hsl(0, 0%, 51%), -2px -2px 1px hsl(0, 0%, 51%)
}

.image-box.effect.alea:hover h3 {
    -webkit-transform: translate3d(0, 0%, 0) translate3d(0, -100%, 0);
    transform: translate3d(0, 0%, 0) translate3d(0, -100%, 0)
}

.image-box.effect.alea:hover p,
.image-box.effect.alea:hover .item-detail {
    -webkit-transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0);
    transform: translate3d(0, -50%, 0) translate3d(0, 100%, 0)
}

.image-box.effect.ariol {
    background: rgba(0, 0, 0, .8)
}

.image-box.effect.ariol img {
    min-height: 287px
}

.image-box.effect.ariol .image-box-content {
    padding: 3em
}

.image-box.effect.ariol .image-box-content::before,
.image-box.effect.ariol .image-box-content::after {
    position: absolute;
    content: '';
    opacity: 0
}

.image-box.effect.ariol .image-box-content::before {
    top: 50px;
    right: 30px;
    bottom: 50px;
    left: 30px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0
}

.image-box.effect.ariol .image-box-content::after {
    top: 30px;
    right: 50px;
    bottom: 30px;
    left: 50px;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    -ms-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0
}

.image-box.effect.ariol h3 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49);
    padding-top: 20px;
    text-align: center;
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s
}

.image-box.effect.ariol p {
    padding: 10px 20px;
    text-align: center;
    text-transform: none;
    opacity: 0;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
}

.image-box.effect.ariol img,
.image-box.effect.ariol h3 {
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0)
}

.image-box.effect.ariol img,
.image-box.effect.ariol .image-box-content::before,
.image-box.effect.ariol .image-box-content::after,
.image-box.effect.ariol p {
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s
}

.image-box.effect.ariol:hover img {
    opacity: .7;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.ariol:hover .image-box-content::before,
.image-box.effect.ariol:hover .image-box-content::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.image-box.effect.ariol:hover h3,
.image-box.effect.ariol:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.ariol:hover .image-box-content::after,
.image-box.effect.ariol:hover h3,
.image-box.effect.ariol:hover p,
.image-box.effect.ariol:hover img {
    -webkit-transition-delay: .15s;
    -moz-transition-delay: .15s;
    -ms-transition-delay: .15s;
    -o-transition-delay: .15s;
    transition-delay: .15s
}

.image-box.effect.dorian {
    background: rgba(0, 0, 0, .8)
}

.image-box.effect.dorian img {
    -webkit-transition: opacity .35s;
    transition: opacity .35s
}

.image-box.effect.dorian:hover img {
    opacity: .4
}

.image-box.effect.dorian .image-box-content::after {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    height: calc(50% - 30px);
    border: 4px solid #fff;
    content: '';
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
}

.image-box.effect.dorian:hover .image-box-content::after {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.dorian .image-box-content {
    padding: 3em;
    text-align: right
}

.image-box.effect.dorian p {
    position: absolute;
    right: 60px;
    bottom: 66px;
    left: 60px;
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0)
}

.image-box.effect.dorian:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.emma img {
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: scale(1.12);
    -ms-transform: scale(1.12);
    transform: scale(1.12)
}

.image-box.effect.emma:hover img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.image-box.effect.emma .image-box-content {
    -webkit-transition: all ease .6s;
    transition: all ease .6s
}

.image-box.effect.emma:hover .image-box-content {
    background: rgba(0, 0, 0, .6)
}

.image-box.effect.emma .image-box-content {
    padding: 3em
}

.image-box.effect.emma .image-box-content::before,
.image-box.effect.emma p {
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s
}

.image-box.effect.emma h3 {
    padding: 10px 20px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49)
}

.image-box.effect.emma p {
    margin: 0 auto;
    padding: 10px 20px;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5)
}

.image-box.effect.emma:hover .image-box-content::before,
.image-box.effect.emma:hover p {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.image-box.effect.victor .image-box-content {
    -webkit-transition: all ease .6s;
    transition: all ease .6s
}

.image-box.effect.victor:hover .image-box-content {
    background: rgba(0, 0, 0, .6)
}

.image-box.effect.victor img {
    max-width: none;
    width: 100%;
    opacity: 1;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.image-box.effect.victor:hover img {
    -webkit-transform: translate3d(10px, 0, 0) scale(1.1);
    transform: translate3d(10px, 0, 0) scale(1.1)
}

.image-box.effect.victor h3 {
    position: absolute;
    left: 0;
    top: 40px;
    padding: 1em 1.2em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49);
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0)
}

.image-box.effect.victor p {
    opacity: 0;
    left: 0;
    padding: 1em 2.4em;
    position: absolute;
    text-align: right;
    top: 103px;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-40px, 0, 0);
    transform: translate3d(-40px, 0, 0)
}

.image-box.effect.victor:hover h3,
.image-box.effect.victor:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.erdi {
    background: #2f3238
}

.image-box.effect.erdi img {
    max-width: none;
    -webkit-transition: opacity 1s, -webkit-transform 1s;
    transition: opacity 1s, transform 1s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.image-box.effect.erdi .image-box-content {
    text-align: left
}

.image-box.effect.erdi h3 {
    padding: .5em 0;
    position: relative;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49)
}

.image-box.effect.erdi p {
    display: table;
    margin: 0 0 .25em;
    padding: .4em 1em;
    background: rgba(255, 255, 255, .9);
    color: #2f3238;
    text-transform: none;
    font-weight: 500;
    font-size: 75%;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-360px, 0, 0);
    transform: translate3d(-360px, 0, 0)
}

.image-box.effect.erdi p:first-child {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.image-box.effect.erdi p:nth-of-type(2) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.image-box.effect.erdi p:nth-of-type(3) {
    -webkit-transition-delay: .05s;
    transition-delay: .05s
}

.image-box.effect.erdi:hover p:first-child {
    -webkit-transition-delay: 0s;
    transition-delay: 0s
}

.image-box.effect.erdi:hover p:nth-of-type(2) {
    -webkit-transition-delay: .05s;
    transition-delay: .05s
}

.image-box.effect.erdi:hover p:nth-of-type(3) {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.image-box.effect.erdi:hover img {
    opacity: .4;
    -webkit-transform: scale3d(1.1, 1.1, 1);
    transform: scale3d(1.1, 1.1, 1)
}

.image-box.effect.erdi:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.erdi p.image-box-links.image-box-links {
    background-color: transparent;
    margin-left: -15px
}

.image-box.effect.tini {
    background: #303fa9
}

.image-box.effect.tini h3,
.image-box.effect.tini p {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%
}

.image-box.effect.tini .image-box-content::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 170px;
    height: 170px;
    border: 2px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(0, 0, 1);
    -webkit-transform-origin: 50%;
    -ms-transform-origin: 50%;
    transform-origin: 50%
}

.image-box.effect.tini p {
    width: 100px;
    text-transform: none;
    font-size: 140%;
    line-height: 2
}

.image-box.effect.tini p a {
    color: #fff;
    margin-right: 6px
}

.image-box.effect.tini p a:hover,
.image-box.effect.tini p a:focus {
    opacity: .6
}

.image-box.effect.tini p {
    padding-left: 10px
}

.image-box.effect.tini p a i {
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s
}

.image-box.effect.tini p a:first-child i {
    -webkit-transform: translate3d(-60px, -60px, 0);
    transform: translate3d(-60px, -60px, 0)
}

.image-box.effect.tini p a:nth-child(2) i {
    -webkit-transform: translate3d(60px, -60px, 0);
    transform: translate3d(60px, -60px, 0)
}

.image-box.effect.tini p a:nth-child(3) i {
    -webkit-transform: translate3d(-60px, 60px, 0);
    transform: translate3d(-60px, 60px, 0)
}

.image-box.effect.tini p a:nth-child(4) i {
    -webkit-transform: translate3d(60px, 60px, 0);
    transform: translate3d(60px, 60px, 0)
}

.image-box.effect.tini p a:nth-child(5) i {
    -webkit-transform: translate3d(60px, -60px, 0);
    transform: translate3d(60px, -60px, 0)
}

.image-box.effect.tini p a:nth-child(6) i {
    -webkit-transform: translate3d(-60px, -60px, 0);
    transform: translate3d(-60px, -60px, 0)
}

.image-box.effect.tini:hover .image-box-content::before {
    opacity: 1;
    -webkit-transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1);
    transform: translate3d(-50%, -50%, 0) rotate3d(0, 0, 1, -45deg) scale3d(1, 1, 1)
}

.image-box.effect.tini .image-box-content {
    -webkit-transition: all ease .4s;
    transition: all ease .4s
}

.image-box.effect.tini:hover .image-box-content {
    background: rgba(0, 0, 0, .3)
}

.image-box.effect.tini:hover h3 {
    opacity: 0;
    -webkit-transform: translate3d(-50%, -50%, 0) scale3d(.8, .8, 1);
    transform: translate3d(-50%, -50%, 0) scale3d(.8, .8, 1)
}

.image-box.effect.tini:hover p i:empty {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1
}

.image-box.effect.bleron {
    background: #df4e4e
}

.image-box.effect.bleron img,
.image-box.effect.bleron h3 {
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s
}

.image-box.effect.bleron img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.image-box.effect.bleron h3 {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49)
}

.image-box.effect.bleron h3,
.image-box.effect.bleron p {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px
}

.image-box.effect.bleron p {
    text-transform: none;
    font-size: 90%;
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0)
}

.image-box.effect.bleron:hover img {
    -webkit-transform: translate3d(0, -80px, 0);
    transform: translate3d(0, -80px, 0)
}

.image-box.effect.bleron:hover h3 {
    -webkit-transform: translate3d(0, -100px, 0);
    transform: translate3d(0, -100px, 0)
}

.image-box.effect.bleron:hover p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.image-box.effect.bleron p.image-box-links a {
    background-color: #fff
}

.effect.social-links {
    text-align: right;
    position: relative
}

.effect.social-links img {
    -webkit-transition: opacity .35s;
    transition: opacity .35s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.effect.social-links h3 {
    -webkit-transition: -webkit-transform .25s;
    transition: transform .25s;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0)
}

.effect.social-links p {
    display: inline;
    left: auto;
    margin-top: -20px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%
}

.effect.social-links a i {
    margin: 0 4px;
    color: #fff;
    font-size: 146%
}

.effect.social-links:hover img {
    opacity: .6
}

.effect.social-links:hover h3 {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.effect.social-links:hover .image-box-content::before {
    opacity: .7;
    -webkit-transform: rotate3d(0, 0, 1, 20deg);
    transform: rotate3d(0, 0, 1, 20deg)
}

.effect.social-links p a i {
    border-radius: 50%;
    height: 42px;
    width: 42px;
    line-height: 44px;
    background: hsla(0, 0%, 0%, .5);
    opacity: 0;
    -webkit-transition: opacity .25s, -webkit-transform .25s;
    transition: opacity .25s, transform .25s;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0)
}

.effect.social-links:hover p i {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0) rotate(0deg);
    transform: translate3d(0, 0, 0) rotate(0deg)
}

.effect.social-links:hover p a:nth-child(3) i {
    -webkit-transition-delay: .05s;
    transition-delay: .05s
}

.effect.social-links:hover p a:nth-child(2) i {
    -webkit-transition-delay: .1s;
    transition-delay: .1s
}

.effect.social-links:hover p a:first-child i {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.effect.social-links:hover p a i:hover {
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    -webkit-transition-delay: rotate 1s;
    transition-delay: rotate 1s;
    -webkit-transform: translate3d(0, 0, 0) rotate(360deg);
    transform: translate3d(0, 0, 0) rotate(360deg)
}

.effect .image-box-content p i {
    z-index: 2
}

.image-box.effect.retro {
    background: #030c17;
    text-align: center
}

.image-box.effect.retro img {
    opacity: .9;
    -webkit-transition: opacity .35s;
    transition: opacity .35s
}

.image-box.effect.retro .image-box-content::before {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 30px rgba(255, 255, 255, .2);
    content: '';
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: scale3d(1.4, 1.4, 1);
    transform: scale3d(1.4, 1.4, 1)
}

.image-box.effect.retro h3 {
    margin: 30% 0 10px 0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .49);
    -webkit-transition: -webkit-transform .35s;
    transition: transform .35s
}

.image-box.effect.retro p {
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5)
}

.image-box.effect.retro:hover h3 {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
    opacity: 0;
    margin-top: 20%
}

.portfolio-default .image-box.effect.retro:hover h3 {
    display: none
}

.image-box.effect.retro:hover .image-box-content::before,
.image-box.effect.retro:hover p {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1)
}

.image-box.effect.retro:hover .image-box-content {
    background-color: rgba(58, 52, 42, 0)
}

.image-box.effect.retro:hover .image-box-content .image-box-links {
    margin-top: 20%
}

.image-box.effect.retro:hover img {
    opacity: .4
}

.carousel.fullwidth {
    padding: 0 15px
}

.slider-content img {
    width: auto !important
}

.owl-carousel .fluid-width-video-wrapper {
    min-height: 150px
}

.post-carousel .image-box {
    height: 151px
}

.carousel.slider-size-half .owl-item img {
    margin-top: -10%
}

.owl-bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%
}

.owl-item .slider-content {
    opacity: 0;
    padding: 0
}

.item-video {
    height: 420px
}

.owl-theme.pagination-top .owl-dots {
    margin-top: -4px
}

.owl-theme.pagination-top .owl-controls {
    position: absolute;
    right: 13px;
    top: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: .9
}

.owl-theme.pagination-top .owl-controls:hover {
    opacity: 1
}

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

.owl-theme .owl-dots .owl-dot {
    height: 10px;
    margin: 0 5px;
    position: relative;
    width: 10px;
    display: inline-block
}

.owl-theme .owl-dots .owl-dot span {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 50%;
    background-color: #eee;
    text-indent: -999em;
    cursor: pointer;
    position: absolute;
    overflow: hidden;
    background-color: transparent;
    box-shadow: inset 0 0 0 1px #bbb;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.owl-theme .owl-dots .owl-dot span:focus {
    outline: none
}

.owl-theme .owl-dots .owl-dot span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 50%;
    background-color: #aaa;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition: -webkit-transform .3s ease;
    transition: transform .3s ease
}

.owl-theme .owl-dots .owl-dot span:hover,
.owl-theme .owl-dots .owl-dot span:focus {
    opacity: .7
}

.owl-theme .owl-dots .owl-dot.active span::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.owl-theme.pagination-top .owl-controls {
    position: absolute;
    right: 13px;
    top: 13px;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    opacity: .9
}

.owl-theme.pagination-top .owl-controls:hover {
    opacity: 1
}

.owl-theme.pagination-top .owl-dots .owl-dot span {
    box-shadow: inset 0 0 0 1px #fff
}

.owl-theme.pagination-top .owl-dots .owl-dot span::after {
    background-color: #fff
}

.owl-controls .owl-nav {
    opacity: 0;
    -webkit-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out
}

.owl-carousel:hover .owl-controls .owl-nav {
    opacity: 1
}

.owl-theme .owl-controls .owl-nav div {
    padding: 5px 9px
}

.owl-theme .owl-controls .owl-nav .owl-prev i,
.owl-theme .owl-controls .owl-nav .owl-next i {
    line-height: 66px
}

.owl-theme .owl-controls .owl-nav div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, .4)
}

.owl-theme .owl-controls .owl-nav .owl-prev {
    left: -18px
}

.owl-theme .owl-controls .owl-nav .owl-next {
    right: -18px
}

.owl-carousel:hover .owl-controls .owl-nav .owl-prev {
    left: 0
}

.owl-carousel:hover .owl-controls .owl-nav .owl-next {
    right: 0
}

.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
    background: rgba(0, 0, 0, .4);
    color: #fff;
    font-size: 18px;
    height: 75px;
    position: absolute;
    text-align: center;
    -webkit-transition: all .3s ease-out 0s;
    transition: all .3s ease-out 0s;
    width: 35px;
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.carousel-description-style .description {
    margin-bottom: 30px
}

.carousel-description-style .description h2 {
    margin-top: 0;
    padding-right: 74px
}

.carousel-description-style .image-box-description h4 {
    margin-bottom: 0
}

.carousel-description-style .owl-controls .owl-nav {
    opacity: 1
}

.carousel-description-style .owl-theme .owl-controls .owl-nav .owl-next {
    left: -65px;
    top: 0;
    border-radius: 0 2px 2px 0
}

.carousel-description-style .owl-theme .owl-controls .owl-nav .owl-prev {
    left: -100px;
    top: 0;
    border-radius: 2px 0 0 2px
}

.carousel-description-style .owl-theme .owl-controls .owl-nav .owl-prev i,
.carousel-description-style .owl-theme .owl-controls .owl-nav .owl-next i {
    line-height: 1
}

.carousel-description-style .owl-carousel .owl-controls .owl-nav .owl-next,
.carousel-description-style .owl-carousel .owl-controls .owl-nav .owl-prev {
    background: #00c0e9;
    color: #fff;
    font-size: 15px;
    height: 36px
}

.owl-carousel .owl-controls .owl-nav .owl-next:hover,
.owl-carousel .owl-controls .owl-nav .owl-prev:hover {
    opacity: .6
}

.owl-stage .owl-item:last-child {
    margin-right: 0 !important
}

.carousel .image-box-description {
    margin-bottom: -10px
}

.fontawesome-icon-list i {
    font-size: 18px;
    display: inline-block;
    font-size: 1.3em;
    margin-right: 5px;
    position: relative;
    text-align: center;
    top: 2px;
    width: 30px;
    padding: 16px 0
}

.counter {
    margin-bottom: 20px
}

.counter span {
    font-size: 50px;
    line-height: 40px
}

.counter.small>span {
    font-size: 32px !important
}

.counter.medium>span {
    font-size: 50px !important
}

.counter.large>span {
    font-size: 62px !important
}

.icon-box.fancy>.counter span {
    margin: 0 12px 10px 56px
}

.icon-box.fancy.medium>.counter span {
    margin: 0 12px 10px 80px
}

.icon-box.effect:not(.center)>.counter span {
    margin: 0 12px 10px 82px
}

.icon-box.effect.large:not(.center)>.counter span {
    margin: 0 12px 10px 107px
}

.icon-box.effect.medium:not(.center)>.counter span {
    margin: 0 12px 10px 82px
}

.icon-box.effect.small:not(.center)>.counter span {
    margin: 0 12px 10px 58px;
    font-size: 32px !important
}

.text-box {
    margin-bottom: 32px
}

.text-box>h4,
.text-box>h3 {
    margin-bottom: 10px;
    font-weight: 600
}

.countdown {
    color: #333;
    overflow: hidden
}

.countdown-container {
    display: table;
    margin: 0 auto
}

.countdown .countdown-box {
    display: block;
    float: left;
    margin: 30px;
    overflow: hidden;
    position: relative;
    text-align: center;
    width: auto
}

.countdown .number {
    font-size: 80px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 10px;
    text-align: center
}

.countdown span {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 21px;
    font-weight: 400;
    overflow: hidden;
    padding-top: 10px;
    position: relative;
    text-align: center
}

.countdown span:before {
    background: none repeat scroll 0 0 #333;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 30px
}

.countdown.circle .countdown-box {
    border: 3px solid #333;
    border-radius: 50%;
    color: #333;
    height: 160px;
    padding: 34px 5px 0 0;
    width: 160px;
    margin: 20px 15px
}

.countdown.circle .countdown-box .number {
    font-size: 52px;
    font-weight: 800
}

.countdown.circle .countdown-box span {
    font-size: 18px
}

.countdown.rectangle .countdown-box {
    border: 4px solid;
    padding: 24px;
    width: 170px;
    margin-left: 15px;
    margin-right: 15px
}

.countdown.rectangle .countdown-box .number {
    font-size: 52px;
    font-weight: 600
}

.countdown.rectangle .countdown-box span {
    font-size: 18px
}

.countdown.medium .countdown-box,
.countdown.circle.medium .countdown-box,
.countdown.rectangle.medium .countdown-box {
    height: 130px;
    margin: 10px;
    padding: 20px 4px 0 0;
    width: 130px
}

.countdown.circle.medium .countdown-box,
.countdown.rectangle.medium .countdown-box {
    border: solid 2px
}

.countdown.medium .number,
.countdown.circle.medium .number,
.countdown.rectangle.medium .number {
    font-size: 44px;
    margin-bottom: 12px
}

.countdown.medium span,
.countdown.circle.medium span,
.countdown.rectangle.medium span {
    font-size: 18px
}

.countdown.small .countdown-box,
.countdown.circle.small .countdown-box,
.countdown.rectangle.small .countdown-box {
    margin: 10px;
    height: 70px;
    padding: 10px 0 0 0;
    width: 70px;
    margin: 5px 5px
}

.countdown.circle.small .countdown-box,
.countdown.rectangle.small .countdown-box {
    border: solid 2px
}

.countdown.small .number,
.countdown.circle.small .number,
.countdown.rectangle.small .number {
    font-size: 16px;
    margin-bottom: 6px
}

.countdown.small span,
.countdown.circle.small span,
.countdown.rectangle.small span {
    font-size: 14px;
    padding-top: 2px
}

.countdown.light .countdown-box {
    border-color: #fff;
    color: #fff;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, .3)
}

.countdown.countdown-light span:before {
    background: #fff
}

.countdown.countdown-light span,
.countdown.countdown-light .number {
    color: #fff !important
}

.countdown.countdown-light.circle .countdown-box {
    border-color: #fff
}

.countdown.countdown-light.rectangle .countdown-box {
    border-color: #fff
}

.countdown.countdown-dark span,
.countdown.countdown-dark .number {
    color: #000 !important
}

.progress-bar-container {
    width: 100%;
    height: 40px;
    margin: 20px 0 20px 0;
    overflow: hidden;
    background-color: #eee
}

.progress-bar {
    height: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, .2);
    box-shadow: none
}

.progress-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    position: absolute;
    text-align: left
}

.progress-title>i {
    margin-right: 8px
}

.progress-bar .progress-number,
.progress-bar .progress-type {
    color: #fff;
    float: right;
    margin-top: -2px
}

.progress-bar-container.radius,
.progress-bar-container.radius .progress-bar {
    border-radius: 4px
}

.progress-bar-container.title-up .progress-title {
    color: #333;
    margin-left: -10px;
    margin-top: -32px
}

.progress-bar-container.title-up:not(:first-child) {
    margin-top: 40px
}

.progress-bar-container.title-up .progress-bar .progress-number,
.progress-bar-container.title-up .progress-bar .progress-type {
    color: #333;
    margin-top: -32px;
    position: absolute;
    right: 15px
}

.progress-bar-container.title-up .progress-bar .progress-number,
.progress-bar-container.title-up .progress-bar .progress-type {
    color: #333;
    margin-top: -32px;
    position: absolute;
    right: 15px
}

.progress-bar-container.title-up .progress-bar .progress-number {
    right: 26px
}

.progress-bar-container.medium {
    height: 20px
}

.progress-bar-container.medium .progress-bar {
    padding: 0
}

.progress-bar-container.medium .progress-title {
    margin-left: 0;
    margin-top: -20px
}

.progress-bar-container.medium .progress-bar .progress-number,
.progress-bar-container.medium .progress-bar .progress-type {
    margin-top: -18px
}

.progress-bar-container.small {
    height: 10px
}

.progress-bar-container.small .progress-bar {
    padding: 0
}

.progress-bar-container.small .progress-title {
    margin-left: 0;
    margin-top: -20px
}

.progress-bar-container.small .progress-bar .progress-number,
.progress-bar-container.small .progress-bar .progress-type {
    margin-top: -18px
}

.progress-bar-container.no-bg {
    background: none !important
}

.progress-bar-container.extra-small {
    height: 2px
}

.progress-bar-container.extra-small .progress-bar {
    padding: 0
}

.progress-bar-container.extra-small .progress-title {
    margin-left: 0;
    margin-top: -20px
}

.progress-bar-container.extra-small .progress-bar .progress-number,
.progress-bar-container.extra-small .progress-bar .progress-type {
    margin-top: -18px
}

.progress-bar-container.transparent {
    background: none !important
}

.progress-bar-container.transparent .progress-bar {
    background-color: rgba(0, 0, 0, .35)
}

.progress-bar-container.transparent.title-up .progress-bar .progress-title,
.progress-bar-container.transparent.title-up .progress-bar .progress-number,
.progress-bar-container.transparent.title-up .progress-bar .progress-type {
    color: #fff
}

.progress-bar-container.color-turquoise {
    border-color: #1abc9c;
    background: #1abc9c
}

.progress-bar-container.color-green-sea {
    border-color: #16a085;
    background: #16a085
}

.progress-bar-container.color-emerald {
    border-color: #2ecc71;
    background: #2ecc71
}

.progress-bar-container.color-nephritis {
    border-color: #27ae60;
    background: #27ae60
}

.progress-bar-container.color-peter-river {
    border-color: #3498db;
    background: #3498db
}

.progress-bar-container.color-belize-hole {
    border-color: #2980b9;
    background: #2980b9
}

.progress-bar-container.color-amethyst {
    border-color: #9b59b6;
    background: #9b59b6
}

.progress-bar-container .color-wisteria {
    border-color: #8e44ad;
    background: #8e44ad
}

.progress-bar-container.color-wet-asphalt {
    border-color: #34495e;
    background: #34495e
}

.progress-bar-container.color-midnight-blue {
    border-color: #2c3e50;
    background: #2c3e50
}

.progress-bar-container.color-sun-flower {
    border-color: #f1c40f;
    background: #f1c40f
}

.progress-bar-container.color-orange {
    border-color: #f39c12;
    background: #f39c12
}

.progress-bar-container.color-carrot {
    border-color: #e67e22;
    background: #e67e22
}

.progress-bar-container.color-pumpkin {
    border-color: #d35400;
    background: #d35400
}

.progress-bar-container.color-alizarin {
    border-color: #e74c3c;
    background: #e74c3c
}

.progress-bar-container.color-pomegranate {
    border-color: #c0392b;
    background: #c0392b
}

.progress-bar-container.color-clouds {
    border-color: #ecf0f1;
    background: #ecf0f1
}

.progress-bar-container.color-silver {
    border-color: #bdc3c7;
    background: #bdc3c7
}

.progress-bar-container.color-concrete {
    border-color: #95a5a6;
    background: #95a5a6
}

.progress-bar-container.color-asbestos {
    border-color: #7f8c8d;
    background: #7f8c8d
}

.progress-bar.color-turquoise {
    background: #1abc9c
}

.progress-bar.color-green-sea {
    background: #16a085
}

.progress-bar.color-emerald {
    background: #2ecc71
}

.progress-bar.color-nephritis {
    background: #27ae60
}

.progress-bar.color-peter-river {
    background: #3498db
}

.progress-bar.color-belize-hole {
    background: #2980b9
}

.progress-bar.color-amethyst {
    background: #9b59b6
}

.progress-bar.color-wisteria {
    background: #8e44ad
}

.progress-bar.color-wet-asphalt {
    background: #34495e
}

.progress-bar.color-midnight-blue {
    background: #2c3e50
}

.progress-bar.color-sun-flower {
    background: #f1c40f
}

.progress-bar.color-orange {
    background: #f39c12
}

.progress-bar.color-carrot {
    background: #e67e22
}

.progress-bar.color-pumpkin {
    background: #d35400
}

.progress-bar.color-alizarin {
    background: #e74c3c
}

.progress-bar.color-pomegranate {
    background: #c0392b
}

.progress-bar.color-clouds {
    background: #ecf0f1
}

.progress-bar.color-silver {
    background: #bdc3c7
}

.progress-bar.color-concrete {
    background: #95a5a6
}

.progress-bar.color-asbestos {
    background: #7f8c8d
}

.pie-animated {
    opacity: 1
}

.pie-chart {
    display: inline-block;
    margin-bottom: 20px;
    margin-top: 50px;
    position: relative;
    text-align: center
}

.pie-chart canvas {
    position: absolute;
    top: 0;
    left: 0
}

.pie-chart span,
.pie-chart i {
    display: inline-block;
    font-size: 28px;
    z-index: 2;
    font-weight: 600
}

.pie-chart i {
    font-size: 38px
}

.pie-chart span.percent:after {
    content: '%';
    margin-left: .1em;
    font-size: .8em
}

.pie-chart.transparent span,
.pie-chart.transparent span.percent,
.pie-chart.transparent i {
    color: #fff
}

hr {
    margin-bottom: 10px;
    margin-top: 10px;
    clear: both
}

hr.space {
    border: none;
    height: 50px
}

hr.space-xs {
    border: none;
    height: 20px
}

hr.space-md {
    border: none;
    height: 40px
}

hr.space-lg {
    border: none;
    height: 80px
}

hr.space-xlg {
    border: none;
    height: 120px
}

hr.space-xxlg {
    border: none;
    height: 200px
}

body.device-sm hr.space {
    height: 26px
}

body.device-xs hr.space,
body.device-xxs hr.space {
    height: 16px
}

body.device-xxs hr.space-lg,
body.device-xs hr.space-lg {
    height: 40px
}

body.device-xxs hr.space-xlg,
body.device-xs hr.space-xlg {
    height: 40px
}

body.device-xxs hr.space-xxlg,
body.device-xs hr.space-xxlg {
    height: 80px
}

.seperator {
    color: #ccc;
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
    text-align: center;
    line-height: 1.2em
}

.seperator-simple {
    margin: 10px auto
}

.seperator::before,
.seperator::after {
    border-bottom: 1px solid #eee;
    content: "";
    display: inline-block;
    height: .65em;
    margin: 0 -4px 0 -100%;
    vertical-align: top;
    width: 50%
}

.seperator.seperator-dark::before,
.seperator.seperator-dark::after {
    border-bottom: 1px solid #333 !important
}

.seperator.seperator-grey::before,
.seperator.seperator-grey::after {
    border-bottom: 1px solid #ccc
}

.seperator.seperator-light::before,
.seperator.seperator-light::after {
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.seperator::before {
    margin: 0 -100% 0 0
}

.seperator i {
    font-size: 18px
}

.seperator i,
.seperator span,
.seperator a {
    margin: 0 20px 0 24px;
    display: inline-block
}

.seperator.dotted:before,
.seperator.dotted:after {
    border-bottom: 2px dotted #ccc
}

.seperator.seperator-left {
    float: left;
    margin: 2px 36px 0 0
}

.seperator.left i {
    float: left;
    margin: 2px 36px 0 0
}

.seperator.right i {
    float: right;
    margin: 0 0 2px 36px
}

.seperator.seperator-bold:before,
.seperator.seperator-bold:after {
    border-bottom-width: 6px
}

.seperator.seperator-small {
    width: 10%;
    margin: 5px auto
}

.seperator.seperator-medium {
    width: 20%;
    margin: 10px auto
}

.text-seperator {
    background-color: #111;
    display: block;
    height: 4px;
    margin: 20px 0
}

.text-seperator-small {
    width: 10%
}

.text-seperator-medium {
    width: 30%
}

.text-seperator-large {
    width: 60%
}

.seperator.seperator-dark:before,
.seperator.seperator-dark:after {
    border-bottom: 1px solid #111
}

.triangle-divider-bottom {
    background-image: url("../lang2_files/triangle-divider-down.png");
    background-position: left center;
    background-repeat: repeat-x;
    bottom: 0;
    height: 12px;
    position: absolute;
    width: 100%
}

.triangle-divider-top {
    background-image: url("../lang2_files/triangle-divider-top.png");
    background-position: left center;
    background-repeat: repeat-x;
    top: 0;
    height: 12px;
    position: absolute;
    width: 100%
}

.seperator.seperator-image:before,
.seperator.seperator-image:after {
    border: 0
}

.seperator.seperator-image {
    background-position: center center;
    background-repeat: repeat-x;
    margin: 0;
    padding: 0
}

.seperator.seperator-over-top {
    margin-bottom: -17px;
    position: relative;
    top: -13px !important
}

.blockquote-simple {
    border: 0 none !important
}

.blockquote-fancy,
.blockquote-color,
.blockquote-dark {
    border: 0 none !important
}

.blockquote-fancy::before {
    color: rgba(0, 0, 0, .04);
    content: "“";
    display: block;
    font-size: 100px;
    left: 4px;
    position: absolute;
    top: 14px
}

.blockquote-fancy>small {
    float: right
}

.blockquote-dark {
    background-color: #333
}

.blockquote-color,
.blockquote-dark {
    padding: 28px;
    color: #fff
}

.form-control {
    border-radius: 0;
    box-shadow: none;
    height: auto;
    line-height: 1.33333;
    padding: 12px 18px
}

.form-control:focus {
    box-shadow: none
}

.form-control.input-lg {
    resize: none;
    font-size: .9em
}

.form-control.rounded {
    border-radius: 4px
}

.form-control,
.input-group-addon {
    border: 2px solid #ebebeb
}

.form-group label {
    color: #444;
    cursor: pointer;
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 4px;
    text-transform: uppercase;
    font-size: 13px
}

.form-inline button {
    margin: 0
}

.form-group>label {
    display: block
}

.has-feedback label~.form-control-feedback {
    top: 44px
}

.form-gray-fields .form-control {
    background-color: #f2f2f2;
    border-color: #e9e9e9;
    color: #333
}

.form-gray-fields .form-control:focus {
    background-color: #eee
}

.form-transparent-fields .form-control {
    background-color: rgba(0, 0, 0, .4);
    border-color: rgba(0, 0, 0, .4)
}

.form-transparent-fields .form-control:focus {
    background-color: rgba(0, 0, 0, .7)
}

.form-transparent-light-fields .form-control {
    background-color: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .1)
}

.form-transparent-light-fields .form-control:focus {
    background-color: rgba(255, 255, 255, .7)
}

label.error {
    color: #b71828;
    display: none !important;
    font-weight: 400
}

.form-control.error,
.sm-form-control.error {
    border-color: #b71828
}

.form-control.error {
    color: #b71828
}

.form-control::-moz-placeholder {
    color: #bbb
}

.form-control::-ms-input-placeholder {
    color: #bbb
}

.form-control::-webkit-input-placeholder {
    color: #bbb
}

select {
    border: 1px solid #e3e3e3;
    color: #777;
    cursor: pointer;
    display: block;
    line-height: 14px;
    max-width: 100%;
    min-width: 100%;
    padding: 14px
}

.order-select>h6 {
    margin-bottom: 0
}

.order-select p {
    font-size: 13px
}

.button-search {
    background-color: #fff;
    border-color: #e9e9e9 #e9e9e9 #e9e9e9;
    border-style: solid;
    border-width: 1px 1px 1px 0 !important;
    box-shadow: none;
    margin-left: -6px !important;
    z-index: 2 !important
}

.reservation-form-over {
    top: -80px;
    z-index: 10;
    margin-bottom: -80px;
    overflow: inherit
}

.reservation-form {
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #eee;
    min-height: 160px;
    padding: 30px;
    position: relative;
    z-index: 9999 !important
}

.reservation-form label {
    color: #555
}

.reservation-form input,
.reservation-form select {
    border: 0;
    border-radius: 4px;
    background-color: #fff;
    border: 2px solid #ddd;
    width: 100%
}

.reservation-form .date input {
    border-radius: 4px 0 0 4px;
    border-width: 2px 0 2px 2px
}

.reservation-form .input-group-addon {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #fff !important;
    border-color: #ddd;
    border-image: none;
    border-style: solid;
    border-width: 2px 2px 2px 0
}

.reservation-form input,
.reservation-form select {
    color: #555;
    display: block;
    font-size: 15px;
    line-height: 1.42857;
    padding: 8px 14px;
    width: 100%
}

#book {
    background-color: rgba(0, 0, 0, .4);
    border: 10px solid rgba(255, 255, 255, .2);
    border-radius: 3px;
    padding: 40px
}

#book label {
    color: #fff
}

#book .date input {
    border-radius: 4px 0 0 4px
}

#book input,
#book select {
    color: #555;
    display: block;
    font-size: 15px;
    line-height: 1.42857;
    padding: 8px 14px;
    width: 100%
}

#book .input-group-addon {
    background-color: #fff !important;
    border: 0 none
}

#book input,
#book select {
    border: 0 none
}

.label-default {
    background: -webkit-linear-gradient(top, #f37054 0, #e66346 100%) repeat scroll 0 0 #e66346;
    background: linear-gradient(to bottom, #f37054 0, #e66346 100%) repeat scroll 0 0 #e66346;
    color: #fff
}

.main-menu .label,
.sidebar-menu .label {
    padding: 1px 3px;
    margin: 0 3px
}

.badge {
    margin-right: 10px
}

.lightbox-open {
    position: relative;
    overflow: hidden !important
}

.mfp-ajax-holder .mfp-content {
    background: #f8f8f8;
    max-width: 1000px
}

.mfp-ajax-holder .ajax-quick-view {
    padding: 20px 30px 35px
}

.mfp-ajax-holder .ajax-quick-view .quick-view-title {
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
    position: relative
}

.mfp-ajax-holder .ajax-quick-view .quick-view-title h2 {
    font-weight: 600
}

.mfp-ajax-holder .mfp-close {
    background: none repeat scroll 0 0 #fff !important;
    margin-right: -45px;
    margin-top: 0
}

dl,
ol,
ul {
    padding-bottom: 0;
    padding-right: 20px
}

ol {
    padding-right: 1.6em
}

ol li {
    padding-right: 6px
}

.list-unstyled ul li {
    list-style: none
}

.list {
    clear: both;
    display: block;
    position: relative
}

.list-lines,
.list-icons,
.list-simple,
.list-posts,
.list ul {
    padding: 0
}

.list,
.list-lines,
.list-icons,
.list-simple,
.list-posts,
.list-tweets li {
    list-style: none
}

.list-icons li,
.list-arrow-icons li,
.list-tweets li {
    padding-right: 22px
}

.list-arrow-icons li:before {
    margin-right: -18px;
    position: absolute;
    font-family: fontawesome;
    content: "";
    margin-top: -5px
}

.list-tweets li:before {
    margin-right: -18px;
    position: absolute;
    font-family: fontawesome;
    content: ""
}

.list-tweets .list-tweets-date {
    display: block;
    font-size: 12px;
    font-style: italic;
    opacity: .8
}

.list-icons li i {
    font-size: 14px;
    margin-right: -22px;
    margin-left: 6px;
    top: 0
}

.list-lines li {
    border-bottom: 1px solid #ddd;
    padding: 10px 0 10px 2px
}

.list-lines li:last-child {
    border-bottom: 0
}

.background-dark .list-lines li {
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.list-medium li {
    margin: 12px 0
}

.list-large li {
    margin: 18px 0
}

.list-large li:first-child,
.list-medium li:first-child {
    margin-top: 0
}

.list-large li:last-child,
.list-medium li:last-child {
    margin-bottom: 0
}

.list-posts small {
    display: block;
    font-style: italic;
    opacity: .7
}

.list-check {
    list-style: outside none none;
    margin-bottom: 20px
}

.list-check li {
    margin-bottom: 10px
}

.list-check li:last-child {
    margin-bottom: 0
}

.list-check li::before {
    color: #333;
    content: "";
    display: inline-block;
    font-family: fontawesome;
    font-size: 18px;
    height: 20px;
    line-height: 19px;
    margin-right: 10px;
    padding-left: 2px;
    text-align: center;
    vertical-align: middle;
    width: 20px
}

.list-check.default li::before {
    border: 2px solid #fe5e3e;
    color: #fe5e3e
}

.list-check.blue li::before {
    border: 2px solid #00d2ed;
    color: #00d2ed
}

.list-check.green li::before {
    border: 2px solid #00e095;
    color: #00e095
}

.list-arrow {
    list-style: outside none none;
    margin-bottom: 20px;
    padding: 0
}

.list-arrow li {
    margin-bottom: 10px
}

.list-arrow li:last-child {
    margin-bottom: 0
}

.list-arrow li::before {
    border-radius: 50%;
    color: #333;
    content: "";
    display: inline-block;
    font-family: fontawesome;
    content: "";
    font-size: 18px;
    height: 20px;
    line-height: 19px;
    margin-right: 10px;
    padding-left: 2px;
    text-align: center;
    vertical-align: middle;
    width: 20px
}

.map {
    width: 100%;
    height: 100%;
    min-height: 370px
}

body:not(.device-xxs):not(.device-xs) section.fullscreen-map-form-container {
    margin-top: -300px
}

body:not(.device-xxs):not(.device-xs) .fullscreen-map-form-container {
    margin-bottom: 80px;
    margin-top: -300px;
    position: relative
}

body:not(.device-md):not(.device-lg) .fullscreen-map-form-container {
    padding-top: 80px;
    padding-bottom: 80px
}

body:not(.device-xxs):not(.device-xs) .fullscreen-map-form {
    padding-top: 60px;
    padding-left: 40px;
    padding-right: 40px
}

.pagination-wrap {
    display: block;
    clear: both
}

.pagination>li>a,
.pagination>li>span {
    color: #b0b0b0;
    padding: 8px 14px
}

.pagination i {
    font-size: 18px;
    color: #b9b9b9
}

.pagination.pagination-simple {
    margin: 0
}

.pagination.pagination-simple>li>a,
.pagination.pagination-simple>li>span {
    border: 0;
    background-color: transparent !important
}

.pagination.pagination-simple>li>a:hover i,
.pagination.pagination-simple>li>a:hover,
.pagination.pagination-simple>li>span:hover,
.pagination.pagination-simple>li>a:focus,
.pagination.pagination-simple>li>span:focus {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #333
}

.pagination.pagination-simple>.active>a,
.pagination.pagination-simple>.active>span,
.pagination.pagination-simple>.active>a:hover,
.pagination.pagination-simple>.active>span:hover,
.pagination.pagination-simple>.active>a:focus,
.pagination.pagination-simple>.active>span:focus {
    background: rgba(0, 0, 0, 0);
    color: #646464;
    font-size: 130%;
    font-weight: 600;
    padding-top: 3px
}

.pagination.pagination-fancy>li a {
    border-bottom: 3px solid rgba(0, 0, 0, .08)
}

.pagination.pagination-fancy>li:first-child>a,
.pagination-fancy>li:first-child>span {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
    margin-left: 0
}

.pagination.pagination-fancy>li:last-child>a,
.pagination-fancy>li:last-child>span {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    margin-right: 0
}

.pagination.pagination-rounded>li>a,
.pagination.pagination-rounded>li>span {
    padding: 8px 14px 9px
}

.pagination.pagination-rounded>li>a,
.pagination-rounded>li>span {
    border-radius: 50%;
    margin: 0 2px
}

.pagination.pagination-rounded>li:first-child>a,
.pagination-rounded>li:first-child>span {
    background: none !important;
    border: 0 none !important;
    margin-right: 10px;
    padding-top: 10px
}

.pagination.pagination-rounded>li:last-child>a,
.pagination-rounded>li:last-child>span {
    background: none !important;
    border: 0 none !important;
    margin-left: 10px;
    padding-top: 10px
}

.pager>li>a,
.pager>li>span {
    color: #b0b0b0;
    padding: 8px 14px
}

.pager i {
    font-size: 18px;
    color: #fff
}

.pager.pager-fancy>li a {
    background-color: #00c0e9;
    border-color: #00c0e9;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .2)
}

.pager.pager-fancy>li a:hover {
    opacity: .9
}

.pager.pager-fancy>li:first-child>a,
.pager-fancy>li:first-child>span {
    border-radius: 6px 0 0 6px;
    margin-right: 0
}

.pager.pager-fancy>li:last-child>a,
.pager-fancy>li:last-child>span {
    border-radius: 0 6px 6px 0;
    margin-left: 0
}

.pager.pager-fancy>li:last-child>a i,
.pager-fancy>li:last-child>span i {
    margin-left: 6px
}

.pager.pager-fancy>li:first-child>a i,
.pager-fancy>li:first-child>span i {
    margin-right: 6px
}

.pager.pager-rounded>li a {
    background-color: #00c0e9;
    border-color: #00c0e9;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%
}

.pager.pager-rounded>li a:hover {
    opacity: .9
}

.pager.pager-rounded>li:last-child>a i,
.pager-rounded>li:last-child>span i {
    margin-left: 6px
}

.pager.pager-rounded>li:first-child>a i,
.pager-rounded>li:first-child>span i {
    margin-right: 6px
}

.pager-modern {
    background-color: #fbfbfb;
    text-transform: uppercase;
    width: 100%;
    margin: 0
}

.pager-modern i {
    margin: 0 10px;
    vertical-align: middle
}

.pager-modern a,
.pager-modern a:visited {
    color: #555
}

.pager-modern a:hover {
    color: #111
}

.pager-modern a span {
    cursor: pointer;
    display: inline-block;
    height: 60px;
    line-height: 59px;
    padding: 0 4%;
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s
}

.pager-modern span:hover {
    background-color: #f6f6f6
}

.pager.pager-modern i {
    color: #222
}

.pager-prev {
    text-align: left
}

.pager-all {
    text-align: center
}

.pager-all i {
    font-size: 38px
}

.pager-next {
    text-align: right
}

section {
    padding: 80px 0;
    position: relative;
    z-index: auto;
    width: 100%;
    overflow: hidden
}

.panel .table th,
.panel .table td {
    padding-left: 20px !important
}

.breadcrumb {
    background-color: transparent;
    font-size: 12px;
    line-height: 1.3em;
    margin-bottom: 0;
    margin-top: 16px;
    text-align: right
}

.breadcrumb ul {
    display: inline;
    margin: 0;
    padding: 0
}

.breadcrumb li {
    display: inline
}

.breadcrumb a {
    color: #888
}

.breadcrumb li+li:before {
    content: "";
    padding: 0 5px;
    font-family: FontAwesome
}

.breadcrumb.fancy {
    overflow: hidden;
    font-size: 12px;
    line-height: 1.3em;
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
    margin-top: 14px
}

.breadcrumb.fancy li {
    line-height: 32px;
    margin: 0 2px 0 10px
}

.breadcrumb.fancy li+li:before,
.breadcrumb.radius li+li:before {
    content: none
}

.breadcrumb.fancy li:first-child i {
    margin-right: -6px
}

.breadcrumb.fancy a {
    background: #eee;
    padding: .7em 1em;
    text-decoration: none;
    position: relative
}

.breadcrumb.fancy a:hover,
.breadcrumb.fancy .active a {
    background: #ddd;
    color: #333
}

.breadcrumb.fancy a::before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-width: 1.5em 0 1.5em 1.1em;
    border-style: solid;
    border-color: #eee #eee #eee transparent;
    left: -1em
}

.breadcrumb.fancy li:first-child {
    margin: 0 2px 0 0
}

.breadcrumb.fancy li:first-child a::before {
    border-width: 0
}

.breadcrumb.fancy a:hover::before,
.breadcrumb.fancy .active a:before {
    border-color: #ddd #ddd #ddd transparent
}

.breadcrumb.fancy a::after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -1.5em;
    border-top: 1.5em solid transparent;
    border-bottom: 1.5em solid transparent;
    border-left: 1em solid #eee;
    right: -1em
}

.breadcrumb.fancy a:hover::after,
.breadcrumb.fancy .active a:after {
    border-left-color: #ddd
}

.breadcrumb.radius {
    background: transparent;
    overflow: hidden;
    font-size: 12px
}

.breadcrumb.radius li {
    margin-right: 16px
}

.breadcrumb.radius a:hover,
.breadcrumb.radius .active a {
    background: #ddd;
    color: #333
}

.breadcrumb.radius a,
.breadcrumb.radius .active a {
    background: #eee;
    padding: 4px 8px;
    text-decoration: none;
    position: relative
}

.breadcrumb.radius a:hover {
    background: #ddd
}

.breadcrumb.radius a::before,
.breadcrumb.radius a::after {
    background: none repeat scroll 0 0 #eee;
    bottom: 0;
    content: "";
    height: 25px;
    position: absolute;
    top: 0;
    -webkit-transform: skew(-8deg);
    -ms-transform: skew(-8deg);
    transform: skew(-8deg);
    width: 10px
}

.breadcrumb.radius a::before {
    left: -.5em;
    border-radius: 5px 0 0 5px
}

.breadcrumb.radius a:hover::before {
    background: #ddd
}

.breadcrumb.radius a::after {
    right: -.5em;
    border-radius: 0 5px 5px 0
}

.breadcrumb.radius a:hover::after,
.breadcrumb.radius .active:hover {
    background: #ddd
}

.breadcrumb.radius a:hover::after,
.breadcrumb.radius .active a:after {
    border-left-color: #ddd
}

body.device-sm .breadcrumb,
body.device-xs .breadcrumb,
body.device-xxs .breadcrumb {
    text-align: left !important;
    clear: both
}

body.device-sm .page-title-right .breadcrumb,
body.device-xs .page-title-right .breadcrumb,
body.device-xxs .page-title-right .breadcrumb {
    text-align: right !important;
    clear: both;
    padding-top: 14px !important
}

body.device-sm .page-title-center .breadcrumb,
body.device-xs .page-title-center .breadcrumb,
body.device-xxs .page-title-center .breadcrumb {
    text-align: center!important;
    clear: both
}

.navbar .form-control {
    height: 34px;
    padding: 6px 12px
}

.navbar .btn {
    border-radius: 0;
    padding: 5px 16px 7px
}

.jumbotron {
    position: relative;
    overflow: hidden;
    padding: 24px 30px 12px
}

.jumbotron h3 {
    font-weight: 700
}

.jumbotron h3,
.jumbotron p,
.jumbotron .red-box {
    float: right;
    margin-bottom: 12px;
    width: 80%
}

.jumbotron p,
.jumbotron .red-box {
    font-size: 16px;
    margin-top: 0
}

.jumbotron a.button {
    margin-right: 22px;
    margin-top: -24px;
    position: absolute;
    left: auto;
    top: 50%;
    float: left
}

.jumbotron.jumbotron-fullwidth .container {
    padding-left: 15px
}

.jumbotron.jumbotron-fullwidth {
    padding: 36px 24px 30px
}

.jumbotron.jumbotron-border {
    background: #fff;
    border: 1px solid #eee
}

.jumbotron.jumbotron-transparent {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2)
}

.jumbotron.jumbotron-background-image {
    background-size: cover
}

.jumbotron.jumbotron-small {
    padding: 24px 30px 26px
}

body.device-sm .jumbotron a.button,
body.device-xs .jumbotron a.button,
body.device-xxs .jumbotron a.button,
.jumbotron.jumbotron-small a.button,
.jumbotron.jumbotron-medium a.button,
.jumbotron.jumbotron-large a.button {
    display: block;
    float: left;
    margin-left: 0;
    margin-top: 0;
    position: relative;
    clear: both
}

.jumbotron.jumbotron-large {
    padding: 48px 40px
}

.jumbotron.jumbotron-large p {
    font-size: 21px
}

.jumbotron.jumbotron-center {
    text-align: center
}

.jumbotron.jumbotron-center a.button {
    clear: both;
    display: inline-table !important;
    float: none !important;
    margin-top: 0;
    position: relative;
    margin-right: 0;
    margin-left: 0
}

.jumbotron.jumbotron-center h3,
.jumbotron.jumbotron-center p {
    width: 100%;
    display: block;
    float: none
}

.jumbotron.jumbotron-right {
    text-align: right
}

.jumbotron.jumbotron-right a.button {
    float: left;
    left: 40px;
    right: auto
}

.jumbotron.jumbotron-right h3,
.jumbotron.jumbotron-right p {
    float: right
}

body.device-sm .jumbotron.jumbotron-right a.button,
body.device-xs .jumbotron.jumbotron-right a.button,
body.device-xxs .jumbotron.jumbotron-right a.button,
.jumbotron.jumbotron-large.jumbotron-right a.button,
.jumbotron.jumbotron-small.jumbotron-right a.button {
    float: right;
    margin-right: 40px
}

body.device-sm .jumbotron.jumbotron-right.jumbotron-fullwidth a.button,
body.device-xs .jumbotron.jumbotron-right.jumbotron-fullwidth a.button,
body.device-xxs .jumbotron.jumbotron-right.jumbotron-fullwidth a.button {
    float: right;
    margin-right: 0
}

.jumbotron.jumbotron-fullwidth.jumbotron-right a.button {
    left: auto;
    margin-left: -225px;
    right: auto
}

.tooltip-inner {
    padding: 12px 20px
}

.tooltip.left .tooltip-arrow {
    right: 1px
}

.popover {
    border-radius: 0;
    border: none;
    background-color: #fcfcfc;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .3);
    color: #667;
    padding: 3px 3px 8px
}

.popover-content {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400 !important;
    padding-top: 0
}

.popover-title {
    padding: 18px 14px 0;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    background-color: inherit;
    border-bottom: none;
    border-radius: 0
}

.popover-title::after {
    border-top: 1px solid #eee;
    content: "";
    display: block;
    height: 1px;
    margin: 12px 0 5px;
    width: 100%
}

.popover-content>img,
.popover-content iframe {
    width: 100%;
    height: auto !important;
    margin-top: 10px
}

.popover-content iframe {
    background: url(../lang2_files/loading.gif) center center no-repeat
}

.popover>.arrow {
    border-color: transparent !important
}

.modal-content {
    border-radius: 4px;
    padding: 10px
}

.modal-title::after {
    border-top: 1px solid #eee;
    content: "";
    display: block;
    height: 1px;
    margin: 16px 0 -12px;
    width: 100%
}

.modal-header,
.modal-footer {
    border: none
}

.modal-backdrop {
    bottom: 0
}

.grid li,
.clients-carousel a,
.clients-carousel a img {
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s;
    opacity: .8
}

.parallax .clients-carousel a {
    opacity: 1
}

.grid li:hover,
.clients-carousel a:hover,
.clients-carousel a:hover img {
    opacity: 1;
    cursor: pointer
}

.client-carousel .owl-item img,
.clients-logo .owl-item img {
    padding: 20px
}

.grid {
    padding: 0;
    list-style: none;
    overflow: hidden
}

.grid li {
    float: right;
    position: relative;
    width: 20%;
    padding: 20px
}

.grid.grid-2-columns li,
.grid.grid-2-columns figure {
    width: 50%
}

.grid.grid-3-columns li,
.grid.grid-3-columns figure {
    width: 33.333333%
}

.grid.grid-4-columns li,
.grid.grid-4-columns figure {
    width: 25%
}

.grid.grid-5-columns li,
.grid.grid-5-columns figure {
    width: 20%
}

.grid.grid-6-columns li,
.grid.grid-6-columns figure {
    width: 16.6666666%
}

.grid li:hover {
    cursor: pointer;
    background-color: #f8f8f8
}

.grid li a,
.grid li img {
    display: block;
    width: 75%;
    margin-left: auto;
    margin-right: auto
}

.grid li a img {
    width: 100%
}

.grid li:before,
.grid li:after {
    content: '';
    position: absolute
}

.grid li:before {
    height: 100%;
    top: 0;
    left: -1px;
    border-left: 1px solid #eee
}

.grid li:after {
    width: 100%;
    height: 0;
    top: auto;
    left: 0;
    bottom: -1px;
    border-bottom: 1px solid #eee
}

.grid.clients-grey {
    border: 1px solid #ddd
}

.grid.clients-grey li {
    background-color: #eee
}

.grid.clients-grey li:before {
    border-left: 1px solid #ccc
}

.grid.clients-grey li:after {
    border-bottom: 1px solid #ccc
}

.grid.clients-border {
    border-width: 10px
}

.carousel-description-clients .carousel {
    margin-top: 40px
}

.carousel-description-clients .owl-prev,
.carousel-description-clients .owl-next {
    margin-top: -40px !important
}

body.device-sm .carousel-description-clients .owl-controls,
body.device-xs .carousel-description-clients .owl-controls,
body.device-xxs .carousel-description-clients .owl-controls {
    display: none
}

body.device-sm .grid li,
body.device-xs .grid li {
    width: 33.33%
}

body.device-xxs .grid li {
    width: 50%
}

.dropcap {
    background: none repeat scroll 0 0 #eee;
    border-radius: 4px;
    display: inline-block;
    float: right;
    font-size: 20px;
    height: 40px;
    line-height: 40px;
    margin: 3px 0 0 10px;
    text-align: center;
    width: 40px
}

.dropcap.dropcap-circle {
    border-radius: 50%
}

.dropcap.dropcap-large {
    font-size: 44px;
    height: 80px;
    line-height: 80px;
    width: 80px
}

.dropcap.dropcap-small {
    font-size: 16px;
    height: 20px;
    line-height: 20px;
    margin: 3px 5px -3px 0;
    width: 21px
}

.highlight {
    border-radius: 3px;
    background-color: #eee
}

span.highlight {
    padding: 0 5px
}

.highlight a {
    color: #333
}

.highlight.highlight-large {
    font-size: 20px
}

.highlight.highlight-small {
    font-size: 12px;
    padding: 0 7px
}

#isotope,
.isotope {
    margin-bottom: -1px;
    clear: both
}

.isotope-item {
    position: relative;
    float: left;
    overflow: hidden
}

.isotope-item,
.isotope-item img {
    display: block;
    height: auto !important
}

.isotope-item img {
    width: 100%
}

.pricing-table {
    padding-top: 50px;
    margin: 0;
    padding: 0;
    cursor: pointer
}

.pricing-table .plan {
    margin-bottom: 60px
}

.pricing-table .plan:hover {
    box-shadow: 0 0 8px rgba(0, 0, 0, .1)
}

.pricing-table .plan .plan-header {
    position: relative;
    background: #34495e;
    padding: 22px 22px;
    text-align: center
}

.pricing-table .plan .plan-header {
    background-color: #fbfbfb;
    border-color: #e3e3e3;
    border-style: solid;
    border-width: 1px;
    padding: 22px;
    position: relative;
    text-align: center
}

.pricing-table .plan-header>h4 {
    margin-bottom: 0
}

.pricing-table .plan .plan-header .plan-price {
    font-size: 70px;
    font-weight: 600;
    position: relative;
    text-align: center;
    padding: 20px 0
}

.pricing-table .plan .plan-header .plan-price sup {
    font-size: 24px;
    position: relative;
    top: -30px;
    color: #bdc3c7
}

.pricing-table .plan .plan-header .plan-price span {
    font-size: 16px;
    color: #bdc3c7
}

.pricing-table .plan-list {
    border-color: #e3e3e3;
    border-style: solid;
    border-width: 0 1px 1px;
    padding: 20px 0 40px
}

.pricing-table .plan-list ul {
    display: table;
    margin: 0 auto;
    padding: 0 40px
}

.pricing-table .plan-list ul li {
    list-style: none;
    border-bottom: 1px solid #eaeceb;
    font-size: 16px;
    line-height: 42px
}

.pricing-table .plan-list ul li:last-child {
    border: none
}

.pricing-table .plan-list ul li i {
    margin-left: 12px
}

.pricing-table .plan-list ul li span {
    color: #34495e
}

.pricing-table .plan.featured {
    box-shadow: 0 0 3px rgba(0, 0, 0, .1);
    margin-top: -10px;
    padding-bottom: 0
}

.pricing-table .plan.featured .plan-list {
    padding: 20px 0 60px
}

.pricing-table .plan .plan-featured-item {
    background-color: #f8f8f8;
    border: 1px solid #e3e3e3 !important;
    font-weight: 600;
    margin-top: 21px;
    padding: 0 20px
}

.pricing-table .plan .btn,
.plan .button {
    margin: 0
}

.pricing-table.colored .plan-header {
    background-color: #00c0e9;
    border-color: rgba(0, 0, 0, .05);
    color: #fff
}

.pricing-table.colored .text-muted {
    color: #fff
}

.pricing-table.colored .plan-header h4,
.pricing-table.colored .plan-header .plan-price sup,
.pricing-table.colored .plan-header .plan-price span {
    color: #fff
}

.pricing-table.transparent .plan-header,
.pricing-table.transparent .plan-list {
    background-color: rgba(0, 0, 0, .4);
    border-color: rgba(0, 0, 0, .6)
}

.pricing-table.transparent .plan-list ul li {
    border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.pricing-table .plan .plan-featured-item {
    background-color: transparent
}

.section-grey .pricing-table .plan-list {
    background-color: #f8f8f8
}

section .pricing-table.full-width {
    padding-left: 30px;
    padding-right: 30px
}

body.device-lg .pricing-table .col-md-2,
body.device-md .pricing-table .col-md-2 {
    width: 20%
}

body.device-lg .pricing-table .col-md-2 .plan-list ul li,
body.device-md .pricing-table .col-md-2 .plan-list ul li {
    font-size: 13px
}

.testimonial {
    border: 0
}

.testimonial .testimonial-description {
    background-color: #f8f8f8;
    border-radius: 4px;
    min-height: 160px;
    padding: 0;
    position: relative
}

.testimonial .testimonial-description>p {
    padding: 20px 20px 16px
}

.testimonial .testimonial-image {
    margin-left: 20px;
    margin-top: -20px;
    padding-top: 18px;
    position: relative
}

.testimonial .testimonial-image img {
    border: 4px solid #e3e3e3;
    float: left;
    margin-right: 18px !important;
    margin-top: -18px !important;
    position: relative
}

.testimonial .testimonial-image h4 {
    margin-bottom: 0
}

.testimonial .testimonial-image img,
.owl-carousel .owl-item .testimonial .testimonial-image img {
    margin: 0 auto;
    width: 80px
}

.carousel .testimonial-video-button {
    width: 28px
}

.carousel .testimonial-video-button>a {
    margin-top: 5px
}

.carousel .testimonial-video-button>a i {
    font-size: 34px
}

.carousel .testimonial.testimonial-card .testimonial-image img {
    margin: 0 auto !important
}

.testimonial-video-button {
    float: right;
    height: 44px;
    margin-bottom: -42px;
    margin-right: 12px;
    position: relative;
    width: 44px;
    z-index: 1
}

.testimonial-video-button>a {
    margin-top: -24px;
    position: absolute
}

.testimonial-video-button i {
    color: #444;
    font-size: 50px
}

.testimonial-video-button i:hover {
    opacity: .9
}

.testimonial.testimonial-card {
    border: 1px solid #e3e3e3;
    border-radius: 2px;
    position: relative;
    margin-bottom: 20px
}

.testimonial.testimonial-card .testimonial-image {
    background-color: #fbfbfb;
    border-bottom: 1px solid #ddd;
    margin-left: 0;
    margin-top: 0;
    padding: 20px 20px 10px;
    text-align: center
}

.testimonial.testimonial-card .testimonial-image img {
    border: 4px solid #e3e3e3;
    float: none;
    margin-right: 0 !important;
    margin-top: 0 !important
}

.testimonial.testimonial-card .testimonial-image .testimonial-name {
    font-weight: 700;
    padding: 10px 0 0;
    text-align: center
}

.testimonial.testimonial-card .testimonial-description {
    background-color: #fff
}

.carousel .testimonial.testimonial-card .testimonial-video-button>a {
    margin-top: -18px
}

.testimonial.testimonial-transparent .testimonial-description {
    background-color: rgba(0, 0, 0, .6)
}

.testimonial.testimonial-transparent .testimonial-video-button i {
    color: #fff
}

.testimonial.testimonial-simple {
    text-align: center
}

.testimonial.testimonial-simple .testimonial-image {
    margin-left: 0 !important;
    margin-top: 0 !important;
    padding-top: 18px
}

.testimonial.testimonial-simple .testimonial-description {
    background-color: transparent !important;
    min-height: 0 !important
}

.testimonial.testimonial-simple .testimonial-image img,
.owl-carousel .owl-item .testimonial.testimonial-simple .testimonial-image img {
    margin: 0 auto !important;
    width: 120px;
    float: none;
    margin-top: 6px !important
}

.testimonial.testimonial-simple .testimonial-video-button {
    display: block;
    float: none;
    margin: 0 auto;
    position: relative
}

.testimonial.testimonial-simple .testimonial-video-button a i {
    margin-left: -14px
}

.text-light .testimonial .testimonial-video-button a i,
.text-light .testimonial .testimonial-description p:before,
.text-light .testimonial .testimonial-description p:after {
    color: #fff
}

.timeline {
    margin-bottom: 60px
}

.timeline,
.timeline-circles {
    list-style: none;
    padding: 20px 0 20px;
    position: relative
}

.timeline:before {
    background-color: #ccc;
    bottom: 0;
    content: " ";
    left: 50%;
    margin-left: -1.5px;
    position: absolute;
    top: 0;
    width: 4px
}

.timeline-circles:before,
.timeline-circles:after {
    background-color: #ccc;
    border-radius: 10px;
    content: " ";
    height: 20px;
    left: 50%;
    margin-left: -10px;
    position: absolute;
    width: 20px
}

.timeline-circles:before {
    top: -25px
}

.timeline-circles:after {
    bottom: -40px
}

.timeline li.timeline-date {
    margin-bottom: 25px
}

.timeline li:nth-child(2) {
    margin-top: 0 !important
}

.timeline li:before,
.timeline li:after {
    content: " ";
    display: table
}

.timeline li:after {
    clear: both
}

.timeline-date {
    background-color: #eee;
    border-radius: 6px;
    color: #888;
    display: block;
    font-size: 16px;
    line-height: 32px;
    margin: 0 auto;
    text-align: center;
    width: 200px
}

.timeline li .timeline-block {
    padding: 0 10px;
    position: relative;
    width: 48%
}

.timeline.timeline-transparent .timeline-block .post-item {
    background-color: #fff;
    padding: 20px
}

.timeline li .timeline-block:before {
    position: absolute;
    top: 8px;
    right: -4%;
    display: inline-block;
    border-top: 15px solid transparent;
    border-right: 15px solid #ccc;
    border-left: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    content: " "
}

.timeline li .timeline-block .timeline-block-content {
    height: 100% !important;
    overflow: hidden
}

.timeline-block-content h3 {
    margin-top: 0
}

.timeline-block-image,
.timeline-block-embed {
    border-bottom: 5px solid #ddd;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.timeline-block-image {
    max-height: 200px
}

.timeline-block-image img {
    margin-top: -10%;
    width: 100%
}

.timeline-block-image iframe {
    width: 100%;
    height: 100%
}

.timeline li:nth-child(2n+1) .timeline-block {
    padding: 20px 0 0 10px;
    float: right
}

.timeline li:nth-child(2n+1) .timeline-block:before {
    border-right-width: 0;
    border-left-width: 15px;
    left: -4%;
    right: auto;
    top: 22px
}

.timeline li:nth-child(2n+1) .timeline-block:after {
    border-left-width: 0;
    border-right-width: 15px;
    left: -4%;
    right: auto
}

body.device-xs .timeline:before,
body.device-xs .timeline-circles:before,
body.device-xs .timeline-circles:after,
body.device-xs .timeline li:not(.timeline-date)::before,
body.device-xxs .timeline:before,
body.device-xxs .timeline-circles:before,
body.device-xxs .timeline-circles:after,
body.device-xxs .timeline li:not(.timeline-date)::before {
    left: 0
}

body.device-xs .timeline-date,
body.device-xxs .timeline-date {
    margin-left: 3px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

body.device-xs .timeline li .timeline-block,
body.device-xxs .timeline li .timeline-block {
    float: left;
    margin-left: 10px;
    width: 100% !important;
    padding-left: 10px
}

body.device-xs .timeline li .timeline-block,
body.device-xxs .timeline li .timeline-block,
body.device-xs .timeline li:nth-child(2n+1) .timeline-block,
body.device-xxs .timeline li:nth-child(2n+1) .timeline-block {
    padding: 20px 10px 0 20px
}

body.device-xs .timeline li .timeline-block:before,
body.device-xxs .timeline li .timeline-block:before {
    left: -8px;
    right: auto;
    border-left-width: 15px;
    border-right-width: 0
}

body.device-xs .timeline li .timeline-block:after,
body.device-xxs .timeline li .timeline-block:after {
    border-left-width: 0;
    border-right-width: 14px;
    left: -14px;
    right: auto
}

body.device-xs .timeline.timeline-simple .timeline-date,
body.device-xxs .timeline.timeline-simple .timeline-date {
    margin-left: -1px
}

.portfolio-items {
    position: relative;
    overflow: hidden
}

.portfolio-item {
    position: relative;
    float: right
}

.portfolio-item,
.portfolio-item img {
    display: block;
    height: auto !important
}

.portfolio-item img {
    width: 100%
}

.portfolio-item .portfolio-description,
.portfolio-item .portfolio-date {
    padding: 15px 0 10px
}

.portfolio-item .portfolio-description {
    color: #999;
    float: right;
    font-size: 11px;
    text-align: right;
    width: 70%
}

.portfolio-item .portfolio-description h4 {
    line-height: 22px;
    position: relative;
    top: -2px;
    margin-bottom: -2px;
    font-weight: 600
}

.portfolio-item .portfolio-date {
    float: right;
    padding-right: 6px;
    position: relative;
    text-align: right;
    top: -4px;
    width: 30%
}

.portfolio-item .portfolio-date i,
.portfolio-item .portfolio-description i {
    margin-left: 6px
}

.portfolio-item .portfolio-date a,
.portfolio-item .portfolio-date i {
    color: #999
}

.portfolio-item .portfolio-details {
    clear: both;
    display: block
}

.background-grey .portfolio-item {
    background-color: #fff;
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, .11)
}

.background-grey .portfolio-item .portfolio-description,
.background-grey .portfolio-item .portfolio-date,
.background-grey .portfolio-item .portfolio-details {
    padding: 0 20px
}

.background-grey .portfolio-item .portfolio-description,
.background-grey .portfolio-item .portfolio-date {
    padding-top: 20px
}

.background-grey .portfolio-item .portfolio-details {
    padding-bottom: 20px
}

.portfolio [data-isotope-col="1"] .portfolio-item {
    margin-bottom: 50px !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 46px
}

body.device-lg .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-image,
body.device-md .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-image {
    width: 50%;
    float: left
}

body.device-lg .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-description,
body.device-md .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-description {
    padding-left: 22px;
    width: 35%
}

body.device-lg .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-date,
body.device-md .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-date {
    padding-right: 22px;
    width: 15%
}

body.device-lg .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-details,
body.device-md .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-details {
    float: left;
    padding: 0 22px;
    width: 50%;
    clear: none
}

body.device-lg .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-description h4,
body.device-md .portfolio [data-isotope-col="1"] .portfolio-item .portfolio-description h4 {
    font-size: 26px;
    margin-bottom: 3px
}

body.device-lg .portfolio [data-isotope-col="5"] .portfolio-item .portfolio-description h4,
body.device-md .portfolio [data-isotope-col="5"] .portfolio-item .portfolio-description h4 {
    font-size: 14px
}

body.device-lg .portfolio [data-isotope-col="6"] .portfolio-item .portfolio-description h4,
body.device-md .portfolio [data-isotope-col="6"] .portfolio-item .portfolio-description h4 {
    font-size: 12px
}

.portfolio-filter {
    padding: 0;
    margin-bottom: 20px
}

.portfolio-filter li,
.portfolio-filter .filter-active-title {
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    padding: 16px;
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    color: #333
}

.portfolio-filter li.ptf-active,
.portfolio-filter li:hover {
    color: #fff !important
}

body.device-xs .portfolio-filter li,
body.device-xxs .portfolio-filter li {
    display: block;
    width: 50%;
    float: left;
    border-width: 0
}

.filter-active-title {
    float: right;
    padding: 10px 0;
    position: relative
}

body:not(.device-lg):not(.device-md) .filter-active-title {
    display: none
}

.portfolio-filter.portfolio-filter-transparent,
.portfolio-filter.portfolio-filter-transparent li {
    color: #fff
}

.portfolio-filter.portfolio-filter-transparent li.ptf-active,
.portfolio-filter.portfolio-filter-transparent .portfolio-filter li:hover,
.portfolio-filter.portfolio-filter-transparent .filter-active-title,
.portfolio-filter.portfolio-filter-transparent li.ptf-active,
.portfolio-filter.portfolio-filter-transparent li:hover {
    background-color: transparent !important;
    border-radius: 0;
    opacity: .6
}

.portfolio-basic-image {
    margin-bottom: 40px
}

.portfolio-client-info ul {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 20px
}

.portfolio-client-info ul li {
    overflow: hidden
}

.portfolio-client-info ul li span {
    float: right;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px
}

.portfolio-client-info ul li a {
    color: #333
}

.portfolio-client-description {
    margin-top: 20px
}

.text-rotator>span {
    display: none
}

.text-rotator>.animated {
    display: inline-block;
    opacity: 1
}

.side-image {
    padding: 0;
    position: relative
}

.side-image .image-container {
    overflow: hidden;
    position: absolute;
    height: 100%;
    padding: 0;
    top: 0
}

.side-image .image-container.pull-right {
    right: 0
}

.side-image .content {
    padding-top: 80px;
    padding-bottom: 80px
}

.side-image p.lead {
    margin-bottom: 40px
}

.feature-icon-left {
    float: left;
    margin-bottom: 40px;
    overflow: hidden
}

.feature-icon-left .icon-holder {
    float: left;
    width: 45px
}

.feature-icon-left i {
    font-size: 32px
}

.feature-icon-left .feature-text {
    float: left;
    padding-top: 8px;
    width: 217px
}

.boxed-grid .row {
    margin-right: -10px;
    margin-left: -10px
}

.boxed-grid [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px
}

.boxed-grid [class*="col-"] a {
    margin-bottom: 20px
}

.boxed-grid a {
    overflow: hidden;
    display: block;
    position: relative
}

.boxed-grid a img {
    width: 100%;
    height: auto;
    transition: all .6s ease
}

.boxed-grid a:hover img {
    transform: scale(1.2)
}

.boxed-grid a .title {
    position: absolute;
    top: 40%;
    left: 30px;
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff
}

.text-center a .title,
.text-right a .title {
    width: 100%;
    left: 0
}

.text-right a .title {
    left: auto;
    right: 30px;
    width: 100%
}

.background-image {
    background-position: center top;
    background-size: cover
}

.background-fixed {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover
}

.parallax,
.page-title-parallax {
    background-attachment: fixed;
    background-size: cover !important;
    background-position: center center !important
}

.no-parallax {
    background-attachment: fixed;
    background-position: center top;
    background-size: cover
}

.background-overlay-gradient>.container,
.background-overlay>.container,
.background-overlay-one>.container,
.background-overlay-dark>.container,
.background-overlay-light>.container,
#particles-js>.container,
.background-overlay-gradient>.container-fluid,
.background-overlay>.container-fluid,
.background-overlay-one>.container-fluid,
.background-overlay-dark>.container-fluid,
.background-overlay-light>.container-fluid,
#particles-js>.container-fluid {
    position: relative
}

.background-overlay-gradient:before {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, .59) 0%, rgba(255, 255, 255, 0) 99%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 0, 0, .59)), color-stop(99%, rgba(255, 255, 255, 0)));
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, .59) 0%, rgba(255, 255, 255, 0) 99%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, .59) 0%, rgba(255, 255, 255, 0) 99%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, .59) 0%, rgba(255, 255, 255, 0) 99%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, .59) 0%, rgba(255, 255, 255, 0) 99%);
    filter: DXImageTransform.Microsoft.gradient( startColorstr='#96000000', endColorstr='#00ffffff', GradientType=0);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .8
}

.background-overlay:before {
    background: url("../lang2_files/overlay-pattern/overlay-pattern-1.png");
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: .8
}

.background-overlay-one:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .3);
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 0
}

.background-overlay-dark:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 0
}

.background-overlay-light:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, .7);
    content: " ";
    width: 100%;
    height: 100%;
    z-index: 0
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;
    background: rgba(0, 0, 0, .6);
    z-index: 0
}

.responsive-utilities th small {
    color: #999;
    display: block;
    font-weight: 400
}

.responsive-utilities td.is-visible {
    background-color: #dff0d8 !important;
    color: #468847
}

.shop {
    position: relative
}

.product {
    margin-bottom: 40px;
    position: relative;
    display: block
}

.product .product-image {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden
}

.product .product-image>a,
.product .product-image img {
    display: block;
    width: 100%;
    height: 100%
}

.product .product-image>a,
.product .product-wishlist a {
    -webkit-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease
}

.product .product-image>a:nth-of-type(2) {
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1;
    position: absolute
}

.product .product-image:hover>a:nth-of-type(2) {
    opacity: 1;
    z-index: 2
}

.product .product-wishlist a {
    border: 2px solid #333;
    border-radius: 50%;
    height: 30px;
    left: 12px;
    line-height: 28px;
    position: absolute;
    text-align: center;
    top: 12px;
    width: 30px;
    z-index: -1;
    opacity: 0
}

.product:hover .product-wishlist,
.product:hover .product-wishlist a {
    z-index: 3;
    opacity: 1
}

.product .product-description {
    padding: 8px 0 10px
}

.product-title {
    min-height: 35px;
    width: 74%
}

.product .product-title h3,
.product .product-title h3 a {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0
}

.product .product-category {
    display: block;
    opacity: .5
}

.product .product-price {
    width: 26%;
    float: right;
    margin-bottom: 0;
    text-align: right
}

.product .product-price ins {
    color: #444;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    text-decoration: none
}

.product .product-price del {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin: -20px 0 -4px;
    opacity: .6
}

.product .product-rate {
    height: 23px;
    float: left;
    color: #ffc300
}

.product .product-reviews,
.product .product-reviews a {
    color: #73848e;
    float: right;
    font-size: 13px
}

.product .product-sale,
.product .product-new,
.product .product-hot,
.product .product-out-stock {
    border-radius: 50%;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    height: 42px;
    right: 10px;
    line-height: 42px;
    position: absolute;
    text-align: center;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, .14);
    top: 10px;
    width: 42px;
    z-index: 5
}

.product .product-sale,
.product .product-sale-off {
    background: #ffc300
}

.product .product-new {
    background: #00c0e9
}

.product .product-hot {
    background: #d6284b
}

.product .product-out-stock {
    background: #a5a5a5 none repeat scroll 0 0;
    border-radius: 4px;
    padding: 0 18px;
    width: auto
}

.product .product-sale-off {
    border-radius: 12px 0 0;
    bottom: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    height: 42px;
    line-height: 42px;
    position: absolute;
    right: 0;
    text-align: center;
    text-shadow: 1px 2px 1px rgba(0, 0, 0, .14);
    width: 88px;
    z-index: 5
}

.product .product-overlay {
    position: absolute;
    width: 100%;
    line-height: 44px;
    top: auto;
    bottom: -100%;
    right: 0;
    z-index: 6
}

.product .product-overlay,
.product .product-overlay a {
    -webkit-transition: bottom .3s ease;
    -o-transition: bottom .3s ease;
    transition: bottom .3s ease
}

.product:hover .product-overlay {
    bottom: 0
}

.product .product-overlay a {
    color: #fff;
    display: block;
    font-size: 13px;
    background-color: rgba(0, 0, 0, .7);
    text-align: center
}

.product .product-overlay a:hover {
    background-color: #111;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3)
}

body:not(.device-xs):not(.device-xxs):not(.device-sm) .col-md-2 .product .product-title h3 {
    font-size: 15px;
    line-height: 16px
}

body:not(.device-xs):not(.device-xxs):not(.device-sm) .col-md-2 .product {
    margin-bottom: 85px
}

body:not(.device-xs):not(.device-xxs):not(.device-sm) .col-md-2 .product .product-price {
    display: block;
    float: left;
    margin-top: 10px;
    width: 100%;
    text-align: left
}

body:not(.device-xs):not(.device-xxs):not(.device-sm) .col-md-2 .product .product-price del {
    display: unset;
    margin: -20px 7px 4px 0
}

body:not(.device-xs):not(.device-xxs):not(.device-sm) .col-md-2 .product .product-reviews {
    float: left
}

.shop-category {
    position: relative
}

.shop-category-box {
    position: relative;
    margin-bottom: 20px
}

.shop-category-box img {
    width: 100%
}

.shop-category-box .shop-category-box-title {
    background-color: rgba(255, 255, 255, .9);
    bottom: 10px;
    padding: 4px 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.shop-category-box-title h6 {
    margin-bottom: 0
}

.shop-cart th,
.shop-cart .table td {
    vertical-align: middle
}

.shop-cart .cart-product-remove {
    text-align: center
}

.shop-cart .cart-product-thumbnail>a {
    float: left;
    margin-right: 12px
}

.shop-cart .cart-product-thumbnail img {
    max-width: 52px
}

.shop-cart .cart-product-thumbnail .cart-product-thumbnail-name {
    padding: 24px;
    font-weight: 600
}

.cart-product-description {
    max-width: 200px;
    font-size: 12px
}

.cart-product-description span {
    display: block
}

.cart-product-quantity .minus,
.cart-product-quantity .plus {
    border: 1px solid #eee;
    margin: 0 -4px;
    padding: 5px 12px
}

.cart-product-quantity .qty {
    border: 1px solid #eee;
    max-width: 40px;
    padding: 5px;
    text-align: center
}

.payment-method td {
    padding: 12px 20px !important
}

.product-page:not(.widget-shop) .product-title h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0
}

.product-size {
    display: block;
    list-style: outside none none;
    margin: 0 20px 15px 0;
    overflow: hidden;
    padding-left: 0
}

.product-size li {
    float: left;
    margin: 0 6px 0 0
}

.product-size li label span {
    cursor: pointer;
    display: block;
    font-size: 1.2em;
    font-weight: 400;
    height: 40px;
    line-height: 37px;
    margin: 0;
    text-align: center;
    transition: all .3s ease 0s;
    width: 40px
}

.product-size li label input {
    left: -9000px;
    position: absolute
}

.product-size li label span {
    border: 1px solid #eee;
    color: #909090
}

.product-size li label span:hover {
    border-color: #909090
}

.product-size li label input:checked+span {
    background-color: #eee;
    border-color: #eee
}

.product .comment .product-rate {
    float: right
}

.product .comment {
    margin-top: 20px
}

.ajax-quick-view .product {
    margin-bottom: 0;
    margin-top: 20px
}

.widget-shop {
    position: relative
}

.widget-shop .product {
    position: relative;
    border-bottom: 1px solid #eee;
    float: right;
    margin-bottom: 12px;
    min-height: 96px;
    padding-bottom: 12px
}

.widget-shop .product:last-child {
    border-bottom: 0
}

.widget-shop .product .product-description {
    padding-top: 0
}

.widget-shop .product .product-image {
    float: left;
    padding-left: 10px;
    width: 26%
}

.widget-shop .product .product-description {
    display: table-cell;
    padding-bottom: 0;
    vertical-align: top;
    width: 74%
}

.widget-shop .product .product-title,
.widget-shop .product .product-category {
    font-size: 12px;
    margin-bottom: 5px;
    margin-top: -8px
}

.widget-shop .product .product-title h3,
.widget-shop .product .product-title h3 a {
    font-size: 15px;
    line-height: 18px
}

.widget-shop .product .product-description .product-price {
    clear: both;
    float: none;
    margin-bottom: 0;
    margin-top: 0;
    text-align: left
}

.widget-shop .product .product-description .product-price ins {
    font-size: 14px;
    margin-bottom: 4px
}

.widget-shop .product .product-description .product-price del {
    display: unset;
    font-size: 12px;
    margin: -8px 5px -8px 0
}

.widget-tweeter .list-tweets {
    padding-right: 0
}

.widget-categories .list {
    padding: 0
}

#footer .widget-categories a,
#footer .widget-categories a h5 {
    color: #888
}

#footer .widget-categories a h5 {
    font-size: 13px
}

.shop-promo-box {
    min-height: 360px;
    background-repeat: no-repeat;
    padding: 50px;
    border: 8px solid #eee
}

.shop-promo-box>h2 {
    font-weight: 800;
    margin-bottom: 0
}

.box-fancy>.container {
    padding: 0 30px
}

.box-fancy [class*="col-"] {
    padding: 5% !important
}

body.device-xxs .box-fancy [class*="col-"] {
    padding: 10% !important
}

.box-fancy.fancy-box-over {
    top: -100px
}

.over-slider-top {
    top: -100px
}

.site-map i {
    margin-right: 8px
}

.site-map ul li {
    padding-bottom: 2px
}

.animated.infinite {
    animation-duration: 3s;
    animation-fill-mode: both
}

#youtube-background-controls {
    background: none;
    border: 2px solid #fff;
    border-radius: 50%;
    height: 60px;
    position: relative;
    width: 60px
}

#youtube-background-controls .fa {
    font-size: 23px;
    line-height: 40px
}

#youtube-background-controls .fa-pause,
#youtube-background-controls .fa-play {
    -webkit-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s;
    opacity: 0;
    position: absolute;
    left: 19px;
    top: 9px
}

#youtube-background-controls .fa-play {
    left: 22px
}

#youtube-background-controls .fa-pause {
    opacity: 1
}

#youtube-background-controls.video-is-playing .fa-play {
    opacity: 1
}

#youtube-background-controls.video-is-playing .fa-pause {
    opacity: 0
}

@media(min-width:1240px) {
    .rev_slider_wrapper {
        min-height: 600px
    }
    body.boxed .wrapper,
    body.boxed-simple .wrapper {
        float: none;
        width: 1220px;
        margin: 0 auto
    }
    body.boxed-simple .wrapper {
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 20px
    }
}

@media(max-width:1240px) {
    #header.header-modern {
        width: 1180px
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .post-3-columns .post-item,
    .post-4-columns .post-item,
    .post-5-columns .post-item,
    .post-6-columns .post-item {
        width: 31.3333%;
        margin-left: 2%
    }
    #header.header-modern {
        width: 998px
    }
    .news-section-wrapper {
        padding: 0 40px
    }
    .inspiro-slider .slide-captions h1,
    .inspiro-slider .slide-captions h2 {
        font-size: 56px;
        line-height: 56px
    }
}

@media(max-width:991px) {
    .wrapper {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        width: 100%
    }
    body.wide #header.header-fullwidth #header-wrap .container {
        padding-bottom: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 0;
        width: 750px
    }
    #topbar.topbar-dark {
        background-color: #111 !important
    }
    #topbar .topbar-dropdown {
        font-size: 12px
    }
    #topbar .topbar-dropdown .title {
        padding: 0 10px
    }
    #logo img {
        padding: 10px 10px 10px 0
    }
    #header,
    #header-wrap,
    #header.header-sticky nav#mainMenu ul.main-menu,
    #mainMenu>ul {
        height: auto !important
    }
    #header.header-sticky #header-wrap {
        position: relative
    }
    #header.header-transparent+#slider,
    #header.header-transparent+#google-map,
    #header.header-transparent+.page-title-extended,
    #header.header-transparent+.page-title-video,
    #header.header-transparent+.page-title-parallax,
    #header.header-transparent+.fullscreen,
    #header.header-modern+.page-title-parallax {
        top: 0;
        margin-bottom: 0
    }
    #header.header-transparent,
    #header.header-light-transparent {
        background: #fff;
        border-bottom: 1px solid #f5f5f5;
        z-index: auto
    }
    #header.header-transparent.header-dark:not(.header-navigation-light),
    #header.header-dark-transparent.header-dark:not(.header-navigation-light) {
        background-color: #111;
        border-bottom: 1px solid rgba(0, 0, 0, .1)
    }
    #header.header-dark.header-navigation-light .main-menu>ul>li>a,
    #header.header-dark.header-navigation-light #top-search a,
    #header.header-dark.header-navigation-light #shopping-cart a,
    #header.header-dark.header-navigation-light #shopping-cart .shopping-cart-items,
    #header.header-dark.header-navigation-light .nav-main-menu-responsive>button,
    #header.header-dark.header-navigation-light #top-search form input {
        color: #111
    }
    #header.header-modern {
        margin: 0;
        width: 100%;
        border-radius: 0
    }
    #header.header-modern+.page-title-parallax {
        padding: 40px 0
    }
    #header.header-logo-center:not(.header-sticky) #logo {
        width: auto
    }
    #header.header-logo-center:not(.header-sticky) nav.main-menu li.dropdown:first-child>a {
        padding-left: 6px;
        margin-left: 0
    }
    #header>.container {
        width: 100%;
        padding: 0
    }
    .navigation-wrap,
    .navigation-wrap>.container,
    #header.header-fullwidth #header-wrap .container .navigation-wrap .container {
        padding: 0;
        width: 100%
    }
    .navbar-collapse {
        border: 0 !important
    }
    .navigation-wrap.navbar-header,
    .navigation-wrap.navbar-collapse {
        margin-left: 0;
        margin-right: 0;
        box-shadow: none
    }
    .nav-main-menu-responsive {
        display: block
    }
    .main-menu-collapse {
        position: relative;
        width: 100% !important;
        overflow: hidden;
        overflow-y: hidden;
        overflow-x: hidden
    }
    .dropdown-menu {
        width: 100% !important
    }
    .main-menu-collapse.collapse {
        display: none !important;
        overflow: auto !important
    }
    .main-menu-collapse.in {
        display: block !important;
        overflow-x: hidden !important;
        overflow-y: auto
    }
    .main-menu {
        padding-bottom: 10px;
        clear: both;
        display: block;
        width: 100%
    }
    .main-menu ul {
        padding: 0;
        margin: 0
    }
    .main-menu ul li {
        padding: 0;
        margin: 0;
        clear: both;
        float: none;
        display: block
    }
    #mainMenu>ul>li>a,
    .main-menu ul li.dropdown a,
    .main-menu ul li.dropdown ul.dropdown-menu li a,
    .main-menu ul li.dropdown .dropdown-submenu>span.dropdown-menu-title-only {
        height: 42px;
        outline: none;
        line-height: 22px
    }
    .main-menu>ul li:last-child a {
        border-bottom: 0
    }
    .main-menu ul ul {
        margin-right: 10px !important
    }
    .main-menu ul.main-menu {
        float: none;
        position: static
    }
    .main-menu ul.dropdown-menu {
        position: static;
        clear: both;
        float: none;
        display: none !important
    }
    .main-menu li.resp-active>ul.dropdown-menu {
        border: 0 none;
        display: block !important;
        padding-left: 10px
    }
    nav ul.main-menu li a,
    nav ul.main-menu .dropdown-submenu>span.dropdown-menu-title-only {
        clear: both;
        float: none;
        display: block;
        border: 0;
        border-top: 0;
        margin: 0
    }
    nav ul.main-menu li a i.fa-angle-down {
        position: absolute;
        left: 5px;
        top: 14px
    }
    nav ul.main-menu ul.dropdown-menu {
        box-shadow: none
    }
    .main-menu>ul>li,
    .mega-menu ul li.mega-menu-item .mega-menu-title,
    .main-menu ul li.dropdown.mega-menu-item li,
    .main-menu .dropdown-submenu>span.dropdown-menu-title-only {
        border-bottom: 1px solid #eee
    }
    #header.header-dark:not(.header-navigation-light) .main-menu>ul>li,
    #header.header-dark:not(.header-navigation-light) .mega-menu ul li.mega-menu-item .mega-menu-title,
    #header.header-dark:not(.header-navigation-light) .main-menu ul li.dropdown.mega-menu-item li,
    #header.header-dark:not(.header-navigation-light) .main-menu .dropdown-submenu>span.dropdown-menu-title-only {
        border-bottom: 1px solid #444
    }
    nav ul.main-menu ul.dropdown-menu li>a #header nav ul.main-menu .dropdown-submenu>span.dropdown-menu-title-only {
        padding: 9px 8px;
        border: 0;
        border-top: 0;
        margin: 0;
        border-bottom: none
    }
    nav ul.main-menu ul.sub-menu {
        padding: 0;
        margin: 0 0 10px 0
    }
    nav .main-menu .dropdown-submenu {
        position: relative;
        background: url("../lang2_files/arrow-light-down.png") no-repeat scroll left top
    }
    nav ul.main-menu ul.dropdown-menu {
        background: none !important;
        background-color: transparent !important
    }
    nav ul.main-menu li.dropdown.open .dropdown-toggle,
    nav ul.main-menu li a,
    nav ul.main-menu li>a:hover,
    nav ul.main-menu li.active a,
    nav ul.main-menu li.dropdown:hover a,
    nav ul.main-menu li.dropdown:hover .dropdown-submenu>span.dropdown-menu-title-only {
        background: none !important;
        background-color: transparent !important
    }
    nav ul.main-menu ul.dropdown-menu li:hover>a,
    nav ul.main-menu li.dropdown:hover ul.dropdown-menu li>a:hover {
        background: none !important;
        background-color: transparent !important
    }
    nav.mega-menu li.mega-menu-item .mega-menu-sub-title {
        margin-top: 30px
    }
    nav.mega-menu .mega-menu-content {
        padding: 0
    }
    nav .main-menu .dropdown-menu .mega-menu-content [class*="col-md-"] {
        padding: 0
    }
    nav .main-menu .dropdown-menu .mega-menu-content [class*="col-md-"]:nth-child(2n) {
        padding-left: 2px
    }
    nav .main-menu .dropdown-menu .mega-menu-content {
        background-image: none !important
    }
    nav ul.main-menu .dropdown>.dropdown-menu,
    nav ul.main-menu .dropdown-submenu>.dropdown-menu {
        visibility: visible;
        opacity: 1
    }
    nav ul.main-menu .dropdown:hover>.dropdown-menu,
    nav ul.main-menu .dropdown-submenu:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible
    }
    #side-panel {
        background-color: transparent;
        display: block !important;
        overflow: hidden !important;
        position: relative;
        width: 100%;
        left: 0;
        right: 0
    }
    #side-panel #panel-logo {
        display: none
    }
    body.side-panel-left #side-panel {
        left: 0;
        right: 0
    }
    #side-panel .side-panel-wrap {
        overflow: unset;
        width: 100%;
        padding: 0
    }
    .side-panel-button {
        display: none
    }
    #side-panel .side-panel-wrap .panel-widget {
        display: none
    }
    .lines,
    .lines:before,
    .lines:after,
    .header-dark.header-transparent.header-navigation-light .lines,
    .header-dark.header-transparent.header-navigation-light .lines:before,
    .header-dark.header-transparent.header-navigation-light .lines:after {
        background-color: #111
    }
    .header-dark:not(.header-sticky):not(.header-navigation-light) .lines,
    .header-dark:not(.header-sticky):not(.header-navigation-light) .lines:before,
    .header-dark:not(.header-sticky):not(.header-navigation-light) .lines:after,
    .header-dark.header-transparent:not(.header-sticky):not(.header-navigation-light) .lines,
    .header-dark.header-transparent:not(.header-sticky):not(.header-navigation-light) .lines:before,
    .header-dark.header-transparent:not(.header-sticky):not(.header-navigation-light) .lines:after,
    .header-dark.header-semi-transparent:not(.header-sticky):not(.header-navigation-light) .lines,
    .header-dark.header-semi-transparent:not(.header-sticky):not(.header-navigation-light) .lines:before,
    .header-dark.header-semi-transparent:not(.header-sticky):not(.header-navigation-light) .lines:after {
        background-color: #fff
    }
    body.side-panel-static .wrapper {
        padding-left: 0
    }
    body.side-panel-static #header #logo {
        display: inherit
    }
    #top-search {
        display: none
    }
    #shopping-cart {
        margin-right: 20px
    }
    .page-title-parallax {
        background-attachment: none !important;
        background-position: 50% 0;
        background-size: inherit !important
    }
    #page-title {
        padding: 40px 0 !important
    }
    #page-title:not(.page-title-small) h1 {
        font-size: 40px !important
    }
    .post-2-columns .post-item,
    .post-3-columns .post-item,
    .post-4-columns .post-item,
    .post-5-columns .post-item,
    .post-6-columns .post-item {
        margin-left: 2%;
        width: 48%
    }
    .post-content,
    .post-content-single {
        padding-left: 15px;
        padding-right: 15px
    }
    #header.header-transparent+#slider,
    #header.header-transparent+.page-title-extended,
    #header.header-transparent+.page-title-video,
    #header.header-transparent+.page-title-parallax,
    #header.header-transparent+.fullscreen,
    #header.header-transparent+.fullscreen,
    #header.header-transparent+.halfscreen,
    #header.header-transparent+#google-map,
    #header.header-light-transparent+#slider,
    #header.header-light-transparent+.page-title-extended,
    #header.header-light-transparent+.page-title-video,
    #header.header-light-transparent+.page-title-parallax,
    #header.header-light-transparent+.fullscreen,
    #header.header-light-transparent+.fullscreen,
    #header.header-light-transparent+.halfscreen,
    #header.header-light-transparent+#google-map,
    #header.header-dark-transparent+#slider,
    #header.header-dark-transparent+.page-title-extended,
    #header.header-dark-transparent+.page-title-video,
    #header.header-dark-transparent+.page-title-parallax,
    #header.header-dark-transparent+.fullscreen,
    #header.header-dark-transparent+.fullscreen,
    #header.header-dark-transparent+.halfscreen,
    #header.header-dark-transparent+#google-map,
    #topbar.topbar-transparent+#header.header-transparent+#slider,
    #topbar.topbar-transparent+#header.header-transparent+.page-title-extended,
    #topbar.topbar-transparent+#header.header-transparent+.page-title-video,
    #topbar.topbar-transparent+#header.header-transparent+.page-title-parallax,
    #topbar.topbar-transparent+#header.header-transparent+.fullscreen,
    #topbar.topbar-transparent+#header.header-transparent+#google-map,
    #topbar.topbar-transparent+#header.header-dark-transparent+#slider,
    #topbar.topbar-transparent+#header.header-dark-transparent+.page-title-extended,
    #topbar.topbar-transparent+#header.header-dark-transparent+.page-title-video,
    #topbar.topbar-transparent+#header.header-dark-transparent+.page-title-parallax,
    #topbar.topbar-transparent+#header.header-dark-transparent+.fullscreen,
    #topbar.topbar-transparent+#header.header-dark-transparent+#google-map #topbar.topbar-transparent+#header.header-light-transparent+#slider,
    #topbar.topbar-transparent+#header.header-light-transparent+.page-title-extended,
    #topbar.topbar-transparent+#header.header-light-transparent+.page-title-video,
    #topbar.topbar-transparent+#header.header-light-transparent+.page-title-parallax,
    #topbar.topbar-transparent+#header.header-light-transparent+.fullscreen,
    #topbar.topbar-transparent+#header.header-light-transparent+#google-map {
        margin-bottom: 0;
        top: 0
    }
    .p-t-200 {
        padding-top: 80px !important
    }
    .p-b-200 {
        padding-bottom: 80px !important
    }
    .grid-articles:not(.post-carousel) .post-entry {
        width: 50%
    }
    .grid-articles:not(.post-carousel) .post-entry:first-child {
        width: 100%
    }
    .grid-articles:not(.post-carousel) .post-entry:first-child .post-entry-meta .post-entry-meta-title h2 {
        font-size: 20px
    }
    .grid-articles:not(.post-carousel) .post-entry .post-entry-meta .post-entry-meta-title h2 {
        font-size: 13px
    }
    .grid-articles:not(.post-carousel) .post-entry .post-entry-overlay {
        border-width: 0 !important
    }
    .news-ticker {
        display: none
    }
    .news-section-wrapper {
        padding: 0
    }
    .widget {
        float: right;
        width: 100%
    }
    .mfp-ajax-holder .mfp-close {
        margin-right: 0
    }
    .mfp-close {
        font-size: 22px;
        height: 30px;
        line-height: 32px;
        width: 30px
    }
    .map {
        min-height: 240px
    }
}

@media(max-width:767px) {
    .wrapper {
        width: 100% !important
    }
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-19,
    .col-md-11,
    .col-md-12 {
        clear: left;
        width: 100%
    }
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        width: 100% !important
    }
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12 {
        width: 100% !important
    }
    section {
        padding-bottom: 40px;
        padding-left: 0;
        padding-right: 0;
        padding-top: 40px
    }
    .xs-text-center {
        text-align: center !important
    }
    .xs-text-left {
        text-align: left !important
    }
    .xs-text-right {
        text-align: right !important
    }
    .inspiro-slider .slide-captions h1,
    .inspiro-slider .slide-captions h2 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 14px
    }
    .inspiro-slider .slide-captions .btn {
        font-size: 10px !important;
        line-height: 1.5;
        padding-bottom: 5px !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        padding-top: 5px !important
    }
}

@media(min-width:480px) and (max-width:767px) {
    #page-title:not(.page-title-small) h1 {
        font-size: 30px !important
    }
    .container,
    #header.header-fullwidth .container {
        width: 470px !important
    }
    .navigation-wrap,
    .navigation-wrap>.container,
    #header.header-fullwidth #header-wrap .container .navigation-wrap .container {
        width: 470px
    }
    .post-2-columns .post-item,
    .post-3-columns .post-item,
    .post-4-columns .post-item,
    .post-5-columns .post-item,
    .post-6-columns .post-item {
        margin-left: 2%;
        width: 98%
    }
    .text-large,
    .text-large span,
    .text-large span span,
    .text-large-light,
    .text-large-light span,
    .text-large-light span span,
    .text-extra-large,
    .text-extra-large span {
        font-size: 60px !important;
        line-height: 60px !important
    }
    body.wide #header.header-fullwidth #header-wrap .container {
        width: 100%
    }
}

@media(max-width:479px) {
    .container,
    #header.header-fullwidth .container {
        width: 100% !important
    }
    .grid-articles:not(.post-carousel) .post-entry,
    .grid-articles:not(.post-carousel) .post-entry:first-child,
    .grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(1),
    .grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(2) {
        width: 100%
    }
    .grid-articles:not(.post-carousel) .post-entry:first-child .post-entry-meta .post-entry-meta-title h2 a,
    .grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(1) .post-entry-meta .post-entry-meta-title h2 a,
    .grid-articles.grid-articles-v2:not(.post-carousel) .post-entry:nth-child(2) .post-entry-meta .post-entry-meta-title h2 a {
        font-size: 16px
    }
    #page-title:not(.page-title-small) h1 {
        font-size: 30px !important
    }
    .post-2-columns .post-item,
    .post-3-columns .post-item,
    .post-4-columns .post-item,
    .post-5-columns .post-item,
    .post-6-columns .post-item {
        margin-right: 0%;
        width: 100%
    }
    .post-thumbnail .post-image,
    .post-thumbnail .post-video,
    .post-thumbnail .post-audio,
    .post-thumbnail .post-embed,
    .post-thumbnail .post-slider,
    .post-thumbnail .post-content-details,
    .post-thumbnail .post-meta {
        width: 100%;
        padding: 0
    }
    footer .footer-logo {
        border-right: 0 none;
        float: none !important;
        margin: 0;
        padding: 0;
        width: 100%;
        display: block
    }
    .countdown .countdown-box {
        height: 60px !important;
        padding: 2px 0 0 0 !important;
        width: 60px !important;
        margin: 0 !important;
        border: solid 0 !important
    }
    .countdown .countdown-box .number {
        font-size: 20px !important;
        margin-bottom: 0
    }
    .countdown .countdown-container .countdown-box span {
        font-size: 10px !important;
        padding-top: 0
    }
    .text-large,
    .text-large span,
    .text-large span span,
    .text-large-light,
    .text-large-light span,
    .text-large-light span span,
    .text-extra-large,
    .text-extra-large span {
        font-size: 40px !important;
        line-height: 40px !important
    }
    .hero-heading-3 {
        background-color: #fff;
        border: 30px solid #fff;
        padding: 30px;
        width: 100%;
        margin: 0
    }
    .hero-heading-3 h2,
    .hero-heading-3 h3 {
        font-size: 40px !important;
        line-height: 40px !important
    }
    #multiscroll .ms-left {
        width: 100% !important;
        z-index: 1
    }
    #multiscroll .ms-right {
        background: none
    }
    body.wide #header.header-fullwidth #header-wrap .container {
        width: 100%
    }
}

::-moz-selection {
    background: #d82731;
    color: #333;
    text-shadow: none
}

::selection {
    background: #d82731;
    text-shadow: none;
    color: #333
}

.text-colored,
h1.text-colored,
h2.text-colored,
h3.text-colored,
h4.text-colored,
h5.text-colored,
h6.text-colored,
.color-font,
.color-font a,
.list-tweets li a,
p.text-colored,
.heading.heading-colored h1,
.heading.heading-colored h2 {
    color: #d82731 !important
}

.progress-bar-container.color .progress-bar {
    background-color: #d82731;
    color: #fff
}

.blockquote-color {
    background-color: #d82731;
    color: #fff
}

.blockquote-color>small {
    color: #fff
}

.button.color,
.btn.btn-primary {
    background-color: #d82731;
    border-color: #d82731;
    color: #fff
}

.gototop-button {
    background-color: #d82731
}

.gototop-button {
    color: #fff
}

nav .main-menu .dropdown-menu {
    border-color: #d82731
}

#topbar.topbar-colored {
    background-color: #d82731
}

#vertical-dot-menu a:hover .cd-dot,
#vertical-dot-menu a.active .cd-dot {
    background-color: #d82731
}

.sidebar-menu ul.nav-tabs li:hover .sidebar-menu ul.nav-tabs li a,
.sidebar-menu ul.nav-tabs li a:hover,
.sidebar-menu ul.nav-tabs li.active a,
.sidebar-menu ul.nav-tabs li.active a:hover {
    color: #fff;
    background: #d82731;
    border: 1px solid #d82731
}

.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
    background-color: #d82731;
    border-color: #d82731
}

.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
    color: #fff
}

.list-group-item.active>.badge,
.nav-pills>.active>a>.badge {
    color: #d82731
}

pre {
    background-color: #fcfcfc;
    border: 1px solid #ececec
}

.alert {
    border-left-width: 10px;
    border-radius: 0
}

.alert-success {
    background-color: #5cb85c;
    border-color: #53af53
}

.alert-info {
    background-color: #2699c8;
    border-color: #3aaddc
}

.alert-warning {
    background-color: #f6b63a;
    border-color: #ffcd51
}

.alert-danger {
    background-color: #de4b37;
    border-color: #f3604c
}

.alert,
.alert a.alert-link {
    color: #fff
}

.pagination>.active>a,
.pagination>.active>span,
.pagination>.active>a:hover,
.pagination>.active>span:hover,
.pagination>.active>a:focus,
.pagination>.active>span:focus {
    background-color: #d82731;
    border-color: #d82731;
    color: #fff
}

.pagination>li>a:hover i,
.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #333
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
    background-color: #d82731;
    color: #fff
}

a:hover {
    color: #d82731
}

.dropcap.dropcap-colored,
.dropcap.dropcap-colored a,
.highlight.highlight-colored,
.highlight.highlight-colored a {
    background-color: #d82731;
    color: #fff
}

.timeline.timeline-colored .timeline-circles:before,
.timeline.timeline-colored .timeline-circles:after,
.timeline.timeline-colored .timeline-date,
.timeline.timeline-colored:before {
    background-color: #d82731;
    color: #fff
}

.timeline.timeline-colored li .timeline-block:before {
    border-color: transparent #d82731
}

.timeline.timeline-colored .timeline-block-image {
    border-color: #d82731
}

.timeline.timeline-colored.timeline-simple .timeline-date {
    background-color: #fff;
    border: 1px solid #d82731;
    color: #d82731
}

.border .tabs-navigation li.active a:after {
    background: #d82731
}

.breadcrumb a:hover {
    color: #d82731
}

.accordion.color .ac-item .ac-title {
    background: #d82731;
    color: #fff
}

.accordion.color-border-bottom .ac-item .ac-title {
    border-bottom: 1px dotted #d82731
}

.accordion.color-border-bottom .ac-item .ac-title:before {
    color: #d82731
}

.icon-box.color .icon i {
    background: #d82731;
    color: #fff
}

.icon-box.color .icon i:after {
    box-shadow: 0 0 0 3px #d82731
}

.icon-box.border.color .icon,
.icon-box.border.color .icon i {
    color: #d82731;
    border-color: #d82731
}

.icon-box.fancy.color .icon i {
    color: #d82731;
    background-color: transparent
}

.fontawesome-icon-list .fa-hover a:hover {
    background-color: #d82731
}

ul.icon-list li i {
    color: #d82731
}

.background-colored {
    background-color: #d82731 !important
}

#nanobar-progress div {
    background: #d82731 !important
}

.portfolio-filter li.ptf-active,
.portfolio-filter li:hover {
    background-color: #d82731
}

.portfolio-filter li:not(.ptf-active):hover {
    color: #d82731
}

.heading-title-border-color {
    border-color: #d82731
}

.image-box-links a,
.image-box-links-1 h3 a {
    background-color: #d82731
}

.image-box.effect.bleron {
    background-color: #d82731
}

.image-block-content .feature-icon {
    background-color: #d82731
}

.image-box.effect.bleron p.image-box-links a,
.image-box.effect.bleron p.image-box-links-1 h3 a {
    color: #d82731
}

.portfolio-default .image-box-links a,
.portfolio-default .image-box-links-1 h3 a {
    display: inline-block
}

.product .product-wishlist a:hover {
    border-color: #d82731
}

.post-item .summary-article-main {
    height: 75px;
    overflow: hidden;
    font-size: 13px;
    line-height: 25px
}

.post-title-main h3 a {
    font-size: 15px;
    color: #d82731;
    font-weight: bold
}

.post-title-main h3 a:hover {
    color: #b7252d
}

.box-description-main {
    height: 87px;
    overflow: hidden;
    text-align: justify
}

.post-2-columns .post-item .post-title-main h3 {
    font-size: 14px
}

.post-title-main {
    height: 74px;
    line-height: 25px;
    overflow: hidden
}

.portfolio-list-cms .product-image {
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 2px 2px 6px #999
}

#product-zoom {
    border: 1px solid #eaeaea;
    max-width: 100%;
    height: auto
}

#gal1 {
    float: left;
    position: absolute;
    top: 0;
    z-index: 10
}

#gal1 a {
    text-decoration: none;
    display: block
}

#gal1 img {
    border: 2px solid #eaeaea;
    width: 100%;
    height: auto
}

#gal1 img:hover {
    border-color: #eb2c33
}

.portfolio-list-cms .product-title {
    width: 100%
}

.portfolio-list-cms h3 {
    font-size: 16px;
    color: #ccc;
    margin: 0;
    font-weight: bold
}

.btn-list:hover h3 {
    color: #222
}

.portfolio-list-cms .product-title h3 a {
    font-size: 16px;
    font-weight: normal;
    color: #4a4a4a
}

.portfolio-list-cms .product-description {
    height: 58px;
    overflow: hidden;
    border-bottom: 1px solid;
    padding: 5px;
    background-color: #fcfcfc
}

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

.portfolio-list-cms .product-overlay {
    line-height: 25px;
    border-top: 2px solid #fff
}

.title-portfolio-cms {
    padding: 15px 3px
}

.title-portfolio-cms .button {
    white-space: initial
}

.btn-list {
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 2px
}

.btn-list:hover {
    background-color: rgba(255, 255, 255, 1);
    color: #333
}

.description-portfolio-cms {
    padding: 15px 10px;
    background-color: #f6f6f6;
    border-bottom: 3px solid #ededed;
    margin-top: 0
}

.title-name-project {
    padding: 10px;
    margin-bottom: 20px
}

.title-name-project h1 {
    font-size: 22px;
    margin-bottom: 0
}

.widget-caregory-project ul {
    padding-right: 0
}

body.device-sm .sidebar .widget-caregory-project {
    width: 100%
}

.portfolio-info-cms ul>li {
    padding: 5px
}

.portfolio-info-cms ul>li:nth-child(2n+1) {
    background-color: #f6f6f6
}

.portfolio-info-cms ul>li:nth-child(2n) {
    background-color: #fefefe
}

.sidebar-prtfolio-detail::after {
    background-color: #fbfbfb;
    border-left-color: #eee;
    border-left-style: solid;
    border-left-width: 1px;
    border-right-color: #eee;
    border-right-style: solid;
    border-right-width: 1px;
    content: "";
    display: block;
    height: 99999px;
    position: absolute;
    right: 0;
    top: -100px;
    width: 3000px;
    z-index: -10
}

.post-content+.sidebar-prtfolio-detail {
    left: 0;
    right: auto
}

.profile-pic {
    -webkit-filter: grayscale(120%) brightness(95%) contrast(100%);
    -moz-filter: grayscale(120%) brightness(95%) contrast(100%);
    -o-filter: grayscale(120%) brightness(95%) contrast(100%);
    filter: grayscale(120%) brightness(95%) contrast(100%);
    transition: filter .3s;
    -webkit-transition: filter .3s, -webkit-filter .3s, box-shadow .3s
}

.profile-link:hover .profile-pic,
.profile-link:focus .profile-pic {
    -webkit-filter: none;
    -moz-filter: none;
    -o-filter: none;
    -ms-filter: none;
    filter: none
}

.profile-link {
    max-height: 100%
}

.profile-link img {
    width: 100%;
    border-radius: 2px
}

.description-project ul>li {
    font-size: 14px;
    color: #666;
    line-height: 25px
}

.description-project ul>li span {
    color: #4a4a4a;
    font-weight: bold
}

.img-project {
    margin-bottom: 30px
}

.img-project img {
    border-radius: 3px;
    box-shadow: 3px 3px 4px #333
}

.progress-bar-project .hr-title abbr {
    color: #5c5c5c;
    font-size: 18px;
    letter-spacing: 0;
    font-weight: bold
}

.input-group-footer .form-control {
    padding-top: 0;
    padding-bottom: 0
}

.layout-footer-main ul {
    padding-right: 0
}

.similar-portfolio-0 .hr-title abbr {
    letter-spacing: 0;
    color: #5c5c5c
}

.similar-portfolio-0 .image-box {
    max-height: none;
    -webkit-box-shadow: 0 8px 6px -6px black;
    -moz-box-shadow: 0 8px 6px -6px black;
    box-shadow: 0 8px 6px -6px black
}

.section-article-list {
    background-image: url('../lang2_files/pattern/pattern11.png')
}

.similar-portfolio-0 .image-box.effect.dorian p {
    text-align: center
}

.description-footer-default {
    margin-top: 12px
}

.background-image-default {
    background-image: url(../lang2_files/main-bg.jpg);
	background-size:cover;
}

.description-list-portfolio {
    text-align: justify;
    height: 108px;
    overflow: hidden
}

.mega-menu-pt {
    background-image: url('../lang2_files/shop-megamenu-bg.jpg')
}

.lead-service {
    text-align: justify;
    font-size: 15px;
    line-height: 30px
}

.our-team-img {
    background: url('../lang2_files/parallax/121-team.jpg') repeat scroll 50% -2.9px
}

.article-img {
    background: url('../lang2_files/parallax/article-1.jpg') repeat scroll 50% -2.9px
}

.contact-img {
    background: url('../lang2_files/parallax/contact-1.jpg') repeat scroll 50% -2.9px
}

.article-detail-img {
    background: url('../lang2_files/parallax/article-detail.jpg') repeat scroll 50% -2.9px
}

.about-img {
    background: url('../lang2_files/parallax/manage-menu.jpg') repeat scroll 50% -2.9px
}

.portfoli-list-img {
    background: url('../lang2_files/parallax/portfoli-list-1.jpg') repeat scroll 50% -2.9px
}

.progress-img {
    background: url('../lang2_files/parallax/progressbar.jpg') repeat scroll 50% -2.9px
}

.portfolio-detail-img {
    background: url('../lang2_files/parallax/portfolio-detail.jpg') repeat scroll 50% -2.9px
}

.dedicate-img {
    background: url('../lang2_files/parallax/188.jpg') repeat scroll 50% -2.9px
}

.megamenu-content-image {
    background-image: url('../lang2_files/shortcode-megamenu-bg.png')
}

.title-bottom-team {
    font-size: 30px
}

.our-option-default {
    padding-bottom: 0
}

.portfolio-info-cms ul {
    padding-bottom: 30px
}

.wrapper section.progress-bar-project:nth-child(2n) {
    background-color: #f6f6f6
}

.item-cms h2.m-t-0 {
    color: #fdfdfd;
    text-shadow: 4px 4px 4px #030303;
    font-family: Tahoma
}

.item-cms h1 {
    font-size: 30px
}

.title-service {
    font-size: 22px;
    line-height: 42px;
    text-align: center
}

.our-servics-cms {
    font-size: 22px;
    line-height: 42px;
    text-align: center
}

.lead-our-service {
    line-height: 30px;
    font-size: 16px
}

.our-customer-cms {
    font-size: 22px;
    line-height: 42px
}

.lead-cms-customer {
    line-height: 30px;
    font-size: 15px
}

.title-article-default {
    font-size: 22px;
    line-height: 42px
}

.lead-article-default {
    line-height: 30px;
    font-size: 16px
}

.background-img-paralax {
    background-image: url(../lang2_files/parallax/122.jpg);
    background-position: 50% 261px;
    padding-top: 10px;
    padding-bottom: 10px
}

.section-default {
    padding-bottom: 10px;
    padding-top: 10px
}

.section-default .heading {
    margin-bottom: 20px
}

.background-img-paralax abbr.paralax-0 {
    font-size: 50px
}

.background-img-paralax abbr.paralax-1 {
    font-size: 30px
}

.grid-clinet-0 li:hover {
    background: none
}

.btn-continue-article {
    text-align: center
}

.btn-continue-article .button {
    padding: 15px
}

.article-description {
    height: 75px;
    line-height: 25px;
    font-size: 13px;
    overflow: hidden;
    text-align: justify
}

.container-article .post-title {
    height: 75px;
    overflow: hidden;
    line-height: 25px
}

.container-article .post-4-columns .post-item .post-title h3 {
    font-size: 15px;
    line-height: 25px;
    color: #4a4a4a
}

.post-content-0 h1,
.post-content-0 h2 {
    font-size: 20px
}

.post-detail-date .post-meta {
    margin-top: 40px
}

.center-dedicate {
    line-height: initial
}

.center-dedicate abbr {
    letter-spacing: 0;
    color: #666
}

.dedicate-section .pricing-table .plan-list {
    background-color: #fefefe
}

.item-group {
    padding-bottom: 30px
}

.portfoli-list {
    padding-bottom: 50px
}

.widget-caregory-project .accordion h5.ac-title {
    background-color: #fff;
    margin-top: 0;
    margin-bottom: 0
}

.widget-caregory-project .ac-content {
    padding: 0
}

.widget-caregory-project .list-group-item {
    border: 2px solid #ebebeb;
    margin-bottom: 0;
    border-bottom: none
}

.widget-caregory-project .list-group-item:first-child {
    border: none
}

.widget-caregory-project .list-group-item:last-child {
    border-bottom: 2px solid #ebebeb
}

.widget-caregory-project .list-group {
    margin-bottom: 0
}

.article-detail-img h1,
.article-img h1,
.about-img h1 {
    font-size: 24px
}

.web-design-box {
    background-color: #a08c6c
}

.designer-box {
    background-color: #917d5d
}

.programmer-box {
    background-color: #ad9979
}

.about-company-web {
    padding-bottom: 20px;
    padding-top: 40px
}

.about-company-web .heading {
    margin-bottom: 0
}

.about-company-web .heading h2 {
    font-size: 28px
}

.section-employee-web {
    padding-top: 20px
}

.container-article .post-info {
    text-align: left
}

.container-article .post-title h3 a {
    color: #666
}

.container-article .post-title h3 a:hover {
    color: #26b8f3
}

.portfolio-img-main .col-md-4 {
    padding-left: 5px;
    padding-right: 5px
}

.portfolio-img-main .col-md-4 .image-box {
    margin-bottom: 10px
}

.pie-chart-text {
    text-align: justify
}

.section-default .testimonial .testimonial-description {
    background-color: #fff;
    box-shadow: 4px 4px 4px #ccc
}

.container-article .testimonial .testimonial-description {
    border: 1px solid #ddd
}

.section-default .testimonial .testimonial-image img {
    width: 100px
}

.item-description-article {
    height: 112px;
    overflow: hidden;
    padding: 10px
}

.section-default .testimonial .subtitle {
    position: absolute;
    margin-top: 40px;
    z-index: 100
}

.section-default .testimonial .testimonial-image {
    margin-top: -50px
}

.section-article-default {
    background-image: url('../lang2_files/pattern/pattern19.jpg')
}

.section-article-default .testimonial,
.container-article .testimonial {
    margin-bottom: 80px
}

.section-default .heading::after {
    border: none
}

.section-article-default .testimonial a h4:hover,
.container-article .testimonial a h3:hover {
    color: #d82731
}

.section-article-default .hr-title {
    line-height: 25px
}

.section-article-default .hr-title abbr,
.section-default .hr-title abbr {
    color: #5c5c5c
}

.background-img-paralax .heading::after {
    margin-right: 50%
}

.section-default .pie-chart {
    margin-top: 20px
}

.section-default .text-right {
    margin-bottom: 80px
}

.portfolio-default .col-md-4 {
    padding-right: 2px;
    padding-left: 2px
}

.portfolio-default .image-box {
    margin-bottom: 2px;
    margin-top: 2px
}

.title-article {
    height: 60px;
    overflow: hidden;
    padding: 10px 5px;
    border: 1px solid #dfdfdf;
    background-color: #efefef;
    border-radius: 2px 2px 0 0;
    border-bottom: none
}

.title-article h3 {
    font-size: 16px;
    color: #4a4a4a
}

.dedicate-section .pricing-table.colored .plan-header {
    background-color: #d82731
}

.register-image {
    background-image: url(../lang2_files/parallax/8.jpg)
}

.btn-register {
    text-align: center
}

.image-box-content {
    color: #fdfdfd;
    text-shadow: 4px 4px 4px #030303
}

.image-box-content h3 {
    font-size: 16px
}

.similar-portfolio-0 .portfolio-item {
    margin-bottom: 20px
}

.title-aricle-default {
    height: 50px;
    overflow: hidden
}

.title-aricle-default h4 {
    color: #4a4a4a;
    font-size: 17px;
    font-weight: normal
}

.team-info {
    text-align: justify
}

.section-pic-team {
    padding-top: 30px;
    padding-bottom: 0
}

.login-background {
    background-image: url(../lang2_files/parallax/8.jpg)
}

.field-validation-error {
    color: #f00
}

.portfolio-default .image-box {
    max-height: initial
}

#mainMenu>ul>li>a:hover {
    color: #d82731
}