﻿@charset "UTF-8";
/*

animate.scss

*/
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 Daniel Eden
*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-backface-visibility: hidden;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0);
    }
    70% {
        -webkit-transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0);
    }
}
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
}

@-webkit-keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.flash {
    -webkit-animation-name: flash;
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes pulse {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes rubberBand {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }
    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }
    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }
    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }
    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
}

@-webkit-keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
@keyframes shake {
    0%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
}
.shake {
    -webkit-animation-name: shake;
    animation-name: shake;
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg);
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg);
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg);
    }
}
.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing;
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes tada {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
    10%, 20% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.tada {
    -webkit-animation-name: tada;
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes wobble {
    0% {
        -webkit-transform: none;
        transform: none;
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble;
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}
.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInDown {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes bounceInRight {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0);
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0);
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0);
    }
    100% {
        -webkit-transform: none;
        transform: none;
    }
}
.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes bounceInUp {
    0%, 60%, 75%, 90%, 100% {
        -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0);
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0);
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX;
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }
    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px);
    }
}
.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}
.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40%, 80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }
    100% {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}
.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn;
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}
.zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInDown {
    -webkit-animation-name: zoomInDown;
    animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInRight {
    -webkit-animation-name: zoomInRight;
    animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
@keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}
.zoomInUp {
    -webkit-animation-name: zoomInUp;
    animation-name: zoomInUp;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInLeft {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInRight {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes slideInUp {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        visibility: visible;
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp;
}

/*
Animation Delays - Additionals Generated by Blocs
*/
.animDelay02 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.animDelay04 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.animDelay06 {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.animDelay08 {
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.animDelay1 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.animDelay2 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.hideMe {
    visibility: hidden;
}

/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
}

.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-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
    display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.owl-height {
    transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    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(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
    display: none;
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}

/**
* Owl Carousel v2.3.4
* Copyright 2013-2018 David Deutsch
* Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
*/
.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
    margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #FFF;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 0.2s ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #869791;
}

/* Base Styles -------------------- */
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: bold;
    src: url("/css/fonts/ir/eot/IRANSansWeb_Bold.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb_Bold.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb_Bold.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb_Bold.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb_Bold.ttf") format("truetype");
}
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 500;
    src: url("/css/fonts/ir/eot/IRANSansWeb_Medium.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb_Medium.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb_Medium.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb_Medium.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb_Medium.ttf") format("truetype");
}
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 300;
    src: url("/css/fonts/ir/eot/IRANSansWeb_Light.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb_Light.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb_Light.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb_Light.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb_Light.ttf") format("truetype");
}
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: 200;
    src: url("/css/fonts/ir/eot/IRANSansWeb_UltraLight.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb_UltraLight.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb_UltraLight.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb_UltraLight.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb_UltraLight.ttf") format("truetype");
}
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url("/css/fonts/ir/eot/IRANSansWeb.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb.ttf") format("truetype");
}
@font-face {
    font-family: IRANSans;
    font-style: normal;
    font-weight: normal;
    src: url("/css/fonts/ir/eot/IRANSansWeb.eot");
    src: url("/css/fonts/ir/eot/IRANSansWeb.eot?#iefix") format("embedded-opentype"), url("/css/fonts/ir/woff2/IRANSansWeb.woff2") format("woff2"), url("/css/fonts/ir/woff/IRANSansWeb.woff") format("woff"), url("/css/fonts/ir/ttf/IRANSansWeb.ttf") format("truetype");
}
/* Custom Mixins -------------------- */
/*
keyframes.scss
*/
@-webkit-keyframes zoomInOut {
    0% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-moz-keyframes zoomInOut {
    0% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-ms-keyframes zoomInOut {
    0% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-o-keyframes zoomInOut {
    0% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes zoomInOut {
    0% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -moz-transform: scale(1);
        -o-transform: scale(1);
        -ms-transform: scale(1);
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes shakeRotate {
    0% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
    50% {
        -moz-transform: rotateZ(-15deg);
        -o-transform: rotateZ(-15deg);
        -ms-transform: rotateZ(-15deg);
        -webkit-transform: rotateZ(-15deg);
        transform: rotateZ(-15deg);
    }
    100% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
}
@-moz-keyframes shakeRotate {
    0% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
    50% {
        -moz-transform: rotateZ(-15deg);
        -o-transform: rotateZ(-15deg);
        -ms-transform: rotateZ(-15deg);
        -webkit-transform: rotateZ(-15deg);
        transform: rotateZ(-15deg);
    }
    100% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
}
@-ms-keyframes shakeRotate {
    0% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
    50% {
        -moz-transform: rotateZ(-15deg);
        -o-transform: rotateZ(-15deg);
        -ms-transform: rotateZ(-15deg);
        -webkit-transform: rotateZ(-15deg);
        transform: rotateZ(-15deg);
    }
    100% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
}
@-o-keyframes shakeRotate {
    0% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
    50% {
        -moz-transform: rotateZ(-15deg);
        -o-transform: rotateZ(-15deg);
        -ms-transform: rotateZ(-15deg);
        -webkit-transform: rotateZ(-15deg);
        transform: rotateZ(-15deg);
    }
    100% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
}
@keyframes shakeRotate {
    0% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
    50% {
        -moz-transform: rotateZ(-15deg);
        -o-transform: rotateZ(-15deg);
        -ms-transform: rotateZ(-15deg);
        -webkit-transform: rotateZ(-15deg);
        transform: rotateZ(-15deg);
    }
    100% {
        -moz-transform: rotateZ(15deg);
        -o-transform: rotateZ(15deg);
        -ms-transform: rotateZ(15deg);
        -webkit-transform: rotateZ(15deg);
        transform: rotateZ(15deg);
    }
}
@-webkit-keyframes bounce {
    0%, 75%, 100% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@-moz-keyframes bounce {
    0%, 75%, 100% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@-ms-keyframes bounce {
    0%, 75%, 100% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@-o-keyframes bounce {
    0%, 75%, 100% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@keyframes bounce {
    0%, 75%, 100% {
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    25% {
        -moz-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
/* Base Styles -------------------- */
* {
    font-family: IRANSans;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.pad-none {
    padding: 0 !important;
}

.pr-none {
    padding-right: 0 !important;
}

.pl-none {
    padding-left: 0 !important;
}

.col-xs-12 {
    width: 100%;
    padding: 0 15px;
}

.caption {
    font-size: 24px;
    color: #257292;
    padding-left: 15px;
    position: relative;
    line-height: 2;
    display: inline-block;
    width: 100%;
}
.caption .serve-time {
    display: block;
    font-size: 13px;
    color: #2f2838;
    position: absolute;
    right: 45px;
    top: 36px;
    width: 100%;
}
.caption:before {
    margin-top: -1px;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    background: #88838c;
    height: 2px;
    width: 30px;
}

button:focus, a:focus {
    outline: 0;
}

.main-content {
    display: inline-block;
    width: 100%;
    /* overflow-x: hidden; */
}

.body-container {
    display: inline-block;
    width: 100%;
    float: right;
}

.hidden-input, .hidden-input * {
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

input.error {
    background: #3f0000;
    color: #fff;
}

.fixed-msg {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 999;
    width: 100%;
    text-align: center;
    border-radius: 0;
    margin: 0;
}

#containern {
    margin: 23px 0 0;
    padding: 0;
}

.widget {
    margin-bottom: 50px;
}

.featured-tab .post-thumb {
    max-height: 226px;
}
.featured-tab .post-thumb img {
    min-height: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: unset !important;
}

.item {
    display: inline-block;
    float: right;
    position: relative;
    background-size: cover;
}
.item .td-post-category {
    position: absolute;
    right: 15px;
    top: 9px;
    background: rgba(0, 0, 0, 0.7);
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    margin: 0 0 5px;
    padding: 3px 7px;
    line-height: 13px;
    pointer-events: auto;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -ms-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}
.item:hover .td-post-category {
    background-color: #4db2ec;
}
.item:first-child {
    width: calc(50% - 4px);
    height: 462px;
    margin-left: 4px;
    max-height: unset;
}
.item:nth-child(2) {
    width: 50%;
    height: 261px;
    margin-bottom: 4px;
}
.item:nth-child(2) .post-title {
    font-size: 20px;
}
.item:nth-child(2) .post-date {
    font-size: 14px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
}
.item:nth-child(2) .td-post-category {
    right: 0px;
}
.item:nth-child(3) {
    width: calc(25% - 2px);
    height: 197px;
    margin-left: 4px;
}
.item:nth-child(3) .post-title, .item:nth-child(3) .post-date {
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
}
.item:nth-child(3) .post-title {
    font-size: 12px;
}
.item:nth-child(3) .post-date {
    font-size: 11px;
}
.item:nth-child(3) .post-content {
    padding: 15px;
}
.item:last-child {
    width: calc(25% - 2px);
    height: 197px;
}
.item:last-child .post-title, .item:last-child .post-date {
    text-overflow: ellipsis;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
}
.item:last-child .post-title {
    font-size: 12px;
}
.item:last-child .post-date {
    font-size: 11px;
}
.item:last-child .post-content {
    padding: 15px;
}

.featured-post-area .item .post-thumb {
    height: 100%;
}
.featured-post-area .item .post-thumb img {
    min-height: 100%;
}

.featured-tab .item {
    width: 41%;
    height: auto !important;
    /* margin-bottom: 10px;*/
    float: right;
}
.featured-tab .item .post-thumb {
    width: 35%;
    display: inline-block;
    float: left;
    /* max-height: 50px; */
    height: 70px;
}
.featured-tab .item .post-thumb img {
    min-height: 100%;
}
.featured-tab .item .post-content {
    width: 100%;
    display: inline-block;
    float: left;
    padding: 0 !important;
    height: 70px;
}
.featured-tab .item .post-title {
    margin: 0;
    padding-right: 9px;
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    white-space: unset;
    overflow: hidden;
    text-overflow: unset;
    float: right;
    line-height: 1.5;
    max-height: 41px;
}
.featured-tab .item .post-date {
    overflow: unset;
    text-overflow: unset !important;
    padding: 5px;
    text-align: right;
    font-size: 10px;
    padding-right: 0;
    position: absolute;
    left: 0;
    right: auto;
    bottom: 0;
    width: auto;
}
.featured-tab .item .post-meta {
    text-align: left;
}
.featured-tab .item .post-meta + p {
    display: none;
}
.featured-tab .item:first-child {
    width: calc(58.333333% - 24px);
    height: 391px;
    margin-left: 24px;
    max-height: unset;
}
.featured-tab .item:first-child .post-thumb {
    width: 100%;
    height: 160px;
    min-height: 160px;
}
.featured-tab .item:first-child .post-meta + p {
    display: inline-block;
    height: 73px;
    text-align: justify;
    margin-top: 15px;
    margin-bottom: 10px;
}
.featured-tab .item:first-child .post-content {
    width: 100%;
    padding: 15px !important;
    height: 168px;
}

.sideItem {
    display: inline-block;
    float: right;
    width: 50%;
}
.sideItem img {
    height: 100px;
    width: 100%;
}
.sideItem .title {
    line-height: 25px;
    font-weight: 500;
    margin-top: 5px;
    max-height: 55px;
    font-size: 13px;
}
.sideItem .title a {
    color: #111 !important;
    font-size: 13px;
}
.sideItem:nth-child(even) {
    padding-left: 15px;
}
.sideItem:nth-child(odd) {
    padding-right: 15px;
}

.featured-tab.two-fourbox .item {
    width: calc(50% - 10px) !important;
}
.featured-tab.two-fourbox .item:first-child .post-meta + p {
    display: block;margin-bottom: 0!important;
}
.featured-tab.two-fourbox .item:nth-child(2) .post-meta + p {
    display: inline-block;
    height: 73px;
    margin-bottom: 0!important;
}
.featured-tab.two-fourbox .item:nth-child(2) .post-thumb {
    width: 100% !important;
    height: 175px;
    min-height: 175px;
}
.featured-tab.two-fourbox .item:nth-child(2) .post-content {
    width: 100% !important;
    padding: 15px !important;
    height: auto;
}
.featured-tab.two-fourbox .item:nth-child(odd) {
    margin-left: 15px;
}
.featured-tab.two-fourbox .item:nth-child(even) {
    margin-right: 15px !important;
}

.latest-news {
    overflow: hidden;
}
.latest-news .post-content {
    padding: 10px 0;
}
.latest-news .post-content .post-title {
    font-size: 14px;
    line-height: 24px;
    margin: 0;
    text-align: center;
    direction: rtl;
}
.latest-news .post-thumb {
    height: 160px;
}
.latest-news .post-thumb img {
    min-height: 100%;
}

.owl-buttons > div {
    display: inline-block;
    padding: 2.5px 8px 0px;
    border: 1px solid #ddd;
    margin-left: 10px;
    color: #ddd;
    margin-bottom: 20px;
    cursor: pointer;
    height: 26px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.owl-buttons > div:hover {
    background-color: #4db2ec;
    border-color: #4db2ec;
    color: #fff;
}
.owl-buttons > div:first-child {
    margin-left: 0px;
}

.sliderItem {
    padding: 10px;
}

.sideItem-bg {
    display: inline-block;
    width: 100%;
}

.sideItem-bg.articleSide .sideItem {
    width: 100%;
    display: inline-block;
    padding: 0 !important;
    margin-bottom: 10px !important;
}
.sideItem-bg.articleSide .sideItem img {
    height: auto;
    width: 100%;
}
.sideItem-bg.articleSide .sideItem > a {
    width: 100px !important;
    display: inline-block;
    float: right;
    padding-left: 15px;
}
.sideItem-bg.articleSide .sideItem .title {
    margin-top: 0px;
}
.sideItem-bg.articleSide .sideItem .news-lead {
    display: none;
}
/*.sideItem-bg.articleSide .sideItem:nth-child(2) .title {
    font-size: 15px;
    line-height: 25px;
    font-weight: bold;
    margin: 10px 0 6px;
    display: inline-block;
    width: 100%;
    height: auto !important;
}
.sideItem-bg.articleSide .sideItem:nth-child(2) > a {
    width: 100% !important;
    padding: 0 !important;
}
.sideItem-bg.articleSide .sideItem:nth-child(2) .news-lead {
    display: block;
}*/

.featured-tab.big-list.sidebar .post-thumb {
    height: auto !important;
    min-height: unset !important;
    max-height: 70px !important;
}
.featured-tab.big-list.sidebar .post-thumb img {
    width: 100% !important;
    height: auto !important;
}
.featured-tab.big-list.sidebar .item img {
    height: 70px !important;
    min-height: 100% !important;
    width: 100%;
    max-height: unset !important;
}

.featured-tab.big-list .item {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
}
.featured-tab.big-list .item .post-thumb {
    height: 150px;
    min-height: 70px !important;
}
.featured-tab.big-list .item:first-child .post-thumb {
    height: 100px;
    width: 35%;
    min-height: 150px;
}
.featured-tab.big-list .item:first-child .post-content {
    width: 65%;
    padding: 0 !important;
}
.featured-tab.big-list .item .post-meta + p {
    display: block;
    height: 88px;
    padding-right: 10px;
}

.sideItem-bg.center-article.articleSide {
    text-align: center;
}
.sideItem-bg.center-article.articleSide .sideItem {
    padding-bottom: 0px !important;
    border-bottom: 1px dashed #f2f2f2;
    margin-bottom: 13px !important;
}
.sideItem-bg.center-article.articleSide .sideItem .title {
    text-align: left !important;
}
.sideItem-bg.center-article.articleSide .sideItem .title i {
    font-size: 20px;
    vertical-align: sub;
    margin-left: 5px;
    color: #1891cb;
}
.sideItem-bg.center-article.articleSide .sideItem:last-child {
    padding-bottom: 0px !important;
    border-bottom: 0px dashed #f2f2f2;
    margin-bottom: 0px !important;
}

.block-title {
   /* text-align: right;*/
}

.featured-tab.overlayBoxList .post-overaly-style {
    position: relative;
    display: inline-block;
    width: calc(33.333333% - 2px);
    float: right;
    height: 220px;
}
.featured-tab.overlayBoxList .post-overaly-style:after {
    content: "";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    font-size: 65px;
    position: absolute;
    right: calc(50% - 32.5px);
    top: calc(50% - 32.5px);
}
.featured-tab.overlayBoxList .post-overaly-style:nth-child(3) {
    margin: 0 3px;
}
.featured-tab.overlayBoxList .post-overaly-style:nth-child(3) .post-thumb:before {
    opacity: 0 !important;
}
.featured-tab.overlayBoxList .post-overaly-style:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: #4db2ec;
    opacity: 0;
    top: 0;
    left: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s ease 0.2s;
    -moz-transition: opacity 0.4s ease 0.2s;
    -ms-transition: opacity 0.4s ease 0.2s;
    -o-transition: opacity 0.4s ease 0.2s;
    transition: opacity 0.4s ease 0.2s;
}
.featured-tab.overlayBoxList .post-overaly-style .post-thumb {
    min-height: 100%;
}
.featured-tab.overlayBoxList .post-overaly-style .post-thumb img {
    height: 100% !important;
}
.featured-tab.overlayBoxList .post-overaly-style .post-thumb:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: #011c45;
    opacity: 0.7;
    top: 0;
}
.featured-tab.overlayBoxList .post-overaly-style .post-thumb:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 160%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    content: "";
    z-index: 1;
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -120%, 0);
}
.featured-tab.overlayBoxList .post-overaly-style:hover:before {
    background: #021d47;
}
.featured-tab.overlayBoxList .post-overaly-style:hover .post-thumb:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    background-color: #000;
    opacity: 0.7;
    top: 0;
}
.featured-tab.overlayBoxList .post-overaly-style:hover .post-thumb:after {
    -webkit-transition: transform 0.7s ease 0s;
    -moz-transition: transform 0.7s ease 0s;
    -ms-transition: transform 0.7s ease 0s;
    -o-transition: transform 0.7s ease 0s;
    transition: transform 0.7s ease 0s;
    -moz-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 146%, 0);
    -o-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 146%, 0);
    -ms-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 146%, 0);
    -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 146%, 0);
    transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 146%, 0);
}
.featured-tab.overlayBoxList .post-overaly-style .post-content {
    position: absolute;
    bottom: -15px;
    right: 0;
    padding: 0px 15px;
    display: inline-block;
    width: 100%;
    text-align: right;
}
.featured-tab.overlayBoxList .post-overaly-style .post-content .post-title {
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    font-size: 15px;
}

.featured-tab.twoBox .item {
    width: 50%;
    margin: 0 0 50px;
}
.featured-tab.twoBox .item:nth-child(odd) {
    padding-right: 24px;
}
.featured-tab.twoBox .item:nth-child(even) {
    padding-left: 24px;
}
.featured-tab.twoBox .item .post-thumb {
    width: 100% !important;
    height: 150px;
    min-height: 150px;
}
.featured-tab.twoBox .item .post-content {
    width: 100% !important;
    padding: 15px !important;
}
.featured-tab.twoBox .item .post-meta + p {
    display: block;
    height: 70px;
    overflow: hidden;
}

.main-footer {
    background: url('/files/mfa/images/worldMapdark2.png') no-repeat 20% bottom fixed #343435;
    background-size: 63%;
    padding-top: 14px;
    color: #eaeaea;
    position: relative;
}
.main-footer .container-fluid {
    max-width: 1400px;
}
.main-footer .navbar-nav.ml-auto {
    float: right;
}
.main-footer .navbar-nav.ml-auto li {
    display: block;
}
.main-footer .navbar-nav.ml-auto li .dropdown-menu {
    display: none !important;
}
.main-footer .navbar-nav.ml-auto li a {
    line-height: 2;
}
.main-footer * {
    color: #fff !important;
}
.main-footer .footer-title {
    margin-bottom: 30px;
    font-size: 18px;
}
.main-footer .page-viewer * {
    color: #f5f5f5 !important;
    font-size: 13px;
}
.main-footer .page-viewer a {
    color: #1e88e5 !important;
}
.main-footer .contact-footer p {
    color: #f5f5f5 !important;
    font-size: 15px;
}
.main-footer .contact-footer ul {
    margin: 0;
    padding: 0;
    display: inline-block;
    width: 100%;
    list-style: none;
}
.main-footer .contact-footer ul li {
    display: inline-block;
    width: 50%;
    float: right;
    padding-right: 20px;
    position: relative;
    padding-top: 5px;
    padding-bottom: 5px;
    /*&:before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    position: absolute;
    right: 5px;
    top: calc(50% - 2.5px);
    border-radius: 100%;
    background: #f90 !important;
}
    * {
    color: #b8b8b8 !important;
    }*/
}
.main-footer .caption {
    font-size: 18px;
    padding: 0;
}
.main-footer .caption:before {
    display: none;
}

.copyright {
    margin-top: 5px;
    text-align: center;
    background: #060d3e;
}
.copyright a {
    color: #1e88e5;
}

.socialNetworks {
    text-align: center;
    width: 100%;
}
.socialNetworks a:before {
    display: none;
}

#GoUpBTN {
    display: block;
    position: fixed;
    right: 2px;
    bottom: 2px;
    width: 42px;
    height: 42px;
    background: red;
	border-radius: 50%;
}

.featured-tab.color-orange .nav-tabs > li > a.active:after {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ff7a09 rgba(0, 0, 0, 0);
}

.featured-tab.color-red .nav-tabs > li > a.active:after {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #f44336 rgba(0, 0, 0, 0);
}

.featured-tab.color-green .block-title {
    border-color: #4caf50;
}
.featured-tab.color-green .block-title span {
    background: #4caf50;
}
.featured-tab.color-green .block-title span:after {
    border-color: #4caf50 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.featured-tab.color-green .nav-tabs > li > a.active::after {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #4caf50;
}

.latest-news.color-gray .block-title {
    border-color: #607d8b;
}
.latest-news.color-gray .block-title span {
    background: #607d8b;
}
.latest-news.color-gray .block-title span:after {
    border-color: #607d8b rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
}
.latest-news.color-gray .nav-tabs > li > a.active::after {
    border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #607d8b;
}

#GoUp {
    cursor: pointer;
    position: fixed;
    bottom: 4px;
    border: 0;
    right: 3px;
    width: 40px;
    height: 40px;
    background-color: #4db2ec;
    color: #fff;
    font-size: 23px;
    -moz-transform: translate3d(0, 70px, 0);
    -o-transform: translate3d(0, 70px, 0);
    -ms-transform: translate3d(0, 70px, 0);
    -webkit-transform: translate3d(0, 70px, 0);
    transform: translate3d(0, 70px, 0);
    -webkit-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
    -moz-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
    -ms-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
    -o-transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
    transition: transform 0.4s cubic-bezier(0.55, 0, 0.1, 1) 0s;
    z-index: 99999;
}

#GoUp.show {
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#FixSidebar > div {
    position: absolute;
    left: 15px;
    top: 0;
    max-width: 350px;
}

#FixSidebar.fixTop > div {
    position: fixed;
    left: 22px;
    top: -23px;
}

#FixSidebar.fixBottom > div {
    bottom: 0;
    top: auto;
}

#FixSidebar2 > div {
    position: absolute;
    left: 15px;
    top: 0;
}

#FixSidebar2.fixTop > div {
    position: fixed;
    left: 22px;
    top: -23px;
}

#FixSidebar2.fixBottom > div {
    bottom: 0;
    top: auto;
}

.search-bg {
    top: 6px;
    display: inline-block;
    position: absolute;
    right: 5px;
    z-index: 999;
    padding: 2px 0 0;
}
.search-bg #searchBtn {
    cursor: pointer;
    border: 0;
    padding-top: 0;
    background-color: transparent;
}
.search-bg #searchBtn i {
    font-size: 16px;
    color: #72aabb !important;
}
#searchBtn:before {
    content: '';
    display: block;
    position: absolute;
    left: -5px;
    top: 3px;
    background: #8f8f8fb8;
    width: 1px;
    height: 20px;
}
.search-bg #searchInput {
    position: absolute;
    right: 0;
    top: 34px;
    z-index: 99;
    display: inline-block;
    border-top: 0;
    border-radius: 0;
    width: 280px;
    padding: 10px;
    background: #ffffff;
}
.search-bg #searchInput input[type=text] {
    width: 100%;
    float: right;
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.search-bg #searchInput input[type="text"]:focus {
    padding-right: 25px;
    background: #f5f5f5;
    outline: 0 !important;
    box-shadow: none;
    border-color: #ddd;
}
.search-bg .drop-down-search {
    visibility: hidden;
    opacity: 0;
    -ms-filter: "alpha(opacity=" 0 ")";
    filter: alpha(opacity=0);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -moz-transform: translate3d(0, 20px, 0);
    -o-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-top: 0;
    width: 280px;
    pointer-events: none;
    padding: 10px;
    top: 52px;
    border-top: 3px solid #194876;
}

.search-bg .mim-search-input {
    width: 278px;
    height: 36px;
    margin: 0;
    border-left: 0;
    border-right-color: currentcolor;
    line-height: 17px;
    border-color: #eaeaea !important;
    float: right;
    border-radius: 0;
}

.open .drop-down-search {
    visibility: visible;
    opacity: 1;
    -ms-filter: "alpha(opacity=" 100 ")";
    filter: alpha(opacity=100);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    pointer-events: all !important;
}

.main-menu .navbar-toggler {
    width: 35px;
    background: transparent;
    float: right;
}
.main-menu .navbar-toggler span {
    background: #282828;
    height: 2px !important;
    display: block;
    margin-bottom: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.main-menu .navbar-toggler span:first-child {
    width: 100%;
    -moz-transform: translateY(7px) rotate(40deg);
    -o-transform: translateY(7px) rotate(40deg);
    -ms-transform: translateY(7px) rotate(40deg);
    -webkit-transform: translateY(7px) rotate(40deg);
    transform: translateY(7px) rotate(40deg);
}
.main-menu .navbar-toggler span:nth-child(2) {
    opacity: 0;
}
.main-menu .navbar-toggler span:last-child {
    width: 100%;
    margin-bottom: 0px;
    -moz-transform: translateY(-7px) rotate(-40deg);
    -o-transform: translateY(-7px) rotate(-40deg);
    -ms-transform: translateY(-7px) rotate(-40deg);
    -webkit-transform: translateY(-7px) rotate(-40deg);
    transform: translateY(-7px) rotate(-40deg);
}

.main-menu .navbar-toggler.collapsed span:first-child {
    width: 100%;
    float: left;
    border-radius: 10px;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}
.main-menu .navbar-toggler.collapsed span:nth-child(2) {
    width: 100%;
    float: left;
    border-radius: 10px;
    margin-left: 0;
    opacity: 1;
}
.main-menu .navbar-toggler.collapsed span:last-child {
    float: right;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 0px;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
}

.main-menu #mfaNav ul li:hover .dropdown-menu {
    display: block !important;
}

.modulecontainer {
    margin: 30px 0;
}

.footer-link li a {
    color: #29aeb9 !important;
    padding-bottom: 5px !important;
    padding-right: 10px !important;
    font-size: 12px !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.footer-link li a :hover {
    color: #4ca5a3 !important;
}

.footer-link li a:before {
    border-bottom: 1px solid !important;
}

.footer-link li a:after {
    width: 5px;
    right: 0;
    top: calc(50% - 1px);
    position: absolute;
    height: 1px;
    content: "";
    display: block;
    background: #7b9f9e;
}

.hidden {
    display: none;
}

.agency-options {
    border: 1px solid silver;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0px 1px 2px 1px rgba(50, 50, 50, 0.28);
    padding: 4px 0;
    background: #f9f9f9;
}
.agency-options .parent-agensies, .agency-options .childs-agency {
    text-align: right;
    position: relative;
}
.agency-options .parent-agensies .dropdown-menu, .agency-options .childs-agency .dropdown-menu {
    border-radius: 0;
    text-align: right;
    z-index: 5000;
    min-width: 230px;
    transform: none !important;
    right: 0px !important;
    left: unset !important;
    top: calc(100% + 5px) !important;
    padding: 5px 0px !important;
    border-bottom: 5px solid #333;
    max-height: 300px;
    overflow: auto;
}
.agency-options .parent-agensies .agency-child-btn, .agency-options .parent-agensies .agency-parent-btn, .agency-options .childs-agency .agency-child-btn, .agency-options .childs-agency .agency-parent-btn {
    background: transparent;
    border: none;
    margin-top: 15px;
    color: #1f5164;
}
.agency-options .parent-agensies .agency-child-btn:after, .agency-options .parent-agensies .agency-parent-btn:after, .agency-options .childs-agency .agency-child-btn:after, .agency-options .childs-agency .agency-parent-btn:after {
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}
.agency-options .parent-agensies .agency-child-btn, .agency-options .childs-agency .agency-child-btn {
    float: left;
}
.agency-options .childs-agency {
    display: inline-block;
    float: left;
}
.agency-options .title-agency a {
    display: none;
}
.agency-options .title-agency h4 {
    color: #1F5164;
    font-size: 16px;
    margin: 4px 0 10px 0;
    font-weight: 600;
    position: relative;
    padding: 0;
    text-align: center;
    line-height: 40px;
    vertical-align: middle;
    display: inline-block;
    width: 100%;
}

.news-arch-item {
    width: 100%;
    float: right;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    padding: 5px 5px 10px;
    position: relative;
}
.news-arch-item .news-item-agency {
 width: 20%;
float: right;
text-align: right;
position: absolute;
top: 6px;
right: 5px;
}
.news-arch-item .news-item-agency a {
    background: #cc0000;
}
.news-arch-item .news-item-agency a span {
    font-size: 10px !important;
    color: #fff;
    padding: 10px;
}
.news-arch-item .news-content-arch {
    margin-bottom: 10px;
    padding: 5px;
}
.news-arch-item .news-item-title a {
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    text-decoration: none;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    color: #1809a6;
}
.news-arch-item .news-item-lead {
    font-size: 14px;
    color: #333333;
}
.news-arch-item .news-item-lead a {
    font-size: 14px;
    color: #333333;
}

.single-blog-content .post-content {
    padding: 20px 30px 0px 30px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    font-size: 15px !important;
    line-height: 25px;
}
.single-blog-content .post-content .nv-info-item {
    border-bottom: 1px solid #f1f1f1;
    float: right;
    width: 100%;
    margin-bottom: 10px;
}
.single-blog-content .post-content .nv-info-item {
    border-bottom: 1px solid #f1f1f1;
    float: right;
    width: 100%;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.single-blog-content .post-content .news-text-full {
    text-align: justify;
}
.single-blog-content .post-content .news-text-full .news-img {
    float: left;
    padding: 10px 0;
}
.single-blog-content .post-content .news-text-full p {
    color: #333;
    font-size: 15px !important;
    line-height: 30px;
}
.single-blog-content .post-content .row.comment-box {
    display: none;
}

.td-trending-now-wrapper {
    padding: 0 21px;
    margin: 23px 0 0;
    height: 25px;
    position: relative;
    display: inline-block;
    width: 100%;
    -moz-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
.td-trending-now-wrapper .td-trending-now-title {
    background-color: #222;
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    padding: 2px 10px;
    display: inline-block;
    line-height: 22px;
    float: right;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
.td-trending-now-wrapper h3 {
    font-size: 15px;
    line-height: 25px;
    margin: 0;
    padding-right: 10px;
    font-weight: 400;
}
.td-trending-now-wrapper h3 a {
    color: #111111 !important;
}
.td-trending-now-wrapper .td-trending-now-display-area {
    height: 30px;
    vertical-align: top;
    padding: 0 0 0 0;
    display: inline-block !important;
    width: calc(100% - 600px);
    overflow: hidden;
    position: unset;
}
.td-trending-now-wrapper .owl-buttons {
    position: absolute;
    left: 30px;
    top: 0;
    direction: ltr;
    background: #fff;
}

.owl-wrapper-outer {
    direction: ltr;
    overflow: hidden;
}

.featured-tab .item .post-meta + p {
    height: 24px;
    overflow: hidden;
}

.single-blog-content .post-content .news-text-full .news-img {
    width: 100%;
    text-align: center;
}

.TopHeader .post-title {
    color: #fff;
}

.post-overaly-style.contentTop .post-content {
    top: auto;
    bottom: 0;
}

.featured-tab.color-orange .news-linnk:hover {
    color: #ff7a09;
}
.featured-tab.color-orange .nav.nav-tabs li a:hover {
    color: #ff7a09;
}
.featured-tab.color-orange .nav.nav-tabs li .active {
    color: #ff7a09;
}

.featured-tab.color-green .news-linnk:hover {
    color: #4caf50;
}
.featured-tab.color-green .nav.nav-tabs li a:hover {
    color: #4caf50;
}
.featured-tab.color-green .nav.nav-tabs li .active {
    color: #4caf50;
}

.latest-news.color-gray .sliderItem:hover .post-title a {
    color: #607d8b;
}

.featured-tab.color-red .news-linnk:hover {
    color: #f44336;
}
.featured-tab.color-red .nav.nav-tabs li a:hover {
    color: #f44336;
}
.featured-tab.color-red .nav.nav-tabs li .active {
    color: #f44336;
}

.menu {
    position: relative;
    text-align: right;
    margin: 0;
}

.menu ul {
    margin: 0;
    padding: 0;
}

.menu li li {
    position: relative;
    margin: 0;
    display: block;
    width: auto;
}

.menu li li a {
    position: relative;
    font-size: 13px;
    color: #333 !important;
    padding: 10px 5px;
    transition: all 0.4s ease-in-out;
}

.menu li li a::before {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 0;
    height: 60%;
    background: #32C1CE;
    transition: all 0.4s ease-in-out;
}

.menu li li a:hover {
    color: #32C1CE !important;
    padding-right: 5px;
}

.menu li li a:hover::before {
    width: 2px;
}

.menu li li:nth-last-child(1) a {
    /*! border-bottom: 0; */
}

.menu li:hover > .menu-dropdown, .menu li:hover > .menu-megamenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.menu a {
    display: block;
    height: auto;
    font-weight: 400;
    text-transform: none;
}

.menu > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 10px 0px;
}

.menu > li > a {
    position: relative;
    line-height: 36px;
    color: #555;
    font-size: 14px;
    padding: 10px 10px;
}

.menu > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #32C1CE;
    transition: all 0.3s ease-in-out;
}

.menu > li > a .fa {
    font-size: 12px;
    color: #AAA;
}

.menu > li > a.active {
    background: rgba(158, 158, 158, 0.1);
}

.menu > li > a.active::after {
    width: 100%;
}

.menu > li > a:hover::after {
    width: 100%;
}

.menu .mobile-menu-close {
    display: none;
    position: absolute !important;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    line-height: 15px;
    text-align: center;
    padding: 8px;
    background-color: #000;
    border-radius: 50%;
}

.menu .mobile-menu-close .fa {
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 18px;
    color: #EEE;
}

.menu-megamenu, .menu-dropdown {
    position: absolute;
    right: 0%;
    top: 90%;
    background: #FFF;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    text-align: right !important;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -moz-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -ms-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    -o-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    box-shadow: 2px 0 10px 0 rgba(2, 0, 0, 0.1);
}

.menu-megamenu .row, .menu-dropdown .row {
    display: flex !important;
    display: -ms-flexbox !important;
    -ms-flex-wrap: wrap !important;
}

.menu-megamenu li, .menu-dropdown li {
    padding: 0;
    border-bottom: 1px solid #E2E2E2;
}

.menu-megamenu li:nth-last-child(1), .menu-dropdown li:nth-last-child(1) {
    border-bottom: 0;
}

.menu-megamenu {
    width: 100%;
    padding: 10px;
}

.menu-megamenu > li {
    padding: 15px 10px;
}

.menu-dropdown {
    width: 200px;
}

.menu-dropdown li {
    padding: 5px 10px 5px 5px;
}

.menu-dropdown .menu-dropdown {
    top: 0;
    left: 100%;
    margin-left: 3px;
}

.menu-megamenu-li {
    position: static !important;
}

.menu li li .megamenu-ttl {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 10px 5px;
    text-transform: uppercase;
    border-bottom: 1px solid #656161;
}

#menu-bar {
    display: none;
    text-align: right;
}

#menu-bar a {
    display: inline-block;
}

#menu-bar .fa {
    font-size: 28px;
    color: #777;
    height: 60px;
    line-height: 60px;
    padding: 0 5px;
}

.menu-megamenu {
    width: calc(100%);
    right: 0;
    -moz-transform: translateY(0px);
    -o-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    background: #f5f5f5;
    border: 1px solid #ddd;
}

.main-header .menu-bg .main-menu li a {
    font-size: 16px !important;
}

.main-header .menu-bg .main-menu ul li ul li a {
    /*white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;*/
    display: inline-block;
    width: 100%;
    line-height: 1.8;
	text-align: left;
}

.news-archive-list {
    display: inline-block;
    width: 100%;
}

.pagination {
    display: inline-block;
    width: 100%;
    text-align: center;
}
.pagination .page-item {
    display: inline-block;
}

button.link-search.btn.btn-default[data-target="#modal-news-search"] {
    display: none;
}

.linkHolder-footer {
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 13px;
}

.switchLangBG {
    position: relative;
    display: inline-block;
    margin-top: 2px;
   /* margin-left: 28px;*/
}

.switchLang {
    display: inline-block;
    width: auto;
    background: transparent;
    border: 0;
    color: #72aabb !important;
    font-size: 16px;
    margin: 6px 0px 3px;
}
.switchLang .text {
    font-size: 14px;
}

.switchLangRes {
    background: #fff;
    max-height: 300px;
    position: absolute;
    left: calc(50% - 125px);
    top: calc(100% + 11px);
    width: 250px;
    border: 1px solid #f5f5f5;
    z-index: 99999;
    opacity: 0;
    -webkit-box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 18px rgba(0, 0, 0, 0.15);
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    pointer-events: none;
}
.switchLangRes:before {
    content: "";
    display: block;
    position: absolute;
    right: calc(50% - 10px);
    bottom: calc(100% - 2px);
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-bottom: 8px solid white;
}
.switchLangRes ul {
    width: 100% !important;
    text-align: center;
}
.switchLangRes ul li {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}
.switchLangRes ul li:last-child {
    border: 0;
}
.switchLangRes ul li a {
    padding: 12px 0px 12px 0px;
    width: 100%;
    display: inline-block;
    line-height: 1.5;
}
.switchLangRes ul li a:hover {
    color: #1e88e59c;
}

.overlay-back {
    padding: 20px 0;
    background: rgba(2, 33, 108, 0.8);
    color: #fff;
}

.openLang .switchLangRes {
    opacity: 1;
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    pointer-events: unset;
}

/*
Header.scss
*/
.main-header {
    display: inline-block;
    width: 100%;
    position: relative;
    -webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
    /* background: url(/files/mfa/images/worldMapdark.png) no-repeat 20% -67px fixed #f5f5f5; */
    background-size: 63%;
    z-index: 999;
}
.main-header .topHeader {
    background: #072d67;
    color: #fff;
    font-size: 11px;
}
.main-header .topHeader li a:before {
    display: none;
}
.main-header .topHeader .date {
    display: inline-block;
    margin-top: 7px;
    margin-right: 10px;
}
.main-header .topHeader .topHeaderMenu {
    display: inline-block;
    padding: 4px 0;
    float: none;
}
.main-header .topHeader .topHeaderMenu li {
    display: inline-block;
}
.main-header .topHeader .topHeaderMenu li a {
    padding: 0 15px !important;
    color: #fff;
    font-size: 11px;
    line-height: 1;
}
.main-header .topHeader .topHeaderMenu li .dropdown-menu {
    display: none !important;
}
.main-header .topHeader .socialNetworks {
 display: inline-block;
width: auto;
float: right;
text-align: right;
padding: 0px 0 0 7px;
direction: rtl;
position: relative;
}
/* .main-header .topHeader .socialNetworks:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    background: #8f8f8f;
    width: 1px;
    height: 15px;
} */
.main-header .topHeader .socialNetworks li {
    display: inline-block;
}
.main-header .topHeader .socialNetworks li a {
    padding: 2px 3px !important;
    line-height: 1;
    font-size: 17px;
    color: #7ba3ba;
}
.main-header .topHeader .socialNetworks li a img {
    max-width: 19px;
    /* vertical-align: bottom; */
}
.main-header .topHeader .socialNetworks li .dropdown-menu {
    display: none !important;
}
.main-header .topHeader .lang {
    display: inline-block;
    width: auto;
    float: left;
    list-style: none;
    margin: 0px 0 0 0;
    padding: 0;
}
.main-header .topHeader .lang li {
    display: inline-block;
    padding: 0 2px;
}
.main-header .topHeader .lang li img {
    width: 24px;
}
.main-header .main-logo {
    margin: 3px 0 -6px 28px;
    display: inline-block;
    width: auto;
    float: right;
}
.main-header .main-logo img {
    position: relative;
    max-width: 135px;
    margin: 5px 0;
}
.main-header .arm {
    float: left;
    margin: 28px 0 9px;
    width: 160px;
}
.main-header .slogan {
    display: inline-block;
    float: right;
    width: 90px;
    /* margin: 3px 0; */
}

.main-header .menu-bg {
	display: inline-block;
	position: relative;
	margin-top: 56px;
	margin-bottom: -20px;
	margin-left: 0px;
}


@media (max-width: 1340px) {
.main-header .menu-bg {
	margin-left: 20px;
}
}


@media (max-width: 1200px) {
.main-header .menu-bg {
	margin-left: 0;
}
	
.main-header .main-logo img {
    max-width: 110px;
}	
	
	
}

@media (min-width: 1340px) {
.main-header .menu-bg {
	margin-left: 175px;
}
}


.main-header .menu-bg .main-menu {
    display: inline-block;
  float: right;
    /*width: calc(100% - 203px);*/
    padding: 0;
}
.main-header .menu-bg .main-menu li a {
    padding: 0 6px;
    line-height: 48px;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}
.main-header .menu-bg .main-menu li a :first-child {
    padding-right: 0;
}
.main-header .menu-bg .search-bg {
    display: inline-block;
    width: 48px;
}
.main-header .menu-bg .search-bg #searchBtn {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.main-header .search-bg .mim-search-input {
    width: 278px;
    height: 36px;
    margin: 0;
    border-left: 0;
    border-right-color: currentcolor;
    line-height: 17px;
    border-color: #eaeaea;
    float: right;
    border-radius: 0;
}



/*

Responsive.scss

*/
@media screen and (max-width: 1199px) {
    .item:first-child {
        height: 321px;
    }
    .item:nth-child(2) {
        height: 191px;
    }

    .sideItem img {
        height: 80px;
        width: 100%;
    }

    .featured-tab .item:first-child .post-thumb, .featured-tab.two-fourbox .item:nth-child(2) .post-thumb {
        width: 100%;
        height: 185px;
        min-height: 185px;
    }

    .latest-news .post-thumb {
        height: 90px;
    }
}
@media screen and (max-width: 767px) {
    .search-bg {
        left: 0px;
    }

    .TopHeader {
        direction: ltr;
        overflow: hidden;
    }
    .TopHeader .item {
        width: auto;
        height: 140px;
    }

    .featured-tab .item:first-child {
        width: calc(58.333333% - 25px);
    }

    #FixSidebar, #FixSidebar2 {
        height: auto !important;
        display: inline-block;
        width: 100%;
    }
    #FixSidebar > div, #FixSidebar2 > div {
        position: static;
    }

    .sideItem img {
        height: 130px;
        width: 100%;
    }

    .featured-tab.big-list .item {
        width: 100%;
    }

    .topHeaderMenu {
        display: none !important;
    }

    .main-header .topHeader .date {
        padding: 4px 0;
    }

    .main-footer {
        text-align: right;
    }
    .main-footer .contact-footer ul li {
        padding-right: 0;
    }
    .main-footer img {
        margin-bottom: 10px;
    }

    .featured-tab.overlayBoxList .post-overaly-style {
        height: 150px;
    }

    .featured-tab.overlayBoxList .post-overaly-style .post-content {
        padding: 5px 25px;
    }

    .featured-tab.overlayBoxList .post-overaly-style .post-content .post-title {
        font-size: 14px;
    }

    .featured-tab.overlayBoxList .post-overaly-style .post-content .post-meta {
        text-align: center;
    }
    .featured-tab.overlayBoxList .post-overaly-style .post-content .post-meta .post-date {
        font-size: 14px;
        margin: 0;
        padding: 0;
    }
}
@media screen and (max-width: 480px) {
    .featured-tab .item {
        width: 100% !important;
        padding: 0 !important;
    }   

    .featured-tab.two-fourbox .item {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .featured-tab.two-fourbox .item:nth-child(even) {
        margin-right: 0 !important;
    }

    .latest-news .post-thumb {
        height: auto;
    }

    .sideItem {
        width: 100%;
        padding: 0 !important;
    }

    .featured-tab.big-list .item .post-thumb, .featured-tab.big-list .item:first-child .post-thumb {
        height: 100px;
        min-height: 100px;
    }

    .featured-tab.overlayBoxList .post-overaly-style {
        width: 100%;
        margin: 10px 0 !important;
    }

    .featured-tab.overlayBoxList .post-overaly-style .post-content {
        width: 100%;
    }

    .search-bg #searchInput {
        width: 240px;
    }
}
.post-overaly-style .post-content{background: rgba(148, 0, 0, 0.8);}

/*# sourceMappingURL=main.css.map */
.copyright {
    color: rgb(255, 255, 255);
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 13px;
    background: rgb(35, 35, 35);
    padding: 15px 0px;
}

#contactPageInfo {
    margin: 40px 0 60px;
}

#contactPageInfo>ul {
    text-align: center;
    display: inline-block;
    width: 100%;
}
#contactPageInfo ul {
    list-style: none !important;
}

#contactPageInfo>ul>li {
    display: inline-block;
}

#contactPageInfo>ul>li>a:before {
    content: '';
    display: block;
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 100%;
    height: 0;
    background: #f5f5f5;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    z-index: -1;
}

#contactPageInfo>ul>li>a.active:before {
    height: calc(100% + 5px);
}

#contactPageInfo ul li a {
    color: #b06900;
    padding: 8px 60px;
    font-size: 14px;
    position: relative;
    z-index: 9;
    display: inline-block;
}

#contactPageInfo .tab-content {
    background: #f5f5f5;
    padding: 25px;
    border: 1px solid #ddd;
}

#contactPageInfo>ul>li>.active {
    border: 1px solid #ddd;
    border-bottom: 0;
}

.address-list {
    padding: 10px 20px;
}

.google-map {
    border: 1px solid #e78a009e;
    padding: 5px;
}

#contactPageInfo .addres {
    padding: 5px 20px 10px;
    color: #222222;
}

.address-list {
    text-align: right !important;
}

.address-list a {
    padding: 5px 8px !important;
}

.address-list li {
    display: block !important;
}

.timeBox {
    width: 100%;
    height: auto;
    margin: 20px auto;
    display: table;
    text-align: center;
    background: #42a552;
    padding: 15px;
    color: #cacaca;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.timeBox:hover {
   /* background: #383838;*/
}

.timeBox .name {
    color: #fff;
    line-height: 2;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    font-size: 14px;
}

.timeBox .time {
    color: #fff;
    font-size: 13px;
}

.map-bg {
    display: inline-block;
    width: 100%;
}

.map-img {
    border: 1px solid #e78a009e;
    padding: 5px;
    max-width: 700px;
    margin: 0 auto 50px;
    display: table;
}

.listBoxBG {
    padding: 0;
    display: inline-block;
    width: 100%;
}

.listBox {
    width: 100%;
}

.listBoxBG .name {
    color: #e78a00;
    font-size: 14px;
}

.address-text {
    font-size: 13px;
    color: #444444;
    padding-right: 20px;
}


.listBoxBG .listBoxBG li {
    position: relative;
}

.address-text {
    display: inline-block;
    width: 100%;
    position: relative;
}

.address-text:before {
    content: '';
    display: block;
    position: absolute;
    right: 5px;
    top: calc(50% - 2px);
    width: 6px;
    height: 2px;
    background: #888;
}

#contactPageInfo .form-group {
    width: 50%;
    display: inline-block;
}

#contactPageInfo .form-group:last-child {
    width: 100%;
}

#contactPageInfo .form-group>div {
    width: 100% !important;
    display: table;
    max-width: unset !important;
}

.sideItem .title a,.main-footer a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.sideItem:hover .title a {
    color: #1e88e5 !important;
}
.main-footer a:hover {
    color: #ff9800 !important;
}
.accordion-post-style .card {
    background-position: center;
    overflow: hidden;
}
#contactPageInfo .form-control {
    background: #ffffff;
}
#contactPageInfo .btn {
    margin: 10px auto;
    display: table;
    min-width: 100px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    background: #008f46;
}
#contactPageInfo .btn:hover {
    background: #2a2a2a;
}
.album-wrap {
    text-align: center;
    /*margin: 60px 0 40px;*/
    display: inline-block;
    width: 100%;
}
.album-item {
    width: 350px;
    display: inline-block;
    /* background: #222; */
    /*margin: 10px 15px;*/
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}

.album-box {
    display: inline-block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 9;
}

.album-box:before {
    /* content: ''; */
    background: rgba(0,0,0,0.3);
    z-index: -1;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.album-box:hover:before {
    background: rgba(0,0,0,0.5);
}
.album-box:hover .album-title h4 {
    color: #ffc800;
}

.album-title {
    display: inline-block;
    width: 100%;
    color: #ff9800;
    margin: 40px 0 60px 0;
}

.album-title h4 {
    color: #ffffff;
    display: inline-block;
    font-size: 17px;
}

.album-icons>div {
    display: inline-block;
    color: #e1e1e1;
    font-size: 11px;
    padding: 10px 20px;
}

.count-childs {
    float: right;
}

.create-date {
    float: left;
}

.fancybox + div h5 {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.fancybox:hover + div h5 {
    color: #ff9800;
}

.featured-tab .item:first-child .post-content .post-date,.featured-tab.two-fourbox .item:nth-child(2) .post-date,.featured-tab.two-fourbox .item:nth-child(3) .post-date {
    position: absolute;
    right: 0;
    left: auto;
    bottom: 100%;
    background: #fb7b10;
    display: inline-block;
    width: auto;
    color: #fff;
    margin: 0;
    padding: 5px 5px 2px 5px;
    font-size: 10px;
    border-radius: 2px 0 0 0;
}

.featured-tab.two-fourbox .item:nth-child(2) .post-date, .featured-tab.two-fourbox .item:nth-child(3) .post-date {
    background: #4caf50;
}

.featured-tab .item:first-child .post-content .post-title {
    font-size: 15px;
    max-height: 48px;
    padding-right: 0;
}

.featured-tab.big-list .post-content.mim-post-content {
    height: auto;
    position: initial;
}

.featured-tab.big-list .post-date {
    position: absolute;
    width: 100% !important;
    display: inline-block;
    margin: 0;
    right: auto !important;
    left: 0 !important;
    bottom: 0 !important;
    background: transparent !important;
}

.featured-tab.big-list .post-content.mim-post-content p {
    height: 52px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    padding-top: 0 !important;
    margin-bottom: 5px !important;
}

.featured-tab.big-list.sidebar .item {
    margin-bottom: 13px;
}

.featured-tab.big-list.sidebar .item .post-date {
    width: auto !important;
    display: inline-block;
}

.featured-tab.two-fourbox .item:nth-child(2) .post-content .post-title, .featured-tab.two-fourbox .item:nth-child(3) .post-content .post-title {
    font-size: 15px;
    height: 30px;
    padding-right: 0;
    margin-bottom: 20px;
}

.gallery-container .fancybox {
    position: relative;
    background: #000000;
    display: inline-block;
    width: 100%;
    border-radius: 4px;
    height: 170px;
    overflow: hidden;
}

.gallery-container .fancybox img {
    /* opacity: 0.5; */
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
}

.gallery-container .fancybox:hover img {
    opacity: 1;
}

.featured-tab.big-list .item .post-content .post-title {
    font-size: 14px;
    height: 48px;
    padding-right: 10px;
    padding-bottom: 20px;
}

.latest-news .owl-nav {
    display: inline-block !important;
    position: absolute;
    left: 0;
    top: auto !important;
    bottom: calc(100% + 20px);
    width: 90px !important;
    float: left;
}

#FixSidebar .sideItem .title {
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    height: 55px;
    text-overflow: ellipsis;
}

#FixSidebar .sideItem-bg.articleSide {
    margin-top: -10px;
}

.accordion-post-style .collapse.show + .card-header a {
    pointer-events: none;
}
.socialNetworks img {
    width: 16px;
}
.header-Flag {
    position: absolute;
    left: 0;
    top: 0;
    width: 170px;
}
/*
.header-back {
    position: absolute;
    z-index: -1;
    right: 0;
    width: auto;
    min-height: 475px;
    max-height: 480px;
    max-width: 1890px;
    top: -120px;
} */
.header-overlay {
    display: inline-block;
    width: 100%;
    height: calc(100% - 40px);
    position: absolute;
    z-index: -1;
    overflow: hidden;
    top: 40px;
    right: 0;
}
.switchLang {
    margin-right: 33px;
   /* margin-left: 8px;*/
}
.switchLang li a {
    line-height: 2.3 !important;
    display: inline-block;
    color: #72aabb !important;
}
.post-author {
    display: inline-block;
    width: 100%;
    text-align: left;
}
.mim-nested .y-page:before {
    content: "\f05a";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.video-container .item-title {
    display: none;
}
.video-container .thumbnail {
    display: block;
    position: relative;
    margin-bottom: 15px;
}
.video-container .video-back-link {
    display: inline-block;
    background: #fff;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
    float: right;
    position: relative;
    cursor: pointer;
    height: 160px;
}
.video-container .video-back-link img {
    min-height: 100%;
}
.video-container .video-back-link:before {
    content: '';
    background: rgba(0,0,0,0.7);
    z-index: -1;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.video-container .video-back-link:hover:before {
    background: rgba(0,0,0,0.5);
}

.tv-gallery-box {
    display: table;
    margin: 20px auto 5px;
    position: relative;
    text-align: center;
    border-radius: 4px;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.7);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.5);
}
.video-container .video-title {
    right: 0;
    position: absolute;
    padding: 5px 10px 5px;
    bottom: 0;
    background: rgba(30, 53, 107, 0.8);
    display: grid;
    width: 100%;
    color: #ff7a09;
    font-size: 12px;
    text-align: right;
}
.video-container .video-back-img {
    opacity: 1;
}
.video-container .video-back-link img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.video-container .video-back-link:hover img {
    opacity: 1;
}
.playVideo>div {
    display: inline-block;
}
.playVideo span {
    color: #ff9800;
}
.tv-gallery-img {
    padding: 0;
    opacity: 1 !important;
    border: 0;
}
.tv-gallery-box:hover img {
    opacity: 1 !important;
}
.tv-gallery-info {
    display: inline-block;
    width: 100%;
    color: #ff9800;
    padding: 0px 0 26px 0;
    margin: 0;
    background: rgba(30, 53, 107, 0.8);
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}
.tv-gallery-count {
    display: inline-block;
    color: #e1e1e1;
    font-size: 11px;
    padding: 10px 20px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.tv-gallery-g2title {
    display: inline-block;
    color: #e1e1e1;
    font-size: 11px;
    padding: 10px 20px;
    position: absolute;
    left: 0;
    bottom: 0;
}
.tv-gallery-count i,.tv-gallery-g2title i {
    margin-left: 3px;
}
.tv-gallery-title a {
    display: inline-block;
    width: 100%;
    color: #ff9800 !important;
    margin: 5px 0 11px 0;
    padding: 0 15px;
}
.tv-gallery-box:hover img {
    opacity: 1;
}
.gtype-more a {
    width: 100%;
    display: inline-block;
    text-align: center;
    color: #a96500;
}
.fancybox.thumbnail + .item-title {
    display: block !important;
    margin-top: 10px;
}
.gallery-container .fancybox img {
    min-height: 100%;
}
#contactPageInfo .form-group {
    margin: 0 0 10px !important;
}

/* new */

.sideItem-bg.articleSide .sideItem img,.sideItem-bg .sideItem img,.latest-news .post-thumb {
    box-shadow: 0 0 4px rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.sideItem:hover img,.sideItem-bg .sideItem:hover img,.latest-news .sliderItem:hover .post-thumb {
    box-shadow: 0 0 6px rgba(0,0,0,0.0);
}
.latest-news .post-thumb img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.latest-news .sliderItem:hover .post-thumb img {
    transform: scale(1.2);
}
.sideItem-bg.articleSide .sideItem {
    border-bottom: 1px solid #f5f5f5;
}
/* .sideItem-bg.articleSide .sideItem:nth-last-child(2) {
    border: 0;
} */
.sideItem-bg.articleSide .sideItem {
    padding-bottom: 5px !important;
    margin-bottom: 5px !important;
}
#pdetaildiv table {
    margin-bottom: 40px;
}
#pdetaildiv table tr:nth-child(even) {
    background: #f5f5f5;
}
#pdetaildiv table tr:hover {
    background: #eee;
}
.album-view.gallery-container .album-desc {
    display: none;
}
.album-view.gallery-container .album-icons {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    display: inline-block;
}
.album-view.gallery-container .album-title h4 {
    padding: 0 15px;
}
.album-view.gallery-container .album-box {
    float: right;
}
.album-view.gallery-container .album-title {
    display: inline-block;
    width: 100%;
    color: #ff9800;
    padding: 0px 0 26px 0;
    margin: 0;
    background: rgba(30, 53, 107, 0.8);
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}
.album-view.gallery-container .album-title h4 {
    color: #ff7a09;
    font-size: 12px;
}
.video-tag {
    background-size: cover;
}


/* [ 2.2 COMMON CSS START ] */
.theme-dropdown li::after{
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out; }

.page-ttl::before, .parallax-background::before {
  background: rgba(0, 0, 0, 0.8);
  background: linear-gradient(-90deg, rgba(2, 167, 182, 0.9), rgba(1, 82, 89, 0.9)); }

.theme-block, .form-container, .theme-table-container, .map-address,
.hm-feature-block-1 {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1); }

.layer-ttl {
  text-align: center;
  margin: 0 0 40px 0; }
  .layer-ttl h3 {
    position: relative;
    font-size: 32px;
    font-weight: 500;
    color: #015259;
    line-height: 1;
    display: inline-block;
    margin: 0;
    padding: 12px 25px 15px 25px;
    background: #EBFCFD;
    border-bottom: 2px solid #02A7B6;
    border-radius: 4px; }

.layer-ttl-white h3 {
  color: #EBFCFD;
  background: #015259;
  border-bottom: 2px solid #EBFCFD; }

.sub-ttl {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: .5px;
  color: #555;
  text-align: center;
  padding: 0 0 15px 0;
  margin: 0 0 20px 0; }
  .sub-ttl::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 30px;
    height: 2px;
    margin: 0 auto;
    background: #32C1CE; }
  .sub-ttl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 60px;
    height: 2px;
    margin: 0 auto;
    background: #32C1CE; }

.sub-ttl-white {
  color: #FFF; }


#profile-menu {
  font-weight: 400;
  padding: 0 5px; }

.hdr-top-line {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 30px;
  margin: 0 5px;
  background-color: #DDD; }

#hdr-wrapper {
  background: #FFF;
  -webkit-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 5px -1px rgba(0, 0, 0, 0.15); }

.hdr {
  overflow: visible; }

.hdr-logo a {
  display: inline-block; }
  .hdr-logo a img {
    max-width: 200px;
    height: 40px; }

.menu {
  position: relative;
  text-align: right;
  margin: 0; }
  .menu ul {
    margin: 0;
    padding: 0;
  width: max-content;}
  .menu li li {
    position: relative;
    margin: 0;
    display: block;
    width: auto;
  text-align: left;
  }
    .menu li li a {
      position: relative;
      font-size: 13px;
      color: #333 !important;
      padding: 10px 5px;
      transition: all .4s ease-in-out; }
      .menu li li a::before {
        content: '';
        position: absolute;
        top: 20%;
        right: 0;
        width: 0;
        height: 60%;
        background: #32C1CE;
        transition: all .4s ease-in-out; }
      .menu li li a:hover {
        color: #32C1CE !important;
        padding-right: 5px; }
        .menu li li a:hover::before {
          width: 2px; }
    .menu li li:nth-last-child(1) a {
      /*! border-bottom: 0; */ }
  .menu li:hover > .menu-dropdown, .menu li:hover > .menu-megamenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px); }
  .menu a {
    display: block;
    height: auto;
    font-weight: 400;
    text-transform: none; }
  .menu > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding: 10px 0px; }
    .menu > li > a {
     position: relative;
line-height: 36px;
color: #060606;
font-size: 14px;
padding: 10px 10px;
font-weight: bold; }
      .menu > li > a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: #32C1CE;
        transition: all .3s ease-in-out; }
      .menu > li > a .fa {
        font-size: 12px;
        color: #AAA; }
      .menu > li > a.active {
        background: rgba(158, 158, 158, 0.1); }
        .menu > li > a.active::after {
          width: 100%; }
      .menu > li > a:hover::after {
        width: 100%; }
  .menu .mobile-menu-close {
    display: none;
    position: absolute !important;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    line-height: 15px;
    text-align: center;
    padding: 8px;
    background-color: #000;
    border-radius: 50%; }
    .menu .mobile-menu-close .fa {
      width: 16px;
      height: 16px;
      line-height: 16px;
      font-size: 18px;
      color: #EEE; }

.menu-megamenu, .menu-dropdown {
  position: absolute;
  right: 0%;
  top: 90%;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  text-align: right !important;
  -webkit-transform: translateY(40px);
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -o-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -moz-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -ms-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  -o-transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  transition: all 0.6s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  box-shadow: 2px 0 10px 0 rgba(2, 0, 0, 0.1); }
  .menu-megamenu .row, .menu-dropdown .row {
    display: flex !important;
    display: -ms-flexbox !important;
    -ms-flex-wrap: wrap !important; }
  .menu-megamenu li, .menu-dropdown li {
    padding: 0;
    border-bottom: 1px solid #EEE; }
    .menu-megamenu li:nth-last-child(1), .menu-dropdown li:nth-last-child(1) {
      border-bottom: 0; }

.menu-megamenu {
  width: 100%;
  padding: 10px; }
  .menu-megamenu > li {
    padding: 15px 10px; }

.menu-dropdown {
  width: 200px; }
  .menu-dropdown li {
    padding: 5px 10px 5px 5px; }
  .menu-dropdown .menu-dropdown {
    top: 0;
    left: 100%;
    margin-left: 3px; }

.menu-megamenu-li {
  position: static !important; }

.menu li li .megamenu-ttl {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  padding: 10px 5px;
  text-transform: uppercase; 
  border-bottom: 1px solid #656161;
}

#menu-bar {
  display: none;
  text-align: right; }
  #menu-bar a {
    display: inline-block; }
  #menu-bar .fa {
    font-size: 28px;
    color: #777;
    height: 60px;
    line-height: 60px;
    padding: 0 5px; }

#appointment-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  animation-delay: 2s; }
  #appointment-button .fa {
    font-size: 20px;
    color: #EBFCFD; }
  #appointment-button .mdl-tooltip {
    font-size: 12px; }
  #appointment-button .mdl-button--fab.mdl-button--colored {
    background: #015259; }

.filter-menu {
  display: inline-block;
  margin: 20px 0 10px 0;
  background-color: #f4f4f4; }
  .filter-menu button {
    font-size: 20px;
    line-height: 20px;
    color: #555;
    text-transform: uppercase;
    padding: 20px 30px;
    border: none;
    outline: none;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem; }
    .filter-menu button.active {
      color: #FFF;
      background-color: #32C1CE; }


@media only screen and (max-width: 1340px) {
    .header-back {
        left: -368px;
        right: auto;
    }
}


@media only screen and (max-width: 992px) {



/*   .menu {
  position: fixed;
  top: 0;
  left: -130%;
  width: 100%;
  min-height: 100%;
  padding: 30px 60px 30px 20px !important;
  overflow-y: scroll;
  background: linear-gradient(-90deg, #02a7b6, #015259);
  z-index: 99999999;
  -webkit-transition: all 0.4s;
  transition: all 0.4s; } 
    .menu li {
      position: relative !important;
      display: block; }
      .menu li a {
        display: block;
        height: auto;
        font-size: 14px;
        text-align: left;
        color: #FFF;
        padding: 5px;
        text-transform: none; }*/
      .menu li li a {
        color: #333; }

  .menu-dropdown {
    width: 70%;
    left: inherit;
    right: -55px;
    z-index: 9999999; }
    .menu-dropdown li:hover .menu-dropdown {
      display: block; }
    .menu-dropdown .menu-dropdown {
      display: none;
      left: 0;
      width: 100%;
      position: relative;
      box-shadow: none;
      z-index: 9999999; }

  .menu-megamenu {
    width: 70%;
    left: inherit;
    right: -55px; }

  .mobile-menu-close {
    display: block !important; }

  #menu-bar {
    display: block; }

   }
/* FROM 768PX TO 979PX */
/* FROM 0PX TO 768PX */

/* FROM 0PX TO 480PX */
  
 .menu li a.megamenu-ttl {
  font-size: 14px;
  font-weight: 900;
  border-bottom: 2px solid;
}

.drop-item {
  display: none !important;
}

.menu-megamenu .theme-img {
  margin-top: 41px;
}
.dynamicList-bg #myTab {
    width: 100%;
    position: static;
    display: inline-block;
    max-width: unset;
    margin-bottom: 5px;
}
.dynamicList-bg #myTab li {
    display: inline-block;
    font-weight: 400;
}
.dynamicList-bg #myTab li .active {
    background: #205590;
    color: #fff;
    height: 25px;
    font-weight: 400;
    line-height: 23px;
    padding: 2px 15px 1px;
    position: relative;
}

.hd-size {
    width: 188px !important;
    height: 106px !important;
}
.hd-size + .post-content {
    width: calc(100% - 188px) !important;
}
.hd-gallery {
    height: 142px;
}
.hd-movie {
    width: 138px !important;
}
.hd-movie img {
    height: 78px;
    width: 100%;
}
.hd-movie + .gallery-info {
    width: calc(100% - 138px);
}
.header-overlay div img{
/*position: absolute;*/

bottom: 0;
height: 115px;

width: 100%;

top: 2px;
}
dynamicList-bg #myTab li
